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

        body {
            font-family: "Ubuntu", sans-serif;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Enhanced Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            align-items: center;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu li a {
            color: #000000;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 0.875rem 1.5rem;
            border-radius: 12px;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: block;
            font-family: "Ubuntu", sans-serif;
            letter-spacing: 0.3px;
        }

        .nav-menu li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .nav-menu li a:hover::before {
            opacity: 1;
            transform: scale(1);
        }

        .nav-menu li a:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
        }

        .nav-menu li a.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #2d3748;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.75rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1001;
        }

        .hamburger:hover {
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
        }

        /* Full Size Banner with Image Slider */
        .fullsize-banner {
            position: relative;
            width: 100%;
            height: 90vh;
            overflow: hidden;
            margin-top: 0;
        }

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

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

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            /* object-fit: cover; */
            object-position: center;
        }

        /* Overlay for better contrast */
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                45deg,
                rgba(0, 0, 0, 0.1) 0%,
                rgba(0, 0, 0, 0.05) 50%,
                rgba(0, 0, 0, 0.1) 100%
            );
            z-index: 1;
        }

        /* Elegant slide indicators */
        .slider-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 16px;
            z-index: 10;
        }

        .indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.4s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .indicator.active {
            background: white;
            transform: scale(1.3);
            border-color: white;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.1);
        }

        /* Navigation arrows */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .slider-nav:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav.prev {
            left: 40px;
        }

        .slider-nav.next {
            right: 40px;
        }

        .slider-nav svg {
            width: 24px;
            height: 24px;
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 1rem;
                transform: translateX(-100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000;
            }

            .nav-menu.active {
                transform: translateX(0);
            }

            .nav-menu li a {
                font-size: 1.2rem;
                padding: 1rem 2rem;
                margin: 0.5rem 0;
                border-radius: 16px;
            }

            .navbar {
                padding: 1rem;
            }

            /* Mobile Banner Height - Reduced to about 40vh */
            .fullsize-banner {
                height: 40vh;
                min-height: 300px;
            }

            .slider-nav {
                width: 50px;
                height: 50px;
                display: none; /* Hide navigation arrows on mobile */
            }

            .slider-indicators {
                bottom: 20px;
                gap: 12px;
            }

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

        @media (max-width: 480px) {
            .navbar {
                padding: 0.75rem;
            }

            /* Even smaller banner for very small screens */
            .fullsize-banner {
                height: 35vh;
                min-height: 250px;
            }

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

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

        /* Extra small screens */
        @media (max-width: 320px) {
            .fullsize-banner {
                height: 30vh;
                min-height: 200px;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

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

        .navbar {
            animation: slideIn 0.6s ease-out;
        }

        /* Zoom effect for images */
        @keyframes zoomIn {
            from {
                transform: scale(1);
            }
            to {
                transform: scale(1.05);
            }
        }

        .slide.active img {
            animation: zoomIn 10s ease-in-out infinite alternate;
        }


        



        
        /* About Section */
        
        
        .about-section {
            position: relative;
            min-height: 100vh;
            padding: 100px 20px;
            background: #ffffff;
            overflow: hidden;
        }

        /* Geometric Background Shapes */
        .bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .shape {
            position: absolute;
            opacity: 0.08;
        }

        .shape-1 {
            top: 10%;
            left: -50px;
            width: 200px;
            height: 200px;
            background: #000;
            border-radius: 50%;
            animation: float 15s ease-in-out infinite;
        }

        .shape-2 {
            top: 60%;
            right: -80px;
            width: 300px;
            height: 150px;
            background: #000;
            border-radius: 50px;
            transform: rotate(45deg);
            animation: float 20s ease-in-out infinite reverse;
        }

        .shape-3 {
            bottom: 20%;
            left: 15%;
            width: 100px;
            height: 100px;
            background: #000;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            animation: float 18s ease-in-out infinite;
        }

        .shape-4 {
            top: 30%;
            right: 20%;
            width: 150px;
            height: 150px;
            background: #000;
            clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
            animation: float 22s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Header */
        .about-header {
            text-align: center;
            /* margin-bottom: 120px; */
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease-out forwards;
        }

        .section-badge {
            display: inline-block;
            font-size: 19px;
            font-weight: 600;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 30px;
            padding: 12px 30px;
            background: transparent;
            border: 2px solid #000;
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            transition: all 0.6s ease;
        }

        .section-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #000;
            transition: left 0.6s ease;
            z-index: -1;
        }

        .section-badge:hover::before {
            left: 0;
        }

        .section-badge:hover {
            color: #fff;
            transform: translateY(-2px);
        }

        .main-title {
            font-size: clamp(4rem, 8vw, 6rem);

            font-weight: 700;
            color: #000;
            margin-bottom: 40px;
            line-height: 1.1;
            position: relative;
        }

        .main-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #000, transparent);
            border-radius: 2px;
        }

        .subtitle {
            font-size: 1.3rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 300;
        }

        /* Main Content Grid */
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            margin-bottom: 120px;
        }

        .content-text {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease-out 0.3s forwards;
        }

        .content-image {
            position: relative;
            opacity: 0;
            transform: translateX(50px);
            animation: slideInRight 1s ease-out 0.5s forwards;
        }

        .content-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 30px;
            line-height: 1.2;
            text-transform: uppercase;
        }

        .content-description {
            font-size: 1.1rem;
            color: #202020;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .feature-list li {
            font-size: 1rem;
            color: #555;
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
        }

        .feature-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background: #000;
            border-radius: 50%;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: #000;
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

       .image-container {
    position: relative;
    overflow: hidden;
     
 
}

       .image-container:hover {
   
    transform: scale(1.02);
}

        .image-container img {
            width: 100%;
            /* height: 400px; */
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        /* .image-container:hover img {
            transform: scale(1.05);
        } */

        /* .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        } */

        .image-container:hover .image-overlay {
            opacity: 1;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 60px;
            margin-top: 80px;
        }

        .service-card {
            background: #fff;
            border-radius: 25px;
            padding: 0;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease-out forwards;
        }

        .service-card:nth-child(1) { animation-delay: 0.6s; }
        .service-card:nth-child(2) { animation-delay: 0.8s; }
        .service-card:nth-child(3) { animation-delay: 1s; }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(0,0,0,0.2);
        }

        .service-image {
            width: 100%;
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover .service-image::before {
            opacity: 1;
        }

        .service-content {
            padding: 40px 30px;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #000;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .service-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            font-size: 0.95rem;
            font-weight: 500;
            color: #000;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 2px;
        }

        .service-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #000;
            transition: width 0.3s ease;
        }

        .service-link:hover::after {
            width: 100%;
        }

        .service-link:hover {
            transform: translateX(5px);
        }

        /* Stats Section */
        .stats-section {
            margin-top: 120px;
            padding: 80px 60px;
            background: #000;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            opacity: 0;
            animation: countUp 2s ease-out 1.5s forwards;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #ccc;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: #000;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 50px;
    left: 50px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 300px;
    right: 100px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 150px;
    left: 200px;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 100px;
    right: 50px;
}
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        /* Responsive Design */
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .content-text {
                animation: fadeInUp 1s ease-out 0.3s forwards;
            }

            .content-image {
                animation: fadeInUp 1s ease-out 0.5s forwards;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 80px 15px;
            }

            .content-wrapper {
                gap: 40px;
            }

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

            .stats-section {
                padding: 60px 30px;
                margin-top: 80px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .stat-number {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section-badge {
                font-size: 11px;
                padding: 10px 20px;
            }

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

            .service-card {
                margin: 0 10px;
            }
        }




/* Servies Section  */
 .services-section {
      padding: 60px 0;
      background: #003399db;
      position: relative;
      overflow: hidden;
    }

    .services-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: linear-gradient(45deg, transparent 49%, rgba(0,0,0,0.02) 50%, transparent 51%); */
      background-size: 20px 20px;
      pointer-events: none;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-titles {
       display: inline-block;
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 10px 25px;
    border: 2.5px solid #ffffff;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-transform: uppercase;
    }

    .section-titles:hover {
      color: rgb(255, 255, 255);
    }

    .section-titles::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background:#003399db;
      transition: left 0.4s ease;
      z-index: -1;
    }

    .section-titles:hover::after {
      left: 0;
    }

    .section-subtitles {
      font-size: 1.1rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      margin-bottom: 25px;
    }

    .service-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 25px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0,0,0,0.03);
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      border-color: #000;
    }

    .service-number {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 30px;
      height: 30px;
      background:#003399db;
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.8rem;
    }

    .service-icon-container {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
    }

    .service-icon {
      width: 60px;
      height: 60px;
      background: #fff;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .service-icon img {
      width: 80px;
      height: 80px;
    }

    .service-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #000;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .service-description {
      color: #202020;
      line-height: 1.6;
      margin-bottom: 12px;
      font-size: 0.9rem;
    }

    .service-features {
      list-style: none;
      margin-bottom: 15px;
    }

    .service-features li {
      color: #666;
      margin-bottom: 5px;
      padding-left: 18px;
      position: relative;
      font-size: 0.85rem;
    }

    .service-features li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: #000;
      font-size: 12px;
    }

    .service-link {
      display: inline-block;
      padding: 7px 16px;
      background: #000;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-size: 0.75rem;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .service-link:hover {
      background: #333;
      transform: translateY(-2px);
      box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 1024px) and (min-width: 769px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .section-titles {
        font-size: 1.8rem;
        padding: 8px 20px;
        margin-bottom: 15px;
      }

      .service-titles {
        font-size: 1rem;
      }

      .service-description {
        font-size: 0.85rem;
      }
    }
    
