   
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        html.is-loading body {
            overflow: hidden !important;
        }

        body.loading {
            overflow: hidden;
        }

        #page-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

        #page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

        .custom-navbar {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease 0.2s;
}

        body.loaded .custom-navbar {
    opacity: 1;
    pointer-events: auto;
        }

        .sticky-buttons {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease 0.2s;
}

        body.loaded .sticky-buttons {
    opacity: 1;
    pointer-events: auto;
        }

.loader-logo {
    width: 140px; /* increased size */
    animation: logoBounce 1.5s ease-in-out infinite;
}

/* Simple smooth animation */
@keyframes logoBounce {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

        /* navbar css */
        /* Navbar Base */
/* Nav link base */

/* Right hamburger icon */

/* RIGHT SIDE STICKY BUTTONS */
.sticky-buttons {
    position: fixed;
    right: 0;
    top: 35%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Common button style */
.sticky-btn {
    width: 70px;
    height: 70px;
    background: #2C79BB;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

/* Icon */
.sticky-btn span {
    font-size: 22px;
    margin-bottom: 4px;
}
/* Sticky buttons container */


/* WhatsApp logo */
.sticky-btn.whatsapp img {
    width: 35px;
    height: 42px;
    margin-bottom: 0px;
}

/* Text */


/* WhatsApp border accent */
.sticky-btn.whatsapp {
    color: rgb(15, 13, 13);
    background-color: white;
}


/* Hover effect */
.sticky-btn:hover {
    width: 90px;
}

/* nav dropdown */
/* ==============================
   SERVICES DROPDOWN (HOVER)
============================== */

.nav-services-dropdown {
    position: relative;
}

/* Dropdown box */
.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    padding: 18px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 9999;
    max-height: 320px;
    overflow-y: auto;
}

/* Show on hover */
.nav-services-dropdown:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.services-dropdown li a {
    display: block;
    padding: 10px 22px;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    text-align: left;
    transition: all 0.3s ease;
}

/* Hover effect */
.services-dropdown li a:hover {
    background: #2C79BB;
    color: #000;
}
.services-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.nav-services-dropdown:hover .services-icon {
    transform: rotate(180deg);
}

/* Prevent underline animation inside dropdown */
.services-dropdown li a::after {
    display: none;
}

@media (max-width: 991px) {
    .services-dropdown {
        display: block !important;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f5f5f5;
        padding: 12px 0;
        margin: 10px 0;
        max-height: auto;
        transition: all 0.3s ease;
        border-left: 4px solid #2C79BB;
        border-radius: 4px;
		 max-height: 260px;
        overflow-y: auto;
    }

    .services-dropdown li {
        list-style: none;
        margin: 0;
    }

    .services-dropdown li a {
        display: block;
        padding: 14px 30px;
        color: #333;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        text-align: left;
        transition: all 0.3s ease;
        background: transparent;
    }

    .services-dropdown li a:hover {
        background: #2C79BB;
        color: #fff;
        padding-left: 35px;
    }

    .services-dropdown li a.active {
        background: rgba(44, 121, 187, 0.15);
        color: #2C79BB;
        font-weight: 600;
        border-left: 3px solid #2C79BB;
        padding-left: 27px;
    }
}

/* Buy button color */
.sticky-btn.buy {
    background: #FAFAFA;
    color: black
}


.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 26px;
    height: 2px;
    background: #2C79BB;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background: #2C79BB;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}
/* Sidebar menu (hidden by default) */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: #ffffff;
        padding: 40px 25px;
        transition: right 0.4s ease;
        z-index: 1049;
    }

    /* When opened */
    .navbar-collapse.show {
        right: 0;
    }

    /* Nav links style inside sidebar */
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .navbar-nav .nav-link {
        color: #fff;
        font-size: 16px;
        padding: 5px 0;
    }

    .navbar-nav .nav-link.active {
        background: #2C79BB;
        color: #000;
        padding: 4px 10px;
        border-radius: 3px;
    }
}

.custom-navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;   /* IMPORTANT so content doesn't show behind */
}

.custom-navbar .nav-link {
    position: relative;
    color: #000;
    font-weight: 600;
    padding: 10px 16px;
    font-size: 19px;
    transition: color 0.3s ease;
    z-index: 1;
}

/* Yellow highlight */
.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0%;
    height: 35%;
    background: #2C79BB;
    border-radius: 4px;
    transform: translateX(-50%);
    z-index: -1;
    transition: width 0.3s ease;
}

/* Hover */
.custom-navbar .nav-link:hover::after {
    width: 100%;
}

/* Active */
.custom-navbar .nav-link.active::after {
    width: 100%;
}

/* Keep text color */
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #000;
}


@media (max-width: 991px) {
    .custom-navbar .nav-link::after {
        height: 40%;
        bottom: 8px;
    }
}

/* Navbar brand container */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

@media (max-width: 992px){
  .custom-toggler {
    display: none;
    
  }

}

/* Hide dropdown by default */
.services-dropdown {
    display: none;
}

/* Desktop hover (optional – keep if you want hover on desktop) */
@media (min-width: 992px) {
    .nav-services-dropdown:hover .services-dropdown {
        display: block;
    }
}

/* Mobile / Hamburger */
@media (max-width: 991px) {
    .services-dropdown {
        position: static;
        background: transparent;
        padding-left: 15px;
        margin-top: 8px;
    }

    .services-dropdown.show {
        display: block;
    }

    .services-dropdown li a {
        color: #000;
        font-size: 15px;
        padding: 6px 0;
        display: block;
        text-align: left;
    }

    .services-icon {
        transition: transform 0.3s ease;
    }

    .services-icon.rotate {
        transform: rotate(180deg);
    }
}


.line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2C79BB; /* Gold/Yellow color from image */
  transition: 0.3s;
}

/* Optional: Hover effect */
.custom-toggler:hover {
  background-color: #3A3A3A;
}

/* Logo image */
.navbar-brand img {
    max-height: 90px;        /* desktop height */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Tablet */
@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 60px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 48px;
    }
}


        /* Hero Slider */
        /* Initial state */
.slider-content h1 {
    opacity: 0;
    transform: translateY(-60px);
    transition: all 1s ease;
}

.slider-content p {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
    transition-delay: 0.6s;
}

/* Animate ONLY when slide becomes active */
.slider-item.active .slider-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.slider-item.active .slider-content p {
    opacity: 1;
    transform: translateY(0);
}


        .hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Overlay for darker effect */
.slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* Content Animation */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
}

.slide-content h1 {
    opacity: 0;
    transform: translateY(-60px);
    transition: all 1s ease;
}

.slide-content p,
.slide-content .btn {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
    transition-delay: 0.6s;
}

.slide-content.active h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content.active p,
.slide-content.active .btn {
    opacity: 1;
    transform: translateY(0);
}


