/********** Template CSS **********/
:root {
    --primary: #18344a;
    --light: #F6F7F8;
    --dark: #1A2A36;
}




.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}


/* .btn-primary {
    color: #000;
    background-color: black !important;
    border-color: #E7C77E !important;
} */




/* logo matched colors */


.Dark-Navy-Blue {
   background-color: #18344a !important;
   border-color: #dcb66a !important;
}

.Gold-Warm-Yellowe {
   background-color: #d8a044 !important;
}

.White {
   background-color: #ffffff !important;
}
.Medium-Gold  {
   background-color: #c89f5a !important;
}
.Brownish-Gold {
   background-color: #b58e4e !important;
}

.Grayish-Blue{
   background-color: #6c7a8a !important;
}


/* logo matched colors */

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 100px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

/* nav link activ */

/* .navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
} */
.navbar .navbar-nav .nav-link {
    position: relative;
    display: inline-block; /* ensures proper width */
    padding: 0.75rem 14px;
    color:white !important;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* Target the span for underline */
.navbar .navbar-nav .nav-link span {
    position: relative;
    display: inline-block; /* text-only width */
}

/* Gradient underline on span */
.navbar .navbar-nav .nav-link span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px; /* slight offset */
    width: 0;
    height: 3px;
    background: linear-gradient(90deg,  #2f08ab );
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Hover / Active effects */
.navbar .navbar-nav .nav-link:hover span::after,
.navbar .navbar-nav .nav-link.active span::after {
    width: 100%; /* now fits text only */
}

.navbar .navbar-nav .nav-link:hover {
    color: #32C36C;
}

.navbar .navbar-nav .nav-link.active {
    color: #2575fc;
    text-shadow: 0 0 8px rgba(50, 195, 108, 0.7),
                 0 0 12px rgba(37, 117, 252, 0.7);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .navbar .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        font-size: 14px;
    }
    .navbar .navbar-nav .nav-link span::after {
        height: 2px;
        bottom: -2px;
    }


    .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: 82px !important;
}

}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        /* min-height: 519px; */
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 29%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}
/*
.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
} */

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}
/*** Portfolio Filters ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
    padding: -1px 4px;
    border-radius: 5px;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(50, 195, 108, 0.1);
}

/*** Portfolio Card ***/
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/*** Portfolio Image ***/
.portfolio-img {
    height: 300px;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
    display: block;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.05);
}

/*** Overlay Buttons ***/
.portfolio-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-btn a {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.portfolio-btn a:hover {
    transform: scale(1.1);
    background: #32c36c;
}

/*** Card Info ***/
.portfolio-item .pt-3 {
    padding: 15px 20px;
    transition: background 0.3s ease;
}

.portfolio-item:hover .pt-3 {
    background: rgba(50, 195, 108, 0.05);
}

.portfolio-item h5 {
    margin: 5px 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.portfolio-item p,
.portfolio-item div {
    font-size: 0.9rem;
    color: #555;
}

/* Remove column padding but keep small gap between cards */
.portfolio-container.row.g-4 {
    margin-left: -5px;
    margin-right: -5px;
}

.portfolio-container.row.g-4 > .col-lg-4,
.portfolio-container.row.g-4 > .col-md-6 {
    padding-left: 5px;
    padding-right: 5px;
}

/*** Make whole card clickable ***/
.portfolio-link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

/*** Responsive ***/
@media (max-width: 768px) {
    .portfolio-img {
        height: 200px;
    }
    .portfolio-btn a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }


    
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    margin-top:80px;
}
  
}




/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/* ---------- TESTIMONIAL SECTION ---------- */

/* Section Background */
.testimonial-section {
    position: relative;
    padding: 80px 0;
    /* background: linear-gradient(135deg, #e0f7ff, #f5fcff); */
    overflow: hidden;
}

/* Gradient Heading */
.testimonial-heading h6.text-gradient {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #32c36c, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Carousel Item */
.testimonial-carousel .testimonial-item {
    padding: 15px;
}

/* Card Styling */


.testimonial-card {
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    padding: 71px 25px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(37, 117, 252, 0.15);
    transition: transform 0.4s
ease, box-shadow 0.4s
ease;
    overflow: hidden;
    height: auto;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(37,117,252,0.25);
}

/* Avatar */
.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #d8a044 ;
    overflow: hidden;
    margin: -70px auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    /* background: linear-gradient(135deg, #32c36c, #2575fc); */
     /* background: linear-gradient(135deg, #18344a , #d8a044); */
      background:    #18344a;
    color: #fff;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.1rem;
    color: #0a7e8c;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: #2575fc;
}

