/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #1A5A7A;
    --primary-dark: #4f46e5;
    --logo-color: #D8A146;
    --primary-light: var(--border-color) --secondary-color: #1e293b;
    --text-white: #ffffff;
    --text-gray: #64748b;
    --text-dark: #1e293b;
    --bg-dark: #1e293b;
    --bg-overlay: rgba(30, 41, 59, 0.2);
    --border-color: #e2e8f0;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 2.5rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Padding */
    --padding-xs: 0.5rem;
    --padding-sm: 0.75rem;
    --padding-md: 1rem;
    --padding-lg: 1.5rem;
    --padding-xl: 2rem;
    --padding-2xl: 3rem;
    --padding-4xl: 3.5rem;

    /* Margins */
    --margin-xs: 0.25rem;
    --margin-sm: 0.5rem;
    --margin-md: 1rem;
    --margin-lg: 1.5rem;
    --margin-xl: 2rem;
    --margin-2xl: 3rem;

    /* Font Sizes */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-md: 1rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-xxl: 1.35rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.875rem;
    --font-4xl: 2.25rem;
    --font-5xl: 3rem;
    --font-6xl: 3.75rem;
    --font-7xl: 4.5rem;

    /* Container */
    --container-max-width: 1200px;
    --container-padding: var(--padding-md);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);

    --font-family: 'Roboto', sans-serif;
    --secondary-font: 'Rubik', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.section-title h4 {
    font-size: var(--font-3xl);
    padding-bottom: 10px;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Top Bar */
.topbar {
    background-color: var(--primary-color);
    color: var(--text-white);
    /* padding: var(--padding-sm) 0; */
    font-size: var(--font-sm);
    z-index: 20;
    position: relative;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--bg-dark);
    font-family: var(--font-family);
    font-size: var(--font-sm);
    white-space: nowrap;
}

.contact-item:not(:last-child) {
    border-right: 1px solid #7777;
    padding-right: var(--spacing-md);
    margin-right: var(--spacing-md);
}

.contact-item i {
    display: inline-block;
    margin-right: 5px;
    position: relative;
    color: #fff;
    background: var(--logo-color);
    font-size: 12px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    line-height: 22px;
    text-align: center;
    flex-shrink: 0;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    font-family: var(--font-family);
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: var(--spacing-md);
}

.social-icons a {
    color: var(--logo-color);
    font-size: var(--font-sm);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 30px;
    height: 30px;
}

.social-icons a:hover {
    color: var(--primary-dark);
}

.appointment-btn {
    background-color: var(--logo-color);
    color: var(--text-white);
    border: none;
    padding: var(--padding-xs) var(--padding-lg);
    /* border-radius: var(--border-radius-md); */
    font-size: var(--font-sm);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    font-family: var(--secondary-font);
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.appointment-btn:hover {
    background-color: var(--primary-color);
}

/* Navigation */
.navbar {
    position: relative;
    /* Changed from absolute to relative */
    width: 100%;
    z-index: 100;
    background-color: #ffffff;
    /* Solid background color */
    /* padding: 18px 0; */
    /* Add vertical spacing */
    border-bottom: 1px solid #e5e7eb;
    /* Optional: soft border for separation */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Optional: subtle shadow */
    transition: all var(--transition-normal);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-xl);
    font-weight: bold;
    color: var(--text-white);
    position: relative;
    z-index: 5;
    flex-shrink: 0;
}

.nav-content a {
    text-decoration: none;
}

.logo-text {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: var(--font-xxl);
    font-weight: 600;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;   /* makes text stack vertically */
  align-items: flex-end;    /* align both text lines to the right */
  line-height: 1.3;
}

.license-text {
  font-size: 0.85rem;
  color: #666;
  margin-top: 2px;
}

.logo-img {
    display: flex;
    align-items: center;
    gap: 20px;
    /* space between images */
}

.logo-img img {
    height: 60px;
    width: auto;
    border-radius: var(--border-radius-lg);
    display: block;
}

.logo-img .logo-god {
    height: 100px;
    width: auto;
    border-radius: var(--border-radius-lg);
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    align-items: center;
    font-family: var(--secondary-font);
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu li:not(:last-child)::after {
    content: '•';
    color: var(--primary-color);
    margin: 0 var(--spacing-lg);
    font-weight: bold;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: var(--secondary-font);
    transition: color var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--logo-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* .nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
} */

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: var(--spacing-xs);
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--padding-sm);

    z-index: 101;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.hero {
    min-height: calc(100vh - 80px);
    /* Adjust if navbar height is ~80px */
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-primary);
    padding: 60px 20px;
    /* Top padding removed since nav no longer overlaps */
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}


.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Black overlay layer */
.hero-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Adjust darkness */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content {


    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    padding-top: 9rem;
    /* use fixed padding if variables undefined */
    text-align: left;
}

.hero-badge {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: var(--padding-xs) var(--padding-lg);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-left: 20px;
}

.hero-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    /* justify-content: center; */
    /* Optional: center horizontally */
}

.hero-icon {
    font-size: 35px;
    color: var(--primary-color);
}

.hero-container {
    padding: 20px 0;
}

.header-water-icon {
    width: 100px;
    /* height: 60px; */
    /* background: linear-gradient(135deg, #3b82f6, #6366f1); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3); */
}

.header-water-icon img {
    /* width: 60%; */
    width: 130px;
    height: auto;
    object-fit: contain;
}

.hero-image-slider {
    width: 100%;
    height: 100%;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image-slider img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    /* animation: float 6s ease-in-out infinite; */
}

/* @keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
} */

.hero-text {
    margin-top: -100px;
}

.hero-subline {
    font-size: var(--font-3xl);
    font-weight: bold;
    color: var(--text-white);
    letter-spacing: 1.0px;
    line-height: 1.2;

    font-family: var(--secondary-font);
    margin-bottom: var(--spacing-xxl);
}

.hero-title {
    font-size: var(--font-7xl);
    font-weight: bold;
    color: var(--text-white);
    letter-spacing: 1.0px;
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
    font-family: var(--secondary-font);
}

.hero-small-title {
    font-size: var(--font-xl);
    font-weight: bold;
    color: var(--text-white);
    letter-spacing: 1.0px;
    margin-top: 10px;
    line-height: 1.2;
    font-family: var(--secondary-font);
}

.hero-description {
    font-size: var(--font-lg);
    color: var(--text-white);
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    /* max-width: 100%; */
    /* height: auto; */
    width: 503px;
    margin-top: -13px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@media (max-width:768px) {
    .hero-image img {
        max-width: 100%;
        height: auto;
        margin-top: 31px;
    }

    .central-hub-title h3 {
        display: none;
    }

}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--text-white);
    padding: var(--padding-xl);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: none;
    border-radius: 6px;
    font-size: var(--font-2xl);
    cursor: pointer;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 5px 8px;
}

.mobile-nav-menu {
    list-style: none;
    margin-top: var(--padding-4xl);
}

.mobile-nav-menu li {
    /* margin-bottom: var(--margin-lg); */
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid #e5e5e5;
    font-family: var(--secondary-font);
    color: #333333;
}

.mobile-nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    /* font-size: var(--font-lg); */
    font-weight: 500;
    display: block;
    /* padding: var(--padding-sm) 0; */
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    color: var(--primary-color);
}

/* Responsive Design */

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        padding: 0 var(--padding-xl);
    }
}

/* Desktop */
@media (max-width: 1199px) {
    :root {
        --font-7xl: 4rem;
        --container-padding: var(--padding-lg);
    }
}