/* Animations */
@keyframes fadeInTitle {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInContent {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 3;
}
/* Initial state for slide content */
.slide-content h1 {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease;
}

.slide-content p,
.slide-content .btn {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
    transition-delay: 1s; /* Wait for h1 to finish */
}

/* Active state */
.slide-content.active h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content.active p,
.slide-content.active .btn {
    opacity: 1;
    transform: translateY(0);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

        .hero-slider {
            position: relative;
            width: 100%;
            height: 80vh;
            overflow: hidden;
            background-color: #000;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slider-item {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .slider-item.active {
            opacity: 1;
        }

        .slider-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Overlay */
        .slider-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        /* Content */
        .slider-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            color: white;
            width: 90%;
            max-width: 800px;
        }

        .slider-content h1 {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: 2px;
            font-style: italic;
            text-transform: capitalize;
        }

        .slider-content p {
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 1px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        /* Navigation Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: #2C79BB;
            border: none;
            width: 50px;
            height: 50px;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;
            color: #faf5f5;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-arrow:hover {
            background-color: #2C79BB;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow.prev {
            left: 20px;
        }

        .slider-arrow.next {
            right: 20px;
        }

        /* Side Icons */
        .slider-icons {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .slider-icon-btn {
            width: 45px;
            height: 45px;
            background-color: #2C79BB;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #000;
        }

        .slider-icon-btn:hover {
            background-color: #2C79BB;
            transform: scale(1.1);
        }

        /* Indicators */
        .slider-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 12px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid white;
        }

        .indicator.active {
            background-color: white;
            width: 30px;
            border-radius: 6px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .slider-content h1 {
                font-size: 3.5rem;
            }

            .slider-content p {
                font-size: 1.2rem;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .slider-icon-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .slider-content h1 {
                font-size: 2rem;
            }

            .slider-content p {
                font-size: 1rem;
            }

            .slider-arrow {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .slider-icons {
                display: none;
            }
        }
    /* GLOBAL */
.travel-hero {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    overflow: hidden;
}

/* SEARCH BAR */
.search-bar {
    background: #2C79BB;
    padding: 60px 0;
    position: sticky;
    z-index: 1;
}

.search-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    flex-wrap: nowrap;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 30px; /* Reduced gap slightly for better fit */
    width: 100%;
    flex-wrap: nowrap; /* PC and Laptop should be nowrap */
}

/* Captcha in search bar */
.form-field-captcha {
    margin-bottom: 0px; 
    display: flex;
    align-items: center;
}



.search-item {
    flex: 1;
    position: relative;
    min-width: 150px; /* Reduced min-width to help fit in nowrap */
}

.search-item i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #F5F5F5;
}

.search-item input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #F5F5F5;
    padding: 10px 0 10px 25px;
    font-size: 15px;
    outline: none;
    color: #F5F5F5;
}

.search-item input::placeholder {
    color: #F5F5F5;
    font-weight: 500;
}

/* BUTTON */
.search-btn {
    background: #2B2B2B;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}
.search-btn:hover {
    background-color: transparent;
    color: black;
    border: 1px solid black;
}

/* HERO CONTENT */
.hero-content {
    max-width: 1300px;
    margin: auto;
    padding: 80px 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT TEXT */
.text-area {
    display: flex;
    gap: 30px;
}

.left-line {
    width: 3px;
    height: 150px;
    background: #000;
    margin-top: 10px;
    margin-left: 100px;
}

.text-content h1 {
    font-size: 48px;
    font-weight: 400;
    /* line-height: 1.25; */
    color: #000;
    margin-bottom: 25px;
}

.text-content .bold {
    font-weight: 800;
}

.text-content p {
    max-width: 520px;
    font-size: 16px;
    /* line-height: 1.7; */
    color: #666666;
}

/* GO TEXT */
.go-text {
     font-size: 235px;
    font-weight: 900;
    color: #2C79BB;
    /* line-height: 1; */
    letter-spacing: -15px;
    margin-right: -33px;
    margin-top: -600px;
    z-index: 0;
}
@media (max-width: 1199px) {
    .go-text {
        font-size: 170px;
        margin-top: -622px;
        margin-right: -20px;
        letter-spacing: -10px;
    }
}
@media (max-width: 991px) {
  .go-text{
        display: none;
    }
}
@media (max-width: 767px) {
    .go-text{
        display: none;
    }
}

@media (max-width: 992px) {
    .search-container {
        gap: 25px;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .go-text {
        font-size: 120px;
        align-self: flex-end;
    }
}

@media (max-width: 576px) {
    .text-content h1 {
        font-size: 34px;
    }

    .go-text {
        font-size: 90px;
    }
}


/* Button Styling */
.btn-primary {
    display: inline-block;
    background-color: #2B2B2B;
    color: white;
    padding: 12px 35px;
    border-radius: 50px; /* Rounded pill shape from image */
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: 30px;
}

.btn-primary:hover {
    background-color: #F5F5F5;
    color: #2C79BB;
    border: 1px solid #2C79BB;
}

/* Optional Decoration (Left Line) */
.text-area {
    display: flex;
    gap: 20px;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 130px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #333;
}

.arrow {
    color: #2C79BB;      /* blue arrow */
    font-size: 16px;
    margin-right: 8px;
}

/* ===============================
   BASE
================================ */
.blog-grid-section {
  padding: 60px 0;
  background: #ffffff;
}

.post-card {
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-card img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  padding: 20px;
  flex-grow: 1;
}

.post-card h4 {
  font-size: 18px;
  font-weight: 600;
  /* line-height: 1.4; */
  margin-bottom: 10px;
}

.post-meta {
  font-size: 13px;
  color: #666666;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.post-meta i {
  color: #2C79BB;
  margin-right: 5px;
}

/* ===============================
   YELLOW BOX
================================ */
.yellow-box {
   background: #2C79BB;
    padding: 30px;
}

.yellow-box h4,
.yellow-box .post-meta {
  color: #000;
}

.box-icon {
  background: #000;
  color: #2C79BB;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 15px;
}

/* ===============================
   QUOTE BOX
================================ */
.quote-box {
  border: 2px dashed #2C79BB;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  font-size: 36px;
  color: #2C79BB;
  /* line-height: 1; */
  margin-bottom: 15px;
}

/* ===============================
   DESKTOP (>=1200px)
================================ */
@media (min-width: 1200px) {
  .post-card h4 {
    font-size: 19px;
  }
}

/* ===============================
   LAPTOP & TABLET (â‰¤991px)
================================ */
@media (max-width: 991px) {
  .blog-grid-section {
    padding: 50px 0;
  }

  .post-card h4 {
    font-size: 17px;
  }

  .yellow-box,
  .quote-box {
    padding: 25px;
  }
}

/* ===============================
   TABLET (â‰¤768px)
================================ */
@media (max-width: 768px) {
  .post-meta {
    gap: 10px;
    font-size: 12px;
  }

  .box-icon {
    width: 34px;
    height: 34px;
  }
}

/* ===============================
   MOBILE (â‰¤576px)
================================ */
@media (max-width: 576px) {
  .blog-grid-section {
    padding: 40px 0;
  }

  .post-card h4 {
    font-size: 16px;
  }

  .post-content {
    padding: 15px;
  }

  .yellow-box,
  .quote-box {
    padding: 20px;
  }

  .quote-mark {
    font-size: 30px;
  }

  .post-meta {
    flex-direction: column;
    gap: 5px;
  }
}


/* ===============================
   FULL BACKGROUND SECTION
================================ */
.services-bg {
  position: relative;
  background: white;
  padding: 120px 0 90px;
}

/* DARK OVERLAY */
.services-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  
  z-index: 1;
}

/* KEEP CONTENT ABOVE OVERLAY */
.services-bg > * {
  position: relative;
  z-index: 2;
}

/* ===============================
   TITLE AREA
================================ */
.services-title {
  margin-bottom: 3%;
}

.section-badge {
  display: inline-block;
  background: #3A3A3A;
  color: #2C79BB;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.services-title h2 {
  color: #3A3A3A;
  font-size: 44px;
  font-weight: 700;
  /* line-height: 1.3; */
  max-width: 950px;
  margin: 0 auto;
}

/* ===============================
   CARD VISIBILITY ON BG
================================ */
.blog-grid-section .post-card {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .services-bg {
    padding: 90px 0 70px;
  }

  .services-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .services-bg {
    padding: 70px 0 60px;
  }

  .services-title h2 {
    font-size: 26px;
  }

  .section-badge {
    font-size: 13px;
    padding: 6px 18px;
  }
}

/* ==============================
   BOOKING SECTION BACKGROUND
============================== */
.booking {
  position: relative;
  background: url("../img/map.png") center center / cover no-repeat;
  border-radius: 0;
  overflow: hidden;
}

/* Blue overlay */
.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(115, 116, 117, 0.85),
    rgba(111, 112, 114, 0.6)
  );
  z-index: 1;
}

/* Keep content above overlay */
.booking > * {
  position: relative;
  z-index: 2;
}

/* ==============================
   LEFT CONTENT
============================== */
.service-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.service-text {
    flex: 1.2;
}

.service-form {
    flex: 1;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .service-container {
        flex-direction: column;
    }

    .service-image img {
        height: 250px;
    }
}

.booking h6 {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
}

.booking h1 {
  font-size: 44px;
  font-weight: 700;
  /* line-height: 1.2; */
  color: black!important;
}

.booking p {
  font-size: 16px;
  /* line-height: 1.7; */
  color: rgba(255, 255, 255, 0.9);
}

/* CTA buttons */


/* ==============================
   RIGHT FORM CARD
============================== */
.booking .bg-white {
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.booking .bg-white h1 {
  font-size: 30px;
  font-weight: 700;
  color: #2C79BB;
}

/* Inputs */
.form-control {
  border: 1px solid #E0E0E0;
  border-radius: 4px;
}

.form-floating label {
  color: #666666;
}

.form-control:focus {
  box-shadow: none;
  border-color: #2C79BB;
}

/* Submit button */
.booking button.btn-primary {
  background: #2B2B2B;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  color: #fff; /* make text white */
  transition: all 0.3s ease; /* smooth hover */
}

.booking button
.btn-primary:hover {
  background: #f0f1f3;
  color: black;
  border: 1px solid black;
  cursor: pointer;
}


/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 991px) {
  .booking h1 {
    font-size: 34px;
  }

  .booking {
    padding: 40px 20px;
  }
}

@media (max-width: 767px) {
  .cta-buttons {
    flex-direction: column;
  }

  .booking h1 {
    font-size: 28px;
  }
}


/* CONTAINER */
.cta-buttons {
    display: flex;
    gap: 15px; /* space between buttons */
    margin-top: 25px;
}

/* PRIMARY BUTTON */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2C79BB;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* .btn-primary:hover {
    background-color: #f0f1f3;
    color: black;
    border: 1px solid black;
    cursor: pointer;
} */

/* SECONDARY BUTTON */
.btn-secondary {
       display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #2C79BB;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #2C79BB;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1B5E8F;
    color: #fff;
    cursor: pointer;
    border: none;
}


/* gallary */
.travel-gallery {
  padding: 0px 60px 40px;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense; /* ðŸ”¥ THIS FILLS GAPS */
  gap: 20px;
}


.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sizes */
.gallery-item.small {
  grid-column: span 1;
}

.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.content-card {
  grid-column: span 2;
  background: #fff;
  padding: 40px;
  border: 2px dashed #2C79BB;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Sizes */
.gallery-item.small {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 3;
  grid-row: span 1;
}


/* Content Card Styling */
.content-card {
  grid-column: span 2;
  grid-row: span 1;
  background: #fff;
  border: 2px dashed #2C79BB;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.content-card .price {
  color: #3A3A3A;
  font-weight: bold;
  margin-bottom: 15px;
}

.content-card a {
  margin-top: 10px;
  color: #2C79BB;
  font-weight: 600;
  text-decoration: none;
}


/* Price Tag on Image */
.price-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.price-tag span {
  color: #2C79BB;
  font-weight: bold;
}

/* Hover Effect */
.gallery-item img {
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.big,
  .gallery-item.wide,
  .gallery-item.content-card {
    grid-column: span 2;
  }
}






/* footer css */


/* ===== FOOTER BASE ===== */
footer {
  background: #3f3f3f;
  color: #FFFFFF;
  padding: 70px 0 30px;
  font-size: 15px;
}

/* ===== TEXT ===== */
footer h4,
footer h5 {
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-description {
  color: #fff;
  /* line-height: 1.7; */
}

/* ===== LINKS ===== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #2C79BB;
  padding-left: 5px;
}

/* ===== SOCIAL ICONS ===== */
.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 8px;
  border-radius: 50%;
  background: #3A3A3A;
  color: #2C79BB;
  font-size: 15px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #2C79BB;
  color: #FFFFFF;
}

/* ===== CONTACT INFO ===== */
.footer-contact-links li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
}

.footer-contact-links i {
  color: #2C79BB;
  margin-top: 4px;
  min-width: 18px;
}

/* ===== LOGO ===== */
.footer-logo img {
  max-width: 100%;
  background-color: #fff;
  border-radius: 15px;
}

/* ===== COPYRIGHT ===== */
.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #E0E0E0;
}

