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

        /* Apply border radius to form elements */
        input[type="text"], input[type="email"], input[type="tel"], input[type="number"], 
        textarea, select {
            border-radius: 8px;
        }

        :root {
            --primary-blue: #0A0F2C;
            --accent-blue: #1a2951;
            --light-blue: #e8f4fd;
            --white: #ffffff;
            --off-white: #fafbfc;
            --light-gray: #f8f9fa;
            --medium-gray: #64748b;
            --dark-gray: #1e293b;
            --text-primary: #0f172a;
            --text-secondary: #475569;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            overflow-x: hidden;
            font-weight: 300;
            margin: 0;
            padding: 0;
            width: 100%;
        }

        /* Navigation Styles */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 1000;
            padding: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 1px 40px rgba(10, 15, 44, 0.08);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 200;
            color: var(--primary-blue);
            text-decoration: none;
            letter-spacing: 3px;
            font-family: 'Inter', sans-serif;
        }

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

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 300;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            padding: 1rem 0;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-blue);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0.5rem;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--primary-blue);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-cta {
            display: inline-flex !important;
            align-items: center;
            gap: 0.5rem;
            background: rgba(10, 15, 44, 0.1) !important;
            backdrop-filter: blur(10px);
            color: var(--primary-blue) !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 8px;
            font-weight: 300;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
            border: 1px solid rgba(10, 15, 44, 0.2);
        }

        .nav-cta:hover {
            background: var(--primary-blue) !important;
            color: var(--white) !important;
            transform: translateY(-2px);
        }

        .nav-cta::after {
            display: none;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 24px;
            height: 1px;
            background: var(--primary-blue);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        /* Hero Slideshow */
        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

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

        .slide.active {
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 15, 44, 0.7) 0%, rgba(26, 41, 81, 0.6) 100%);
            z-index: 2;
        }

        .hero-content {
            max-width: 900px;
            padding: 0 2rem;
            animation: fadeInUp 1.2s ease-out;
            position: relative;
            z-index: 3;
        }

        .hero-subtitle {
            font-size: 1rem;
            font-weight: 300;
            letter-spacing: 3px;
            margin-bottom: 1.5rem;
            opacity: 0.9;
            text-transform: uppercase;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 100;
            margin-bottom: 2rem;
            letter-spacing: 2px;
            line-height: 1.1;
        }

        .hero-description {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.85;
            font-weight: 300;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: var(--white);
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 300;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-cta:hover {
            background: var(--white);
            color: var(--primary-blue);
            transform: translateY(-2px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            letter-spacing: 1px;
            animation: fadeInUp 2s ease-out;
            z-index: 4;
        }

        .scroll-arrow {
            display: block;
            margin-top: 0.5rem;
            animation: bounce 2s infinite;
        }


        /* Keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-8px); }
            60% { transform: translateY(-4px); }
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Section Styles */
        .section {
            padding: 8rem 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            width: 100%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-subtitle {
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 2px;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 200;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            line-height: 1.8;
            font-weight: 300;
        }

        /* About Section */
        .about {
            background: var(--off-white);
            position: relative;
            z-index: 2;
            margin-top: -10vh;
            padding-top: 12vh;
            border-radius: 20px 20px 0 0;
            box-shadow: 0 -20px 60px rgba(10, 15, 44, 0.1);
        }

        .about::before {
            content: '';
            position: absolute;
            top: -5px;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(10, 15, 44, 0.1) 25%, 
                rgba(10, 15, 44, 0.2) 50%, 
                rgba(10, 15, 44, 0.1) 75%, 
                transparent 100%);
            animation: shimmer 3s ease-in-out infinite;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 8rem;
            align-items: center;
            margin-top: 4rem;
        }

        .about-text {
            max-width: 600px;
        }

        .about-text h3 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 2rem;
            font-weight: 200;
            letter-spacing: 1px;
            line-height: 1.3;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 2rem;
            color: var(--text-secondary);
            font-weight: 300;
        }

        .about-features {
            list-style: none;
            margin-top: 3rem;
            display: grid;
            gap: 1.5rem;
        }

        .about-features li {
            display: flex;
            align-items: flex-start;
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 300;
        }

        .about-features i {
            color: var(--primary-blue);
            margin-right: 1rem;
            margin-top: 0.2rem;
            font-size: 0.8rem;
        }

        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .about-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

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

        /* Services Section */
        .services {
            background: var(--white);
        }

        .services-overview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 4rem;
        }

        .division-card {
            background: var(--white);
            padding: 3rem;
            border: 1px solid rgba(10, 15, 44, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .division-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-blue);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .division-card:hover::before {
            transform: scaleX(1);
        }

        .division-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(10, 15, 44, 0.15);
        }

        .division-icon {
            width: 80px;
            height: 80px;
            background: rgba(10, 15, 44, 0.05);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .division-card i {
            font-size: 2rem;
            color: var(--primary-blue);
        }

        .division-content h3 {
            font-size: 1.8rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .division-subtitle {
            color: var(--primary-blue);
            font-size: 1rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }

        .division-content > p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .division-features {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .division-features li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
            position: relative;
            padding-left: 1.5rem;
            font-weight: 300;
        }

        .division-features li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: 400;
        }

        .division-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .division-cta:hover {
            color: var(--accent-blue);
            transform: translateX(5px);
        }

        /* HASTHA Section */
        .hastha-section {
            background: var(--light-gray);
        }

        .hastha-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            margin-top: 4rem;
        }

        .service-category {
            margin-bottom: 3rem;
        }

        .service-category h3 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-bottom: 2rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .category-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-item {
            background: var(--white);
            padding: 2.5rem 2rem;
            border: 1px solid rgba(10, 15, 44, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
            border-radius: 12px;
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-blue);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-item:hover::before {
            transform: scaleX(1);
        }

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

        .service-icon {
            width: 60px;
            height: 60px;
            background: rgba(10, 15, 44, 0.05);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .service-item i {
            font-size: 1.5rem;
            color: var(--primary-blue);
        }

        .service-item h4 {
            font-size: 1.2rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .service-item p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-weight: 300;
        }

        .hastha-portfolio h3,
        .kaluwara-portfolio h3 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-bottom: 2rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .portfolio-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .project-item {
            position: relative;
            overflow: hidden;
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            cursor: pointer;
            border-radius: 12px;
        }

        .project-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(10, 15, 44, 0.15);
        }

        .project-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .project-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s ease;
        }

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

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 15, 44, 0.8), rgba(26, 41, 81, 0.6));
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .project-item:hover .project-overlay {
            opacity: 1;
        }

        .project-overlay i {
            color: var(--white);
            font-size: 2rem;
        }

        .project-content {
            padding: 2rem 1.5rem;
        }

        .project-info h4 {
            font-size: 1.2rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .project-info p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.7;
            font-weight: 300;
        }

        .project-value {
            color: var(--primary-blue);
            font-weight: 500;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        /* KALUWARA Section */
        .kaluwara-section {
            background: var(--white);
        }

        .kaluwara-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            margin-top: 4rem;
        }

        /* Contact Section */
        .contact {
            background: var(--primary-blue);
            color: var(--white);
        }

        .contact .section-header {
            margin-bottom: 4rem;
        }

        .contact .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .contact .section-header h2 {
            color: var(--white);
        }

        .contact .section-header p {
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 6rem;
            align-items: start;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .contact-item i {
            font-size: 1.2rem;
            margin-right: 1.5rem;
            margin-top: 0.2rem;
            opacity: 0.8;
        }

        .contact-item div {
            line-height: 1.8;
            font-weight: 300;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 300;
            letter-spacing: 0.5px;
            opacity: 0.9;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--white);
            font-size: 0.95rem;
            font-weight: 300;
            transition: all 0.3s ease;
        }

        .form-group select {
            background: rgba(255, 255, 255, 0.15);
            cursor: pointer;
        }

        .form-group select option {
            background: var(--primary-blue);
            color: var(--white);
            padding: 0.5rem;
            font-weight: 300;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.15);
        }

        .file-upload {
            position: relative;
            margin-bottom: 2rem;
        }

        .file-upload input[type=file] {
            opacity: 0;
            position: absolute;
            left: -9999px;
        }

        .file-upload-label {
            display: block;
            width: 100%;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px dashed rgba(255, 255, 255, 0.3);
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 300;
            border-radius: 8px;
        }

        .file-upload-label:hover {
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.1);
        }

        .submit-btn {
            width: 100%;
            background: var(--white);
            color: var(--primary-blue);
            padding: 1.2rem;
            border: none;
            font-size: 1rem;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            border-radius: 8px;
        }

        .submit-btn:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: var(--text-primary);
            color: rgba(255, 255, 255, 0.8);
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 300;
            margin-bottom: 0.8rem;
            display: block;
        }

        .footer-section a:hover {
            color: var(--white);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
            margin-bottom: 0;
        }

        .social-links a:hover {
            background: var(--white);
            color: var(--primary-blue);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-weight: 300;
        }

        /* Clients Section */
        .clients {
            background: #000000;
            padding: 4rem 0;
            overflow: hidden;
        }

        .clients .section-header h2,
        .clients .section-header p,
        .clients .section-subtitle {
            color: var(--white);
        }

        /* Desktop auto-scroll version */
        .clients-scroll-container {
            overflow: hidden;
            margin-top: 3rem;
            width: 100%;
        }

        .clients-logos {
            display: flex;
            animation: scroll-logos 30s linear infinite;
            gap: 4rem;
            align-items: center;
            width: max-content;
        }

        @keyframes scroll-logos {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .client-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 2.5rem;
            background: transparent;
            border-radius: 12px;
            transition: all 0.3s ease;
            min-height: 140px;
            min-width: 220px;
            flex-shrink: 0;
        }

        .client-logo:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
            animation-play-state: paused;
        }

        .clients-logos:hover {
            animation-play-state: paused;
        }

        .client-logo img {
            max-width: 100%;
            max-height: 80px;
            width: auto;
            height: auto;
            opacity: 0.8;
            transition: all 0.3s ease;
            filter: brightness(1);
        }

        .client-logo:hover img {
            opacity: 1;
            transform: scale(1.05);
        }

        /* Testimonials Section - Carousel */
        .testimonials {
            background: var(--off-white);
            padding: 8rem 0;
            position: relative;
        }

        .testimonials-carousel {
            position: relative;
            overflow: hidden;
            margin-top: 4rem;
        }

        .testimonials-container {
            display: flex;
            transition: transform 0.5s ease;
            align-items: stretch;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 0 2rem;
            box-sizing: border-box;
        }

        .testimonial-card {
            background: var(--white);
            padding: 4rem 3rem;
            border-radius: 12px;
            text-align: center;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 15px 35px rgba(10, 15, 44, 0.08);
            border: 1px solid rgba(10, 15, 44, 0.05);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 2rem;
            left: 50%;
            transform: translateX(-50%);
            font-size: 5rem;
            color: var(--primary-blue);
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .testimonial-stars .star {
            color: #fbbf24;
            font-size: 1.3rem;
        }

        .testimonial-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--text-secondary);
            font-weight: 300;
            font-style: italic;
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            border-top: 1px solid rgba(10, 15, 44, 0.1);
            padding-top: 2rem;
        }

        .testimonial-author h4 {
            font-size: 1.2rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .testimonial-author span {
            font-size: 1rem;
            color: var(--medium-gray);
            font-weight: 400;
        }

        /* Carousel Navigation */
        .testimonial-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .nav-btn {
            background: var(--primary-blue);
            color: var(--white);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .nav-btn:hover {
            background: var(--accent-blue);
            transform: scale(1.1);
        }

        .testimonial-dots {
            display: flex;
            gap: 0.8rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--light-gray);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--primary-blue);
            transform: scale(1.2);
        }

        /* Fade Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .nav-container,
            .container {
                padding: 0 2rem;
            }

            .about-content,
            .contact-content,
            .services-overview,
            .hastha-content,
            .kaluwara-content {
                gap: 4rem;
            }

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

        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3.2rem;
                line-height: 1.2;
            }

            .hero-description {
                font-size: 1.2rem;
                max-width: 600px;
            }

            .section-header h2 {
                font-size: 2.5rem;
            }

            .about-text h3 {
                font-size: 2.2rem;
            }

            .portfolio-showcase {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }

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

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 10px 40px rgba(10, 15, 44, 0.1);
                gap: 1.5rem;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-container {
                height: 70px;
                padding: 0 1.5rem;
            }

            .container {
                padding: 0 1.5rem;
            }

            /* Hero Section Mobile */
            .hero {
                padding: 2rem 0;
                text-align: left;
            }

            .hero-content {
                padding: 0 1.5rem;
                max-width: 100%;
            }

            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.3;
                margin-bottom: 1.5rem;
                text-align: left;
            }

            .hero-subtitle {
                font-size: 0.9rem;
                margin-bottom: 1rem;
                text-align: left;
            }

            .hero-description {
                font-size: 1rem;
                line-height: 1.5;
                margin-bottom: 2rem;
                text-align: left;
                max-width: 100%;
            }

            .hero-cta {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .scroll-indicator {
                display: none;
            }


            .slide {
                background-attachment: scroll;
            }

            /* Section Mobile */
            .section {
                padding: 3rem 0;
            }

            .section-header {
                margin-bottom: 3rem;
                text-align: left;
                padding: 0 1rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
                line-height: 1.3;
                margin-bottom: 1rem;
                text-align: left;
            }

            .section-header p {
                font-size: 1rem;
                text-align: left;
            }

            .section-subtitle {
                text-align: left;
                font-size: 0.8rem;
            }

            /* About Section Mobile */
            .about {
                margin-top: -5vh;
                padding-top: 8vh;
                border-radius: 15px 15px 0 0;
            }

            .about-content,
            .services-overview,
            .hastha-content,
            .kaluwara-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-text {
                text-align: left;
            }

            .about-text h3 {
                font-size: 1.6rem;
                text-align: left;
                line-height: 1.3;
            }

            .about-text p {
                font-size: 1rem;
                text-align: left;
            }

            .about-image img {
                height: 300px;
                width: 100%;
                object-fit: cover;
                border-radius: 8px;
            }

            /* Services Mobile */
            .services-overview {
                gap: 1.5rem;
            }

            .division-card {
                padding: 2rem 1.5rem;
                text-align: left;
            }

            .division-content h3 {
                font-size: 1.4rem;
                text-align: left;
            }

            .division-subtitle {
                text-align: left;
            }

            .division-content > p {
                text-align: left;
                font-size: 0.95rem;
            }

            /* Category Services Mobile */
            .category-services {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }

            .service-item {
                padding: 2rem 1.5rem;
                text-align: left;
            }

            .service-item h4 {
                font-size: 1.1rem;
                text-align: left;
            }

            .service-item p {
                font-size: 0.9rem;
                text-align: left;
            }

            .service-icon {
                margin: 0 0 1.5rem 0;
                width: 50px;
                height: 50px;
            }

            /* Portfolio Mobile */
            .portfolio-showcase {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .project-image {
                height: 200px;
            }

            .project-content {
                padding: 1.5rem;
                text-align: left;
            }

            .project-info h4 {
                font-size: 1.1rem;
                text-align: left;
            }

            .project-info p {
                text-align: left;
            }

            /* Contact Form Mobile */
            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .contact-content {
                gap: 2rem;
            }

            .contact-info h3 {
                font-size: 1.4rem;
                text-align: left;
            }

            .contact-form {
                padding: 2rem 1.5rem;
            }

            /* Footer Mobile */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: left;
            }

            .footer-section h3 {
                text-align: left;
            }

            .footer-bottom {
                text-align: left;
                font-size: 0.8rem;
            }

            /* Clients Mobile */
            .clients {
                padding: 3rem 0;
                background: #000000;
            }

            .clients-scroll-container {
                margin-top: 2rem;
                overflow: visible;
            }

            .clients-logos {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
                animation: none;
                width: auto;
            }

            .client-logo {
                padding: 1.5rem;
                min-height: 120px;
                min-width: auto;
                background: transparent;
                border-radius: 8px;
            }

            .client-logo:hover {
                background: rgba(255, 255, 255, 0.05);
                transform: none;
            }

            .client-logo img {
                max-height: 70px;
            }

            /* Testimonials Mobile */
            .testimonials {
                padding: 4rem 0;
            }

            .testimonials-carousel {
                margin-top: 3rem;
            }

            .testimonial-slide {
                padding: 0 1rem;
            }

            .testimonial-card {
                padding: 2.5rem 2rem;
                text-align: center;
            }

            .testimonial-card::before {
                font-size: 3.5rem;
                top: 1rem;
            }

            .testimonial-text {
                font-size: 1.1rem;
                text-align: center;
            }

            .testimonial-author h4 {
                font-size: 1.1rem;
            }

            .testimonial-author span {
                font-size: 0.95rem;
            }

            .nav-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .testimonial-nav {
                gap: 1.5rem;
                margin-top: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .hero-content {
                padding: 0 1rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero-description {
                font-size: 0.95rem;
            }


            .section-header h2 {
                font-size: 1.5rem;
            }

            .about-text h3 {
                font-size: 1.4rem;
            }

            .division-card,
            .service-item {
                padding: 1.5rem 1rem;
            }

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

            .service-item h4 {
                font-size: 1rem;
            }

            .service-item p {
                font-size: 0.85rem;
            }

            .contact-form {
                padding: 1.5rem 1rem;
            }

            /* Clients Small Mobile */
            .clients-logos {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }

            .client-logo {
                padding: 1rem;
                min-height: 100px;
                background: transparent;
            }

            .client-logo:hover {
                background: rgba(255, 255, 255, 0.05);
            }

            .client-logo img {
                max-height: 55px;
            }

            /* Testimonials Small Mobile */
            .testimonial-card {
                padding: 2rem 1.5rem;
            }

            .testimonial-card::before {
                font-size: 3rem;
                top: 0.8rem;
            }

            .testimonial-text {
                font-size: 1rem;
            }

            .testimonial-author h4 {
                font-size: 1rem;
            }

            .testimonial-author span {
                font-size: 0.9rem;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .testimonial-nav {
                gap: 1rem;
                margin-top: 2rem;
            }
        }

        /* About Page Specific Styles */
        .about-hero {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            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="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .about-hero .hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .about-hero .hero-description {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Vision Mission Values Section */
        .vision-mission {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .vision-mission::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(10, 15, 44, 0.02) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(10, 15, 44, 0.02) 0%, transparent 50%);
        }

        .vmv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 4rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .vmv-card {
            background: var(--white);
            padding: 4rem 3rem;
            border-radius: 12px;
            box-shadow: 0 15px 60px rgba(10, 15, 44, 0.08);
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(10, 15, 44, 0.05);
        }

        .vmv-card::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;
        }

        .vmv-card:hover::before {
            left: 100%;
        }

        .vmv-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 80px rgba(10, 15, 44, 0.15);
        }

        .vmv-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 3rem;
            color: var(--white);
            font-size: 2.5rem;
            box-shadow: 0 10px 30px rgba(10, 15, 44, 0.3);
            transition: all 0.4s ease;
        }

        .vmv-card:hover .vmv-icon {
            transform: rotateY(360deg);
            box-shadow: 0 15px 40px rgba(10, 15, 44, 0.4);
        }

        .vmv-card h3 {
            font-size: 2rem;
            font-weight: 300;
            color: var(--text-primary);
            margin-bottom: 2rem;
            letter-spacing: 0.5px;
        }

        .vmv-card p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            font-weight: 300;
        }

        .values-list {
            list-style: none;
            text-align: left;
            margin-top: 2rem;
        }

        .values-list li {
            padding: 1rem 0;
            color: var(--text-secondary);
            border-bottom: 1px solid rgba(10, 15, 44, 0.08);
            transition: all 0.3s ease;
            font-size: 1rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .values-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .values-list li:hover {
            color: var(--text-primary);
            padding-left: 2rem;
        }

        .values-list li:last-child {
            border-bottom: none;
        }

        .values-list strong {
            color: var(--primary-blue);
            font-weight: 500;
        }

        /* Team Section */
        .team {
            background: var(--light-gray);
            position: relative;
        }

        .team::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(10, 15, 44, 0.02) 25%, transparent 25%),
                        linear-gradient(-45deg, rgba(10, 15, 44, 0.02) 25%, transparent 25%),
                        linear-gradient(45deg, transparent 75%, rgba(10, 15, 44, 0.02) 75%),
                        linear-gradient(-45deg, transparent 75%, rgba(10, 15, 44, 0.02) 75%);
            background-size: 60px 60px;
            background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
            opacity: 0.3;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .team-member {
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 15px 60px rgba(10, 15, 44, 0.08);
            padding: 3rem 2.5rem;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(10, 15, 44, 0.05);
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .team-member:hover::before {
            transform: scaleX(1);
        }

        .team-member:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 30px 100px rgba(10, 15, 44, 0.15);
        }

        .member-image {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 2rem;
            border: 5px solid var(--light-blue);
            transition: all 0.4s ease;
            position: relative;
        }

        .team-member:hover .member-image {
            transform: scale(1.1);
            border-color: var(--primary-blue);
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .team-member:hover .member-image img {
            transform: scale(1.1);
        }

        .member-info h4 {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            letter-spacing: 0.5px;
        }

        .member-info span {
            color: var(--primary-blue);
            font-weight: 500;
            font-size: 1rem;
            display: block;
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }

        .member-info p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 1rem;
            font-weight: 300;
        }

        /* Approach Section */
        .approach {
            background: var(--white);
            position: relative;
        }

        .approach-timeline {
            margin-top: 4rem;
            display: grid;
            gap: 4rem;
            position: relative;
        }

        .approach-timeline::before {
            content: '';
            position: absolute;
            left: 50px;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-blue), var(--accent-blue));
            opacity: 0.3;
        }

        .timeline-item {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem;
            align-items: start;
            position: relative;
        }

        .timeline-number {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 300;
            box-shadow: 0 10px 30px rgba(10, 15, 44, 0.3);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .timeline-item:hover .timeline-number {
            transform: scale(1.1) rotateY(360deg);
            box-shadow: 0 15px 40px rgba(10, 15, 44, 0.4);
        }

        .timeline-content {
            background: var(--white);
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 15px 60px rgba(10, 15, 44, 0.08);
            border: 1px solid rgba(10, 15, 44, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .timeline-item:hover .timeline-content::before {
            transform: scaleX(1);
        }

        .timeline-item:hover .timeline-content {
            transform: translateY(-10px);
            box-shadow: 0 25px 80px rgba(10, 15, 44, 0.15);
        }

        .timeline-content h3 {
            font-size: 2rem;
            font-weight: 300;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }

        .timeline-content p {
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.1rem;
            font-weight: 300;
        }

        /* Awards Section */
        .awards {
            background: var(--light-gray);
            position: relative;
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .award-item {
            background: var(--white);
            padding: 3rem 2.5rem;
            border-radius: 12px;
            box-shadow: 0 15px 60px rgba(10, 15, 44, 0.08);
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(10, 15, 44, 0.05);
            position: relative;
            overflow: hidden;
        }

        .award-item::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;
        }

        .award-item:hover::before {
            left: 100%;
        }

        .award-item:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 25px 80px rgba(10, 15, 44, 0.15);
        }

        .award-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: var(--white);
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(10, 15, 44, 0.3);
            transition: all 0.4s ease;
        }

        .award-item:hover .award-icon {
            transform: rotateY(360deg) scale(1.1);
            box-shadow: 0 15px 40px rgba(10, 15, 44, 0.4);
        }

        .award-item h4 {
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }

        .award-item p {
            color: var(--text-secondary);
            font-size: 1rem;
            font-weight: 300;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: 3rem;
            font-weight: 200;
            margin-bottom: 2rem;
            letter-spacing: 1px;
        }

        .cta-content p {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 300;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            border: 1px solid transparent;
            font-size: 1.1rem;
        }

        .cta-btn.primary {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .cta-btn.primary:hover {
            background: var(--white);
            color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
        }

        .cta-btn.secondary {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
        }

        .cta-btn.secondary:hover {
            background: var(--white);
            color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
        }

        /* Mobile Responsive for About Page */
        @media (max-width: 1024px) {
            .about-hero .hero-content h1 {
                font-size: 3rem;
            }

            .about-hero .hero-description {
                font-size: 1.2rem;
            }

            .vmv-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 3rem;
            }

            .approach-timeline::before {
                left: 40px;
            }

            .timeline-number {
                width: 80px;
                height: 80px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .about-hero .hero-content h1 {
                font-size: 2.5rem;
            }

            .about-hero .hero-description {
                font-size: 1.1rem;
                padding: 0 1rem;
            }

            .about.section {
                margin-top: -5vh;
                padding-top: 8vh;
                border-radius: 15px 15px 0 0;
            }

            .vmv-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .vmv-card {
                padding: 3rem 2rem;
            }

            .vmv-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }

            .vmv-card h3 {
                font-size: 1.75rem;
            }

            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 2.5rem;
            }

            .team-member {
                padding: 2.5rem 2rem;
            }

            .member-image {
                width: 120px;
                height: 120px;
            }

            .timeline-item {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                text-align: center;
            }

            .approach-timeline::before {
                display: none;
            }

            .timeline-number {
                margin: 0 auto;
                width: 80px;
                height: 80px;
                font-size: 1.5rem;
            }

            .timeline-content {
                padding: 2.5rem 2rem;
            }

            .timeline-content h3 {
                font-size: 1.75rem;
            }

            .awards-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
            }

            .award-item {
                padding: 2.5rem 2rem;
            }

            .award-icon {
                width: 70px;
                height: 70px;
                font-size: 1.75rem;
            }

            .cta-content h2 {
                font-size: 2.5rem;
            }

            .cta-content p {
                font-size: 1.2rem;
                padding: 0 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }

            .cta-btn {
                width: 100%;
                max-width: 320px;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .about-hero .hero-content h1 {
                font-size: 2rem;
                line-height: 1.3;
            }

            .about-hero .hero-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .about.section .about-text h3 {
                font-size: 1.75rem;
            }

            .about.section .about-text p {
                font-size: 1rem;
            }

            .vmv-card {
                padding: 2.5rem 1.5rem;
            }

            .vmv-icon {
                width: 70px;
                height: 70px;
                font-size: 1.75rem;
                margin-bottom: 2rem;
            }

            .vmv-card h3 {
                font-size: 1.5rem;
            }

            .vmv-card p {
                font-size: 1rem;
            }

            .values-list li {
                padding: 0.75rem 0;
                font-size: 0.95rem;
            }

            .team-member {
                padding: 2rem 1.5rem;
            }

            .member-image {
                width: 100px;
                height: 100px;
                border-width: 3px;
            }

            .member-info h4 {
                font-size: 1.25rem;
            }

            .member-info span {
                font-size: 0.9rem;
            }

            .member-info p {
                font-size: 0.9rem;
            }

            .timeline-number {
                width: 70px;
                height: 70px;
                font-size: 1.25rem;
            }

            .timeline-content {
                padding: 2rem 1.5rem;
            }

            .timeline-content h3 {
                font-size: 1.5rem;
            }

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

            .award-item {
                padding: 2rem 1.5rem;
            }

            .award-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .award-item h4 {
                font-size: 1.1rem;
            }

            .award-item p {
                font-size: 0.9rem;
            }

            .cta-content h2 {
                font-size: 2rem;
                line-height: 1.3;
            }

            .cta-content p {
                font-size: 1rem;
                margin-bottom: 2.5rem;
            }

            .cta-btn {
                padding: 1rem 2rem;
                font-size: 1rem;
                max-width: 280px;
            }
        }

        @media (max-width: 360px) {
            .about-hero .hero-content h1 {
                font-size: 1.75rem;
            }

            .about.section .about-text h3 {
                font-size: 1.5rem;
            }

            .vmv-card {
                padding: 2rem 1rem;
            }

            .vmv-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .vmv-card h3 {
                font-size: 1.25rem;
            }

            .team-member {
                padding: 1.5rem 1rem;
            }

            .timeline-content {
                padding: 1.5rem 1rem;
            }

            .award-item {
                padding: 1.5rem 1rem;
            }

            .cta-content h2 {
                font-size: 1.75rem;
            }

            .cta-btn {
                padding: 0.875rem 1.5rem;
                font-size: 0.95rem;
            }
        }

        /* HASTA Page Specific Styles */
        .hasta-hero {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hasta-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.03);
            z-index: 1;
        }

        .hasta-hero .hero-content {
            text-align: center;
            position: relative;
            z-index: 3;
        }

        .hasta-hero .hero-description {
            color: rgba(255, 255, 255, 0.95);
        }

        /* HASTA Construction Elements */
        .hero-construction-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .construction-element {
            position: absolute;
            color: rgba(255, 255, 255, 0.15);
            font-size: 2rem;
            animation: float 6s ease-in-out infinite;
        }

        .construction-element.element-1 {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .construction-element.element-2 {
            top: 25%;
            right: 15%;
            animation-delay: 1s;
        }

        .construction-element.element-3 {
            top: 60%;
            left: 8%;
            animation-delay: 2s;
        }

        .construction-element.element-4 {
            top: 70%;
            right: 12%;
            animation-delay: 3s;
        }

        .construction-element.element-5 {
            top: 40%;
            left: 5%;
            animation-delay: 4s;
        }

        .construction-element.element-6 {
            top: 50%;
            right: 8%;
            animation-delay: 5s;
        }

        .construction-element.element-7 {
            top: 80%;
            left: 15%;
            animation-delay: 2.5s;
        }

        .construction-element.element-8 {
            top: 35%;
            right: 20%;
            animation-delay: 1.5s;
        }

        .construction-element.element-9 {
            top: 45%;
            left: 20%;
            animation-delay: 3.5s;
        }

        .construction-element.element-10 {
            top: 65%;
            right: 25%;
            animation-delay: 4.5s;
        }

        .construction-element.element-11 {
            top: 20%;
            left: 25%;
            animation-delay: 5.5s;
        }

        .construction-element.element-12 {
            top: 55%;
            right: 5%;
            animation-delay: 0.5s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.15;
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
                opacity: 0.25;
            }
        }

        /* KALUWARA Page Specific Styles */
        .kaluwara-hero {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .kaluwara-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wood-grain" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 0 10 Q 10 5 20 10 T 40 10" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/><path d="M 0 15 Q 10 12 20 15 T 40 15" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23wood-grain)"/></svg>');
            opacity: 0.4;
            z-index: 1;
        }

        .kaluwara-hero .hero-content {
            text-align: center;
            position: relative;
            z-index: 3;
        }

        .kaluwara-hero .hero-description {
            color: rgba(255, 255, 255, 0.95);
        }

        /* Collections Detailed Section */
        .collections-detailed {
            background: var(--white);
        }

        .collection-category-detailed {
            margin-bottom: 6rem;
            background: var(--light-gray);
            border-radius: 12px;
            padding: 4rem 3rem;
            position: relative;
        }

        .collection-category-detailed::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 15, 44, 0.02) 0%, rgba(26, 41, 81, 0.03) 100%);
            pointer-events: none;
        }

        .category-header {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            gap: 2rem;
        }

        .category-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            flex-shrink: 0;
        }

        .category-info h3 {
            font-size: 2.5rem;
            font-weight: 200;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .category-info p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            font-weight: 300;
        }

        .category-collections-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .collection-item-detailed {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(10, 15, 44, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .collection-item-detailed::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
        }

        .collection-item-detailed:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(10, 15, 44, 0.15);
        }

        .collection-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .collection-item-detailed h4 {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .collection-item-detailed p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .collection-features {
            list-style: none;
            padding: 0;
        }

        .collection-features li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .collection-features li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent-blue);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* Showcase Gallery */
        .showcase-gallery {
            background: var(--light-gray);
            padding: 6rem 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

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

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10, 15, 44, 0.9));
            color: var(--white);
            padding: 2rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

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

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        .gallery-overlay p {
            font-size: 0.95rem;
            opacity: 0.9;
            font-weight: 300;
        }

        /* Sustainability Section */
        .sustainability {
            background: var(--white);
            padding: 6rem 0;
        }

        .sustainability-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .sustainability-text h3 {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .sustainability-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .feature-item {
            text-align: center;
            padding: 1.5rem;
        }

        .feature-item i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .feature-item h4 {
            font-size: 1.1rem;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        .feature-item p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 300;
        }

        .sustainability-image {
            border-radius: 12px;
            overflow: hidden;
        }

        .sustainability-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* KALUWARA Timeline Styles */
        .timeline-container {
            margin-top: 3rem;
            position: relative;
        }

        .timeline-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            align-items: flex-start;
        }

        .timeline-marker {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 600;
            flex-shrink: 0;
            box-shadow: 0 8px 25px rgba(10, 15, 44, 0.2);
        }

        .timeline-content {
            flex: 1;
            padding-top: 0.5rem;
        }

        .timeline-content h3 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .timeline-content p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-weight: 300;
        }

        /* Services Detailed Section */
        .services-detailed {
            background: var(--white);
        }

        .service-category-detailed {
            margin-bottom: 6rem;
            background: var(--light-gray);
            padding: 4rem 3rem;
            position: relative;
            border-radius: 12px;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .category-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2.5rem;
            box-shadow: 0 10px 30px rgba(10, 15, 44, 0.3);
            flex-shrink: 0;
        }

        .category-info h3 {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }

        .category-info p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            font-weight: 300;
            line-height: 1.6;
        }

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

        .service-item-detailed {
            background: var(--white);
            padding: 3rem 2.5rem;
            box-shadow: 0 15px 60px rgba(10, 15, 44, 0.08);
            border: 1px solid rgba(10, 15, 44, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .service-item-detailed::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-item-detailed:hover::before {
            transform: scaleX(1);
        }

        .service-item-detailed:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 80px rgba(10, 15, 44, 0.15);
        }

        .service-item-detailed .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(10, 15, 44, 0.05);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            color: var(--primary-blue);
            font-size: 1.75rem;
            transition: all 0.4s ease;
        }

        .service-item-detailed:hover .service-icon {
            background: var(--primary-blue);
            color: var(--white);
            transform: scale(1.1);
        }

        .service-item-detailed h4 {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }

        .service-item-detailed p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .service-features {
            list-style: none;
            padding: 0;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
            position: relative;
            padding-left: 1.5rem;
            font-size: 0.95rem;
        }

        .service-features li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: 500;
        }

        /* Process Section */
        .process-section {
            background: var(--light-gray);
        }

        .process-timeline {
            margin-top: 4rem;
            display: grid;
            gap: 4rem;
        }

        .process-item {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem;
            align-items: start;
        }

        .process-number {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 300;
            box-shadow: 0 10px 30px rgba(10, 15, 44, 0.3);
            transition: all 0.4s ease;
        }

        .process-item:hover .process-number {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(10, 15, 44, 0.4);
        }

        .process-content {
            background: var(--white);
            padding: 3rem;
            box-shadow: 0 15px 60px rgba(10, 15, 44, 0.08);
            border: 1px solid rgba(10, 15, 44, 0.05);
            transition: all 0.4s ease;
            border-radius: 12px;
        }

        .process-item:hover .process-content {
            transform: translateY(-5px);
            box-shadow: 0 25px 80px rgba(10, 15, 44, 0.15);
        }

        .process-content h3 {
            font-size: 2rem;
            font-weight: 300;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }

        .process-content p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .process-features {
            list-style: none;
            padding: 0;
        }

        .process-features li {
            padding: 0.75rem 0;
            color: var(--text-secondary);
            position: relative;
            padding-left: 1.5rem;
            border-bottom: 1px solid rgba(10, 15, 44, 0.08);
        }

        .process-features li:last-child {
            border-bottom: none;
        }

        .process-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* Portfolio Section */
        .portfolio-section {
            background: var(--white);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 4rem;
            margin-top: 4rem;
        }

        .portfolio-item {
            background: var(--white);
            box-shadow: 0 15px 60px rgba(10, 15, 44, 0.08);
            border: 1px solid rgba(10, 15, 44, 0.05);
            transition: all 0.4s ease;
            overflow: hidden;
            border-radius: 12px;
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 80px rgba(10, 15, 44, 0.15);
        }

        .portfolio-image {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

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

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 15, 44, 0.8), rgba(26, 41, 81, 0.7));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

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

        .portfolio-info {
            text-align: center;
            color: var(--white);
        }

        .portfolio-info h4 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
        }

        .portfolio-info p {
            font-size: 1rem;
            opacity: 0.9;
        }

        .portfolio-details {
            padding: 3rem 2.5rem;
        }

        .portfolio-details h4 {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }

        .portfolio-details p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .project-specs {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .project-specs span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .project-specs i {
            color: var(--primary-blue);
        }

        /* Capabilities Section */
        .capabilities-section {
            background: var(--light-gray);
        }

        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .capability-item {
            background: var(--white);
            padding: 3rem 2.5rem;
            text-align: center;
            box-shadow: 0 15px 60px rgba(10, 15, 44, 0.08);
            border: 1px solid rgba(10, 15, 44, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }

        .capability-item::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;
        }

        .capability-item:hover::before {
            left: 100%;
        }

        .capability-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 80px rgba(10, 15, 44, 0.15);
        }

        .capability-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: var(--white);
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(10, 15, 44, 0.3);
            transition: all 0.4s ease;
        }

        .capability-item:hover .capability-icon {
            transform: rotateY(360deg) scale(1.1);
            box-shadow: 0 15px 40px rgba(10, 15, 44, 0.4);
        }

        .capability-item h4 {
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
        }

        .capability-item p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-weight: 300;
        }

        /* HASTA Page Mobile Responsive */
        @media (max-width: 1024px) {
            .category-header {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .category-services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2.5rem;
            }

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

            .capabilities-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 2.5rem;
            }

            /* KALUWARA 1024px Responsive */
            .kaluwara-hero .hero-content h1 {
                font-size: 3rem;
            }

            .kaluwara-hero .hero-description {
                font-size: 1.2rem;
            }

            .collection-category-detailed {
                padding: 3rem 2rem;
            }

            .category-collections-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2.5rem;
            }

            .collection-item-detailed {
                padding: 2rem;
            }

            .sustainability-content {
                gap: 3rem;
            }

            .sustainability-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

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

            .timeline-item {
                gap: 1.5rem;
            }

            .timeline-marker {
                width: 70px;
                height: 70px;
                font-size: 1.25rem;
            }
        }

        @media (max-width: 768px) {
            .hasta-hero .hero-content h1 {
                font-size: 2.5rem;
            }

            .hasta-hero .hero-description {
                font-size: 1.1rem;
                padding: 0 1rem;
            }

            .kaluwara-hero .hero-content h1 {
                font-size: 2.5rem;
            }

            .kaluwara-hero .hero-description {
                font-size: 1.1rem;
                padding: 0 1rem;
            }

            .collection-category-detailed {
                padding: 3rem 2rem;
            }

            .category-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .category-collections-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .sustainability-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .sustainability-features {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .timeline-item {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .timeline-marker {
                width: 60px;
                height: 60px;
                font-size: 1.1rem;
                align-self: center;
            }

            .construction-element {
                font-size: 1.5rem;
            }

            .service-category-detailed {
                padding: 3rem 2rem;
                margin-bottom: 4rem;
            }

            .category-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }

            .category-info h3 {
                font-size: 2rem;
            }

            .category-info p {
                font-size: 1.1rem;
            }

            .category-services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-item-detailed {
                padding: 2.5rem 2rem;
            }

            .process-item {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                text-align: center;
            }

            .process-number {
                margin: 0 auto;
                width: 80px;
                height: 80px;
                font-size: 1.5rem;
            }

            .process-content {
                padding: 2.5rem 2rem;
            }

            .process-content h3 {
                font-size: 1.75rem;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .portfolio-item {
                max-width: 500px;
                margin: 0 auto;
            }

            .capabilities-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
            }

            .capability-item {
                padding: 2.5rem 2rem;
            }

            .capability-icon {
                width: 70px;
                height: 70px;
                font-size: 1.75rem;
            }
        }

        @media (max-width: 480px) {
            .hasta-hero .hero-content h1 {
                font-size: 2rem;
                line-height: 1.3;
            }

            .hasta-hero .hero-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .kaluwara-hero .hero-content h1 {
                font-size: 2rem;
                line-height: 1.3;
            }

            .kaluwara-hero .hero-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .collection-category-detailed {
                padding: 2rem 1.5rem;
            }

            .category-info h3 {
                font-size: 1.8rem;
            }

            .category-collections-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .collection-item-detailed {
                padding: 2rem;
            }

            .sustainability-features {
                grid-template-columns: 1fr;
            }

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

            .timeline-marker {
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }

            .timeline-content h3 {
                font-size: 1.25rem;
            }

            .construction-element {
                font-size: 1.2rem;
            }

            .service-category-detailed {
                padding: 2rem 1.5rem;
            }

            .category-icon {
                width: 70px;
                height: 70px;
                font-size: 1.75rem;
            }

            .category-info h3 {
                font-size: 1.75rem;
            }

            .category-info p {
                font-size: 1rem;
            }

            .service-item-detailed {
                padding: 2rem 1.5rem;
            }

            .service-item-detailed .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .service-item-detailed h4 {
                font-size: 1.25rem;
            }

            .process-number {
                width: 70px;
                height: 70px;
                font-size: 1.25rem;
            }

            .process-content {
                padding: 2rem 1.5rem;
            }

            .process-content h3 {
                font-size: 1.5rem;
            }

            .portfolio-details {
                padding: 2rem 1.5rem;
            }

            .project-specs {
                flex-direction: column;
                gap: 1rem;
            }

            .capability-item {
                padding: 2rem 1.5rem;
            }

            .capability-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .capability-item h4 {
                font-size: 1.1rem;
            }

            /* KALUWARA 360px Responsive */
            .kaluwara-hero .hero-content h1 {
                font-size: 1.75rem;
            }

            .collection-category-detailed {
                padding: 2rem 1rem;
            }

            .category-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .category-info h3 {
                font-size: 1.5rem;
            }

            .category-info p {
                font-size: 1rem;
            }

            .collection-item-detailed {
                padding: 1.5rem;
            }

            .collection-icon {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }

            .collection-item-detailed h4 {
                font-size: 1.25rem;
            }

            .sustainability-text h3 {
                font-size: 1.5rem;
            }

            .feature-item {
                padding: 1rem;
            }

            .feature-item i {
                font-size: 2rem;
            }

            .timeline-marker {
                width: 45px;
                height: 45px;
                font-size: 0.9rem;
            }

            .timeline-content h3 {
                font-size: 1.1rem;
            }

            .construction-element {
                font-size: 1rem;
            }
        }



    /* =========================================
   Navbar Dropdown Menu
   ========================================= */

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

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown-toggle .dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 40px rgba(10, 15, 44, 0.1);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: -1px; /* Aligns with navbar bottom */
    min-width: 240px;
    z-index: 1001;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    padding: 0;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
}