/* Tablet */
@media (max-width: 992px) {
    :root {
        --font-7xl: 3.5rem;
        --container-padding: var(--padding-md);
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo-text {
        font-size: var(--font-base);
    }

    .logo-img img {
        height: 50px;
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    :root {
        --font-7xl: 3rem;
        --font-5xl: 2.5rem;
        --container-padding: var(--padding-md);
        --padding-4xl: 6rem;
    }

    .topbar-content {
        /*flex-direction: column;*/
        gap: 0px;
        text-align: center;
        padding: 0px;
        display: block;
    }

    .contact-info {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-item {
        font-size: var(--font-xs);
    }

    .contact-item:not(:last-child) {
        padding-right: var(--spacing-sm);
        margin-right: var(--spacing-sm);
    }

    .topbar-right {
        justify-content: center;
        gap: var(--spacing-md);
    }

    .navbar {
        top: auto;
        position: absolute;
        /* padding: var(--padding-md) 0; */
    }

    .hero {
        margin-top: -120px;
        padding-top: 120px;
        min-height: 100vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
        padding-top: var(--padding-2xl);
    }

    .hero-text {
        margin-top: 50px;
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: var(--margin-xl);
    }

    .hero-title {
        font-size: var(--font-5xl);
        margin-bottom: var(--margin-lg);
    }

    .hero-description {
        font-size: var(--font-base);
        max-width: none;
        margin: 0 auto;
    }

    /*.logo-text {*/
    /*    display: none;*/
    /*}*/
}

/* Mobile Large */
@media (max-width: 576px) {
    :root {
        --container-padding: var(--padding-sm);
        --font-5xl: 2rem;
        --font-4xl: 1.75rem;
        --padding-4xl: 4rem;
    }

  .contact-info .contact-item:first-of-type {
    display: none;
  }
  
  .topbar-right .social-icons {
    display: none;
  }
  
    .topbar-right .btn-container {
    display: none;
  }
  
  .contact-info {
    padding: 5px !important;
}
    .topbar {
        padding: var(--padding-xs) 0;
        padding: 0.1px;
    }

    .topbar-content {
        gap: var(--spacing-sm);
    }

    .contact-info {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .contact-item {
        justify-content: center;
    }

    .social-icons {
        gap: var(--spacing-sm);
    }

    .appointment-btn {
        padding: var(--padding-xs) var(--padding-md);
        font-size: var(--font-xs);
    }

    .navbar {
        padding: var(--padding-sm) 0;
        height: 76px;
    }

    .logo-img .logo-god {
        height: 50px;
        width: auto;
    }

    .logo-img img {
        height: 50px;
    }

    .hero-title {
        font-size: var(--font-4xl);
        line-height: 1.1;
    }

    .hero-badge {
        font-size: var(--font-xs);
        padding: var(--padding-xs) var(--padding-md);
    }

    .hero-text {
        margin-top: 5rem;
    }

    .mobile-menu {
        width: 270px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    :root {
        --container-padding: 12px;
        --font-4xl: 1.5rem;
        --font-3xl: 1.25rem;
        --padding-4xl: 3rem;
    }

    .hero-content {
        padding-top: var(--padding-xl);
    }

    .hero-title {
        font-size: var(--font-3xl);
        margin-bottom: var(--margin-md);
    }

    .hero-description {
        font-size: var(--font-sm);
    }
}

/* Mobile Extra Small (320px) */
@media (max-width: 320px) {
    :root {
        --container-padding: 8px;
        --font-3xl: 1.125rem;
        --font-2xl: 1rem;
        --padding-4xl: 2rem;
    }

    .contact-item span {
        font-size: 10px;
    }

    .contact-item i {
        width: 20px;
        height: 20px;
        font-size: 10px;
        line-height: 20px;
    }

    .appointment-btn {
        padding: 4px 8px;
        font-size: 10px;
    }

    .social-icons a {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .logo-img img {
        height: 47px;
    }

    .hero-title {
        font-size: var(--font-2xl);
        margin-bottom: var(--margin-sm);
    }

    .hero-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-text {
        margin-top: 4rem;
    }

    .mobile-menu {
        width: 260px;
    }
}

/* Landscape Mobile */
/* @media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 500px;
        height: 100vh;
    }

    .hero-content {
        padding-top: var(--padding-xl);
    }

    .hero-text {
        margin-top: 20px;
    }
} */


.floating {
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-8px);
    }

    100% {
        transform: translateX(0px);
    }
}

/* About Section */
.about-area {
    padding: var(--padding-4xl) 0;
    background-color: #f8f9fa;
}

.about-intro {
    text-align: center;
    margin-bottom: var(--margin-4xl);
}

.section-title h2 {
    font-size: var(--font-4xl);
    font-weight: bold;
    color: var(--text-dark);

    font-family: var(--secondary-font);
}

.about-title .title-decor {
    display: inline-block;
    max-width: 120px;
    height: auto;
}

.title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    margin: 0 auto var(--margin-xl) auto;
    border-radius: 2px;
}

.intro-text {
    font-size: var(--font-lg);
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;

    padding-bottom: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--margin-4xl);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 650px;
    /* Reduced height as requested */
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

@media (max-width:768px) {
    .about-image img {
        width: 100%;
        height: 100%;

    }
}

.about-text {
    position: absolute;
    bottom: -4px;
    right: -38px;
    text-align: center;
    border-radius: 15px;
    background: linear-gradient(135deg, rgb(94, 23, 223) 0%, rgb(29, 117, 250) 100%);
    width: 180px;
    height: 180px;
    font-family: var(--secondary-font);
    font-size: var(--font-xl);
    color: var(--text-white);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.about-text span {
    font-size: var(--font-6xl);
    color: var(--text-white);
    font-weight: 600;
    line-height: 1;
    margin-bottom: var(--margin-xs);
    font-family: var(--secondary-font);
}

.about-content {
    padding-left: var(--padding-lg);
}

.about-title h2 {
    font-size: var(--font-4xl);
    margin-bottom: var(--margin-xl);
    font-family: var(--secondary-font);
    line-height: 1.2;
    color: var(--text-dark);
}

.about-content p {
    margin-bottom: var(--margin-lg);
    color: var(--text-gray);
    font-size: var(--font-base);
    line-height: 1.7;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--margin-xl);
}

.about-list li {
    margin-bottom: var(--margin-md);
    color: var(--text-gray);
    font-size: var(--font-base);
    position: relative;
    padding-left: var(--padding-xl);
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: var(--font-lg);
}

@media (max-width:768px) {
    .about-list li {

        text-align: left;
    }

    .about-area {
        padding: var(--padding-2xl) 0;
    }
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: var(--padding-md) var(--padding-2xl);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: var(--font-base);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-normal);
    font-family: var(--font-family);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 115, 250, 0.3);
}

/* Vision & Mission */
.vision-mission {
    background-color: var(--text-white);
    padding: var(--padding-4xl) var(--padding-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
}

.vm-item {
    text-align: center;
    padding: var(--padding-xl);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--margin-xl) auto;
}

.vm-icon i {
    font-size: var(--font-2xl);
    color: var(--text-white);
}

.vm-item h3 {
    font-size: var(--font-2xl);
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: var(--margin-lg);
    font-family: var(--secondary-font);
}

.vm-item p {
    color: var(--text-gray);
    font-size: var(--font-base);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }

    .about-content {
        padding-left: 0;
    }

    .about-text {
        margin: -120px 0 auto;
        /* Negative top margin */
        width: 160px;
        height: 160px;
        z-index: 10;
        /* optional if not using layering */
        position: relative;
        /* Enables z-index and future positioning if needed */
    }

    .about-text span {
        font-size: var(--font-5xl);
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
}

/* Modern Services Section */
.modern-services {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #e0e7ff 100%);
    padding: var(--padding-4xl) 0;
    overflow: hidden;
}

/* Animated Background Elements */
.bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

/* .orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(99, 102, 241, 0.3));
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    bottom: -200px;
    left: -200px;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
} */

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Header Section */
.section-header {
    text-align: center;
    /* margin-bottom: 120px; */
    position: relative;
    z-index: 10;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.header-icon i {
    font-size: 24px;
    color: white;
}

.section-header h2 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #1e40af, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.wave-container {
    display: flex;
    justify-content: center;

}

.animated-wave {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin-bottom: 20px;
}

/* Services Container */
.services-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 700px;
    /* Increased height to accommodate title */
    z-index: 10;
}

/* Central Hub */
.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    z-index: 20;
    transition: all 0.3s ease;
}

.central-hub i {
    font-size: 28px;
    color: white;
}

.services-container:hover .central-hub {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.5);
}

/* Central Hub Title */
.central-hub-title {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 80px;
    /* Position below the vertical line */
    z-index: 15;
    text-align: center;
}

.central-hub-title h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 13px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.line {
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    position: absolute;
}

.line.horizontal {
    width: 800px;
    height: 2px;
    left: -400px;
    top: -1px;
}

.line.vertical {
    width: 2px;
    height: 500px;
    left: -1px;
    top: -250px;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

/* Individual Service Connection Lines */
.service-connection {
    position: absolute;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.4), rgba(99, 102, 241, 0.2));
    z-index: 6;
}

.top-left-line {
    width: 300px;
    height: 2px;
    top: -150px;
    left: -300px;
    transform: rotate(-45deg);
    transform-origin: right center;
}

.top-right-line {
    width: 300px;
    height: 2px;
    top: -150px;
    right: -300px;
    transform: rotate(45deg);
    transform-origin: left center;
}

.bottom-left-line {
    width: 300px;
    height: 2px;
    bottom: -150px;
    left: -300px;
    transform: rotate(45deg);
    transform-origin: right center;
}

.bottom-right-line {
    width: 300px;
    height: 2px;
    bottom: -150px;
    right: -300px;
    transform: rotate(-45deg);
    transform-origin: left center;
}

/* Service Items */
.service-item {
    position: absolute;
    width: 320px;
    opacity: 0;
    animation: slideIn 0.8s ease-out forwards;
}

.service-item.top-left {
    top: 0;
    left: 0;
    animation-delay: 0.2s;
}

.service-item.top-right {
    top: 0;
    right: 0;
    animation-delay: 0.4s;
}

.service-item.bottom-left {
    bottom: 0;
    left: 0;
    animation-delay: 0.6s;
}

.service-item.bottom-right {
    bottom: 0;
    right: 0;
    animation-delay: 0.8s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Content */
.service-content {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.service-content:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Geometric Background */
.geometric-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 24px;
}

.shape {
    position: absolute;
    border-radius: 50%;
    transition: all 0.5s ease;
}

/* .shape-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
    top: -20px;
    right: -20px;
}

.shape-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    bottom: -10px;
    left: -10px;
} */

.service-content:hover .shape-1 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(99, 102, 241, 0.4));
    transform: scale(1.2);
}

.service-content:hover .shape-2 {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.4), rgba(59, 130, 246, 0.4));
    transform: scale(1.3);
}