.copyright p {
  font-size: 14px;
}

.copyright a:hover {
  color:#2C79BB!important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  footer {
    text-align: center;
  }

  .footer-contact-links li {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  footer {
    padding: 50px 0 25px;
  }

  footer h4,
  footer h5 {
    font-size: 18px;
  }

  .copyright {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.text-light{
    color:#2C79BB !important;
}


.trust-section {
    position: relative;
    padding: 100px 0;
    background: url("assests/car.jpg") center/cover no-repeat;
    color: #2C79BB;
}

.trust-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(43 43 41 / 87%), rgb(117 90 90 / 72%));
}

.trust-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 60px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-item i {
    font-size: 34px;
    margin-bottom: 10px;
}

.trust-item h4 {
    font-size: 18px;
    font-weight: 600;
}

.trust-item p {
    font-size: 14px;
    /* line-height: 1.7; */
    opacity: 0.95;
}

/* -------- RESPONSIVE -------- */

/* Tablet */
@media (max-width: 992px) {
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .trust-section {
        padding: 60px 0;
    }

    .trust-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-item i {
        font-size: 28px;
    }

    .trust-item h4 {
        font-size: 16px;
    }

    .trust-item p {
        font-size: 13px;
    }
}
/* =========================
   SMALL MOBILE (â‰¤360px)
========================= */
@media (max-width: 400px) {

  /* NAVBAR */
  .custom-navbar .nav-link {
    font-size: 14px;
    padding: 8px 12px;
  }

  .navbar-brand img {
    max-height: 42px;
  }

  /* HERO SLIDER */
  .slider-content h1,
  .slide-content h1 {
    font-size: 1.6rem;
    /* line-height: 1.3; */
  }

  .slider-content p,
  .slide-content p {
    font-size: 0.95rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 22px;
    font-size: 14px;
  }

  /* SEARCH BAR */
  .search-bar {
    padding: 40px 15px;
  }

  .search-item input {
    font-size: 13px;
  }

  .search-btn {
    padding: 12px 30px;
    font-size: 13px;
  }

  /* HERO TEXT SECTION */
  .text-content h1 {
    font-size: 28px;
  }

  .text-content p {
    font-size: 14px;
  }

  .left-line {
    display: none;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.big,
  .gallery-item.wide,
  .gallery-item.content-card {
    grid-column: span 1;
  }

  .content-card {
    padding: 20px;
  }

  /* TRUST SECTION */
  .trust-container {
    gap: 25px;
  }

  .trust-item h4 {
    font-size: 15px;
  }

  .trust-item p {
    font-size: 13px;
  }

  /* BOOKING SECTION */
  .booking h1 {
    font-size: 24px;
  }

  .booking p {
    font-size: 14px;
  }

  /* FOOTER */
  footer {
    padding: 40px 0 20px;
  }

  footer h4,
  footer h5 {
    font-size: 16px;
  }

  .footer-description,
  footer p {
    font-size: 13px;
  }
}
/* ===============================
   MOBILE FIX (â‰¤500px)
================================ */
@media (max-width: 500px) {

  /* HERO CONTAINER */
  .hero-content {
    padding: 40px 15px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  /* TEXT AREA */
  .text-area {
    gap: 15px;
  }

  /* REMOVE LEFT LINE */
  .left-line {
    display: none;
  }

  /* TEXT */
  .text-content h1 {
    font-size: 28px;
    /* line-height: 1.3; */
  }

  .text-content p {
    font-size: 14px;
    max-width: 100%;
  }

  /* BUTTON */
  .btn-primary {
    padding: 10px 26px;
    font-size: 14px;
  }

  /* BIG GO TEXT */
  .go-text {
    display: none;
  }

  /* FEATURES GRID */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 10px;
  }

  .feature-item {
    font-size: 14px;
  }

  .arrow {
    font-size: 14px;
  }
}



.services-bg {
  padding: 80px 40px;
}

/* MASONRY GRID */
/* .masonry {
  column-count: 4;
  column-gap: 30px;
} */

/* CARD */
.card {
  break-inside: avoid;
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

/* IMAGE CARD */
.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.meta {
  font-size: 13px;
  color: #666666;
}

/* YELLOW CARD */
.yellow {
  background: #2C79BB;
  padding: 30px;
}

.yellow .icon {
  width: 42px;
  height: 42px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* QUOTE CARD */
.quote {
  padding: 30px;
  border: 2px dashed #2C79BB;
}

.quote span {
  font-size: 40px;
  color: #2C79BB;
  display: block;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .masonry { column-count: 3; }
}

@media (max-width: 768px) {
  .masonry { column-count: 2; }
}

@media (max-width: 480px) {
  .masonry { column-count: 1; }
}
.trust-title {
    text-align: center;
    margin: 30px 0;
    position: relative;
    overflow: hidden; /* prevents overflow on small screens */
}

.trust-title span {
    position: relative;
    color: #3A3A3A;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 25px;
    display: inline-block;
}

/* LEFT & RIGHT LINES (default desktop) */
.trust-title span::before,
.trust-title span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 70px;
    height: 6px;
    background: linear-gradient(
        to bottom,
        #2C79BB 0%,
        #2C79BB 45%,
        #3A3A3A 45%,
        #2B2B2B 100%
    );
}

.trust-title span::before {
    left: -90px;
}

.trust-title span::after {
    right: -90px;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 768px) {
    .trust-title span {
        font-size: 14px;
        padding: 0 18px;
    }

    .trust-title span::before,
    .trust-title span::after {
        width: 45px;
        height: 5px;
    }

    .trust-title span::before {
        left: -60px;
    }

    .trust-title span::after {
        right: -60px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .trust-title span {
        font-size: 13px;
        letter-spacing: 0.5px;
        padding: 0 12px;
    }

    /* hide lines on very small screens */
    .trust-title span::before,
    .trust-title span::after {
        display: none;
    }
}

/* RIGHT IMAGE AREA */
.hero-images {
    position: absolute;
    width: 520px;
    min-width: 520px;
    height: 520px;
    left: 820px;
    margin-top: 130px;
}

/* BIG IMAGE (TOP) */
.img-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 360px;
    height: 360px;
    border-radius: 18px;
    overflow: hidden;
}

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

/* SMALL IMAGE (BOTTOM RIGHT) */
.img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

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

/* EXPERIENCE BOX */
.experience-box {
    position: absolute;
     bottom: 35px;
    left: 25px;
    background: #2B2B2B;
    color: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.experience-box h3 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.experience-box p {
    font-size: 14px;
    margin: 0;
}
/* RESPONSIVE CONTROL */
@media (max-width: 1100px) {

    /* Hide image section completely */
    .hero-images {
        display: none;
    }

    /* Expand text area to full width */
    .hero-content {
        padding-right: 0;
    }

    .hero-text {
        max-width: 100%;
    }
}
@media (max-width: 1350px){
  .hero-images {
    position: absolute;
    width: 520px;
    min-width: 493px;
    height: 444px;
    left: 700px;
    margin-top: 130px;
}
.experience-box {position: absolute;
        bottom: 15px;
    left: 25px;

    padding: 1px 20px;
}
 

}

@media (max-width: 1225px){

    .hero-images {position: absolute;
        width: 444px;
        min-width: 493px;
        height: 364px;
        left: 645px;
        margin-top: 130px;
    }
    .experience-box{
      display: none;
    }
}
  

  /* about page  */
/* ===== ABOUT PAGE ONLY ===== */
/* ================= ABOUT PAGE ================= */


.abt-hero {
    position: relative;
    height: 50vh;
}

.abt-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.abt-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.abt-hero-content h1 {
    font-size: 48px;        /* same scale as home hero headings */
    font-weight: 700;
    margin-bottom: 10px;
}
.abt-hero-content span {
    font-size: 16px;
    letter-spacing: 1px;
}

/* Breadcrumb */
.abt-breadcrumb {
    font-size: 15px;
    letter-spacing: 0.5px;
}

.abt-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* Hover underline animation */
.abt-breadcrumb a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #2C79BB;
    transition: width 0.3s ease;
}

.abt-breadcrumb a:hover {
    color: #2C79BB;
}

.abt-breadcrumb a:hover::after {
    width: 100%;
}

/* Separator */
.abt-separator {
    margin: 0 8px;
    opacity: 0.8;
}

/* Current page */
.abt-current {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .abt-hero {
        height: 45vh;
    }

    .abt-hero-content h1 {
        font-size: 32px;
    }

    .abt-breadcrumb {
        font-size: 14px;
    }
}

.abt-carousel-wrapper {
    touch-action: pan-y;
}

.abt-carousel-track {
    display: flex;
    gap: 30px;
    will-change: transform;
}

/* INTRO */
.abt-intro {
    padding: 100px 20px;
}
.abt-intro-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
}
.abt-intro-image img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 16px;
}