/* Floating Shapes */
.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatShape 6s ease-in-out infinite alternate;
}

.shape1 { width: 100px; height: 100px; top: -20px; left: -20px; background: #32c36c; }
.shape2 { width: 60px; height: 60px; bottom: -15px; right: -10px; background: #2575fc; }
.shape3 { width: 40px; height: 40px; top: 10px; right: 10px; background: #00d4ff; }

@keyframes floatShape {
    0% { transform: translateY(0px) rotate(0deg);}
    50% { transform: translateY(15px) rotate(15deg);}
    100% { transform: translateY(-10px) rotate(-10deg);}
}

/* Owl Carousel Dots */
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-carousel .owl-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #32c36c;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active {
    opacity: 1;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card { padding: 75px 20px 25px; }
    .testimonial-avatar { width: 70px; height: 70px; margin-top: -55px; font-size: 28px; }
}



/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    color: white !important;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.btn-link {
    color:#d8a044 !important;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/*
css update from here */




.header-carousel .owl-dots {
    display: block !important; /* Force visibility */
    text-align: center;
    margin-top: 15px; /* Space between images and dots */
}


/* Extra fix for large screens */
@media (min-width: 992px) {
    .header-carousel .owl-dots {
        position: relative;
        bottom: 0;
        margin-top: 20px;
    }
}



/* Position nav arrows over the banner */
/* Owl Nav Wrapper */
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none; /* let only buttons handle clicks */
}

/* Nav Buttons */
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    background: #32C36C !important; /* override default */
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;  /* circular */
    width: 50px;
    height: 50px;
    font-size: 22px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; /* clickable */
}

/* Hover Effect */
.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    color: #000 !important;
    transform: scale(1.1);
}


/* Focus outline removal */
.header-carousel .owl-nav button:focus {
    outline: none;
}

/* Optional: smaller buttons on mobile */
@media (max-width: 768px) {
    .header-carousel .owl-nav button {
        padding: 12px 14px;
        font-size: 18px;
    }



/* Nav Buttons */
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    background: #32C36C !important; /* override default */
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;  /* circular */
    width: 35px;
    height: 35px;
    font-size: 22px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; /* clickable */
}

}


/* update csss */


/* Service Carousel Items */
.service-item {
    box-shadow: 0 8px 8px var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;

    overflow: hidden;
    border-radius: 30px;
    margin: 10px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--primary);
}

.service-item img {
    width: 100%;
    height: 200px;

    object-fit:fill;
}

/* Owl Dots */
.service-carousel .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 20px;
}

.service-carousel .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.service-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background: var(--primary);
    transition: background 0.3s;
}

.service-carousel .owl-dot.active span {
    background: #000;
}



.header-carousel {
    height: 580px; /* Ensure carousel container has fixed height */
}

.header-carousel .header-item {
    position: relative;
    height: 680px; /* Set the desired height for your banners */
    overflow: hidden;
}

.header-carousel .header-item .banner-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; /* Ensures image fully fills container without distortion */
    object-position: center; /* Center the image if cropped */
}

/* Banner title reveal animation with gradient colors - triggers when item becomes active */
/* .owl-item.active .banner-title {
    font-family: 'Dancing Script', cursive;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
    background: linear-gradient(90deg, yellow 50%, white 50%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    color: transparent !important;
    animation: dropIn 1s ease-out;
} */
 .banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.2;

    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;

    /* Gradient text */
    background: linear-gradient(
        90deg,
        #facc15 0%,
        #fde047 30%,
        #ffffff 70%,
        #e5e7eb 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* Remove inside stroke */
    -webkit-text-stroke: 0;

    /* OUTSIDE stroke using shadows */
    text-shadow:
        -2px -2px 0 rgba(20,20,20,0.6),
         0   -2px 0 rgba(20,20,20,0.6),
         2px -2px 0 rgba(20,20,20,0.6),
        -2px  0   0 rgba(20,20,20,0.6),
         2px  0   0 rgba(20,20,20,0.6),
        -2px  2px 0 rgba(20,20,20,0.6),
         0    2px 0 rgba(20,20,20,0.6),
         2px  2px 0 rgba(20,20,20,0.6),

        /* Soft depth */
        0 8px 22px rgba(0,0,0,0.35);

    /* Entrance animation */
    animation: bannerDropIn 1s cubic-bezier(0.22, 1, 0.36, 1);
}