/* Service Icon */
.service-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #64748b, #475569);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.5s ease;
    z-index: 10;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-content:hover .service-icon {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* Service Text */
.service-content h3 {
    position: relative;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    z-index: 10;
    transition: color 0.3s ease;
}

.service-content p {
    position: relative;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    z-index: 10;
    transition: color 0.3s ease;
}

.service-content:hover h3 {
    color: #0f172a;
}

.service-content:hover p {
    color: #475569;
}

/* Hover Indicator */
.hover-indicator {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-content:hover .hover-indicator {
    background: #3b82f6;
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Bottom CTA */
.bottom-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.about-cta {
    text-align: left;
}

.cta-content {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 32px;
    color: #000;
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);

    cursor: pointer;
    border: 1px solid var(--border-color);
}

.cta-content2 {
    background-color: transparent;
    color: #fff;
    border-color: #FFF;
}

.cta-content3 {
    background-color: transparent;
    color: #fff !important;
    border-color: #FFF;
}

.cta-content3 .arrow-icon {

    color: #fff !important;

}

.delivery-conatct {
    color: #fff;
}

.delivery-conatct i {
    color: #fff;
}

.cta-content span {
    /* color: #64748b; */
    font-weight: 500;
}

.arrow-icon {
    font-size: 18px;
    color: inherit;
    transition: transform 0.3s ease;
}

.bottom-cta .cta-content:hover .arrow-icon {
    transform: translateX(5px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-container {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 20px 0;
    }

    .service-item {
        position: static;
        width: auto;
        opacity: 1;
        animation: none;
    }

    .central-hub,
    .connection-lines {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-content {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2.5rem;
    }

    .service-item {
        width: 100%;
    }

    .service-content {
        padding: 24px 20px;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }
}


/* Products & Services Section Styles */
.products-services {
    padding: var(--padding-4xl) 0;
    background-color: var(--text-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--margin-md);
}

.section-header h2 {
    font-size: var(--font-5xl);
    font-weight: 700;
    color: var(--text-dark);

    font-family: var(--secondary-font);
}

.wavy-line {
    display: flex;
    justify-content: center;
    margin-bottom: var(--margin-md);
}

.section-description {
    font-size: var(--font-base);
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.product-tabs {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    /* background-color: rgba(212, 175, 55, 0.1); */
    border-radius: 20px;
    color: var(--color-text);
}


.tab {

    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* 
.tab:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
} */
.products-showcase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--margin-4xl);
}

.features-left,
.features-right {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--padding-lg);
    background-color: #f8f9fa;
    border-radius: var(--border-radius-lg);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-item:hover {

    background: url(../img/bg/sr-hover-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 1px 59px 0px rgba(0, 0, 0, 0.11);
    border-radius: 4px;
}

.feature-item:hover .feature-icon .blue {
    background-color: #D39A41 !important
}

.features-right .feature-item {
    flex-direction: row-reverse;
    text-align: right;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: var(--font-xl);
    color: var(--text-white);
}

.feature-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-icon.purple {
    /* background: linear-gradient(135deg, #8b5cf6, #7c3aed); */
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-icon.green {
    /* background: linear-gradient(135deg, #10b981, #059669); */
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-icon.orange {
    /* background: linear-gradient(135deg, #f59e0b, #d97706); */
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-icon.teal {
    /* background: linear-gradient(135deg, #14b8a6, #0d9488); */
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-icon.pink {
    /* background: linear-gradient(135deg, #ec4899, #db2777); */
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-content h3 {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--margin-sm);
    font-family: var(--secondary-font);
}

.feature-content p {
    font-size: var(--font-md);
    color: var(--text-gray);
    line-height: 1.6;
}

.center-product {
    position: relative;
    text-align: center;
}

.product-image {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.product-labels {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.label {
    padding: var(--padding-sm) var(--padding-lg);
    border-radius: 25px;
    font-weight: 600;
    font-size: var(--font-sm);
    color: var(--text-white);
    white-space: nowrap;
}

.label.residential {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.label.commercial {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Service Types */
.service-types {
    margin-top: var(--margin-4xl);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
}

.service-type-card {
    background-color: #f8f9fa;
    padding: var(--padding-2xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-type-card:hover {

    background: url(../images/others/sr-hover-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 1px 59px 0px rgba(0, 0, 0, 0.11);
    border-radius: 4px;
}


.service-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--margin-lg) auto;
}

.service-type-icon i {
    font-size: var(--font-2xl);
    color: var(--text-white);
}

.service-type-card h3 {
    font-size: var(--font-xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--margin-lg);
    font-family: var(--secondary-font);
}

.service-type-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-type-card li {
    padding: var(--padding-sm) 0;
    color: var(--text-gray);
    position: relative;
    padding-left: var(--padding-lg);
}

.service-type-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .features-left,
    .features-right {
        flex-direction: row;
        /* flex-wrap: wrap; */
        justify-content: center;
    }

    .features-right .feature-item {
        flex-direction: row;
        text-align: left;
    }

    .center-product {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: var(--font-4xl);
    }

    .features-left,
    .features-right {
        flex-direction: column;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .product-labels {
        position: static;
        transform: none;
        margin-top: var(--margin-lg);
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: var(--font-3xl);
    }

    .section-description {
        font-size: var(--font-sm);
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .features-right .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: var(--font-lg);
    }

    .product-visual2 {
        max-width: 100%;
    }
}

@media (max-width: 320px) {
    .section-header h2 {
        font-size: var(--font-2xl);
    }

    .feature-content h3 {
        font-size: var(--font-base);
    }

    .feature-content p {
        font-size: var(--font-xs);
    }

    .service-type-card {
        padding: var(--padding-lg);
    }

    .service-type-icon {
        width: 60px;
        height: 60px;
    }

    .service-type-icon i {
        font-size: var(--font-xl);
    }
}

.home-contact-section {
    background-image: url("../images/others/contactbg.png");
    /* replace with your image path */
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

/* .home-contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
   
    z-index: 0;
} */

.home-contact {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.home-contact h2 {

    font-size: 40px;
    padding-top: 64px;
    padding-bottom: 0;
    margin-bottom: 0px !important;
    position: relative;
    font-family: var(--secondary-font);
}

@media (max-width:425px) {
    .home-contact h2 {
        font-size: 20px;
    }

    .home-contact p {
        font-size: 18px !important;
    }
        .brand-grid {
           
            grid-template-columns: repeat(1, 1fr) !important; 
              }
}

.home-contact p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #f3f3f3;
}

.slider-btn .btn.ss-btn {
    background-color: #6366f1;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
    display: inline-block;
}

.slider-btn .btn.ss-btn:hover {
    background-color: #4f46e5;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #6366f1;
    color: #fff;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    /* Add this */
    align-items: center;
    /* Vertical center */
    justify-content: center;
    /* Horizontal center */
    font-size: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #4f46e5;
    transform: translateY(-4px);
}



/* Main Layout */
.amenities-showcase {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Content Area */
.content-area {
    width: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.content-wrapper {
    width: 100%;
    max-width: 480px;
}


/* Amenities List */
.amenities-list {
    margin-bottom: 50px;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.amenity-item:hover {
    transform: translateX(5px);
}

.amenity-item.active {
    transform: translateX(10px);
}

.amenity-item.active::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #4a7c59;
    border-radius: 2px;
}

/* Amenity Icons */
.amenity-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Rooftop Garden Icon - 3x3 Grid of Dots */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    width: 24px;
    height: 24px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #666666;
    border-radius: 1px;
    transition: background-color 0.3s ease;
}

.amenity-item.active .dot {
    background-color: #333333;
}

/* Lounge Areas Icon - Pattern Lines */
.icon-pattern {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pattern-line {
    height: 4px;
    background-color: #666666;
    border-radius: 1px;
    transition: background-color 0.3s ease;
}

.pattern-line:nth-child(1) {
    width: 100%;
}

.pattern-line:nth-child(2) {
    width: 80%;
}

.pattern-line:nth-child(3) {
    width: 60%;
}

.pattern-line:nth-child(4) {
    width: 40%;
}

.amenity-item.active .pattern-line {
    background-color: #333333;
}

/* Fitness Studio Icon - Dumbbell */
.dumbbell-icon {
    position: relative;
    width: 24px;
    height: 12px;
}

.bar {
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 2px;
    background-color: #666666;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}

.weight {
    position: absolute;
    width: 6px;
    height: 12px;
    background-color: #666666;
    border-radius: 1px;
    transition: background-color 0.3s ease;
}

.weight.left {
    left: 0;
    top: 0;
}

.weight.right {
    right: 0;
    top: 0;
}

.amenity-item.active .bar,
.amenity-item.active .weight {
    background-color: #333333;
}

/* Package Locker Icon - Grid of Boxes */
.locker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    width: 24px;
    height: 16px;
}

.locker-box {
    background-color: #666666;
    border-radius: 1px;
    transition: background-color 0.3s ease;
}

.amenity-item.active .locker-box {
    background-color: #333333;
}

/* Bike Storage Icon - Simple Bike Shape */
.bike-shape {
    position: relative;
    width: 24px;
    height: 16px;
}

.wheel {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1.5px solid #666666;
    border-radius: 50%;
    background: transparent;
    transition: border-color 0.3s ease;
}

.left-wheel {
    left: 0;
    bottom: 0;
}

.right-wheel {
    right: 0;
    bottom: 0;
}

.frame {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    height: 2px;
    background-color: #666666;
    transition: background-color 0.3s ease;
}

.amenity-item.active .wheel {
    border-color: #333333;
}

.amenity-item.active .frame {
    background-color: #333333;
}

/* Amenity Content */
.amenity-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.amenity-content p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.amenity-item.active .amenity-content h3 {
    color: #000000;
}

.amenity-item.active .amenity-content p {
    color: #444444;
}

/* Explore Button */
.explore-btn {
    background-color: #4a7c59;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: #3d6b4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

/* Right Image Area */
.image-area {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}




/* Image Navigation */
.image-navigation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.nav-arrow:hover {
    background-color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.nav-arrow:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-arrow i {
    font-size: 16px;
    color: #333333;
}

/* Image Indicators */
.image-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Help Widget */
.help-widget {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 15;
}

.widget-content {
    background-color: #1a1a1a;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.widget-icon {
    width: 20px;
    height: 20px;
    background-color: white;
    color: #1a1a1a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.widget-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    font-size: 12px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.widget-close:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-area {
        padding: 0 40px;
    }

    .content-wrapper {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .amenities-showcase {
        flex-direction: column;
        height: auto;
    }

    .content-area,
    .image-area {
        width: 100%;
    }

    .content-area {
        padding: 40px 20px;
    }

    .image-area {
        height: 60vh;
        min-height: 400px;
    }

    .intro-text {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .amenity-item {
        margin-bottom: 30px;
    }

    .amenity-content h3 {
        font-size: 1rem;
    }

    .amenity-content p {
        font-size: 0.85rem;
    }

    .help-widget {
        bottom: 20px;
        right: 20px;
    }

    .widget-content {
        padding: 10px 16px;
        font-size: 0.75rem;
    }

    .image-indicators {
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .content-area {
        padding: 30px 15px;
    }

    .intro-text {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .amenity-item {
        margin-bottom: 25px;
    }

    .amenity-icon {
        width: 35px;
        height: 35px;
        margin-right: 15px;
    }

    .amenity-content h3 {
        font-size: 0.95rem;
    }

    .amenity-content p {
        font-size: 0.8rem;
    }

    .explore-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .image-area {
        height: 50vh;
        min-height: 300px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
    }

    .nav-arrow i {
        font-size: 14px;
    }

    .image-navigation {
        bottom: 30px;
        gap: 10px;
    }

    .image-indicators {
        bottom: 70px;
    }
}


















/* Footer Styles */
.footer {
    position: relative;
    background: #1a1d29;
    color: #ffffff;
    padding: 60px 0 0;
    overflow: hidden;
    width: 100%;
}

/* Footer Background with Wave Pattern */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1d29;
    z-index: 1;
}

.wave-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.05) 0%, transparent 50%);
    background-size: 800px 800px, 600px 600px, 400px 400px;
    background-position: 0 0, 100% 100%, 50% 50%;
    opacity: 0.6;
}

.wave-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(120, 119, 198, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(120, 119, 198, 0.03) 50%, transparent 60%);
    background-size: 100px 100px;
    animation: wave-move 20s linear infinite;
}

@keyframes wave-move {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 100px 100px, -100px 100px;
    }
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    width: 100%;
}

/* Logo Column */
.logo-column {
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-logo-text {
    color: var(--logo-color);
}

.footer-logo img {
    /* width: 45px; */
    height: 45px;

    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}


.logo-icon i {
    font-size: 20px;
    color: white;
}



.footer-description {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-icon:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px);
}

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.twitter:hover {
    background: #1da1f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Footer Columns */
.footer-column {
    width: 100%;
}

.footer-column h3.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--logo-color);
}

/* Footer Links */
.footer-links {
    list-style: none;
    width: 100%;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 100%;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 100%;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: grayscale(0%);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 10;
    border-top: 1px solid #374151;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.copyright p {
    color: #9ca3af;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.85rem;
    position: relative;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-bottom-links a:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -12px;
    color: #4b5563;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.4);
}

.back-to-top i {
    color: white;
    font-size: 16px;
}

/* RESPONSIVE DESIGN - Mobile First Approach */

/* Extra Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding: 0 20px;
    }

    .footer-content {
        gap: 60px;
        padding-bottom: 60px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .footer-title {
        font-size: 1.25rem;
    }
}

/* Large Screens */
@media (max-width: 1199px) {
    .footer-content {
        grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
        gap: 35px;
    }

    .logo-text {
        font-size: 1.2rem;
        /*display: none;*/
    }

    .contact-item {
        font-size: 12px;
    }
}

/* Medium Screens - Tablets */
@media (max-width: 991px) {
    .footer {
        padding: 50px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-bottom: 35px;
    }

    .logo-column {
        grid-column: span 2;
        text-align: center;
        max-width: none;
    }

    .links-column,
    .services-column {
        text-align: center;
    }

    .gallery-column {
        grid-column: span 2;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Small Screens - Mobile Landscape */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
        padding-bottom: 30px;
    }

    .logo-column,
    .links-column,
    .services-column,
    .gallery-column {
        grid-column: span 1;
        text-align: center;
    }

    .logo {
        justify-content: center;
        margin-bottom: 20px;
    }

    .logo-text {
        font-size: 1.6rem;
    }

    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .gallery-grid {
        max-width: 250px;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 0;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 15px;
    }

    .footer-bottom-links a:not(:last-child)::after {
        right: -10px;
    }
}

/* Extra Small Screens - Mobile Portrait */
@media (max-width: 575px) {
    .container {
        padding: 0 12px;
    }

    .footer {
        padding: 35px 0 0;
    }

    .footer-content {
        gap: 30px;
        padding-bottom: 25px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .logo-icon i {
        font-size: 18px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .footer-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-title::after {
        width: 30px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon i {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        max-width: 200px;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .copyright p,
    .footer-bottom-links a {
        font-size: 0.8rem;
    }

    .footer-bottom-links {
        gap: 12px;
    }

    .footer-bottom-links a:not(:last-child)::after {
        right: -8px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .back-to-top i {
        font-size: 14px;
    }
}

/* Ultra Small Screens */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .footer-description {
        font-size: 0.8rem;
    }

    .footer-title {
        font-size: 0.95rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .gallery-grid {
        max-width: 180px;
        gap: 4px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-bottom-links a:not(:last-child)::after {
        display: none;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .footer {
        padding: 30px 0 0;
    }

    .footer-content {
        gap: 25px;
        padding-bottom: 20px;
    }

    .back-to-top {
        bottom: 10px;
        right: 10px;
    }
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.header-badge i {
    font-size: 14px;
}

.section-title {

    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.infra-section {
    padding: var(--padding-4xl) 0;
}

@media (max-width:768px) {
    .infra-section {
        padding: var(--padding-2xl) 0;
    }
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.infra-item {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
}

.infra-item:hover {
    transform: translateY(-5px);
}

.infra-item i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.infra-item h3 {

    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--margin-sm);
    font-family: var(--secondary-font);
}

.infra-item p {
    font-size: 0.95rem;
    color: #4b5563;
}



.spinner-loader {
    position: fixed;
    inset: 0;
    /* shorthand for top: 0; right: 0; bottom: 0; left: 0; */
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    padding: 20px;
    /* in case of very small screens to prevent overflow */
    box-sizing: border-box;
}

.loader-image {
    width: 180px;
    max-width: 90%;
    height: auto;
    margin-bottom: 30px;
    display: block;
    margin-left: -40px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ddd;
    border-top: 5px solid #4f46e5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.contact-details li i {
    color: var(--logo-color);
    margin-top: 2px;
    min-width: 20px;
}

.contact-details li a {
    color: #fff;
    text-decoration: none;
}

.contact-details li a:hover {
    text-decoration: underline;
}

.contact-item a {
    cursor: pointer;
    text-decoration: none;
    color: var(--text-white);
}

.contact-item span {

    color: var(--text-white);
}

.what-we-do-section {
    padding: var(--padding-4xl) 0;
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
    background: #f3f7fd;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.what-we-do-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.what-we-do-header {
    text-align: center;
    margin-bottom: 60px;
}

.what-we-do-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    position: relative;
}

.what-we-do-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    border-radius: 2px;
}

.what-we-do-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.what-we-do-card {
    background: white;
    padding: 40px 30px;
    border-radius: 5px;

    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.what-we-do-card:first-child {
    border-left: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.what-we-do-card:last-child {
    border-right: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.what-we-do-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* .what-we-do-card:hover {
    transform: translateY(-8px);
   
} */

.what-we-do-card:hover::before {
    transform: scaleX(1);
}

.what-we-do-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.what-we-do-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.what-we-do-icon-purification {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.what-we-do-icon-residential {
    background: linear-gradient(135deg, #10b981, #047857);
}

.what-we-do-icon-commercial {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.what-we-do-icon-quality {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.what-we-do-card:hover .what-we-do-icon {
    transform: scale(1.1) rotate(5deg);
}

.what-we-do-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    text-align: center;
}

.what-we-do-card-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .what-we-do-section {
        padding: var(--padding-2xl) 0;
    }

    .products-services {
        padding: var(--padding-2xl) 0;
    }

    .what-we-do-container {
        padding: 0 16px;
    }

    .what-we-do-title {
        font-size: 2.25rem;
    }

    .what-we-do-subtitle {
        font-size: 1.125rem;
    }

    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .what-we-do-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .what-we-do-title {
        font-size: 2rem;
    }

    .what-we-do-card {
        padding: 28px 20px;
    }

    .what-we-do-icon {
        width: 56px;
        height: 56px;
    }

    .what-we-do-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Animation for cards appearing */
/* @keyframes what-we-do-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

.what-we-do-card {
    animation: what-we-do-fadeInUp 0.6s ease forwards;
}

.what-we-do-card:nth-child(1) {
    animation-delay: 0.1s;
}

.what-we-do-card:nth-child(2) {
    animation-delay: 0.2s;
}

.what-we-do-card:nth-child(3) {
    animation-delay: 0.3s;
}

.what-we-do-card:nth-child(4) {
    animation-delay: 0.4s;
}




/* products and services page */


.custom-breadcrumb-area {
    background-image: url('../images/brudcrump/breadcrumb_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: clamp(350px, 35vh, 400px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.custom-breadcrumb-area2 {
    background-image: url('../images/brudcrump/bannercanva2.png') !important;
    opacity: 0.9;

}

.custom-breadcrumb-area2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* White overlay, adjust 0.3 for strength */
    z-index: 1;
}
/* .custom-breadcrumb-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
} */

.custom-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    margin: 0 auto;
}

.breadcrumb-content {
    color: #fff;
    padding-top: clamp(120px, 18vh, 240px);
    padding-bottom: clamp(40px, 5vh, 80px);
}

.breadcrumb-title {
    font-size: clamp(24px, 5vw, 48px);
    margin-bottom: clamp(12px, 2vw, 25px);
    line-height: 1.2;
    color: #fff;
    font-family: var(--secondary-font);
    padding: 0 5%;
}

.custom-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: clamp(14px, 2vw, 18px);
}

.custom-breadcrumb li {
    color: #fff;
    position: relative;
}

.custom-breadcrumb li:not(:last-child)::after {
    content: "|";
    margin: 0 clamp(6px, 1vw, 12px);
    color: #fff;
}

.custom-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.custom-breadcrumb a:hover {
    text-decoration: underline;
}

.custom-breadcrumb .active {
    font-weight: 500;
    color: var(--logo-color);
}




/* Main Section */
.products-services-section {
    padding: var(--padding-4xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);

}

.products-types-section {
    padding: var(--padding-4xl) 0;
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
    /* min-height: 100vh; */
}

.products-container {
    padding: 0 var(--spacing-2xl);
    margin: 0 auto;
}

/* Header Section */
.products-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--margin-4xl);
    animation: fadeInUp 0.8s ease-out;
}

.products-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    padding: var(--padding-xs) var(--padding-lg);
    border-radius: 50px;
    font-size: var(--font-sm);
    font-weight: 500;
    margin-bottom: var(--margin-md);
    animation: slideInLeft 0.6s ease-out 0.2s both;
}

.products-main-title {
    font-family: var(--secondary-font);
    font-size: var(--font-5xl);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--margin-lg);
    line-height: 1.2;
    animation: slideInLeft 0.6s ease-out 0.4s both;
}

.products-main-description {
    font-size: var(--font-lg);
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: var(--margin-2xl);
    animation: slideInLeft 0.6s ease-out 0.6s both;
}

.products-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    animation: slideInLeft 0.6s ease-out 0.8s both;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--text-white);
    padding: var(--padding-sm) var(--padding-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.certification-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.certification-item i {
    color: var(--primary-color);
    font-size: var(--font-lg);
}

.certification-item span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: var(--font-sm);
}

/* Header Visual */
.products-header-visual {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
}

.visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.facility-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.visual-card:hover .facility-image {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    top: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

.visual-overlay i {
    font-size: var(--font-2xl);
    color: var(--primary-color);
}

.products-grid {
    display: grid;
    gap: var(--spacing-lg);
    margin-bottom: var(--margin-4xl);
}

.product-category {


    padding: 0 var(--spacing-2xl);

    /* border: 1px solid var(--border-color); */
    transition: var(--transition-normal);
    animation: fadeInUp 0.8s ease-out;
}

.product-category:hover {
    transform: translateY(-5px);

}

.residential-category {
    animation-delay: 0.2s;
}

.commercial-category {
    animation-delay: 0.4s;
}

/* Category Header */
.category-header {
    display: flex;
    justify-content: space-between;
    /* Aligns left and right */
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: var(--padding-xl);
    gap: var(--spacing-xl);
}

.category-title-section {
    flex: 1 1 auto;
}

.category-contact-button .btn {
    padding: 10px 24px;
    font-size: clamp(14px, 2vw, 16px);
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.category-contact-button .btn:hover {
    background-color: var(--primary-dark);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(31, 115, 250, 0.3);
    animation: bounceIn 0.8s ease-out;
}

.category-icon i {
    font-size: var(--font-3xl);
    color: var(--text-white);
}

.category-title {
    font-family: var(--secondary-font);
    font-size: var(--font-3xl);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--margin-xs);
}

.category-subtitle {
    font-size: var(--font-lg);
    color: var(--text-gray);
    font-weight: 400;
}

/* Products List */
.products-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    gap: var(--spacing-xl);
}

.product-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--padding-xl);
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: -1;
}

.product-item:hover::before {
    transform: scaleY(1);
}

.product-item:hover {
    background: var(--text-white);
    transform: translateX(8px);
    /* box-shadow: var(--shadow-md); */
}

.product-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.product-item:hover .product-icon {
    transform: rotate(5deg) scale(1.1);
}

.product-icon i {
    font-size: var(--font-xl);
    color: var(--text-white);
}

.product-title {
    font-family: var(--secondary-font);
    font-size: var(--font-xl);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--margin-sm);
}

.product-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--margin-md);
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.feature-tag {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    /* color: var(--text-white); */
    padding: var(--padding-xs) var(--padding-sm);
    border-radius: 5px;
    font-size: var(--font-xs);
    font-weight: 500;
    transition: var(--transition-fast);
}

.feature-tag:hover {
    transform: scale(1.05);
}

.product-visual {
    width: 120px;
    height: 157px;
    border-radius: 12px;
    overflow: hidden;
    /* background: var(--text-white); */
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: var(--shadow-sm); */
    transition: var(--transition-normal);
    /* border: 1px solid var(--border-color); */
}

.product-item:hover .product-visual {
    transform: scale(1.05);
    /* box-shadow: var(--shadow-md); */
}

@media (max-width:768px) {

    .product-visual2 {
        width: 100%;
    }

    .product-features {
        justify-content: center;
    }

    .product-icon {

        margin: 0 auto;
    }
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/* Call to Action */
/* Call to Action */
.products-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--bg-dark));
    border-radius: 24px;
    padding: var(--padding-4xl);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--spacing-4xl);
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* .cta-content {
    color: var(--text-white);
} */

.cta-title {
    font-family: var(--secondary-font);
    font-size: var(--font-4xl);
    font-weight: 700;
    margin-bottom: var(--margin-lg);
}

.cta-description {
    font-size: var(--font-lg);
    opacity: 0.9;
    margin-bottom: var(--margin-2xl);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
}

.cta-button {
    padding: var(--padding-lg) var(--padding-2xl);
    border-radius: var(--border-radius-lg);
    font-size: var(--font-lg);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-family);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(31, 115, 250, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.cta-button.secondary:hover {
    background: var(--text-white);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Floating Elements */
.floating-elements {
    position: relative;
    width: 200px;
    height: 200px;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-element:nth-child(1) {
    top: 0;
    right: 0;
    animation: float 3s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    bottom: 0;
    left: 0;
    animation: float 3s ease-in-out infinite 1s;
}

.floating-element:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 3s ease-in-out infinite 2s;
}

.floating-element i {
    color: var(--text-white);
    font-size: var(--font-xl);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-header {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }

    .products-main-title {
        font-size: var(--font-4xl);
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .product-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .products-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .products-services-section {
        padding: var(--padding-2xl) var(--padding-lg);
    }

    .products-main-title {
        font-size: var(--font-3xl);
    }

    .category-title {
        font-size: var(--font-2xl);
    }

    .cta-title {
        font-size: var(--font-3xl);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .products-certifications {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .products-container {
        padding: 0 var(--padding-sm);
    }

    .product-category {
        padding: 5px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon i {
        font-size: var(--font-2xl);
    }


    .products-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        /* 2 columns */
        gap: var(--spacing-xl);
    }

    .visual-card {

        height: 300px !important;
        width: 100%;
    }

    .products-main-description {
        text-align: justify;
    }
}



/* services section styles */




/* Header */
.areas-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    margin-bottom: var(--margin-4xl);
    padding: var(--padding-2xl);
    border-bottom: 2px solid var(--border-color);
    background-color: #004C60;
}

@media (max-width:425px) {
    .areas-header {

        grid-template-columns: 1fr;

    }

    .service-areas-container {
        padding: 5px !important;
    }
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    padding: var(--padding-sm) var(--padding-lg);
    border-radius: 50px;
    font-size: var(--font-sm);
    font-weight: 500;
    margin-bottom: var(--margin-lg);
    animation: slideInLeft 0.6s ease-out;
}

.areas-main-title {
    font-family: var(--secondary-font);
    font-size: var(--font-5xl);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--margin-sm);
    animation: slideInLeft 0.6s ease-out 0.2s both;
}

.areas-subtitle {
    font-family: var(--secondary-font);
    font-size: var(--font-2xl);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--margin-lg);
    animation: slideInLeft 0.6s ease-out 0.4s both;
}

.areas-description {
    font-size: var(--font-lg);
    color: var(--text-white);
    line-height: 1.7;
    animation: slideInLeft 0.6s ease-out 0.6s both;
}

.coverage-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    /* background: var(--text-white); */
    padding: var(--padding-xl);
    border-radius: 16px;

    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-4px);

}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(31, 115, 250, 0.3);
}

.stat-icon i {
    font-size: var(--font-xl);
    color: var(--text-white);
}

.stat-number {
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--margin-xs);
}

.stat-label {
    font-size: var(--font-sm);
    color: var(--text-white);
    font-weight: 500;
}

/* Section Title Wrapper */
.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--margin-2xl);
    animation: fadeInUp 0.8s ease-out;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(31, 115, 250, 0.3);
}

.section-icon.delivery {
    background: linear-gradient(135deg, var(--secondary-color), var(--bg-dark));
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.3);
}

.section-icon i {
    font-size: var(--font-2xl);
    color: var(--text-white);
}

.section-title {
    font-family: var(--secondary-font);
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--secondary-color);
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
    height: 500px;
    width: 100%;
}

.facility-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Service Areas Section */
.service-areas {
    padding: var(--padding-4xl) 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.service-areas-container {
    padding: 0 var(--spacing-2xl);
}

.areas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Map Container */
.map-container {
    position: sticky;
    top: var(--spacing-xl);
}

.map-wrapper {
    /* background: var(--text-white); */
    border-radius: 5px;
    padding: var(--padding-xl);

    border: 1px solid var(--border-color);
}

.map-background {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(31, 115, 250, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 115, 250, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.coverage-area {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 70%;
    height: 60%;
    background: rgba(31, 115, 250, 0.1);
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    animation: pulse-coverage 3s ease-in-out infinite;
}

@keyframes pulse-coverage {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }
}

/* Location Pins */
.location-pin {
    position: absolute;
    cursor: pointer;
    transition: var(--transition-normal);
}

.pin-1 {
    top: 25%;
    left: 20%;
}

.pin-2 {
    top: 35%;
    left: 45%;
}

.pin-3 {
    top: 50%;
    left: 30%;
}

.pin-4 {
    top: 60%;
    left: 60%;
}

.pin-5 {
    top: 45%;
    left: 70%;
}

.pin-marker {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(31, 115, 250, 0.3);
    animation: pin-bounce 2s ease-in-out infinite;
}

.pin-marker i {
    color: var(--text-white);
    font-size: var(--font-sm);
    transform: rotate(45deg);
}

.pin-label {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-white);
    padding: var(--padding-xs) var(--padding-sm);
    border-radius: 6px;
    font-size: var(--font-xs);
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.location-pin:hover .pin-label {
    opacity: 1;
}

.location-pin:hover .pin-marker {
    transform: rotate(-45deg) scale(1.2);
}

@keyframes pin-bounce {

    0%,
    100% {
        transform: rotate(-45deg) translateY(0);
    }

    50% {
        transform: rotate(-45deg) translateY(-5px);
    }
}

/* Map Legend */
.map-legend {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-sm);
    color: var(--text-gray);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(31, 115, 250, 0.2);
    border: 2px dashed var(--primary-color);
}

.legend-pin {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

/* Areas List Container */
.areas-list-container {
    /* background: var(--text-white); */
    border-radius: 5px;
    padding: var(--padding-2xl);

    border: 1px solid var(--border-color);
}

.list-header {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--border-color);
}

.list-header h3 {
    font-family: var(--secondary-font);
    font-size: var(--font-2xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.list-header p {
    font-size: var(--font-md);
    color: var(--text-gray);
    line-height: 1.7;
}

.areas-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.area-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--padding-lg);
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    cursor: pointer;
}

.area-item:hover {
    background: var(--text-white);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(31, 115, 250, 0.1);
}

.area-icon {
    width: 50px;
    height: 50px;
    background: rgba(31, 115, 250, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.area-icon i {
    font-size: var(--font-lg);
    color: var(--primary-color);
}

.area-info {
    flex: 1;
}

.area-info h4 {
    font-family: var(--secondary-font);
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--margin-xs);
}

.area-info p {
    font-size: var(--font-sm);
    color: var(--text-gray);
}

.area-status {
    padding: var(--padding-xs) var(--padding-md);
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-radius: 20px;
    font-size: var(--font-xs);
    font-weight: 500;
    text-transform: uppercase;
}

.delivery-options-section {
    background-image: url('../images/backgrounds/areaheader.jpg');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    position: relative;
    /* padding: 100px 20px; */
    color: #fff;
}

.delivery-overlay {
    background: rgba(0, 0, 0, 0.7);

    padding: var(--spacing-2xl);
}


.section-header2 h2 {

    font-size: var(--font-5xl);
    font-weight: 700;
    color: var(--text-white);
    font-family: var(--secondary-font);
}


@keyframes underlineSlide {

    0%,
    100% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(0.3);
    }
}

.delivery-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.delivery-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: 290px;
    padding: 30px 20px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.delivery-card:hover {
    transform: translateY(-10px) scale(1.03);
    /* box-shadow: 0 25px 40px rgba(0, 212, 255, 0.2); */
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #008cff);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: popIn 0.8s ease forwards;
}

.icon-circle i {
    color: white;
    font-size: 26px;
}

.delivery-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.delivery-card p {
    font-size: 15px;
    color: #e0e0e0;
    line-height: 1.6;
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .delivery-card {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .areas-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .map-container {
        position: static;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: var(--font-3xl);
    }

    .options-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .map-background {
        height: 300px;
    }

    .areas-list-container,
    .map-wrapper,
    .delivery-card {
        padding: var(--padding-lg);
    }
}

@media (max-width: 480px) {

    .service-areas,
    .delivery-options {
        padding: var(--spacing-2xl) 0;
    }

    .area-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }

    .card-animation {
        height: 100px;
    }
}

.my-svg-animation .animated-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawWave 1.5s ease forwards;
    transition: stroke 0.3s ease;
}

@keyframes drawWave {
    to {
        stroke-dashoffset: 0;
    }
}

/* Optional: Hover animation like redraw */
.wavy-line2:hover .animated-path {
    stroke: #fff;
    animation: drawWaveHover 1.5s ease forwards;
}

@keyframes drawWaveHover {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.rotated-svg {
    transform: scaleY(-1);
    display: block;
    /* margin: 10px auto 0; */
    color: #fff;
    max-width: 117px;
}

.intro-badge i {


    color: var(--primary-color);
    font-size: 20px;
}

/* Contact Section */
.contact-section {
    padding: var(--padding-4xl) 0;
    background: #ffffff;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    overflow: hidden;
}

@media (max-width:768px) {
    .contact-page-info-icon {
        display: none !important;
    }

    .contact-section {
        padding: 0 !important;
    }

    .contact-page-info {
        padding: 20px 20px;
    }
}

@media (max-width:568px) {
    .contact-page-layout {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 0 !important;
    }

    .contact-page-info {
        padding: 20px 20px !important;
    }
}

/* @media (max-width:375px) {
    .contact-page-info-icon{
        display: none !important;
    }
} */
/* Left Side - Contact Information */
.contact-page-info {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 0 var(--padding-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-xl);
    position: relative;
}

.contact-page-contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(31, 115, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-page-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.contact-page-info-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
    transition: var(--transition-normal);
}

.contact-page-info-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.contact-page-info-icon i {
    font-size: var(--font-2xl);
    color: var(--text-white);
}

.contact-page-info-content h3 {
    font-family: var(--secondary-font);
    font-size: var(--font-2xl);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.contact-page-info-content p {
    font-size: var(--font-md);
    color: #cbd5e1;
    line-height: 1.7;
}

.contact-page-info-content a {
    color: var(--logo-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-page-info-content a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Right Side - Quote Form */
.quote-form-container {
    background: #ffffff;
    padding: 0 var(--padding-4xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    text-align: left;
    margin-bottom: var(--spacing-3xl);
}

.form-header h2 {
    font-family: var(--secondary-font);
    font-size: 60PX;
    font-weight: 700;
    color: var(--text-dark);

    letter-spacing: -0.02em;
}

.header-decoration {
    margin-bottom: var(--spacing-lg);
}

.header-decoration svg {
    opacity: 0.8;
}

/* Form Styles */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {

    width: 100%;
    border: none;
    background-color: rgb(247, 247, 247);
    padding: 15px 15px;
    transition: .3s;
    border-radius: 10px;
    border: 1px solid rgb(183, 183, 183);
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    /* or your desired color */
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 16, 242, 0.1);
    /* optional soft glow */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-family);
}

/* Submit Button */
.submit-btn {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: var(--padding-sm) var(--padding-lg);
    border-radius: var(--border-radius-md);
    font-size: var(--font-md);
    font-weight: 600;
    font-family: var(--font-family);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
    align-self: flex-start;
    margin-top: var(--spacing-md);
    margin-bottom: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info {
        /* padding: var(--padding-2xl); */
        gap: var(--spacing-2xl);
        display: block;
    }

    .quote-form-container {
        padding: var(--padding-2xl);
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .info-icon i {
        font-size: var(--font-xl);
    }

    .info-content h3 {
        font-size: var(--font-xl);
    }

    .form-header h2 {
        font-size: var(--font-3xl);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: var(--spacing-2xl) 0;
    }

    .hero-badge-row {
        justify-content: center;
    }

    .contact-info {
        /* padding: var(--padding-xl); */
        gap: var(--spacing-xl);
        display: flex;
    }

    .quote-form-container {
        padding: var(--padding-xl);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .info-item {
        gap: var(--spacing-lg);
    }

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-icon i {
        font-size: var(--font-lg);
    }

    .info-content h3 {
        font-size: var(--font-lg);
    }

    .info-content p {
        font-size: var(--font-sm);
    }

    .form-header h2 {
        font-size: var(--font-2xl);
    }
}

@media (max-width: 480px) {
    .contact-info {
        padding: var(--padding-lg);
    }

    .quote-form-container {
        padding: var(--padding-lg);
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }

    .submit-btn {
        width: 100%;
        text-align: center;
    }

    .form-group input,
    .form-group textarea {
        padding: var(--padding-md);
    }
}

/* Form Validation Styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #10b981;
}

/* Loading State */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn.loading {
    position: relative;
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--text-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}




/* Infrastructure Section */
.infrastructure-section {
    padding: var(--spacing-4xl) 0;
    background: #f8fafc;
}

.infrastructure-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

/* Infrastructure Cards */
.infrastructure-card {
    background: var(--text-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.infrastructure-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.infrastructure-card:hover .card-image img {
    transform: scale(1.05);
}

.author-badge {
    position: absolute;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-white);
    padding: var(--padding-xs) var(--padding-md);
    border-radius: 20px;
    font-size: var(--font-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(31, 115, 250, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: var(--font-xl);
    cursor: pointer;
    transition: var(--transition-normal);
}

.play-button:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.card-content {
    padding: var(--padding-xl);
}

.card-content h3 {
    font-family: var(--secondary-font);
    font-size: var(--font-2xl);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.card-content p {
    font-size: var(--font-md);
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.card-meta {
    display: flex;
    gap: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-sm);
    color: var(--primary-color);
}

.meta-item i {
    font-size: var(--font-sm);
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    padding: var(--padding-2xl);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.quote-icon i {
    font-size: var(--font-2xl);
    color: var(--text-white);
}

.quote-section blockquote {
    font-family: var(--secondary-font);
    font-size: var(--font-xl);
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    position: sticky;
    top: var(--spacing-xl);
}

.sidebar-widget {
    /* background: var(--text-white); */
    border-radius: var(--border-radius-lg);
    padding: var(--padding-xl);
    /* box-shadow: var(--shadow-md); */
    border: 1px solid var(--border-color);
}

.sidebar-widget h4 {
    font-family: var(--secondary-font);
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Search Box */
.search-box {
    display: flex;
    gap: var(--spacing-sm);
}

.search-box input {
    flex: 1;
    padding: var(--padding-md);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: var(--font-sm);
    outline: none;
    transition: var(--transition-normal);
}

.search-box input:focus {
    border-color: var(--primary-color);
}

.search-box button {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: var(--text-white);
    border: none;
    padding: var(--padding-md) var(--padding-lg);
    border-radius: var(--border-radius-md);
    font-size: var(--font-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.search-box button:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: var(--font-md);
}

.social-link.twitter {
    background: rgba(29, 161, 242, 0.1);
    color: #1da1f2;
}

.social-link.pinterest {
    background: rgba(189, 8, 28, 0.1);
    color: #bd081c;
}

.social-link.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.social-link.linkedin {
    background: rgba(0, 119, 181, 0.1);
    color: #0077b5;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--padding-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: var(--font-sm);
    transition: var(--transition-fast);
}

.category-list a:hover {
    color: var(--primary-color);
}

.count {
    font-size: var(--font-xs);
    color: var(--text-gray);
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 10px;
}

/* Recent List */
.recent-list {
    list-style: none;
}

.recent-list li {
    padding: var(--padding-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.recent-list li:last-child {
    border-bottom: none;
}

.recent-list a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: var(--font-sm);
    line-height: 1.5;
    transition: var(--transition-fast);
}

.recent-list a:hover {
    color: var(--primary-color);
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.tag {
    background: #f1f5f9;
    color: var(--text-gray);
    padding: var(--padding-xs) var(--padding-md);
    border-radius: 20px;
    font-size: var(--font-xs);
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid var(--border-color);
}

.tag:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .infrastructure-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .sidebar {
        position: static;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        display: grid;
    }
}

@media (max-width: 768px) {
    .infrastructure-section {
        padding: var(--spacing-2xl) 0;
    }

    .card-content {
        padding: var(--padding-lg);
    }

    .card-content h3 {
        font-size: var(--font-xl);
    }

    .quote-section {
        padding: var(--padding-lg);
    }

    .quote-section blockquote {
        font-size: var(--font-lg);
    }

    .sidebar-widget {
        padding: var(--padding-lg);
    }

    .sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .card-meta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .search-box {
        flex-direction: column;
    }

    .search-box button {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

* Gallery Container */ .gallery-container {
    margin-top: 100px;
    padding: var(--padding-sm);
    min-height: calc(100vh - 100px);
}

/* Perfect Grid System - No Gaps */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(20, 150px);
    gap: 4px;
    max-width: 1400px;
    margin: 0 auto;
    background: #000;
}

/* Specific Item Positioning - No Gaps */
.item-1 {
    grid-column: 1/5;
    grid-row: 1/3;
}

.item-2 {
    grid-column: 5/9;
    grid-row: 1/3;
}

.item-3 {
    grid-column: 9/13;
    grid-row: 1/4;
}

.item-4 {
    grid-column: 1/4;
    grid-row: 3/5;
}

.item-5 {
    grid-column: 4/7;
    grid-row: 3/5;
}

.item-6 {
    grid-column: 7/9;
    grid-row: 3/5;
    height: 330px;
}

.item-7 {
    grid-column: 1/9;
    grid-row: 5/8;
}

.item-8 {
    grid-column: 9/13;
    grid-row: 4/8;
    height: 650px;
}

.item-9 {
    grid-column: 1/4;
    grid-row: 8/10;
}

.item-10 {
    grid-column: 4/7;
    grid-row: 8/10;
}

.item-11 {
    grid-column: 7/10;
    grid-row: 8/10;
}

.item-12 {
    grid-column: 10/13;
    grid-row: 8/10;
}

.item-13 {
    grid-column: 1/6;
    grid-row: 10/13;
}

.item-14 {
    grid-column: 6/11;
    grid-row: 10/13;
}

.item-15 {
    grid-column: 11/13;
    grid-row: 10/13;
    height: 470px;
}

.item-16 {
    grid-column: 1/13;
    grid-row: 13/16;
}

.item-17 {
    grid-column: 1/4;
    grid-row: 16/18;
}

.item-18 {
    grid-column: 4/7;
    grid-row: 16/18;
}

.item-19 {
    grid-column: 7/10;
    grid-row: 16/18;
}

.item-20 {
    grid-column: 10/13;
    grid-row: 16/18;
}

/* Gallery Item Styling */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    background: #111;
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

/* Item Overlay */
.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            transparent 40%,
            rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--padding-lg);
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.overlay-content h3 {
    font-family: var(--secondary-font);
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--spacing-xs);
}

.overlay-content p {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

.item-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--padding-xs) var(--padding-sm);
    border-radius: 20px;
    font-size: var(--font-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zoom-icon {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 40px;
    height: 40px;
    background: rgba(31, 115, 250, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: var(--font-sm);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-normal);
}

.gallery-item:hover .zoom-icon {
    opacity: 1;
    transform: scale(1);
}

/* Category Colors */
.gallery-item[data-category="treatment"] .item-category {
    background: #10b981;
}

.gallery-item[data-category="storage"] .item-category {
    background: #f59e0b;
}

.gallery-item[data-category="quality"] .item-category {
    background: #8b5cf6;
}

.gallery-item[data-category="distribution"] .item-category {
    background: #ef4444;
}

.gallery-item[data-category="vehicles"] .item-category {
    background: #06b6d4;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    width: 70vw;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox img {
    max-width: 100%;
    height: 60vh;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
}

.lightbox-info {
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    padding: var(--padding-lg);
    border-radius: var(--border-radius-lg);
    /* margin-top: var(--spacing-lg); */
    text-align: center;
    min-width: 300px;
}

.lightbox-info h3 {
    font-family: var(--secondary-font);
    font-size: var(--font-xl);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
}

.lightbox-info p {
    font-size: var(--font-md);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
}

.lightbox-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--padding-xs) var(--padding-md);
    border-radius: 20px;
    font-size: var(--font-sm);
    font-weight: 500;
    text-transform: uppercase;
}

.close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: var(--font-2xl);
    color: var(--text-white);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--padding-xl);
    pointer-events: none;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(31, 115, 250, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: var(--font-lg);
    cursor: pointer;
    transition: var(--transition-fast);
    pointer-events: all;
}

.nav-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(25, 120px);
    }

    .item-1 {
        grid-column: 1/4;
        grid-row: 1/3;
    }

    .item-2 {
        grid-column: 4/7;
        grid-row: 1/3;
    }

    .item-3 {
        grid-column: 7/9;
        grid-row: 1/4;
    }

    .item-4 {
        grid-column: 1/3;
        grid-row: 3/5;
    }

    .item-5 {
        grid-column: 3/5;
        grid-row: 3/5;
    }

    .item-6 {
        grid-column: 5/7;
        grid-row: 3/5;
    }

    .item-7 {
        grid-column: 1/7;
        grid-row: 5/8;
    }

    .item-8 {
        grid-column: 7/9;
        grid-row: 4/8;
    }

    .item-9 {
        grid-column: 1/3;
        grid-row: 8/10;
    }

    .item-10 {
        grid-column: 3/5;
        grid-row: 8/10;
    }

    .item-11 {
        grid-column: 5/7;
        grid-row: 8/10;
    }

    .item-12 {
        grid-column: 7/9;
        grid-row: 8/10;
    }

    .item-13 {
        grid-column: 1/5;
        grid-row: 10/13;
    }

    .item-14 {
        grid-column: 5/9;
        grid-row: 10/13;
    }

    .item-15 {
        grid-column: 1/9;
        grid-row: 13/16;
    }

    .item-16 {
        grid-column: 1/3;
        grid-row: 16/18;
    }

    .item-17 {
        grid-column: 3/5;
        grid-row: 16/18;
    }

    .item-18 {
        grid-column: 5/7;
        grid-row: 16/18;
    }

    .item-19 {
        grid-column: 7/9;
        grid-row: 16/18;
    }

    .item-20 {
        grid-column: 1/9;
        grid-row: 18/20;
    }
}

@media (max-width: 768px) {
    .gallery-header {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--padding-md);
    }

    .gallery-container {
        margin-top: 120px;
        padding: var(--padding-xs);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(30, 100px);
        gap: 2px;
    }

    .item-1 {
        grid-column: 1/3;
        grid-row: 1/3;
    }

    .item-2 {
        grid-column: 3/5;
        grid-row: 1/3;
    }

    .item-3 {
        grid-column: 1/5;
        grid-row: 3/5;
    }

    .item-4 {
        grid-column: 1/3;
        grid-row: 5/7;
    }

    .item-5 {
        grid-column: 3/5;
        grid-row: 5/7;
    }

    .item-6 {
        grid-column: 1/5;
        grid-row: 7/9;
    }

    .item-7 {
        grid-column: 1/5;
        grid-row: 9/12;
    }

    .item-8 {
        grid-column: 1/3;
        grid-row: 12/14;
    }

    .item-9 {
        grid-column: 3/5;
        grid-row: 12/14;
    }

    .item-10 {
        grid-column: 1/3;
        grid-row: 14/16;
    }

    .item-11 {
        grid-column: 3/5;
        grid-row: 14/16;
    }

    .item-12 {
        grid-column: 1/5;
        grid-row: 16/18;
    }

    .item-13 {
        grid-column: 1/3;
        grid-row: 18/20;
    }

    .item-14 {
        grid-column: 3/5;
        grid-row: 18/20;
    }

    .item-15 {
        grid-column: 1/5;
        grid-row: 20/23;
    }

    .item-16 {
        grid-column: 1/3;
        grid-row: 23/25;
    }

    .item-17 {
        grid-column: 3/5;
        grid-row: 23/25;
    }

    .item-18 {
        grid-column: 1/3;
        grid-row: 25/27;
    }

    .item-19 {
        grid-column: 3/5;
        grid-row: 25/27;
    }

    .item-20 {
        grid-column: 1/5;
        grid-row: 27/29;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(40, 80px);
        gap: 2px;
    }

    .item-1 {
        grid-column: 1/3;
        grid-row: 1/3;
    }

    .item-2 {
        grid-column: 1/3;
        grid-row: 3/5;
    }

    .item-3 {
        grid-column: 1/3;
        grid-row: 5/7;
    }

    .item-4 {
        grid-column: 1/3;
        grid-row: 7/9;
    }

    .item-5 {
        grid-column: 1/3;
        grid-row: 9/11;
    }

    .item-6 {
        grid-column: 1/3;
        grid-row: 9/13;

    }

    .item-7 {
        grid-column: 1/3;
        grid-row: 13/16;
    }

    .item-8 {
        grid-column: 1/3;
        grid-row: 16/18;
    }

    .item-9 {
        grid-column: 1/3;
        grid-row: 18/20;
    }

    .item-10 {
        grid-column: 1/3;
        grid-row: 20/22;
    }

    .item-11 {
        grid-column: 1/3;
        grid-row: 22/24;
    }

    .item-12 {
        grid-column: 1/3;
        grid-row: 24/26;
    }

    .item-13 {
        grid-column: 1/3;
        grid-row: 26/28;
    }

    .item-14 {
        grid-column: 1/3;
        grid-row: 28/30;
    }

    .item-15 {
        grid-column: 1/3;
        grid-row: 30/33;
    }

    .item-16 {
        grid-column: 1/3;
        grid-row: 33/35;
    }

    .item-17 {
        grid-column: 1/3;
        grid-row: 35/37;
    }

    .item-18 {
        grid-column: 1/3;
        grid-row: 37/39;
    }

    .item-19 {
        grid-column: 1/3;
        grid-row: 39/41;
    }

    .item-20 {
        grid-column: 1/3;
        grid-row: 41/43;
    }
}

/* Loading Animation */
.gallery-item {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.15s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.25s;
}

.gallery-item:nth-child(5) {
    animation-delay: 0.3s;
}

.gallery-item:nth-child(6) {
    animation-delay: 0.35s;
}

.gallery-item:nth-child(7) {
    animation-delay: 0.4s;
}

.gallery-item:nth-child(8) {
    animation-delay: 0.45s;
}

.gallery-item:nth-child(9) {
    animation-delay: 0.5s;
}

.gallery-item:nth-child(10) {
    animation-delay: 0.55s;
}

.gallery-item:nth-child(n+11) {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* slider */
/* Demo content */
.carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: 120vh;
    min-height: 400px;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
    display: flex;
    align-items: flex-end;

}

/* Small phones (up to 320px) */
/* on  */
@media (max-width:425px) {
    .carousel {
        position: relative;
        overflow: auto;
        max-width: 150%;
        height: 60vh;
        min-height: 300px;
        /* top: 50px; */
        /* padding-bottom: 20px; */
    }
}

@media (max-width:520px) {
    .carousel {
        position: relative;
        overflow: auto;
        max-width: 150%;
        height: 60vh;
        min-height: 300px;
        /* top: 70px; */
    }
}

@media (max-width:625px) {
    .carousel {
        position: relative;
        overflow: auto;
        max-width: 150%;
        height: 50vh;
        min-height: 300px;
        top: 30px;
    }
        .arrows {
            display: flex;
            gap: 0.5rem;
            padding-right: 80px;
        }
}

@media (max-width:1540px) {
    .carousel {
        position: relative;
        overflow: auto;
        max-width: 150%;
        height: 70vh;
        min-height: 300px;
        /* top: 50px; */
    }

    .arrows {
        display: flex;
        gap: 0.5rem;
        padding-right: 160px;
    }
}
/* off  */

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide.exit-left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

.slide.exit-right {
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.slide-content {
    padding: 2rem;
    z-index: 2;
    max-width: 700px;
    margin-bottom: 30px;
    position: relative;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #fff;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateY(10px);
    opacity: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.slide.active .slide-content h1 {
    transform: translateY(0px);
    opacity: 1;
}

.slide-content p,
.slide-content .author {
    color: #ddd;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.slide.active .slide-content p,
.slide.active .slide-content .author {
    opacity: 1;
    transform: translateY(0px);
}

.slide-content .author {
    font-size: 0.85rem;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    width: fit-content;
    padding: 5px 10px;
}

.controls {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 32px;
    background-color: var(--primary-color);
}

.arrows {
    display: flex;
    gap: 0.5rem;
}

.arrow-btn {
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.3s;
}

.arrow-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .slide-content {
        padding: 1.5rem;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.2rem;
        margin-top: 20px;
    }

    .slide-content p {
        display: none;
    }
}




.infrastructure-section {
    padding: 40px 0;
    min-height: 100vh;
}

.infra-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;

    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;

}

.section-subtitle {
    font-size: 1.3rem;

    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.stat-card {

    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--padding-xl);
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}


.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}



.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.facility-card {

    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ddd;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.facility-description {
    font-size: var(--font-md);
    color: var(--text-gray);
    line-height: 1.6;
}

.facility-card img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.facility-card-secoundary img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.facility-card:nth-child(1) {
    animation-delay: 0.3s;
}

.facility-card:nth-child(2) {
    animation-delay: 0.4s;
}

.facility-card:nth-child(3) {
    animation-delay: 0.5s;
}

.facility-card:nth-child(4) {
    animation-delay: 0.6s;
}

.facility-card:nth-child(5) {
    animation-delay: 0.7s;
}

.facility-card:hover {

    border: 1px solid var(--primary-color);
}

.facility-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* .facility-card:hover .facility-image {
    transform: scale(1.05);
} */

.facility-content {
    padding: 1rem;
}

.facility-title {
    font-family: var(--secondary-font);
    font-size: var(--font-xl);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--margin-sm);
}

.facility-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}



.facility-specs {
    background: rgba(30, 60, 114, 0.1);
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #1e3c72;
    font-weight: 600;
}

.cta-section {
    text-align: center;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #1e3c72;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    background: transparent;
    color: white;
    border-color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .facility-card {
        margin: 0 auto;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .facility-content {
        padding: 1.5rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {

    .facility-card,
    .stat-card,
    .section-header,
    .cta-section {
        animation: none;
    }

    .facility-card:hover,
    .stat-card:hover {
        transform: none;
    }

    .facility-card:hover .facility-image {
        transform: none;
    }
}

.arrow-icon {
    transition: transform 0.3s ease;
}

/* On hover, move the icon slightly to the right */
.cta-content:hover .arrow-icon {
    transform: translateX(5px);
}

.arrow-icon2 {
    color: #fff;
}


.brand-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.brand-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.brand-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.brand-item:hover .brand-image {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.brand-title {

    font-family: var(--secondary-font);
    font-size: var(--font-xl);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--margin-sm);
    border: 1px dotted var(--bg-dark);
    border-radius: 10px;
}

.brand-section-header {
    text-align: center;
    justify-content: center;
}



/* responsive for slider new  */
/* Extra Large Screens (2000px and above) */
@media (min-width: 2000px) {
    .carousel {
        height: 100vh;
        max-width: 2000px;
        margin: 0 auto;
    }

    .slide-content {
        max-width: 900px;
        margin-bottom: 80px;
        padding: 3rem;
    }

    .slide-content h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .slide-content p {
        font-size: 1.4rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .slide-content .author {
        font-size: 1.1rem;
        padding: 8px 16px;
    }

    .controls {
        padding: 0 3rem;
        bottom: 2rem;
    }

    .dot {
        width: 16px;
        height: 16px;
    }

    .dot.active {
        width: 40px;
    }

    .arrow-btn {
        padding: 0.8rem 1.2rem;
        font-size: 1.8rem;
        border-radius: 16px;
    }

    .arrows {
        gap: 1rem;
        padding-right: 200px;
    }

    /* Adjust about section for large screens */
    .about-grid {
        max-width: 1800px;
        margin: 0 auto;
    }

    .about-image img {
        max-width: 100%;
        height: auto;
    }

    .about-title h2 {
        font-size: 2.5rem;
    }

    .about-content p,
    .about-list li {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .intro-text {
        font-size: 1.3rem;
        line-height: 1.7;
        max-width: 1600px;
        margin: 0 auto 2rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .wavy-line svg {
        width: 150px;
        height: 30px;
    }
}
/* Tablet and Medium Devices (768px - 1024px) */
@media (max-width: 1024px) {
    .carousel {
        height: 80vh;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .controls {
        padding: 0 1.5rem;
    }
}

/* Small Tablets (625px - 768px) */
@media (max-width: 768px) {
    .carousel {
        height: 70vh;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .arrows {
        padding-right: 100px;
    }
}

/* Large Phones (520px - 625px) */
@media (max-width: 625px) {
    .carousel {
        height: 60vh;
        top: 30px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content {
        padding: 1.5rem;
        margin-bottom: 20px;
    }

    .arrows {
        padding-right: 80px;
    }
}

/* Medium Phones (425px - 520px) */
@media (max-width: 520px) {
    .carousel {
        height: 55vh;
        top: 20px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .controls {
        padding: 0 1rem;
    }

    .arrows {
        padding-right: 60px;
    }
}

/* Small Phones (up to 425px) */
@media (max-width: 425px) {
    .carousel {
        height: 10vh;
        min-height: 280px;
        top: 15px;
    }

    .slide-content h1 {
        font-size: 1.3rem;
        margin-top: 15px;
    }

    .slide-content p {
        display: none;
    }

    .slide-content .author {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 25px;
    }

    .arrow-btn {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
    }

    .arrows {
        padding-right: 40px;
    }
}

/* Extra Small Phones (up to 320px) */
@media (max-width: 320px) {
    .carousel {
        height: 3vh;
        min-height: 250px;
    }

    .slide-content h1 {
        font-size: 1.1rem;
    }

    .controls {
        padding: 0 0.8rem;
    }

    .arrows {
        padding-right: 30px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .carousel {
        height: 100vh;
    }

    .slide-content {
        margin-bottom: 10px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
        margin-top: 5px;
    }
}

/* High-resolution displays */
@media (min-resolution: 192dpi) {
    .slide {
        background-size: cover;
    }
}

/* new  */
/* Tablet to Laptop Screens (768px - 1366px) */
@media (min-width: 768px) and (max-width: 1366px) {

    /* Fix text alignment issues */
    .slide-content {
        text-align: center;
        margin: 0 auto;
        padding: 1.5rem;
    }

    .slide-content h1 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .arrow-btn{
        padding-top: 20px;
        position: relative;
            /* or absolute depending on your layout */
        top: 20px;
            /* move slightly down */
        /* top: 50px; */
    }

    .slide-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .slide-content .author {
        margin: 0 auto;
    }

    /* Control carousel image height */
    .carousel {
        height: 70vh;
    }

    .slide {
        background-size: cover;
        background-position: center center;
    }

    /* About section image height control */
    .about-image img {
        max-height: 400px;
        width: auto;
        object-fit: cover;
    }

    /* Adjust about section layout */
    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        order: 2;
        text-align: center;
    }

    .about-content {
        order: 1;
        text-align: center;
    }

    /* Center align about section elements */
    .about-title h2,
    .about-content p,
    .about-list {
        text-align: center;
    }

    .about-list {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
    }

    .bottom-cta.about-cta {
        justify-content: center;
    }
}

/* Larger Tablets (820px - 1080px) */
@media (min-width: 820px) and (max-width: 1080px) {
    .carousel {
        height: 65vh;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .about-image img {
        max-height: 350px;
    }
}

/* Smaller Tablets (768px - 819px) */
@media (min-width: 768px) and (max-width: 819px) {
    .carousel {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .about-image img {
        max-height: 320px;
    }
}

/* Landscape Tablets */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
    .carousel {
        height: 100vh;
    }

    .slide-content {
        margin-bottom: 40px;
    }
}

/* new  */
/* Large screens (1366px and above) */
@media (min-width: 1367px) {
    .carousel {
        position: relative;
        max-width: 1800px;
        /* Constrain maximum width */
        margin: 0 auto;
        /* Center the carousel */
        height: 90vh;
    }

    .slide-content {
        max-width: 800px;
        margin-left: 10%;
        /* Push content from left edge */
        margin-bottom: 60px;
        text-align: left;
        /* Ensure text alignment */
    }

    .slide-content h1 {
        text-align: left;
        margin-right: auto;
        /* Prevent stretching */
        width: 100%;
        /* Ensure full width within container */
    }

    .slide-content p {
        text-align: left;
        margin-right: auto;
        width: 100%;
    }

    /* Controls positioning */
    .controls {
        max-width: 1800px;
        margin: 0 auto;
        padding: 0 10%;
        /* Add padding instead of fixed positioning */
        left: 0;
        right: 0;
    }

    /* About section fixes for large screens */
    .about-area .container {
        max-width: 1600px;
        margin: 0 auto;
    }

    .about-grid {
        justify-content: center;
        gap: 4rem;
    }

    .about-content {
        text-align: left;
        max-width: 100%;
    }

    .about-title h2 {
        text-align: left;
    }
}

/* Extra large screens (1920px and above) */
@media (min-width: 1920px) {
    .slide-content {
        margin-left: 15%;
        max-width: 900px;
    }

    .controls {
        padding: 0 15%;
    }

    .carousel {
        max-width: 2000px;
    }
}

/* Ultra-wide screens (2500px and above) */
@media (min-width: 2500px) {
    .slide-content {
        margin-left: 20%;
        max-width: 1000px;
    }

    .controls {
        padding: 0 20%;
    }

    .carousel {
        max-width: 2400px;
    }
}

/* Prevent content from sticking to edges on large screens */
@media (min-width: 1367px) {
    .container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .section-header {
        text-align: center;
    }

    .about-intro {
        max-width: 1200px;
        margin: 0 auto;
    }
}



/*new */
.about-sectionn {
  padding: 60px 0;
}

.bg-blue {
  background-color: #f1f7fb; /* light blue tone for right column */
}

/* Equal height for columns */
.about-sectionn .col-md-6 {
    display: flex;
    align-items: stretch; /* Keep this or change to 'center' */
}

/* Inner content full height */
.about-contentt, .fssai-content {
  height: 100%;
}

.about-sectionn .about-contentt {
  width: 100%;
  padding: 40px;
}

/* Heading colors */
.heading-left {
  color: #1A5A7A;
  font-weight: 700;
}

.heading-right {
  color: #0077b6;
  font-weight: 700;
}

/* License section */
.license-info p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.license-number {
  font-size: 20px;
  font-weight: 700;
  color: #1A5A7A;
}

/* Button styles */
.about-cta a {
  color: #1A5A7A;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.about-cta a:hover {
  color: #0e364a;
}

.about-cta .arrow-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.about-cta a:hover .arrow-icon {
  transform: translateX(5px);
}

/* ✅ Responsive adjustments */
@media (max-width: 991px) {
  .about-sectionn {
    padding: 40px 0;
  }

  .about-sectionn .col-md-6 {
    flex-direction: column;
    text-align: center;
  }

  .about-contentt,
  .fssai-content {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .about-sectionn .col-md-6 {
    margin-bottom: 20px;
  }

  .fssai-content img {
    max-width: 100px !important;
  }

  .about-sectionn h2 {
    font-size: 22px;
  }

  .license-number {
    font-size: 18px;
  }
}

/* Fix for right column */
/* Alternative approach - if you want to center the content vertically */
.about-sectionn .col-md-6.bg-blue {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F3F7FD;
    text-align: center;
    padding: 20px 15px;
    height: fit-content; /* This will make bg color only cover content */
    align-self: center; /* Center vertically in the row */
    margin: auto 0; /* Center vertically */
}

.about-sectionn .fssai-content {
  display: inline-block;
  background-color: #F3F7FD; /* Background only around content */
  padding: 20px 15px;
  border-radius: 10px; /* Optional for smooth edges */
  text-align: center;
}

/* Additional optimizations to reduce height */
.fssai-content h2 {
    margin-bottom: 15px !important; /* Reduced from 20px */
}

.fssai-content .row {
    margin-bottom: 15px !important; /* Reduced from 20px */
}

.fssai-content .license-info {
    margin-top: 10px !important; /* Reduced from 15px */
}

/* Optionally make images smaller */
.fssai-content img {
    max-width: 100px !important; /* Reduced from 120px */
}