/* PURPOSE */

.abt-purpose {
    position: relative;
    padding: 120px 20px;
    background-image: url("../img/gurl-sitting.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark overlay for readability */
.abt-purpose::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}
@media (max-width: 768px) {
    .abt-purpose {
        background-attachment: scroll;
    }
}


/* Keep content above overlay */
.abt-purpose-grid {
    position: relative;
    z-index: 2;
}

/* Cards styling refinement for dark bg */
.abt-purpose-card {
    background: rgba(255, 255, 255, 0.95);
    border-left: 6px solid #2C79BB;
}
.abt-purpose {
    padding: 100px 20px;
}
.abt-purpose-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.abt-purpose-card {
    padding: 40px;
    background: #fff;
    border-left: 6px solid #2C79BB;
}

/* VALUES */
/* ==========================
   CORE VALUES â€“ AUTO CAROUSEL
========================== */

.abt-values {
    padding: 100px 20px;
    background: #fff;
}

.abt-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
}

/* Wrapper */
.abt-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

/* Viewport */
.abt-carousel-viewport {
    overflow: hidden;
}

/* Track */
.abt-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

/* Card */
.abt-value-card {
    flex: 0 0 calc(33.333% - 20px);
    height: 320px; /* SAME HEIGHT FOR ALL */
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    background: #000;
}