/* Remove hover underline effect from dropdown links */
.nav-dropdown-menu li a::after {
    display: none;
}

/* =========================================
   Design Categories Page
   ========================================= */

.design-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(10, 15, 44, 0.15);
}

.category-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-bg-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 15, 44, 0.9) 0%, rgba(10, 15, 44, 0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.category-content {
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.category-card:hover .category-content {
    transform: translateY(0);
    opacity: 1;
}

.category-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.category-content span {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
    display: block;
    margin-bottom: 1.5rem;
}

.btn-gallery {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gallery:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* =========================================
   Gallery Modal (Popup)
   ========================================= */

.gallery-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 15, 44, 0.9);
    backdrop-filter: blur(8px);
    animation: fadeInModal 0.4s ease;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-modal.fade-out {
    animation: fadeOutModal 0.4s ease forwards;
}

@keyframes fadeOutModal {
    from { opacity: 1; }
    to { opacity: 0; }
}

.gallery-modal .modal-content {
    position: relative;
    background: var(--white);
    margin: 5vh auto;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: zoomInModal 0.4s ease;
}

@keyframes zoomInModal {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    color: var(--medium-gray);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary-blue);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(10, 15, 44, 0.1);
}

.modal-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

#modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 15, 44, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 1rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 2001;
    border-radius: 8px;
}