@keyframes bannerDropIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.96);
        filter: blur(3px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}



@keyframes dropIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ✅ Force mobile adjustment */
@media (max-width: 798px) {
    .header-carousel {
        height: 250px !important;
    }

    .header-carousel .header-item {
        height: 540px !important;
    }

    .header-carousel .header-item .banner-img {
        height: 580px !important;  /* force the img also */
    }

    /* Also override Owl's inline height */
    .header-carousel .owl-item,
    .header-carousel .owl-stage,
    .header-carousel .owl-stage-outer {
        height: 591px !important;
    }
}

.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2); /* optional semi-transparent overlay */
}
/* ---------- BLOG CAROUSEL ---------- */
.blog-carousel .blog-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-carousel .blog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.blog-carousel .blog-img {
    width: 100%;
    height: 200px;
    object-fit: fill;
    transition: transform 0.4s ease;
}

.blog-carousel .blog-item:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 15px;
}

.blog-meta span {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 5px;
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
}

.blog-brief {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Owl Carousel Dots */
.blog-carousel .owl-dots {
    display: block !important; /* force horizontal dots */
    text-align: center;
    margin-top: 15px;
}

.blog-carousel .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.blog-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background: var(--primary);
    transition: background 0.3s;
}

/* .blog-carousel .owl-dot.active span {
    background: #000;
} */

.blog-content {
    padding: 15px;
}

.blog-meta span {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 5px;
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
}

.blog-brief {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

iframe{

    width: 100% !important;
}

/* ---------- GALLERY CAROUSEL ---------- */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: fill;
    display: block;
}

/* Owl Carousel Dots */
.gallery-carousel .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 15px;
}

.gallery-carousel .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.gallery-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background: var(--primary);
    transition: background 0.3s;
}

.gallery-carousel .owl-dot.active span {
    background: #000;
}
/* ---------- OFFERS CAROUSEL MODERN ---------- */
.offers-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff, #ffffff 50%);
    overflow: hidden;
}

.offers-section h6.text-gradient {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #32c36c, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offers-section h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0a7e8c;
    margin-bottom: 50px;
    text-shadow: 0 2px 5px rgba(37,117,252,0.1);
}

/* Carousel Item */
.offers-carousel .offer-item {
    padding: 15px;
}

/* Card Style */
.offer-card-modern {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    background: #ffffff;
}

.offer-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(37, 117, 252, 0.2);
}

/* Offer Image */
.offer-image-modern {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.offer-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.offer-card-modern:hover .offer-image-modern img {
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.1);
}

/* Offer Content */
.offer-content-modern {
    padding: 20px;
    text-align: center;
    position: relative;
}

.offer-title-modern {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2575fc;
    margin-bottom: 8px;
}

.offer-subtitle-modern {
    font-size: 0.95rem;
    color: #666;
    letter-spacing: 0.5px;
}

/* Floating Shapes for Modern Look */
.floating-shapes-modern .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatShapeModern 6s ease-in-out infinite alternate;
}

.shape1 {
    width: 80px;
    height: 80px;
    top: -20px;
    left: -20px;
    background: #32c36c;
}

.shape2 {
    width: 50px;
    height: 50px;
    bottom: -10px;
    right: -10px;
    background: #2575fc;
}

@keyframes floatShapeModern {
    0% { transform: translateY(0px) rotate(0deg);}
    50% { transform: translateY(15px) rotate(15deg);}
    100% { transform: translateY(-10px) rotate(-10deg);}
}

/* Owl Carousel Dots */
.offers-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.offers-carousel .owl-dot {
    display: inline-block;
    margin: 0 8px;
}

/* .offers-carousel .owl-dot span {
    width: 14px;
    height: 14px;
    display: inline-block;
    border-radius: 50%;
    background: rgba(37,117,252,0.3);
    transition: all 0.3s ease;
} */

/* .offers-carousel .owl-dot.active span {
    background: #32c36c;
    transform: scale(1.3);
} */

/* Responsive */
@media (max-width: 768px) {
    .offers-section { padding: 60px 0; }
    .offers-section h1 { font-size: 2.2rem; }
    .offer-image-modern { height: 180px; }
}

@media (max-width: 480px) {
    .offers-section h1 { font-size: 1.8rem; }
    .offer-image-modern { height: 160px; }
    .offer-card-modern { border-radius: 20px; }
}

.tabs-sec-image{

    border: 2px solid var(--primary) !important;
    box-shadow: 3px 6px 20px var(--primary) !important;
}