.abt-value-overlay {
    position: absolute;
    inset: 0;
    padding: 26px 24px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.85)
    );
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.abt-value-overlay p {
    font-size: 15px;
    /* line-height: 1.6; */
    opacity: 0.95;
}

.abt-value-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-value-card span {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.75));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* Buttons */
.abt-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    background: #2C79BB;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.abt-carousel-btn.prev { left: -10px; }
.abt-carousel-btn.next { right: -10px; }

/* ==========================
   RESPONSIVE BREAKPOINTS
========================== */

@media (max-width: 991px) {
    .abt-value-card {
        flex: 0 0 calc(50% - 15px);
        height: 300px;
    }
}

@media (max-width: 576px) {
   .abt-value-card {
        flex: 0 0 100%;
        height: 280px;
    }

    .abt-section-title {
        font-size: 32px;
    }
}

/* CHOOSE */
.abt-choose {
    padding: 100px 20px;
}
.abt-choose-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.abt-choose-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
}

/* ANIMATIONS */
.fade-up { animation: fadeUp 1s ease both; }
.fade-in { animation: fadeIn 1.2s ease both; }
.slide-left { animation: slideLeft 1s ease both; }
.slide-right { animation: slideRight 1s ease both; }

@keyframes fadeUp {
    from { opacity:0; transform:translateY(40px); }
    to { opacity:1; }
}
@keyframes fadeIn {
    from { opacity:0; }
    to { opacity:1; }
}
@keyframes slideLeft {
    from { opacity:0; transform:translateX(-40px); }
    to { opacity:1; }
}
@keyframes slideRight {
    from { opacity:0; transform:translateX(40px); }
    to { opacity:1; }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .abt-intro-grid,
    .abt-purpose-grid,
    .abt-choose-grid {
        grid-template-columns: 1fr;
    }
    .abt-mosaic-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .abt-values-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width: 576px) {
    .abt-mosaic-grid,
    .abt-values-grid {
        grid-template-columns: 1fr;
    }
    .abt-hero-content h1 {
        font-size: 32px;
    }
}
.abt-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
    will-change: transform;
}

/* about page ends */

/* contact us starts */
/* ================= CONTACT PAGE ================= */

