 :root {
            --primary-green: #2E8B57;
            --hover-green: #3cb371;
            --text-black: #1a1a1a;
			--text-gray: #666666;
			--text-white: #ffffff;
			--text-dark: #1a1a1a;
			--bg-white: #ffffff;
            --subtle-gray: #f8f8f8;
            --light-gray: #f5f5f5;
            --border-color: #e0e0e0;
			--blueprint-blue: #0f3e6c;
            --light-blue: rgba(15, 62, 108, 0.1);
            --overlay-dark: rgba(0, 10, 30, 0.7);
			--bg-light: #f8f9fa;
			--bg-light: #f8f9fa;
            --card-bg: #ffffff;
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: var(--subtle-gray);
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--text-white);
            padding: 1rem 2rem;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-dark);
            font-size: 1.5rem;
            font-weight: 700;
            z-index: 1001;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-black);
            letter-spacing: 1px;
        }

        .logo-accent {
            color: var(--primary-green);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
			font-size: 1.25rem;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-green);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-green);
        }

        .nav-link:hover::after {
            transform: scaleX(1);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .menu-toggle i {
            font-size: 1.5rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .close-menu {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        .close-menu:hover {
            color: var(--primary-green);
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            text-align: center;
            margin-bottom: 3rem;
        }

        .mobile-nav-link {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 2rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
        }

        .mobile-nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--primary-green);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .mobile-nav-link:hover {
            color: var(--primary-green);
        }

        .mobile-nav-link:hover::after {
            width: 100%;
        }

        .mobile-social-links {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .mobile-social-link {
            color: var(--text-dark);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            padding: 0.5rem;
        }

        .mobile-social-link:hover {
            color: var(--primary-green);
            transform: translateY(-3px);
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: block;
            }
        }

        @media (min-width: 993px) {
            .mobile-menu {
                display: none;
            }
        }

        /* Animation for menu items */
        .mobile-nav-link {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .mobile-menu.active .mobile-nav-link {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.4s; }
        .mobile-menu.active .mobile-nav-link:nth-child(5) { transition-delay: 0.5s; }
        .mobile-menu.active .mobile-nav-link:nth-child(6) { transition-delay: 0.6s; }

        .contact-btn {
            background-color: var(--primary-green);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background-color: var(--hover-green);
            transform: translateY(-2px);
        }

        .menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-black);
            cursor: pointer;
        }
		
		
		
		
		.hero {
            height: 100vh;
            width: 100%;
            background: linear-gradient(var(--overlay-dark), var(--overlay-dark)),
                        url('images/hero-train-station.jpg') center/cover no-repeat;
            position: relative;
            overflow: hidden;
        }

        .blueprint-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(90deg, var(--light-blue) 1px, transparent 1px) 0 0,
                linear-gradient(var(--light-blue) 1px, transparent 1px) 0 0;
            background-size: 20px 20px;
            opacity: 0.15;
        }

        .hero-content {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .title-container {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.5s;
        }

        .company-name {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .company-name span {
            color: var(--primary-green);
        }

        .subtitle {
            font-size: 1.5rem;
            color: var(--text-white);
            margin-bottom: 2rem;
            max-width: 600px;
            line-height: 1.6;
        }

        .cta-container {
            display: flex;
            gap: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.8s;
        }

        .cta-button {
            padding: 1rem 2rem;
            border: none;
            border-radius: 4px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .primary-cta {
            background-color: var(--primary-green);
            color: var(--text-white);
        }

        .primary-cta:hover {
            background-color: var(--hover-green);
            transform: translateY(-2px);
        }

        .secondary-cta {
            background-color: transparent;
            color: var(--text-white);
            border: 2px solid var(--text-white);
        }

        .secondary-cta:hover {
            background-color: var(--text-white);
            color: var(--blueprint-blue);
            transform: translateY(-2px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: var(--text-white);
            font-size: 2rem;
            animation: bounce 2s infinite;
            cursor: pointer;
            opacity: 0;
            animation: fadeIn 1s ease forwards, bounce 2s infinite;
            animation-delay: 1.2s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }

        .stats-container {
            position: relative;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0);
            backdrop-filter: blur(10px);
            padding: 2rem 0;
            opacity: 0;
            animation: fadeIn 1s ease forwards;
            animation-delay: 1s;
        }

        .stats-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            padding: 0 2rem;
        }

        .stat-item {
            text-align: center;
            color: var(--text-white);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--primary-green);
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }
		
		
		
		
		
		
		.services-section {
            padding: 8rem 2rem;
            background-color: var(--bg-light);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem auto;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }

        .section-description {
            color: var(--text-gray);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 1rem;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: var(--card-shadow);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary-green);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
        }

        .service-title {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .service-description {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .learn-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .learn-more-btn::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-green);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .learn-more-btn:hover {
            gap: 0.8rem;
        }

        .learn-more-btn:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
		
		
		
		
		
		
		 /* About Section Styles */
        .about-section {
            padding: 8rem 2rem;
            background-color: white;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .about-content {
            padding-right: 2rem;
        }

        .about-subtitle {
            color: var(--primary-green);
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .about-title {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .about-description {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
		
		
		
		
		
		
		        /* Projects Gallery Styles */
        .projects-section {
            padding: 8rem 2rem;
            background-color: var(--bg-light);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem auto;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-description {
            color: var(--text-gray);
            line-height: 1.6;
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .gallery-item {
            position: relative;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            background: rgba(0, 0, 0, 0.2);
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }

        .project-title {
            color: var(--text-white);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .project-budget {
            color: var(--primary-green);
            font-weight: 600;
            margin-bottom: 0.5rem;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .project-description {
            color: var(--text-white);
            font-size: 0.9rem;
            transform: translateY(20px);
            transition: transform 0.3s ease;
            opacity: 0;
        }

        .gallery-item:hover .project-title,
        .gallery-item:hover .project-budget,
        .gallery-item:hover .project-description {
            transform: translateY(0);
            opacity: 1;
        }
		
		
		
		
		
		
		.team-section {
            padding: 8rem 2rem;
            background-color: var(--bg-light);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem auto;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }

        .section-description {
            color: var(--text-gray);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-top: 1.5rem;
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
        }
		
        .team-member {
            position: relative;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .member-image-container {
            position: relative;
			height: 300px;
            overflow: hidden;
			display: flex;
			justify-content: center;
        }

        .member-image {
            width: 65%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-member:hover .member-image {
            transform: scale(1.1);
        }

        .member-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 2rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .team-member:hover .member-overlay {
            transform: translateY(0);
        }

        .member-social {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            color: white;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .social-link:hover {
            color: var(--primary-green);
        }

        .member-info {
            padding: 1.5rem;
            text-align: center;
        }

        .member-name {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .member-role {
            color: var(--primary-green);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .member-description {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .principal {
            grid-column: span 2;
        }

        .principal .member-image-container {
            height: 400px;
        }
		
		
		
		
		
		.contact-section {
            padding: 8rem 2rem;
            background-color: var(--bg-light);
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-green);
        }

        .info-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .info-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
        }

        .info-title {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-title i {
            color: var(--primary-green);
            font-size: 1.5rem;
        }

        .info-content {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .email-link {
            color: var(--primary-green);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 0.5rem;
        }

        .email-link:hover {
            color: var(--hover-green);
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        .social-link {
            color: var(--text-gray);
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            color: var(--primary-green);
            transform: translateY(-3px);
        }

        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }



       



        .footer {
            background-color: var(--bg-white);
            padding: 10rem 0 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-column h3 {
            color: var(--text-black);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 30px;
            height: 2px;
            background-color: var(--primary-green);
        }

        .footer-column p {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary-green);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border: 1px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-black);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            color: white;
            transform: translateY(-3px);
        }

        .contact-info {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-info i {
            color: var(--primary-green);
            font-size: 1.2rem;
            margin-top: 4px;
        }

        .newsletter-form {
            position: relative;
            margin-top: 1.5rem;
        }

        .newsletter-input {
            width: 100%;
            padding: 1rem;
            padding-right: 3rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            border-color: var(--primary-green);
        }

        .newsletter-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 0.5rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: var(--hover-green);
        }

        .bottom-footer {
            border-top: 1px solid var(--border-color);
            padding: 1.5rem 0;
            text-align: center;
            background-color: var(--light-gray);
        }

        .bottom-footer p {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

       

		@media (max-width: 1200px) {
            .info-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .info-cards {
                grid-template-columns: 1fr;
            }

            .contact-section {
                padding: 4rem 1rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }


		@media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .gallery-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        
		
		
		 @media (max-width: 1200px) {
            .team-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .team-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .principal {
                grid-column: auto;
            }
            .principal .member-image-container {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .team-container {
                grid-template-columns: 1fr;
            }
            .team-section {
                padding: 4rem 1rem;
            }
        }
		
		@media (max-width: 768px) {
            .gallery-container {
                grid-template-columns: 1fr;
            }

            .about-image {
                height: 300px;
            }

            .about-content {
                padding-right: 0;
            }
        }
		
		
		
		@media (max-width: 768px) {
            .services-section {
                padding: 4rem 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .service-card {
                padding: 2rem;
            }
        }
		
		@media (max-width: 1024px) {
            .company-name {
                font-size: 3rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .company-name {
                font-size: 2.5rem;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            .cta-container {
                flex-direction: column;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
		
		@media (max-width: 968px) {
            .menu-btn {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                height: calc(100vh - 80px);
                padding: 2rem;
                gap: 2rem;
                transition: 0.3s ease;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-link::after {
                display: none;
            }
        }

		@media (max-width: 480px) {
            .logo-text {
                font-size: 1.2rem;
            }

            .navbar {
                padding: 1rem;
            }
        }
		
		 @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer {
                padding: 3rem 0 0 0;
            }
		}