:root {
    --primary: #00AEEF;
    --primary-dark: #0088ba;
    --secondary: #024783;
    --accent: #FF8200;
    --accent-dark: #e67500;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f8fbff;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 31px;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

p {
    font-size: 18px;
    line-height: 31px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Header Styles */
.main-header {
    width: 100%;
    z-index: 1000;
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Top bar removed */

.navbar {
    padding: 0;
    background-color: var(--white);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}

.logo-area {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.logo-img {
    width: 120px;
    height: auto;
    display: block;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-logo-img {
    width: 113px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .logo-img {
        width: 100px;
    }
}

.nav-links li a {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links li a i {
    font-size: 9px;
    margin-top: 1px;
    color: #aaa;
}

.nav-links li a:hover {
    color: var(--primary);
}

/* Dropdown Menu Styles */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
    z-index: 1000;
    border-top: 3px solid var(--primary);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 25px;
    font-size: 15px !important;
    text-transform: none;
    color: #444 !important;
    display: block !important;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f8fbff;
    color: var(--primary) !important;
    padding-left: 30px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-call {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon-circle {
    width: 42px;
    height: 42px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #024783;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.phone-call:hover .phone-icon-circle {
    background-color: #024783;
    color: white;
    transform: scale(1.1) rotate(15deg);
    border-color: #024783;
}

.phone-call:hover .phone-icon-circle i {
    animation: phone-shake 0.5s infinite;
}

@keyframes phone-shake {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0);
    }

    75% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0);
    }
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.call-text {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
}

.phone-num {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;
    color: rgb(0, 83, 149);
    text-decoration: none;
    transition: var(--transition);
}

.phone-call:hover .phone-num {
    color: var(--primary);
}

.btn-request {
    background-color: var(--accent);
    color: rgb(255, 255, 255);
    padding: 14px 28px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-request:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

/* Cart icon removed */

/* Hero Slider Styles */
.hero.swiper {
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero .swiper-slide,
.testimonial-swiper .swiper-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero .swiper-slide-active,
.testimonial-swiper .swiper-slide-active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 74px;
    font-style: normal;
    margin-bottom: 0;
    color: var(--white);
    display: inline;
    padding: 10px 25px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    border-radius: 4px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    display: none;
}

.hero-content {
    padding-bottom: 250px;
    /* Keep space for the teaser cards at bottom */
}

/* Swiper Appearance */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* Hero card adjust */
.service-teaser {
    position: relative;
    margin-top: -150px;
    left: 0;
    width: 100%;
    z-index: 110;
}

.hero-actions .btn {
    margin-right: 15px;
}


.teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.teaser-card {
    background-color: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.teaser-card.featured {
    background-color: var(--white);
    color: var(--text-dark);
    transform: none;
}

.teaser-card .icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #015395;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(1, 83, 149, 0.3);
    transition: var(--transition);
}

.teaser-card:nth-child(2) .icon {
    background-color: var(--accent);
    box-shadow: 0 10px 25px rgba(255, 130, 0, 0.3);
}

.teaser-card.featured .icon {
    color: var(--white);
}

.teaser-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.teaser-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.teaser-card.featured p {
    color: var(--text-light);
}

.teaser-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.teaser-card:hover .icon {
    transform: scale(1.05);
}

/* About Modern Section Styles */
.about-modern {
    padding: 120px 0 20px;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-modern::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.about-modern .container {
    position: relative;
    z-index: 3;
}

.about-header {
    margin-bottom: 60px;
}

.about-header .subtitle {
    display: block;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-header .title {
    font-size: 52px;
    font-weight: 800;
    color: #333;
    line-height: 1.1;
}

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.about-col {
    flex: 1;
}

.about-col p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-col p.lead {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.signature {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.sig-name {
    font-family: 'Satisfy', cursive;
    font-size: 42px;
    color: #333;
    margin-bottom: 5px;
}

.sig-role {
    font-size: 14px;
    color: #888;
    font-weight: 500;
    letter-spacing: 1px;
}

.btn-explore {
    background-color: var(--secondary);
    color: var(--white);
    padding: 18px 45px;
    font-size: 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(2, 71, 131, 0.2);
}

.btn-explore:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(2, 71, 131, 0.3);
}

.about-bg-decoration {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.about-bg-decoration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://undraw.co/api/illustrations/svg/swimming');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
}

@media (max-width: 1200px) {
    .about-bg-decoration {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 991px) {
    .about-header .title {
        font-size: 40px;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-bg-decoration {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 450px;
        opacity: 0.1;
    }
}

/* ===================== Gallery Section ===================== */
.gallery-section-new { padding: 40px 0 80px; background: #fff; }

.gallery-section-new .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.gallery-section-new .section-title h5 {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    /* Matches "Featured projects" */
    margin-bottom: 15px;
}

.gallery-section-new .section-title h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    line-height: 61px !important;
    color: #222;
    margin-bottom: 25px;
}

.title-underline {
    width: 65px;
    height: 5px;
    background: var(--secondary);
    margin: 0 auto 55px;
}

/* Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 25px;
    /* More spacing based on reference */
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 5px;
    border: none;
    background: transparent;
    color: #555;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    border-bottom: 3.5px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--secondary);
}

.filter-btn.active {
    border-bottom: 3.5px solid var(--secondary);
}

/* Gallery Grid */
.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 15px;
}

.gal-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    height: 100%;
}

/* Masonry Spanning Classes */
.gal-item.col-5 {
    grid-column: span 5;
}

.gal-item.col-3 {
    grid-column: span 3;
}

.gal-item.col-2 {
    grid-column: span 2;
}

.gal-item.col-1 {
    grid-column: span 1;
}

.gal-item.row-2 {
    grid-row: span 2;
}

.gal-item.square {
    grid-column: span 3 !important;
    grid-row: auto !important;
    aspect-ratio: 1 / 1;
    height: auto !important;
}

.gal-item.square img {
    height: 100%;
}

@media (max-width: 991px) {
    .gal-item.square {
        grid-column: span 4 !important;
    }
}

@media (max-width: 600px) {
    .gal-item.square {
        grid-column: span 6 !important;
    }
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.gal-item:hover img {
    transform: scale(1.08);
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 71, 131, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gal-item:hover .gal-overlay {
    opacity: 1;
}

.gal-overlay i {
    font-size: 30px;
    color: #fff;
}

.gal-item.hidden {
    display: none;
}

/* Client Card Styles */
.client-card {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
}

.client-card img {
    height: 280px !important;
    width: 100% !important;
    object-fit: cover;
    border-radius: 8px 8px 0 0 !important;
}

.client-info {
    padding: 20px 15px !important;
    text-align: center;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.client-info h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    font-family: 'Poppins', sans-serif !important;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
}

@media (max-width: 768px) {
    .gallery-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid-new {
        grid-template-columns: 1fr;
    }
}

/* ===================== Services Slider Section Styles ===================== */
.services-slider-section {
    display: flex;
    width: 100%;
    background-color: #f4f7f9;
    /* Matching the light blueish background */
    position: relative;
    overflow: hidden;
}

.services-info-panel {
    flex: 0 0 40%;
    background-color: var(--secondary);
    background-image: linear-gradient(rgba(2, 71, 131, 0.85), rgba(2, 71, 131, 0.9)), url('https://images.unsplash.com/photo-1590059392263-047f8ba39a75?q=80&w=2071&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--white);
    padding: 80px 40px 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.services-info-content {
    max-width: 100%;
    margin-left: 0;
}

.services-info-content h5 {
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.services-info-content h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    line-height: 61px !important;
    margin-bottom: 25px;
}

.services-info-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.slider-nav-buttons {
    display: flex;
    gap: 15px;
}

.slider-nav-buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.slider-nav-buttons button:hover {
    background: var(--white);
    color: var(--secondary);
}

.services-slider-panel {
    flex: 0 0 60%;
    padding: 80px 0 80px 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 10;
    margin-left: -30px;
}

.services-swiper {
    width: 100%;
    padding-bottom: 25px;
    overflow: visible;
}

.service-slide-card {
    background: var(--white);
    border-bottom-right-radius: 40px;
    /* Matched the curve in the image */
    border-bottom-left-radius: 40px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    transition: var(--transition);
}

.service-slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    /* Softer hover shadow */
}

.card-img-top {
    width: 100%;
    height: 320px;
    /* Taller image to match the narrow vertical aspect ratio in the screenshot */
    overflow: hidden;
}

.card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-slide-card:hover .card-img-top img {
    transform: scale(1.05);
}

.service-icon {
    width: 85px;
    /* Scaled up slightly */
    height: 85px;
    background: #004d8c;
    /* Exact dark blue from image */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 34px;
    position: absolute;
    top: 320px;
    /* Positioned exactly at the bottom of the taller image */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    /* Matched shadow drop */
    transition: var(--transition);
}

.service-slide-card:hover .service-icon {
    background: var(--accent);
    box-shadow: 0 8px 20px rgba(255, 130, 0, 0.4);
}

.card-content-bottom {
    padding: 70px 30px 45px;
    /* Increased top padding for taller icon overlap perfectly */
    background: var(--white);
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
}

.card-content-bottom h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    /* Scaled down slightly for narrower card */
    font-weight: 700;
    color: #555;
    margin: 0;
}

.arrow-link {
    color: #005395;
    font-size: 22px;
    /* Larger arrow */
    display: inline-flex;
    transition: var(--transition);
}

.service-slide-card:hover .card-content-bottom h3 {
    color: var(--accent);
}

.service-slide-card:hover .arrow-link {
    color: var(--accent);
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .services-slider-section {
        flex-direction: column;
    }

    .services-info-panel,
    .services-slider-panel {
        flex: 100%;
        max-width: 100%;
    }

    .services-info-panel {
        padding: 60px 20px;
    }

    .services-info-content {
        margin: 0 auto;
        text-align: center;
    }

    .slider-nav-buttons {
        justify-content: center;
    }

    .services-slider-panel {
        padding: 40px 20px 60px;
    }
}

/* Mission Section Styles */
.mission-section {
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.mission-content h5 {
    color: var(--primary);
    margin-bottom: 15px;
}

.mission-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.mission-tabs .tab {
    margin-bottom: 30px;
}

.tab h3 {
    font-size: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--secondary);
}

.tab h3 i {
    margin-right: 15px;
    color: var(--accent);
}

.mission-illustration img {
    width: 100%;
    border-radius: 20px;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2, 71, 131, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* Stats & Quote Section New Design */
.quote-section {
    padding: 100px 0;
    background-color: #f1f6fa;
    position: relative;
    overflow: hidden;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Stats Styles */
.stats-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.stat-circle {
    width: 110px;
    height: 110px;
    background: #024783;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 15px 30px rgba(2, 71, 131, 0.25);
}

.stat-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.stat-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* Quote Card Styles */
.quote-card-wrapper {
    width: 100%;
}

.quote-card {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.quote-card .card-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
}

.quote-card .card-header .highlight {
    color: #ff8a00;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-form .form-group input,
.quote-form .form-row input,
.quote-form .form-group select {
    width: 100%;
    padding: 18px 25px;
    background: #f8f9fa;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quote-form .select-wrapper {
    position: relative;
}

.quote-form .select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #024783;
    pointer-events: none;
}

.quote-form select {
    appearance: none;
    cursor: pointer;
}

.btn-submit-quote {
    background: #ff8a00;
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(255, 138, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-submit-quote:hover {
    background: #e67c00;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 138, 0, 0.3);
}

.w-100 {
    width: 100%;
}

/* Final CTA Styles */
.final-cta {
    padding: 100px 0;
    background-color: var(--primary);
    color: var(--white);
}

.final-cta h5 {
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btns .btn {
    margin: 10px;
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(rgba(0, 110, 230, 0.7), rgba(0, 90, 200, 0.85)), url('./assets/images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0 60px;
    position: relative;
    clip-path: ellipse(100% 100% at 50% 100%);
    margin-top: -100px;
}

.footer-top-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.footer-top-logo .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 60px;
}

.footer-brand h3,
.footer-links-wrapper h3,
.footer-contact h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px);
    background-color: var(--accent);
    color: var(--white);
}

.links-columns {
    display: flex;
    gap: 40px;
}

.links-columns ul li {
    margin-bottom: 12px;
}

.links-columns ul li a {
    font-size: 15px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
    transition: var(--transition);
}

.links-columns ul li a i {
    font-size: 12px;
    opacity: 0.7;
}

.links-columns ul li a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--accent);
}

.contact-info p {
    font-size: 15px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.phone-highlight {
    font-size: 20px !important;
    font-weight: 700;
    margin-top: 20px;
}

.phone-highlight span {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .social-links,
    .links-columns {
        justify-content: center;
    }

    .main-footer {
        clip-path: none;
        border-radius: 40px 40px 0 0;
        margin-top: 0;
    }
}

.footer-bottom-bar {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-bar-content {
    text-align: center;
}

.bottom-bar-content p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.bottom-bar-content a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.bottom-bar-content a:hover {
    color: var(--accent);
}

/* Testimonials Section Redesign */
.testimonials-section-new {
    padding: 120px 0;
    background-color: #f8fbfe;
    position: relative;
    overflow: hidden;
    margin-bottom: 45px
}

.testimonial-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

.testimonial-left {
    position: relative;
}

.testimonial-image-box {
    position: relative;
    width: 90%;
}

#testimonial-bg-img {
    transition: opacity 0.4s ease-in-out;
}

.testimonial-image-box img {
    width: 85%;
    border-radius: 0;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.testimonial-swiper {
    position: absolute;
    top: 2%;
    left: 30%;
    width: 500px;
    z-index: 10;
    overflow: hidden;
    padding: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 50px 45px 45px;
    border-radius: 5px;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    width: 100%;
}

.quote-icon-large {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 85px;
    color: #024783;
    line-height: 1;
}

.testimonial-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: #444;
    margin-bottom: 30px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.testimonial-meta {
    font-size: 15px;
    font-weight: 500;
}

.author-name {
    color: #024783;
}

.author-role {
    color: #999;
}

.testimonial-right {
    padding-left: 20px;
}

.testimonial-content-header .sub-title {
    color: #024783;
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-weight: 700;
}

.testimonial-content-header .main-title {
    font-size: 45px;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
    margin-bottom: 50px;
}

.testimonial-pagination.swiper-pagination {
    position: static;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d1d9e2;
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
}

/* New Final CTA Section */
.new-final-cta {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-element {
    position: absolute;
    opacity: 0.03;
    color: #024783;
}

.bg-element.sandals {
    top: 20px;
    right: 50px;
    font-size: 150px;
    transform: rotate(20deg);
}

.bg-element.pool-ladder {
    bottom: -20px;
    right: -20px;
    font-size: 250px;
    transform: rotate(-10deg);
}

.new-final-cta .container {
    position: relative;
    z-index: 2;
}

.cta-sub-title {
    color: #024783;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: none;
    text-align: center;
}

.cta-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: rgb(76, 76, 76);
    margin-bottom: 30px;
    line-height: 61px;
    text-align: center;
}

.cta-description {
    font-size: 18px;
    color: #777;
    line-height: 31px;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.cta-phone-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-phone-container .phone-icon-circle {
    width: 65px;
    height: 65px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #024783;
    font-size: 22px;
}

.cta-phone-number {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #024783;
    text-decoration: none;
    transition: var(--transition);
}

.cta-phone-number:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .cta-main-title {
        font-size: 32px;
    }

    .cta-phone-number {
        font-size: 24px;
    }

    .cta-phone-container .phone-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* Responsive Testimonials */
@media (max-width: 1200px) {
    .testimonial-card {
        width: 450px;
        right: -50px;
        padding: 40px;
    }

    .testimonial-content-header .main-title {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .testimonial-wrapper {
        grid-template-columns: 1fr;
        gap: 120px;
    }

    .testimonial-image-box {
        width: 100%;
        margin-bottom: 60px;
    }

    .testimonial-card {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: -80px;
        margin-left: 30px;
    }

    .testimonial-right {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .testimonials-section-new {
        padding: 80px 0;
    }

    .testimonial-card {
        padding: 30px;
        margin-left: 0;
    }

    .testimonial-card h3 {
        font-size: 22px;
    }

    .testimonial-content-header .main-title {
        font-size: 32px;
    }

    .quote-icon-large {
        font-size: 60px;
        top: -30px;
        right: 20px;
    }
}

/* Responsive Design */

.mobile-nav-toggle {
    display: none;
    font-size: 28px;
    color: var(--secondary);
    cursor: pointer;
    margin-left: auto;
    /* Push to right */
    transition: all 0.3s ease;
    padding: 5px;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 48px;
        line-height: 1.2;
    }

    .about-content {
        gap: 30px;
    }

    section,
    .about-modern,
    .services-slider-section,
    .tabs-section,
    .gallery-section-new,
    .repair-section,
    .quote-section {
        padding: 80px 0 !important;
    }
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block !important;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 10px 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 2px solid var(--primary);
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
    }

    .nav-links li a {
        padding: 18px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f5f5f5;
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

    .nav-links li a i {
        font-size: 12px;
        opacity: 0.5;
    }

    /* Mobile Dropdown Adjustments */
    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 10px 40px;
        display: none;
        /* Hidden by default on mobile, toggled with JS or just shown if simple */
        border-top: none;
    }

    .nav-links.active .has-dropdown .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 0 !important;
        border-bottom: none !important;
        font-size: 14px !important;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .header-right .btn-request {
        display: none;
    }

    .header-right .phone-call {
        margin-right: 15px;
    }

    .repair-grid,
    .mission-grid,
    .quote-grid {
        grid-template-columns: 1fr;
    }

    section,
    .about-modern,
    .services-slider-section,
    .tabs-section,
    .gallery-section-new,
    .repair-section,
    .quote-section {
        padding: 60px 0 !important;
    }

    .hero-content h1 {
        font-size: 38px !important;
        line-height: 1.4 !important;
    }

    /* About Section Responsiveness */
    .about-image-col {
        display: none !important;
    }

    .about-grid {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .about-content-col {
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    .about-content-col .about-header {
        text-align: center !important;
    }

    .about-content-col>div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* Gallery Masonry Fix for Tablet */
    .gal-item.col-5,
    .gal-item.col-3,
    .gal-item.col-2,
    .gal-item.col-1 {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 250px !important;
    }

    .gallery-grid-new {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .service-slider-panel {
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .header-right .phone-info {
        display: none;
    }

    .header-right {
        gap: 10px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }


}

@media (max-width: 576px) {
    .logo-text {
        display: none;
        /* Hide 'POOL SERVICES' text on very small screens to save space */
    }

    .hero-content h1 {
        font-size: 32px !important;
        line-height: 1.4 !important;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    /* Gallery Stacking for Mobile */
    .gallery-grid-new {
        grid-template-columns: 1fr !important;
    }

    /* Form Stacking */
    .quote-form .form-row {
        grid-template-columns: 1fr !important;
    }

    /* Stats Mobile Scaling */
    .stats-column {
        gap: 30px !important;
    }

    .stat-circle {
        width: 80px !important;
        height: 80px !important;
        font-size: 24px !important;
    }

    /* Final CTA Scaling */
    .cta-phone-number {
        font-size: 28px !important;
    }

    .cta-phone-container .phone-icon-circle {
        width: 50px !important;
        height: 50px !important;
        font-size: 18px !important;
    }
}

/* ===================== Tabs Section (Why Choose Us) ===================== */
/* ===================== Tabs Section (Why Choose Us) ===================== */
.tabs-section { padding: 100px 0 40px; background: #fff; position: relative; overflow: hidden; }

/* Background Decorations */
.tabs-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 71, 131, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.tabs-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.tabs-nav-container {
    background: transparent;
    box-shadow: none;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* Space between tab cards */
}

.tab-btn {
    flex: 0 1 350px;
    padding: 35px 30px;
    border: none;
    background: #fff;
    color: #444;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tab-btn .tab-num {
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
}

.tab-btn.active {
    background: linear-gradient(135deg, #024783 0%, #0056a3 100%);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(2, 71, 131, 0.2);
}

.tab-btn.active .tab-num {
    color: #00AEEF;
}

.tab-btn:hover:not(.active) {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.tab-content {
    display: none;
    animation: fadeInTab 0.6s ease-out;
    position: relative;
    z-index: 1;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-header {
    margin-bottom: 80px;
}

.tab-subtitle {
    display: block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}

.tab-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    line-height: 61px !important;
    color: #2c2c2c;
    letter-spacing: -1px;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    row-gap: 80px;
    /* More breathing space between rows */
}

.features-grid.four-items {
    grid-template-columns: repeat(2, 1fr);
}

.tab-closing {
    margin-top: 100px;
    padding: 60px;
    background: #f8fbff;
    border-radius: 25px;
    text-align: center;
    border-left: 5px solid var(--primary);
}

.tab-closing p {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    font-weight: 500;
    font-style: italic;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.feature-icon-box {
    flex: 0 0 75px;
    height: 75px;
    background: #f4f9ff;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 30px;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon-box {
    transform: rotate(15deg) scale(1.1);
    background: var(--secondary);
    color: #fff;
}

.feature-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Mission & Vision Layout */
.mission-vision-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.mission-item,
.vision-item {
    display: flex;
    align-items: center;
    gap: 80px;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--secondary);
}

.mission-text p {
    font-size: 19px;
    line-height: 1.9;
    color: #555;
}

/* Responsive */
@media (max-width: 1199px) {
    .tabs-nav {
        gap: 20px;
    }

    .tab-btn {
        padding: 25px 20px;
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        row-gap: 60px;
    }

    .mission-item,
    .vision-item {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .vision-item {
        flex-direction: column-reverse;
    }

    .tab-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .tabs-nav {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 400px;
    }

    .tab-title {
        font-size: 36px;
    }

    .tabs-nav-container {
        margin-bottom: 60px;
    }

    .tabs-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .tab-btn {
        padding: 20px;
    }
}

/* ===================== Service Detail Page Styles ===================== */
.service-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0 180px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.service-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 71, 131, 0.7);
    z-index: 1;
}

.service-banner .container {
    position: relative;
    z-index: 2;
}

.service-banner h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.6);
}

/* Curved bottom for banner */
.banner-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 3;
}

.service-page-content {
    padding: 100px 0;
    background: #fdfdfd;
}

.service-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

/* Sidebar Styles */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-nav {
    background: #024783;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
}

.sidebar-nav ul li a {
    display: block;
    padding: 20px 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sidebar-nav ul li a.active {
    background: #ff8200;
    color: #fff;
}

.sidebar-nav ul li a:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-form-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.sidebar-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #f0f0f0;
    background: #f9f9f9;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #024783;
    background: #fff;
}

.btn-sidebar {
    width: 100%;
    padding: 18px;
    background: #ff8200;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-sidebar:hover {
    background: #e67500;
    transform: translateY(-3px);
}

.sidebar-contact-box {
    background: #024783;
    padding: 40px 30px;
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .icon {
    font-size: 20px;
    color: #00aeef;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Main Content Styles */
.main-content-area .feature-img {
    width: 100%;
    border-radius: 0 0 20px 0;
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Water Feature Specific - 400x400 full image */
.water-feature-page .main-content-area .feature-img {
    width: 400px;
    height: 400px;
    object-fit: contain;
    background-color: #f9f9f9;
    display: block;
    margin: 0 auto 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.content-header {
    margin-bottom: 40px;
}

.content-header span {
    color: #024783;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.content-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
}

.content-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.split-img-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.split-img-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.serve-list-box {
    margin: 50px 0;
}

.serve-list-box h3 {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
}

.sidebar-nav ul li a {
    display: block;
    padding: 20px 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sidebar-nav ul li a.active {
    background: #ff8200;
    color: #fff;
}

.sidebar-nav ul li a:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-form-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.sidebar-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #f0f0f0;
    background: #f9f9f9;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #024783;
    background: #fff;
}

.btn-sidebar {
    width: 100%;
    padding: 18px;
    background: #ff8200;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-sidebar:hover {
    background: #e67500;
    transform: translateY(-3px);
}

.sidebar-contact-box {
    background: #024783;
    padding: 40px 30px;
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .icon {
    font-size: 20px;
    color: #00aeef;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Main Content Styles */
.main-content-area .feature-img {
    width: 100%;
    border-radius: 0 0 20px 0;
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Water Feature Specific - 400x400 full image */
.water-feature-page .main-content-area .feature-img {
    width: 400px;
    height: 400px;
    object-fit: contain;
    background-color: #f9f9f9;
    display: block;
    margin: 0 auto 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.content-header {
    margin-bottom: 40px;
}

.content-header span {
    color: #024783;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.content-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
}

.content-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.split-img-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.split-img-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.serve-list-box {
    margin: 50px 0;
}

.serve-list-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
}

.serve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.serve-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
}

.serve-item i {
    color: #024783;
    font-size: 14px;
}

.photo-gallery-box {
    margin: 50px 0;
}

.photo-gallery-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.photo-grid .gal-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 10px;
}

.photo-grid .gal-item img {
    border-radius: 10px;
}

.btn-request-service {
    padding: 18px 40px;
    background: #024783;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-request-service:hover {
    background: #013663;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 71, 131, 0.2);
}

@media (max-width: 991px) {
    .service-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        order: 2;
    }

    .main-content-area {
        order: 1;
    }

    .service-banner h1 {
        font-size: 42px;
    }
}

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

    .photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-banner h1 {
        font-size: 32px;
    }
}
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}

/* Why Choose Us Journey */
.why-choose-journey {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .why-choose-journey {
        grid-template-columns: 1fr;
    }
}

.journey-step {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary);
    transition: transform 0.3s ease;
}

.journey-step:hover {
    transform: translateX(10px);
}

.journey-step .step-icon {
    font-size: 30px;
    color: var(--primary);
    margin-right: 20px;
    width: 50px;
    text-align: center;
}

.journey-step .step-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}



/* Safety Gallery Additions */
.gal-card {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.gal-caption {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: 5px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 991px) {
    .gal-card {
        grid-column: span 6 !important;
    }
}

@media (max-width: 600px) {
    .gal-card {
        grid-column: span 12 !important;
    }
}