.modal-nav:hover {
    background: rgba(10, 15, 44, 0.8);
}

.prev-image {
    left: 1rem;
}

.next-image {
    right: 1rem;
}

#modal-image-counter {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 1rem;
}

/* =========================================
   Investment Plan Page
   ========================================= */

.investment-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.investment-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(10, 15, 44, 0.1);
    height: auto;
    object-fit: cover;
}

.investment-details h3 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.investment-details p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.investment-features {
    list-style: none;
    margin-bottom: 3rem;
}

.investment-features li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.investment-features i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.investment-features span strong {
    color: var(--text-primary);
    font-weight: 500;
    display: block;
}

.investment-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #ff5722; /* Using orange from image */
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.investment-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

/* =========================================
   Responsive Adjustments for New Content
   ========================================= */

@media (max-width: 768px) {
    /* Mobile Dropdown Menu */
    .nav-item-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-dropdown-menu {
        position: static;
        display: block;
        opacity: 1;
        transform: none;
        box-shadow: none;
        min-width: 0;
        padding: 0 0 0 1.5rem;
        margin-top: 0.5rem;
        background: transparent;
        display: none; /* Initially hidden on mobile */
    }

    /* JavaScript will toggle this class */
    .nav-item-dropdown.mobile-open .nav-dropdown-menu {
        display: block;
    }
    
    .nav-item-dropdown.mobile-open .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .nav-dropdown-menu li a {
        padding: 0.5rem 0;
        color: var(--text-secondary);
    }
    
    .nav-dropdown-menu li a:hover {
        background: none;
        color: var(--primary-blue);
    }

    /* Design Categories */
    .design-category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card {
        aspect-ratio: 16/9; /* Use a more standard mobile ratio */
    }

    .category-content {
        transform: translateY(0); /* Show content by default on mobile */
        opacity: 1;
        background: linear-gradient(to top, rgba(10, 15, 44, 0.9) 0%, rgba(10, 15, 44, 0.1) 80%, transparent 100%);
    }

    .category-overlay {
        background: none;
    }

    .category-content h3 {
        font-size: 1.5rem;
    }
    
    .category-content span {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .btn-gallery {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    /* Modal */
    .gallery-modal .modal-content {
        width: 95%;
        margin: 2.5vh auto;
        padding: 1.5rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-nav {
        padding: 0.5rem;
        font-size: 1.2rem;
    }
    
    .prev-image { left: 0.5rem; }
    .next-image { right: 0.5rem; }

    /* Investment Plan */
    .investment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .investment-details h3 {
        font-size: 2rem;
    }
}

/* =========================================
   New Investment Plan Page Styles
   ========================================= */

.investment-plan .subsection-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(10, 15, 44, 0.1);
    margin-top: 4rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(10, 15, 44, 0.05);
    border: 1px solid rgba(10, 15, 44, 0.05);
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 15, 44, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Investment Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.plan-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(10, 15, 44, 0.05);
    border: 1px solid rgba(10, 15, 44, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.plan-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(10, 15, 44, 0.15);
}

.plan-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.plan-card.featured .plan-badge {
    background: #ff5722; /* Orange for featured */
}

.plan-card h4 {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-amount {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(10, 15, 44, 0.1);
}

.plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.plan-features li {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Investment Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(10, 15, 44, 0.2);
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-arrow {
    font-size: 2.5rem;
    color: var(--primary-blue);
    opacity: 0.3;
    margin-top: 2.5rem;
}

/* Responsive for New Investment Content */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    .plan-card.featured {
        transform: scale(1); /* Disable zoom on tablet/mobile */
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .process-arrow {
        transform: rotate(90deg);
        margin: -1rem 0;
    }
}

@media (max-width: 768px) {
    .investment-plan .subsection-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .benefit-card {
        padding: 2rem;
    }
}