.about-image {
    width: 100%; /* take full width of the column */
    height: 480px; /* allow height to adjust automatically */
   
    object-fit: fill; /* maintain aspect ratio and cover container */
    border-radius: 40px;
    box-shadow: 3px 6px 20px var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional hover effect */
.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 6px 12px 30px var(--primary);
}



.about-page {
    width: 100%; /* take full width of the column */
    height: auto; /* allow height to adjust automatically */
    max-height: 440px; /* keeps desktop max height */
    object-fit: fill; /* maintain aspect ratio and cover container */
    border-radius: 40px;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional hover effect */
.about-page:hover {
    transform: translateY(-5px);
    box-shadow: 6px 12px 30px var(--primary);
}


/* About container padding */
.about-cont {
    padding: 20px;
}


html, body {
    overflow-x: hidden !important;
    width: 100%;
}
* {
    box-sizing: border-box;
}


.service-image {
    width: 100%; /* take full width of the column */
    height: auto; /* allow height to adjust automatically */
    max-height: 440px; /* keeps desktop max height */
    object-fit: fill; /* maintain aspect ratio and cover container */
    border-radius: 40px;
   box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);


    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional hover effect */
.service-image:hover {
    transform: translateY(-5px);
    box-shadow: 6px 12px 30px var(--primary);
}

.bread-title {
    font-size:40px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .about-image {
        border-radius: 25px;
        max-height: none; /* allow height to scale naturally */
    }

    .bread-title {
    font-size:24px;
}

        .about-page {
        border-radius: 25px;
        max-height: none; /* allow height to scale naturally */
    }


      .service-image {
        border-radius: 25px;
        max-height: none; /* allow height to scale naturally */
    }
    .about-cont {
        padding: 10px;
    }
}


/* Mobile adjustments */
@media (max-width: 768px) {
    .about-image {
        height: 250px !important; /* let height adjust automatically */
        border-radius: 25px;
        object-fit: fill;
        width: 100% !important; /* slightly smaller radius for small screens */
    }

    .about-cont {
        padding: 15px !important;
    }
}

.nav-col{

background-color: var(--primary) !important;
}


.foot-logo {
    height: 200px ;
    width: 300px !important;
    object-fit: fill; /* Stretches image to fill both height & width */
}
/* Mobile view adjustments */
@media (max-width: 768px) {
    .foot-logo {
            width: 100% !important;
        height: 201px;
        /* max-width: 250px; */
        margin: 0 auto;
        display: block;
        width: 235px;
    }


    .navbar-nav{

background-color: #ad720f !important;
}

}


.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar{

    height: 100px !important;
}

.desk-butt{

    padding-top: 37px !important;

}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.border-end {
    border-right: 0px solid #dee2e6 !important;
}

@media( max-width:796px){
    .navbar{

    height: 88px !important;
}

.navbar .navbar-brand, .navbar a.btn {
    height: 88px;
}

  .about-section {
    background: #ffffff;
 
    padding-top:276px  !important;

    position: relative;
    overflow: hidden;
    padding-bottom:49px !important;
}

}





/* screen 150% */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  
.navbar .navbar-nav .nav-link {
    position: relative;
    display: inline-block;
    padding: 0.75rem 2px;
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
    transition: color 0.3s 
ease;
}


.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-brand, .navbar a.btn {
    height: 76px;
}


}


/* screen 150% */

@media only screen and (min-width: 768px) and (max-width: 1200px) {
   
.navbar .navbar-nav .nav-link {
    position: relative;
    display: inline-block;
    padding: 0.75rem 2px;
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
    transition: color 0.3s 
ease;
}


.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}


.navbar .navbar-brand, .navbar a.btn {
    height: 76px;
}

}

/* screen 125% */

@media only screen and (min-width:  1200px) and (max-width: 1300px) {
     

.navbar .navbar-nav .nav-link {
    position: relative;
    display: inline-block;
    padding: 0.75rem 5px;
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
    transition: color 0.3s 
ease;
}


.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}


}

/* screen 110% */

@media only screen and (min-width:  1300px) and (max-width: 1400px) {
  

.navbar .navbar-nav .nav-link {
    position: relative;
    display: inline-block;
    padding: 0.75rem 9px;
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
    transition: color 0.3s 
ease;
}


.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}


}

/* screen 100% */

@media only screen and (min-width:  1400px) and (max-width: 1700px) {
    
/* .navbar .navbar-brand, .navbar a.btn {
    height: 88px;
} */

.get-call-cont{

}

get-call{

}


}