/* Gallery Section */
        .gallery-section {
            padding: 60px 0 40px;
            background-color: #fff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            display: inline-block;
            font-size: 19px;
            font-weight: 600;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            padding: 10px 25px;
            border: 1.5px solid #000;
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .section-title:after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #000;
            transition: left 0.4s ease;
            z-index: -1;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Gallery Grid - Modified for 2x2 layout */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            aspect-ratio: 4 / 3;
        }

        /* .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        } */

        .gallery-img {
            width: 100%;
            height: 100%;
            /* object-fit: cover; */
            transition: transform 0.5s ease;
        }

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

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: #fff;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-caption {
            opacity: 1;
        }

        .caption-title {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .caption-text {
            font-size: 0.9rem;
        }

        /* Full-width image section with proper spacing */
        .full-width-image-section {
            width: 100%;
            margin: 80px 0;
            position: relative;
        }

        .full-width-image-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
            overflow: hidden;
        }

        .full-width-image {
            width: 100%;
            height: 500px;
            display: block;
            object-fit: cover;
        }

        .image-caption {
            text-align: center;
            margin-top: 20px;
            padding: 0 20px;
        }

        .image-caption h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 5px;
        }

        .image-caption p {
            font-size: 1rem;
            color: #555;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .gallery-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 16px;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 1fr);
                max-width: 400px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 14px;
            }
            
            .full-width-image-section {
                margin: 40px 0;
            }
            
            .image-caption h3 {
                font-size: 1.1rem;
            }
            
            .image-caption p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 992px) {
            .full-width-image-section {
                margin: 60px 0;
            }
        }

        @media (max-width: 576px) {
            .image-caption {
                margin-top: 15px;
            }
        }







        /* Contact us  */
        
        .contact-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

       

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }


        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            margin-right: 15px;
            color: #000000;
        }

        .contact-text h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #000000;
            margin-bottom: 5px;
        }

        .contact-text p, .contact-text a {
            font-size: 1rem;
            color: #555555;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-text a:hover {
            color: #000000;
        }

        .opening-hours {
            margin-top: 40px;
        }

        .hours-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }

        .hours-table tr {
            border-bottom: 1px solid #eeeeee;
        }

        .hours-table tr:last-child {
            border-bottom: none;
        }

        .hours-table td {
            padding: 12px 0;
            color: #555555;
        }

        .hours-table td:first-child {
            font-weight: 600;
            color: #000000;
        }

        .map-container {
            flex: 1;
            min-width: 300px;
            height: 500px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-container {
                flex-direction: column;
            }
            
            .contact-info, .map-container {
                width: 100%;
            }
            
            .map-container {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .contact-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-header {
                margin-bottom: 40px;
            }
            
            .contact-text h3 {
                font-size: 1.1rem;
            }
            
            .contact-text p, .contact-text a {
                font-size: 0.95rem;
            }
            
            .map-container {
                height: 300px;
            }
        }








/* Footer */
 .footer {
            background: linear-gradient(135deg, #383838 0%, #2c2c2c 100%);
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #444444, transparent);
        }

        .footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: radial-gradient(ellipse at center top, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px 40px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            position: relative;
        }

        .footer-logo img {
            max-width: 200px;
            height: auto;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            filter: brightness(1.1);
        }

        .footer-logo img:hover {
            transform: scale(1.05);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .social-link:hover {
            background: rgba(79, 70, 229, 0.2);
            border-color: #4f46e5;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
        }

        .social-link:hover::before {
            left: 100%;
        }

        .footer-section {
            position: relative;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: #ffffff;
            position: relative;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: #4f46e5;
            border-radius: 1px;
            transition: width 0.3s ease;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 1px;
            background: #4f46e5;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 15px;
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #cccccc;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .contact-info li:hover {
            color: #ffffff;
        }

        .contact-icon {
            width: 28px;
            height: 28px;
            background: rgba(79, 70, 229, 0.1);
            border: 1px solid rgba(79, 70, 229, 0.3);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #4f46e5;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-info li:hover .contact-icon {
            background: rgba(79, 70, 229, 0.2);
            border-color: #4f46e5;
            transform: scale(1.1);
        }

        .newsletter {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 25px;
            margin-top: 20px;
        }

        .newsletter h5 {
            color: #ffffff;
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .newsletter-input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #4f46e5;
            background: rgba(255, 255, 255, 0.08);
        }

        .newsletter-input::placeholder {
            color: #888888;
        }

        .newsletter-btn {
            padding: 10px 20px;
            background: #4f46e5;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #4338ca;
            transform: translateY(-1px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 20px;
            text-align: center;
            position: relative;
            background: rgba(0, 0, 0, 0.2);
        }

        .footer-bottom-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: #888888;
            font-size: 0.9rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: #888888;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #ffffff;
        }

        /* Hover animations */
        .footer-section:hover h4::after {
            width: 50px;
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
                padding: 60px 20px 30px;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 50px 20px 20px;
                text-align: center;
            }

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

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

            .footer-section h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            /* Center contact info items in mobile */
            .contact-info {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .contact-info li {
                justify-content: center;
                max-width: fit-content;
            }

            .footer-bottom-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                justify-content: center;
            }

            .newsletter-form {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        /* Smooth scrolling for demo */
        html {
            scroll-behavior: smooth;
        }