.contact-page {
    padding: 100px 20px;
    background: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT INFO */
.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.contact-block {
    margin-bottom: 25px;
}

.contact-block h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-block i {
    color: #2C79BB;
    margin-right: 8px;
}

.contact-block p {
    font-size: 15px;
    color: #3A3A3A;
    /* line-height: 1.6; */
}

/* FORM BOX */
.contact-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* CAPTCHA */
.recaptcha-box {
    border: 1px solid #E0E0E0;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* BUTTON */
.contact-btn {
    width: 100%;
    padding: 14px;
    background: #2C79BB;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

.contact-btn:hover {
    background: #1B5E8F;
}

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* CONTACT INFO LINKS */

.contact-block a {
    font-size: 15px;
    color: #2C79BB;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
    transition: all 0.3s ease;
}

/* Hover effect */
.contact-block a:hover {
    color: #1B5E8F;
    text-decoration: none;
}

/* Optional: icon alignment polish */
.contact-block h4 {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Spacing consistency */
.contact-block p {
    margin: 4px 0 0;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-page {
        padding: 70px 15px;
    }
}

/* contact us ends */

/* services starts */
/* ================= CONTENT ================= */
.service-content {
    padding: 100px 20px;
}

.service-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

/* LEFT SIDE */
.service-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
}

/* TEXT */
.service-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-text p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 18px;
}

/* WHATSAPP CTA (NEW STYLE) */
.whatsapp-box {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #f5fff9;
    border-left: 5px solid #25D366;
    border-radius: 8px;
}

.whatsapp-box i {
    font-size: 34px;
    color: #25D366;
}

.whatsapp-text span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.whatsapp-text a {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    padding: 10px 18px;
    background: #25D366;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.whatsapp-btn i {
    font-size: 18px;
}
.whatsapp-btn .bi-whatsapp{
    color: #fff;
}

.whatsapp-btn:hover {
    background: #ffffff;
    border: 1px solid #25D366;
    color: #25D366;
    transform: translateY(-1px);
}

.whatsapp-btn:hover i {
    color: #25D366;
}

/* FORM */
.service-form {
    background: aliceblue;
    border: 2px solid #c4def5 !important;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.service-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.service-form input,
.service-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.service-form button {
    width: 100%;
    padding: 14px;
    background: #2C79BB;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

.service-form button:hover {
    background: #1B5E8F;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .service-container {
        grid-template-columns: 1fr;
    }

    .service-form {
        position: relative;
        top: 0;
    }
}


/* services ends */

/* ================= GALLERY PAGE STYLES ================= */

/* ===============================================
   COMPREHENSIVE RESPONSIVE FIXES
   Mobile, Tablet, and Small-Screen Optimization
   =============================================== */

/* =========================================
   STICKY BUTTONS - TABLET & MOBILE FIX
   ========================================= */
@media (max-width: 1024px) {
    .sticky-buttons {
        right: 5px;
        top: 40%;
        gap: 8px;
    }

    .sticky-btn {
        width: 55px;
        height: 55px;
        font-size: 10px;
    }

    .sticky-btn span {
        font-size: 18px;
    }

    .sticky-btn.whatsapp img {
        width: 28px;
        height: 35px;
    }

    .sticky-btn:hover {
        width: 75px;
    }
}

@media (max-width: 768px) {
    .sticky-buttons {
        right: 0;
        top: 45%;
        gap: 6px;
    }

    .sticky-btn {
        width: 48px;
        height: 48px;
        font-size: 9px;
        border-radius: 6px 0 0 6px;
    }

    .sticky-btn span {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .sticky-btn:hover {
        width: 65px;
    }
}

@media (max-width: 576px) {
    .sticky-buttons {
        display: none;
    }
}

/* =========================================
   NAVBAR - RESPONSIVE IMPROVEMENTS
   ========================================= */
@media (max-width: 1024px) {
    .custom-navbar .nav-link {
        font-size: 17px;
        padding: 8px 12px;
    }

    .navbar-brand img {
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        right: -100% !important;
        width: 280px;
        padding: 30px 20px;
    }

    .navbar-collapse.show {
        right: 0 !important;
    }

    .navbar-nav {
        gap: 12px;
    }

    .navbar-nav .nav-link {
        font-size: 15px;
        padding: 8px 0;
    }

    .custom-navbar .nav-link {
        font-size: 15px;
        padding: 8px 10px;
    }

    .navbar-brand img {
        max-height: 55px;
    }
}

@media (max-width: 576px) {
    .navbar-collapse {
        width: 75vw;
        padding: 20px 15px;
    }

    .navbar-brand img {
        max-height: 48px;
    }

    .custom-navbar .nav-link {
        font-size: 14px;
        padding: 6px 8px;
    }
}

/* =========================================
   HERO SLIDER - MOBILE TEXT OPTIMIZATION
   ========================================= */
@media (max-width: 1024px) {
    .hero-slider {
        height: 70vh;
    }

    .slider-content h1 {
        font-size: 3.5rem;
    }

    .slider-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slider-content h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .slider-content p {
        font-size: 1.1rem;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 50vh;
        min-height: 320px;
    }

    .slider-content h1 {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }

    .slider-content p {
        font-size: 0.95rem;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .slider-icons {
        display: none !important;
    }

    .slider-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 25px;
    }
}

/* =========================================
   SEARCH BAR - RESPONSIVE LAYOUT
   ========================================= */
@media (max-width: 1250px) {
    .search-container {
        gap: 20px;
        padding: 0 15px;
    }
    
    .search-form {
        gap: 15px;
        flex-wrap: nowrap; /* Keep nowrap as requested for pc/laptop range */
        justify-content: center;
    }

    .search-item {
        flex: 1 1 auto;
        min-width: 120px;
    }

    .form-field-captcha {
        flex: 0 0 auto;
    }

    .search-btn {
        flex: 0 0 auto;
        padding: 12px 25px;
    }
}

@media (max-width: 1024px) {
    .search-form {
        flex-wrap: wrap; /* Start wrapping on smaller tablets/mobiles */
        gap: 20px;
    }
    .search-item {
        flex: 1 1 calc(50% - 10px);
        min-width: 180px;
    }
    .form-field-captcha {
        flex: 1 1 100%;
        justify-content: center;
    }
    .search-btn {
        flex: 1 1 100%;
    }
}


@media (max-width: 991px) {
    .search-item {
        flex: 1 1 calc(50% - 20px);
    }
    .form-field-captcha {
        flex: 1 1 100%;
    }
    .search-btn {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .search-bar {
        padding: 40px 0;
    }

    .search-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .search-form {
        flex-direction: column;
        gap: 25px;
        align-items: stretch;
    }

    .search-item {
        flex: 0 0 auto;
        width: 100%;
    }

    .search-item input {
        font-size: 14px;
        padding: 10px 0 10px 25px;
    }

    .form-field-captcha {
        flex: 0 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
        overflow-x: auto; /* Handle captcha overflow on small screens */
    }

    .search-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
}


@media (max-width: 576px) {
    .search-bar {
        padding: 30px 0;
    }

    .search-container {
        padding: 0 12px;
        gap: 15px;
    }

    .search-item input {
        font-size: 13px;
        padding: 8px 0 8px 18px;
    }

    .search-item i {
        font-size: 12px;
    }

    .search-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}

/* =========================================
   HERO CONTENT - TEXT AREA RESPONSIVENESS
   ========================================= */
@media (max-width: 1024px) {
    .text-content h1 {
        font-size: 40px;
    }

    .text-content p {
        font-size: 15px;
        max-width: 100%;
    }

    .left-line {
        display: none;
    }

    .text-area {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 50px 20px 0;
        gap: 30px;
    }

    .text-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .text-content p {
        font-size: 14px;
        max-width: 100%;
    }

    .btn-primary {
        padding: 10px 30px;
        font-size: 14px;
        margin-top: 20px;
    }

    .features-grid {
        gap: 10px 40px;
    }

    .feature-item {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 35px 15px 0;
        flex-direction: column;
        align-items: stretch;
    }

    .text-content h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .text-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .left-line {
        display: none;
    }

    .text-area {
        flex-direction: column;
        gap: 0;
    }

    .btn-primary {
        padding: 10px 25px;
        font-size: 13px;
        margin-top: 15px;
        width: fit-content;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-item {
        font-size: 13px;
    }

    .arrow {
        font-size: 14px;
        margin-right: 6px;
    }
}

/* =========================================
   BLOG/POST CARDS - BETTER RESPONSIVENESS
   ========================================= */
@media (max-width: 1024px) {
    .blog-grid-section {
        padding: 50px 20px;
    }

    .post-card h4 {
        font-size: 17px;
    }

    .post-content {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .blog-grid-section {
        padding: 40px 15px;
    }

    .post-card h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .post-content {
        padding: 15px;
    }

    .post-meta {
        gap: 12px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .blog-grid-section {
        padding: 30px 10px;
    }

    .post-card h4 {
        font-size: 15px;
    }

    .post-content {
        padding: 12px;
    }

    .post-meta {
        gap: 8px;
        font-size: 11px;
        flex-direction: column;
    }
}

/* =========================================
   SERVICES SECTION - RESPONSIVE CARDS
   ========================================= */
@media (max-width: 1024px) {
    .services-bg {
        padding: 80px 20px 70px;
    }

    .services-title h2 {
        font-size: 36px;
    }

    .section-badge {
        font-size: 13px;
        padding: 7px 18px;
    }

    .masonry {
        column-count: 3;
        column-gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-bg {
        padding: 60px 15px 50px;
    }

    .services-title h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .masonry {
        column-count: 2;
        column-gap: 15px;
    }

    .card img {
        height: 220px;
    }

    .card-content {
        padding: 15px;
    }

    .card-content h4 {
        font-size: 16px;
    }

    .meta {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .services-bg {
        padding: 50px 12px 40px;
    }

    .services-title h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .section-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .masonry {
        column-count: 1;
        column-gap: 0;
    }

    .card {
        margin-bottom: 20px;
    }

    .card img {
        height: 200px;
    }

    .card-content {
        padding: 12px;
    }

    .card-content h4 {
        font-size: 15px;
    }

    .meta {
        font-size: 11px;
    }

    .yellow {
        padding: 20px;
    }

    .yellow .icon {
        width: 36px;
        height: 36px;
    }

    .quote {
        padding: 20px;
    }

    .quote span {
        font-size: 32px;
    }
}

/* =========================================
   BOOKING SECTION - FORM RESPONSIVENESS
   ========================================= */
@media (max-width: 1024px) {
    .service-container {
        gap: 40px;
    }

    .service-image img {
        height: 280px;
    }

    .booking h1 {
        font-size: 36px;
    }

    .booking p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
        gap: 30px;
    }

    .service-image {
        flex: 1;
    }

    .service-image img {
        height: 240px;
        width: 100%;
    }

    .service-text {
        flex: 1;
    }

    .service-form {
        position: relative;
        top: 0;
        flex: 1;
        padding: 25px;
        sticky: unset;
    }

    .booking h1 {
        font-size: 28px;
    }

    .booking h6 {
        font-size: 13px;
    }

    .booking p {
        font-size: 14px;
    }

    .booking .bg-white {
        padding: 25px;
    }

    .booking .bg-white h1 {
        font-size: 24px;
    }

    .form-control {
        padding: 12px;
        font-size: 13px;
    }

    .form-row {
        gap: 12px;
    }

    .whatsapp-box {
        padding: 14px 15px;
        flex-wrap: wrap;
    }

    .whatsapp-box i {
        font-size: 28px;
    }

    .whatsapp-text span {
        font-size: 16px;
    }

    .whatsapp-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .service-container {
        gap: 20px;
    }

    .service-image img {
        height: 200px;
    }

    .service-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service-text p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .service-form {
        padding: 20px;
        border-radius: 8px;
    }

    .service-form h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .service-form input,
    .service-form textarea {
        padding: 10px;
        font-size: 13px;
        margin-bottom: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .booking {
        padding: 30px 15px;
    }

    .booking h1 {
        font-size: 24px;
    }

    .booking h6 {
        font-size: 12px;
    }

    .booking p {
        font-size: 13px;
    }

    .booking .bg-white {
        padding: 20px;
    }

    .booking .bg-white h1 {
        font-size: 20px;
    }

    .form-control {
        padding: 10px;
        font-size: 12px;
    }

    .booking button.btn-primary {
        padding: 10px;
        font-size: 14px;
    }

    .whatsapp-box {
        padding: 12px;
        gap: 10px;
    }

    .whatsapp-box i {
        font-size: 24px;
    }

    .whatsapp-text span {
        font-size: 14px;
    }

    .whatsapp-btn {
        padding: 8px 12px;
        font-size: 12px;
        margin-top: 8px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* =========================================
   TRUST SECTION - GRID RESPONSIVENESS
   ========================================= */
@media (max-width: 1024px) {
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 50px;
        padding: 0 15px;
    }

    .trust-item h4 {
        font-size: 17px;
    }

    .trust-item p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 70px 0;
    }

    .trust-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .trust-item i {
        font-size: 30px;
    }

    .trust-item h4 {
        font-size: 16px;
    }

    .trust-item p {
        font-size: 13px;
        line-height: 1.6;
    }

    .trust-title span {
        font-size: 15px;
        padding: 0 15px;
    }

    .trust-title span::before,
    .trust-title span::after {
        width: 40px;
        height: 5px;
    }

    .trust-title span::before {
        left: -50px;
    }

    .trust-title span::after {
        right: -50px;
    }
}

@media (max-width: 576px) {
    .trust-section {
        padding: 50px 0;
    }

    .trust-container {
        gap: 20px;
        padding: 0 12px;
    }

    .trust-item {
        gap: 8px;
    }

    .trust-item i {
        font-size: 26px;
        margin-bottom: 6px;
    }

    .trust-item h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .trust-item p {
        font-size: 12px;
    }

    .trust-title span {
        font-size: 13px;
        letter-spacing: 0.3px;
        padding: 0 10px;
    }

    .trust-title span::before,
    .trust-title span::after {
        display: none;
    }
}

/* =========================================
   CONTACT FORM - RESPONSIVENESS
   ========================================= */
@media (max-width: 1024px) {
    .contact-container {
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-form-box {
        padding: 30px;
    }

    .form-row {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 60px 15px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info h2 {
        font-size: 24px;
    }

    .contact-desc {
        font-size: 14px;
    }

    .contact-block {
        margin-bottom: 20px;
    }

    .contact-block h4 {
        font-size: 15px;
    }

    .contact-block p {
        font-size: 14px;
    }

    .contact-form-box {
        padding: 25px;
    }

    .contact-form-box h3 {
        font-size: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 13px;
    }

    .form-row {
        gap: 10px;
    }

    .contact-map iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding: 40px 12px;
    }

    .contact-info h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .contact-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .contact-block {
        margin-bottom: 15px;
    }

    .contact-block h4 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .contact-block p {
        font-size: 13px;
    }

    .contact-form-box {
        padding: 20px;
        border-radius: 8px;
    }

    .contact-form-box h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 12px;
        margin-bottom: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-map iframe {
        height: 280px;
    }

    .contact-btn {
        padding: 12px;
        font-size: 14px;
    }
}

/* =========================================
   GALLERY PAGE - RESPONSIVE IMPROVEMENTS
   ========================================= */
@media (max-width: 1024px) {
    .gallery-item-wrapper {
        padding: 35px 15px;
    }

    .gallery-full-image {
        height: 360px;
    }

    .gallery-full-content h3 {
        font-size: 26px;
    }

    .description-text {
        font-size: 14px;
    }

    .date-badge {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .gallery-page {
        padding: 40px 0;
    }

    .gallery-item-wrapper {
        padding: 25px 12px;
        border-bottom: 1px solid #f0f0f0;
    }

    .gallery-full-image {
        height: 280px;
        margin-bottom: 20px;
    }

    .gallery-full-content {
        justify-content: flex-start;
    }

    .gallery-full-content h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .description-text {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .gallery-meta {
        gap: 15px;
        font-size: 12px;
        margin-bottom: 0;
    }

    .gallery-meta span {
        gap: 6px;
    }

    .row.align-items-center {
        flex-direction: column;
        align-items: stretch;
    }

    .ps-lg-4 {
        padding-left: 0 !important;
        margin-top: 15px;
    }

    .pe-lg-4 {
        padding-right: 0 !important;
    }

    .order-lg-1,
    .order-lg-2 {
        order: 0 !important;
    }
}

@media (max-width: 576px) {
    .gallery-item-wrapper {
        padding: 20px 8px;
    }

    .gallery-full-image {
        height: 220px;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .date-badge {
        padding: 5px 12px;
        font-size: 10px;
        margin-bottom: 10px;
    }

    .gallery-full-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .description-text {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .gallery-meta {
        gap: 10px;
        font-size: 11px;
        margin-bottom: 0;
    }

    .gallery-meta span {
        gap: 4px;
        font-size: 11px;
    }

    .gallery-meta i {
        font-size: 12px;
    }

    .social-icons {
        display: none;
    }

    .container-fluid {
        padding: 0;
    }
}

/* =========================================
   FOOTER - RESPONSIVE IMPROVEMENTS
   ========================================= */
@media (max-width: 1024px) {
    footer {
        padding: 60px 0 25px;
        font-size: 14px;
    }

    footer h4,
    footer h5 {
        font-size: 16px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-contact-links li {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 50px 15px 20px;
        text-align: center;
    }

    footer h4,
    footer h5 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .social-links {
        justify-content: center;
        margin-top: 15px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-contact-links li {
        justify-content: center;
        gap: 8px;
        font-size: 13px;
    }

    .footer-contact-links i {
        min-width: 14px;
        margin-top: 2px;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .copyright {
        margin-top: 20px;
        padding-top: 15px;
    }

    .copyright p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 40px 12px 15px;
    }

    footer h4,
    footer h5 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-description {
        font-size: 12px;
    }

    .footer-links li {
        margin-bottom: 6px;
    }

    .footer-links li a {
        font-size: 12px;
    }

    .social-links {
        margin-top: 12px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 12px;
        margin-right: 6px;
    }

    .footer-contact-links li {
        font-size: 12px;
        gap: 6px;
        margin-bottom: 8px;
    }

    .footer-contact-links i {
        font-size: 12px;
    }

    .footer-logo img {
        max-width: 100px;
    }

    .copyright {
        margin-top: 15px;
        padding-top: 12px;
    }

    .copyright p {
        font-size: 11px;
    }
}

/* =========================================
   ABOUT PAGE - RESPONSIVE FIXES
   ========================================= */
@media (max-width: 1024px) {
    .abt-hero {
        height: 45vh;
    }

    .abt-hero-content h1 {
        font-size: 40px;
    }

    .abt-breadcrumb {
        font-size: 14px;
    }

    .abt-intro-grid {
        gap: 40px;
    }

    .abt-intro-image img {
        height: 280px;
    }

    .abt-purpose-grid {
        gap: 30px;
    }

    .abt-purpose-card {
        padding: 30px;
    }

    .abt-carousel-track {
        gap: 20px;
    }

    .abt-value-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .abt-hero {
        height: 40vh;
        min-height: 300px;
    }

    .abt-hero-content h1 {
        font-size: 32px;
    }

    .abt-hero-content {
        padding: 0 15px;
    }

    .abt-breadcrumb a {
        font-size: 14px;
    }

    .abt-intro {
        padding: 60px 15px;
    }

    .abt-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .abt-intro-image img {
        height: 250px;
    }

    .abt-section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .abt-purpose {
        padding: 80px 15px;
    }

    .abt-purpose-grid {
        gap: 20px;
    }

    .abt-purpose-card {
        padding: 25px;
        border-left-width: 5px;
    }

    .abt-carousel-track {
        gap: 15px;
    }

    .abt-carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .abt-carousel-btn.prev {
        left: 0;
    }

    .abt-carousel-btn.next {
        right: 0;
    }

    .abt-value-card {
        flex: 0 0 calc(50% - 8px);
        height: 280px;
    }

    .abt-choose {
        padding: 60px 15px;
    }

    .abt-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .abt-choose-image img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .abt-hero {
        height: 35vh;
        min-height: 250px;
    }

    .abt-hero-content h1 {
        font-size: 26px;
    }

    .abt-hero-content {
        padding: 0 10px;
    }

    .abt-breadcrumb {
        font-size: 12px;
    }

    .abt-breadcrumb a {
        font-size: 12px;
    }

    .abt-intro {
        padding: 40px 12px;
    }

    .abt-section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .abt-purpose {
        padding: 50px 12px;
        background-attachment: scroll;
    }

    .abt-purpose-card {
        padding: 20px;
    }

    .abt-purpose-card h4 {
        font-size: 16px;
    }

    .abt-purpose-card p {
        font-size: 13px;
    }

    .abt-carousel-track {
        gap: 12px;
    }

    .abt-carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .abt-value-card {
        flex: 0 0 100%;
        height: 250px;
    }

    .abt-value-overlay {
        padding: 20px;
    }

    .abt-value-overlay p {
        font-size: 13px;
    }

    .abt-value-card span {
        font-size: 16px;
    }

    .abt-choose {
        padding: 40px 12px;
    }

    .abt-choose-image img {
        height: 250px;
    }
}

/* =========================================
   GENERAL RESPONSIVE UTILITIES
   ========================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .container-fluid {
        padding: 0 15px;
    }

    body {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .container,
    .container-fluid {
        padding: 0 12px;
    }

    body {
        font-size: 13px;
    }

    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    h4 {
        font-size: 16px !important;
    }

    p {
        font-size: 13px !important;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .container,
    .container-fluid {
        padding: 0 10px;
    }

    body {
        font-size: 12px;
    }

    h1 {
        font-size: 22px !important;
    }

    h2 {
        font-size: 19px !important;
    }

    h3 {
        font-size: 17px !important;
    }

    h4 {
        font-size: 15px !important;
    }

    h5 {
        font-size: 14px !important;
    }

    p {
        font-size: 12px !important;
        line-height: 1.5;
    }

    /* Improve button touch target */
    .btn-primary,
    .btn-secondary,
    .contact-btn,
    .search-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Prevent horizontal scroll */
    img {
        max-width: 100%;
        height: auto;
    }

    iframe {
        max-width: 100%;
    }

    table {
        font-size: 12px;
    }

    /* Ensure form inputs are readable */
    input,
    textarea,
    select {
        font-size: 16px;
    }

    /* Fix overflow on small screens */
    .row {
        margin: 0;
    }

    [class*="col-"] {
        padding: 0;
    }
}

/* ===============================
   RESPONSIVE GALLERY DESIGN
================================ */
.gallery-responsive-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.gallery-section-header {
    margin-bottom: 50px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 700;
    color: #2C79BB;
    margin: 0;
    padding-left: 5px;
    border-left: 5px solid #2C79BB;
    letter-spacing: 0.5px;
}

.gallery-responsive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
}
/* REPLACED */
.slider-item img {
    animation: none;
}

.slider-item.active img {
    animation: zoom 15s ease-in-out;
}
/* REPLACED */
.gallery-item:hover img,
.gallery-card:hover img {
    transform: scale(1.03);
}
/* REPLACED */
@media (max-width: 992px) {
    .service-form {
        position: relative;
        top: 0;
    }
}
/* REPLACED */
.masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
/* NEW */
.hero-slider,
.gallery-grid,
.services-bg,
.blog-grid-section,
.trust-section {
    contain: layout paint;
}
/* NEW */
img {
    image-rendering: auto;
    backface-visibility: hidden;
}
/* NEW */
.gallery-card {
    transition: transform 0.3s ease;
}
/* NEW — single justified use */
.abt-carousel-track {
    will-change: transform;
}

.gallery-card {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 121, 187, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-card:hover {
    box-shadow: 0 12px 30px rgba(44, 121, 187, 0.25);
    transform: translateY(-8px);
}

.gallery-card-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    backface-visibility: hidden;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 121, 187, 0.85) 0%, rgba(44, 121, 187, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
    will-change: opacity;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    will-change: transform;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.gallery-content p {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
}

/* ===============================
   TABLET (768px - 1024px)
================================ */
@media (max-width: 1024px) {
    .gallery-responsive-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .gallery-card {
        height: 280px;
    }

    .gallery-content h4 {
        font-size: 20px;
    }

    .gallery-content p {
        font-size: 13px;
    }
}

/* ===============================
   SMALL TABLET (576px - 768px)
================================ */
@media (max-width: 768px) {
    .gallery-responsive-section {
        padding: 40px 0;
    }

    .gallery-responsive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-card {
        height: 250px;
    }

    .gallery-content h4 {
        font-size: 18px;
    }

    .gallery-content p {
        font-size: 12px;
    }
}

/* ===============================
   MOBILE (< 576px)
================================ */
@media (max-width: 576px) {
    .gallery-responsive-section {
        padding: 30px 0;
    }

    .gallery-responsive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }

    .gallery-card {
        height: 220px;
    }

    .gallery-content h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .gallery-content p {
        font-size: 11px;
    }

    .gallery-card:hover {
        transform: translateY(-5px);
    }
}


/*service img */

/* ==============================
   SERVICE IMAGE — RESPONSIVE FIX
============================== */
.service-image {
    flex: 1 !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    min-height: 480px !important;
}

.service-image img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px !important;
    display: block !important;
}

/* Tablet */
@media (max-width: 991px) {
    .service-image {
        min-height: 320px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .service-image {
        min-height: 250px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-image {
        min-height: 200px !important;
    }
}

/* ==============================
   SIDEBAR OVERLAY
============================== */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1048;
}

.sidebar-overlay.active {
    display: block;
}