﻿/* Reset and Base Styles with Performance Optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0f172a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Contact Page Specific Overflow Fix */
.contact-page {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.contact-page * {
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
}

/* Full-width sections */
.hero-container,
.about .container,
.core-values .container,
.featured-projects .container,
.cta-section .container,
.footer .container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 9999;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    border-bottom: none;
    overflow: visible;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 40px;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}
.logo-text h2 {
    color: #f1f2f4;
    font-weight: 500;
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.3;
}

.logo-text span {
    color: #98a1b3;
    font-size: 0.70rem;
    font-weight: 400;
    display: block;
    margin-top: 0;
    line-height: 1.6;
}
.footer-logo-text h2 {
    
    font-size: 1.3rem;
    margin-bottom: -8px;
    
}


.footer-logo span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    overflow: visible;
}

.nav-item {
    overflow: visible;
}

.nav-link {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
    font-size: 0.95rem;
    overflow: visible;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link.active {
    border-bottom: 3px solid #fbbf24 !important;
    padding-bottom: 3px !important;
    background-color: rgba(251, 191, 36, 0.1) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section with Enhanced Animations */
.hero {
    min-height: 100vh;
    background: #0f172a;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Animated Background Gradient */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(59, 130, 246, 0.05) 0%,
        rgba(251, 191, 36, 0.05) 25%,
        rgba(16, 185, 129, 0.05) 50%,
        rgba(239, 68, 68, 0.05) 75%,
        rgba(59, 130, 246, 0.05) 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.about-hero .hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../Photos/1.jpeg') center center/cover no-repeat;
    opacity: 0.8;
    z-index: 0;
}

#home .hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../Photos/1.jpeg') center center/cover no-repeat;
    opacity: 0.8;
    z-index: 0;
}


.hero-background::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    opacity: 1;
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-subtitle {
    margin-bottom: 1.5rem;
}

.hero-subtitle span {
    color: #3b82f6;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #025afd, #fbc531);
    background-clip: text;
    color: transparent;
}

.highlight {
    color: white;
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    will-change: transform;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(251, 191, 36, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(251, 191, 36, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(251, 191, 36, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.stat-card i {
    color: #fbbf24;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #1e293b;
    padding-left: 0;
    padding-right: 0;
}

/* About facts styling to match image */
.about-facts {
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    margin: 2rem 0;
}

.fact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fact-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #006fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.fact-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
}

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-text p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: #10b981;
    font-size: 1.2rem;
}

.feature-item span {
    color: #cbd5e1;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    background-image: url('../Photos/8.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #0f172a;
}

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

.service-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
    color: #60a5fa;
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    background: #1e293b;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.project-card:hover {
    transform: translateY(-2px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}




.project-details {
    padding: 1.5rem;
    background: transparent;
}

.project-info {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

.project-info i {
    color: #fbbf24;
    margin-right: 0.75rem;
    width: 18px;
    text-align: center;
    font-size: 1rem;
}

.project-info span {
    font-weight: 500;
    color: #cbd5e1;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.project-content p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-category {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Leadership Section */
.leadership {
    padding: 6rem 0;
    background: #0f172a;
}

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

.leader-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.leader-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.leader-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.leader-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.leader-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #1e293b;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.contact-form {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(30, 41, 59, 0.8);
    color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(30, 41, 59, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding-left: 0;
    padding-right: 0;
}

.footer .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
}

.footer-content {
    display: grid;
    justify-content: space-evenly;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    height: 40px;
}

.footer-logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}



.footer-logo h3 {
    color: #ffffff;
    margin: 0;
}

.footer-logo span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #3b82f6;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    background: rgba(30, 41, 59, 0.8);
    color: white;
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    padding: 8px 12px;
    background: #3b82f6;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    color: #94a3b8;
}


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

/* Ensure consistent animations across all pages */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 

/* Section subtitles */
.section-subtitle,
.about-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.4px;
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.about-subtitle { margin-bottom: 10px; }

/* Core Values */
.core-values {
    padding: 6rem 0;
    background: radial-gradient(1200px 600px at 50% -100px, rgba(59, 130, 246, 0.12), rgba(15, 23, 42, 0))
        , #0f172a;
    padding-left: 0;
    padding-right: 0;
}

.core-values .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.value-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.85), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.value-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-card h3 { color: #e2e8f0; font-size: 1.05rem; margin-bottom: 0.5rem; }
.value-card p { color: #94a3b8; font-size: 0.95rem; }


/* Featured Projects */
.featured-projects {
    padding: 6rem 0;
    background: #1e293b;
    padding-left: 0;
    padding-right: 0;
}

.featured-projects .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
}

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

.project-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #e2e8f0;
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 999px;
}

.project-icon {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 10px;
    color: #e2e8f0;
}

.projects-cta { text-align: center; margin-top: 1.5rem; }

/* Colored image backgrounds per category */
.healthcare-bg {
    background: linear-gradient(135deg, #10b981 0%, #065f46 100%);
}

.education-bg {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.industrial-bg {
    background: linear-gradient(135deg, #f59e0b 0%, #92400e 100%);
}

/* CTA band */
.cta-section {
    padding: 5rem 0;
    background: radial-gradient(900px 400px at 50% -50px, rgba(59, 130, 246, 0.12), rgba(15, 23, 42, 0))
        , #0f172a;
    padding-left: 0;
    padding-right: 0;
}

.cta-section .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
}

.cta-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 { 
    color: #e2e8f0; 
    margin-bottom: 0.75rem; 
    font-size: 2.5rem;
    font-weight: 800;
}
.cta-content p { 
    color: #94a3b8; 
    margin-bottom: 1.25rem; 
    font-size: 1.1rem;
}
.cta-buttons { 
    display: flex; 
    gap: 0.75rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}

/* Vision Section */
.vision-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.vision-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
}

.vision-text h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.vision-text p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.company-philosophy-quote {
    font-size: 1.3rem;
    color: #fbbf24;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    padding: 1rem;
    border-left: 4px solid #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}
/* 
.vision-image {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
} */

/* Mission Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: #0f172a;
}

.mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
}

.mission-box,
.vision-box {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.mission-box h2,
.vision-box h2 {
    color: #3b82f6;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-box p,
.vision-box p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mission-box ul,
.vision-box ul {
    list-style: none;
    padding: 0;
}

.mission-box li,
.vision-box li {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.mission-box li:before,
.vision-box li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: #0f172a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.value-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Achievements Section */
.achievements-section {
    padding: 6rem 0;
    background: #1e293b;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.achievement-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.achievement-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.achievement-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* Footer Contact Section - Single Row Layout */
.footer-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.footer-contact .contact-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.footer-contact .contact-item i {
    color: #3b82f6;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    margin-top: 0.2rem;
}

.footer-contact .contact-item h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-contact .contact-item p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-contact .contact-item:hover {
    transform: translateY(-2px);
}

.footer-contact .contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact .contact-item h4 {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact .contact-item p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Footer Bottom - Two Column Layout */
.footer-bottom {
    display: flex;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    color: #94a3b8;
}

.footer-bottom-left p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-right {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-right a 
{
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-bottom-right p{
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}


.footer-bottom-right a:hover {
    color: #60a5fa;
}

.footer-credit {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: none;
  }

.footer-credit span {
    font-size: 16px;
  }

/* Responsive Footer Contact */

/* ===================== */
/* New Page Styles */
/* ===================== */

/* Contact Page Complete Redesign */
.contact-form-section {
    padding: 4rem 0;
    background: #0f172a;
    width: 100%;
    overflow-x: hidden;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
    width: 100%;
    box-sizing: border-box;
}

.contact-form-container {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.form-header h2 {
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.form-fields-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.form-group {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.company-info-container {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    height: fit-content;
    border: 1px solid rgba(148, 163, 184, 0.2);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.info-box {
    margin-bottom: 2rem;
}

.info-box:last-child {
    margin-bottom: 0;
}

.info-box h3 {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.office-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid #3b82f6;
}

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

.office-item h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.office-item p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
}

.office-item i {
    color: #60a5fa;
    width: 16px;
    font-size: 0.8rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
    background: #1e293b;
    width: 100%;
    overflow-x: hidden;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
    width: 100%;
    box-sizing: border-box;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.contact-info-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-card > p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    text-align: left;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-details p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    width: 100%;
    max-width: 100%;
}

.contact-details strong {
    color: #3b82f6;
    font-weight: 600;
}

/* Response Guarantee Section */
.response-guarantee {
    padding: 4rem 0;
    background: #0f172a;
    width: 100%;
    overflow-x: hidden;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
    width: 100%;
    box-sizing: border-box;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #065f46);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.guarantee-icon i {
    color: #ffffff;
    font-size: 2rem;
}

.guarantee-content h2 {
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.guarantee-content p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.response-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.metric-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.metric-time {
    display: block;
    color: #10b981;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-header h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.quote-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    justify-content: space-between;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-fields-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(30, 41, 59, 0.8);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(30, 41, 59, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group span {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.company-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-box h3 {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.office-item,
.hours-item,
.quick-contact-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.office-item:last-child,
.hours-item:last-child,
.quick-contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.office-item h4,
.quick-contact-item h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.office-item i {
    color: #3b82f6;
  }

.office-item p,
.hours-item p,
.quick-contact-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-support {
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.emergency-support p {
    color: #60a5fa;
    font-weight: 600;
}

/* ETPL Advantage Section */
.etpl-advantage {
    padding: 6rem 0;
    background: #0f172a;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.advantage-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Response Guarantee Section */
.response-guarantee {
    padding: 6rem 0;
    background: #1e293b;
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #065f46);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.guarantee-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guarantee-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.response-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.metric-time {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Services Page Styles */
.core-services {
    padding: 6rem 0;
    background: #1e293b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.service-image {
    height: 300px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
    background: transparent;
}

.service-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}


.service-content p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.additional-services {
    padding: 6rem 0;
    background: #0f172a;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.additional-service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.additional-service-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.additional-service-card p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.industry-experience {
    padding: 6rem 0;
    background: #1e293b;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.industry-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.project-count {
    color: #fbbf24;
    font-size: 1.1rem;
    font-weight: 600;
}

.work-process {
    padding: 6rem 0;
    background: #0f172a;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.process-step h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Projects Page Styles */
.project-stats {
    padding: 4rem 0;
    background: #1e293b;
}

.project-filtering {
    padding: 3rem 0;
    background: #0f172a;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.search-section {
    flex: 1;
    max-width: 400px;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar i {
    position: absolute;
    left: 16px;
    color: #94a3b8;
}

.search-bar input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(30, 41, 59, 0.8);
    color: white;
    font-size: 1rem;
}

.search-bar input::placeholder {
    color: #94a3b8;
}

.filter-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: transparent;
    color: #cbd5e1;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.project-grid-section {
    padding: 4rem 0;
    background: #1e293b;
}


.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.project-image {
    position: relative;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.client-name {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-details {
    margin-bottom: 1.5rem;
}

.project-details p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.key-features h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.key-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.key-features li {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.key-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
}

.project-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.project-link:hover {
    gap: 1rem;
    color: #60a5fa;
}

/* Leadership Page Styles */
.executive-team {
    padding: 6rem 0;
    background: #1e293b;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.leader-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.leader-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.leader-position {
    color: #3b82f6;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.leader-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.leader-details {
    margin-bottom: 1.5rem;
}

.leader-details p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.leader-details ul {
    list-style: none;
    margin-top: 0.5rem;
}

.leader-details li {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.leader-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.leader-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.leadership-values {
    padding: 6rem 0;
    background: #0f172a;
}

.leadership-milestones {
    padding: 6rem 0;
    background: radial-gradient(1200px 600px at 50% -100px, rgba(59, 130, 246, 0.12), rgba(15, 23, 42, 0)), #0f172a;
}

.leadership-milestones .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.milestone {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.milestone:nth-child(1) { animation-delay: 0.1s; }
.milestone:nth-child(2) { animation-delay: 0.2s; }
.milestone:nth-child(3) { animation-delay: 0.3s; }
.milestone:nth-child(4) { animation-delay: 0.4s; }
.milestone:nth-child(5) { animation-delay: 0.5s; }

.milestone:nth-child(odd) {
    flex-direction: row;
}

.milestone:nth-child(even) {
    flex-direction: row-reverse;
}


.milestone-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    margin: 0 3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.milestone-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.milestone-content:hover::before {
    opacity: 1;
}

.milestone-content:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.milestone-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.milestone-content p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Leadership Contact Button Effects */
.leader-card .btn-primary {
    position: relative;
    overflow: hidden;
}

.leader-card .btn-primary::after {
    content: '+91-9876543210';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.leader-card .btn-primary.show-phone::after {
    opacity: 1;
    transform: translateY(0);
}

/* Different phone numbers for each leader */
.leader-card:nth-child(1) .btn-primary::after {
    content: '+91-9910411702'; /* Mayank Goyal */
}

.leader-card:nth-child(2) .btn-primary::after {
    content: '+91-9211744639'; /* Mahendra Pratap Rathore */
}

.leader-card:nth-child(3) .btn-primary::after {
    content: '+91-6388036932'; /* Ojasv Bansal */
}

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 8rem 0 6rem;
    background: #0f172a;
    min-height: 100vh;
}

.contact-details {
    background: rgba(15, 23, 42, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.contact-details p strong {
    color: #3b82f6;
    min-width: 80px;
    text-align: left;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: top;
    margin-right: 8px;
}

/* Specific alignment for phone numbers */
.contact-details p {
    line-height: 1.4;
    vertical-align: top;
}

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

.privacy-footer {
    background: rgba(15, 23, 42, 0.8);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
}

.privacy-footer p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.privacy-footer strong {
    color: #3b82f6;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 6rem 0;
    background: #0f172a;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.contact-info-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}


/* Subtle Contact Form Enhancements */

/* Enhanced Form Styling */
.contact-form {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

/* Form Header Enhancements */
.form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

/* Enhanced Input Fields */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(30, 41, 59, 0.8);
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(30, 41, 59, 0.95);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

/* Enhanced Select Styling */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2360a5fa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 45px;
    cursor: pointer;
}

/* Enhanced Textarea */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* Checkbox Styling */
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.checkbox-group label:hover {
    color: #ffffff;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
    cursor: pointer;
}

/* Enhanced Submit Button - Only for Contact Form */
.contact-form .btn.btn-primary {
    width: 100%;
    max-width: 200px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    display: block;
    margin: 0 auto;
}

.contact-form .btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.contact-form .btn.btn-primary:active {
    transform: translateY(0);
}

/* Loading State - Only for Contact Form */
.contact-form .btn.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn.btn-primary .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Validation Styles - Only show on submit attempt */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Select validation - only show after form submission attempt */
.form-submitted .form-group select:invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-submitted .form-group select:valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Success/Error Messages */
.success-message, .error-message {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
    animation: slideInUp 0.4s ease;
}

.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.error-message {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

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

/* About Page Styling */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.about-hero-left {
    z-index: 2;
}

.about-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.about-hero-text p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.about-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.about-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* About Content Section */
.about-content {
    padding: 5rem 0;
    background: #1e293b;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    color: #10b981;
    font-size: 1.2rem;
}

.feature-item span {
    color: #ffffff;
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 5rem 0;
    background: #0f172a;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mission-icon i,
.vision-icon i {
    color: #ffffff;
    font-size: 2rem;
}

.mission-card h3,
.vision-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Core Values Section */
.core-values-section {
    padding: 5rem 0;
    background: #1e293b;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.value-icon i {
    color: #ffffff;
    font-size: 2rem;
}

.value-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* About Stats Section */
.about-stats {
    padding: 5rem 0;
    background: #0f172a;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.stats-header p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(251, 191, 36, 0.5);
    background: rgba(251, 191, 36, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Page Hero Section */
.contact-page .hero {
    min-height: 75vh;
    width: 100%;
    overflow-x: hidden;
}

.contact-page .hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../Photos/3.jpg') center center/cover no-repeat;
    opacity: 0.8;
    z-index: 0;
}

/* About Page Hero Section */
.about-page .hero {
    min-height: 75vh;
}

.about-page .hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../Photos/4.jpg') center center/cover no-repeat;
    opacity: 0.8;
    z-index: 0;
}

/* Services Page Hero Section */
.services-page .hero {
    min-height: 75vh;
}

.services-page .hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../Photos/5.jpg') center center/cover no-repeat;
    opacity: 0.8;
    z-index: 0;
}

/* Projects Page Hero Section */
.projects-page .hero {
    min-height: 75vh;
}

.projects-page .hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../Photos/6.jpg') center center/cover no-repeat;
    opacity: 0.8;
    z-index: 0;
}

/* Leadership Page Hero Section */
.leadership-page .hero {
    min-height: 75vh;
}

.leadership-page .hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../Photos/7.jpg') center center/cover no-repeat;
    opacity: 0.8;
    z-index: 0;
}

/* About Page Styling - Following Website Pattern */
.about-hero-section {
    min-height: 100vh;
    background: #0f172a;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-section .about-hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('../Photos/1.jpeg') center center/cover no-repeat;
    opacity: 0.8;
    z-index: 0;
}

.about-hero-section .about-hero-background::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    opacity: 1;
    z-index: 0;
}

.about-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-text {
    color: white;
}

.about-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #3b82f6, #fbbf24);
    background-clip: text;
    color: transparent;
}

.about-hero-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-text h1 span {
    background: linear-gradient(90deg, #fbc531, #ff6b35);
    background-clip: text;
    color: transparent;
}

.about-hero-text p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 500px;
}

.about-hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* About Hero Image Placeholder */
.about-hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-image-placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
}

.about-hero-image-placeholder-icon {
    font-size: 4rem;
}

/* Vision Section Highlight */
.vision-text span.highlight {
    color: #ffd700;
    font-size: inherit;
    font-weight: inherit;
}

/* Company Philosophy Quote */
.company-philosophy-quote {
    font-size: 1.6em;
    font-weight: 700;
    display: block;
    margin: 1.5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #3b82f6, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Vision Image Styling */
.vision-image {
    display: flex;
    justify-content: center;
    background-image: url('../Photos/Turnover.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    align-items: center;
}

/* Vision Image Code Display */
.vision-image-code {
    width: 100%;
    height: 350px;
    background: #1a1f3a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* .vision-image-code-content {
    position: absolute;
    inset: 20px;
    background: #0a0e27;
    border-radius: 5px;
    padding: 20px;
    font-family: monospace;
    color: #00ff00;
    font-size: 14px;
} */

/* .vision-image-code-line {
    margin-bottom: 10px;
} */

/* .vision-image-code-indent {
    margin-left: 20px;
    margin-bottom: 5px;
}

.vision-image-code-keyword {
    color: #ff79c6;
}

.vision-image-code-variable {
    color: #50fa7b;
}

.vision-image-code-property {
    color: #8be9fd;
}

.vision-image-code-string {
    color: #f1fa8c;
}

.vision-image-code-number {
    color: #bd93f9;
} */

/* Vision Section */
.vision-section {
    padding: 6rem 0;
    background: #1e293b;
    padding-left: 0;
    padding-right: 0;
}

.vision-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.vision-text p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.vision-text strong {
    color: #fbbf24;
    font-weight: 700;
}

.vision-text span {
    color: #fbbf24;
}

.vision-section .cta-button {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.vision-section .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.vision-image {
    position: relative;
}

/* Milestones Section */
.milestones-section {
    padding: 6rem 0;
    background: radial-gradient(1200px 600px at 50% -100px, rgba(59, 130, 246, 0.12), rgba(15, 23, 42, 0)), #0f172a;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.milestones-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.milestone-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.milestone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.milestone-card:hover::before {
    opacity: 1;
}

.milestone-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.milestone-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.milestone-icon i {
    font-size: 3rem;
    color: #3b82f6;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.milestone-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

.milestone-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.milestone-desc {
    color: #cbd5e1;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: #1e293b;
    padding-left: 0;
    padding-right: 0;
}

.mission-vision-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3.75rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}
.mission-box, .vision-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mission-box h2, .vision-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.mission-box p, .vision-box p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mission-box ul, .vision-box ul {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.mission-box li, .vision-box li {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.mission-box li:before, .vision-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: radial-gradient(1200px 600px at 50% -100px, rgba(59, 130, 246, 0.12), rgba(15, 23, 42, 0)), #0f172a;
    padding-left: 0;
    padding-right: 0;
}

.values-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 2;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.value-desc {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Achievements Section */
.achievements-section {
    padding: 6rem 0;
    background: #1e293b;
    padding-left: 0;
    padding-right: 0;
}

.achievements-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.achievement-desc {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: radial-gradient(1200px 600px at 50% -100px, rgba(59, 130, 246, 0.12), rgba(15, 23, 42, 0)), #0f172a;
    padding-left: 0;
    padding-right: 0;
}



/* Footer Address Link Styling - Invisible Link */
.address-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.address-link:hover {
    color: inherit;
    text-decoration: none;
}

.address-link:visited {
    color: inherit;
}

.address-link:active {
    color: inherit;
}

/* Clients & Partners Section - Exact Same Styling */
.clients-partners-section {
    padding: 4rem 0;
    background: #0f172a;
}

.clientes-section, .partners-section {
    margin-bottom: 4rem;
}

.clients-section:last-child, .partners-section:last-child {
    margin-bottom: 0;
}

.clients-section .section-header h2,
.partners-section .section-header h2 {
    color: #3b82f6;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.clients-section .section-header p,
.partners-section .section-header p {
    color: #94a3b8;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Logo Carousel */
.logo-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    padding: 2rem 0;
}

.logo-track {
    display: flex;
    animation: scroll-right 40s linear infinite;
    gap: 3rem;
    align-items: center;
    width: calc(24 * 180px + 23 * 3rem); /* 24 logos + 23 gaps */
}

.partners-track {
    animation: scroll-left 25s linear infinite;
    gap: 3rem;
    align-items: center;
    width: calc(14 * 180px + 13 * 3rem); /* 14 logos + 13 gaps */
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 180px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    box-sizing: border-box;
}

.logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.client-logo, .partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%) brightness(1);
    transition: all 0.3s ease;
}

.logo-item:hover .client-logo,
.logo-item:hover .partner-logo {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
}

/* Animation Keyframes */
@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-24 * 180px - 23 * 3rem));
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(calc(-14 * 180px - 13 * 3rem));
    }
    100% {
        transform: translateX(0);
    }
}

/* Mobile animation keyframes */
@media (max-width: 768px) {
    @keyframes scroll-right {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-24 * 120px - 23 * 2rem));
        }
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(calc(-14 * 120px - 13 * 2rem));
        }
        100% {
            transform: translateX(0);
        }
    }
}

/* ===== MOBILE RESPONSIVE CSS ===== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    /* Desktop view में stats नीचे रहेंगे, mobile में ऊपर */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        max-width: 500px;
    margin: 0 auto;
    }
    
    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .values-grid,
    .advantage-grid,
    .additional-services-grid,
    .industries-grid,
    .process-grid,
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    /* Contact Page Tablet Layout */
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    
    .response-metrics {
        /* grid-template-columns: repeat(3, 1fr); */
        gap: 1.5rem;
        /* max-width: 500px; */
    }
    
    .milestone-content {
        margin: 0 2rem;
        padding: 2rem 1.5rem;
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0 clamp(1rem, 4vw, 2rem);
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        z-index: 9998;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-actions {
        display: none;
    }
    
    /* Hero Sections */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    /* Mobile पर content पहले, stats बाद में */
    .hero-stats {
        order: 2;
        margin-top: 2rem;
    }
    
    .hero-content {
        order: 1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        min-height: 44px;
    }
    
    /* Grids */
    .services-grid,
    .projects-grid,
    .values-grid,
    .advantage-grid,
    .additional-services-grid,
    .industries-grid,
    .process-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Achievements specific mobile styling */
    .achievement-card {
        padding: 1.5rem;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .achievement-number {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .achievement-label {
        font-size: clamp(1rem, 4vw, 1.1rem);
    }
    
    .achievement-desc {
        font-size: clamp(0.85rem, 3.5vw, 0.9rem);
    }
    
    /* Featured Projects Grid */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card {
        max-width: 100%;
    }
    
    /* About Page Mobile Layout */
    .about-hero-content,
    .vision-content,
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* About page specific mobile styling */
    .vision-text h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .vision-text p {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
    }
    
    .mission-box,
    .vision-box {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mission-box h2,
    .vision-box h2 {
        font-size: clamp(1.4rem, 5vw, 1.6rem);
    }
    
    .value-card {
        padding: 1.5rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .value-icon {
        font-size: clamp(2rem, 6vw, 2.2rem);
    }
    
    .value-title {
        font-size: clamp(1rem, 4vw, 1.1rem);
    }
    
    .value-desc {
        font-size: clamp(0.85rem, 3.5vw, 0.9rem);
    }
    
    .vision-image {
        order: -1;
    }
    
    .company-philosophy-quote {
        font-size: 1.4em;
        margin: 1rem 0;
    }
    
    /* Timeline */
    .timeline {
        max-width: 100%;
        padding: 1rem 0;
    }
    
    .milestone {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .milestone-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .milestone-content {
        margin: 0;
        padding: 1.5rem;
        width: 100%;
    }
    
    /* Leadership */
    .leadership-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .leader-card {
        text-align: center;
    }
    
    /* Footer - Mobile Layout */
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
        padding: 1.5rem 0;
    }
    
    .footer-contact .contact-item {
        padding: 1.2rem;
        text-align: left;
    }
    
    .footer-contact .contact-item i {
        font-size: 1.1rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Clients & Partners */
    .logo-item {
        width: 140px;
        height: 80px;
        padding: 8px;
    }

    .client-logo,
    .partner-logo {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    /* Contact Form Complete Mobile Redesign */
    .contact-form-section,
    .contact-info-section,
    .response-guarantee {
        overflow-x: hidden;
        width: 100%;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form-container {
        order: 1;
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
        margin: 0;
    }
    
    .company-info-container {
        order: 2;
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
        margin: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }
    
    .form-group {
        width: 100%;
        max-width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 12px;
        font-size: 16px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .contact-details {
        width: 100%;
        overflow: hidden;
    }
    
    .contact-details p {
        font-size: 0.85rem;
        word-break: break-all;
        overflow-wrap: anywhere;
    }
    
    /* Response metrics को mobile में भी 3 columns रखते हैं */
    .response-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        max-width: 100%;
        margin: 0;
        padding: 0 1rem;
    }
    
    .metric-item {
        padding: 1rem 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .metric-time {
        font-size: 1.4rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    /* Fix office items text overflow */
    .office-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.8rem;
    }
    
    .office-item p {
        font-size: 0.8rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    /* Navbar */
    .navbar {
        padding: 0.6rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Hero Stats - Single Column on Small Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 0.8rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    /* Contact Page Mobile Optimizations */
    .contact-form-container,
    .company-info-container {
        padding: 1.5rem;
        margin: 0.5rem 0;
    }
    
    .office-item {
        padding: 0.8rem;
    }
    
    .office-item p {
        font-size: 0.8rem;
    }
    
    .contact-info-card {
        padding: 1.2rem;
    }
    
    .nav-logo {
        gap: 10px;
        height: 38px;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo-text h2 {
        font-size: 1.3rem;
    }
    
    .logo-text span {
        font-size: 0.75rem;
    }
    
    .hamburger {
        width: 22px;
        height: 22px;
    }
    
    .bar {
        width: 22px;
        height: 2.5px;
        margin: 2.5px 0;
    }
    
    .nav-menu {
        top: 65px;
        padding: 1.2rem 0;
    }
    
    .nav-link {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    /* Typography */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Cards */
    .service-card,
    .project-card {
        margin-bottom: 1rem;
    }
    
    .service-content,
    .project-content {
        padding: 1rem;
    }
    
    .service-content h3,
    .project-content h3 {
        font-size: 1.1rem;
    }
    
    /* About Page */
    .company-philosophy-quote {
        font-size: 1.2em;
        padding: 0 1rem;
    }
    
    /* Timeline */
    .milestone-year {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .milestone-content {
        padding: 1rem;
    }
    
    /* Leadership */
    .leader-card {
        padding: 1.5rem;
    }
    
    /* Contact */
    .contact-form {
        padding: 1.5rem;
    }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
    /* Even smaller stats grid for very small screens */
    .stats-grid {
        gap: 0.6rem;
        max-width: 250px;
    }
    
    .stat-card {
        padding: 0.8rem;
    }
    
    .stat-card h3 {
        font-size: 1.6rem;
    }
    
    .stat-card i {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo {
        gap: 8px;
        height: 35px;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .logo-text h2 {
        font-size: 1.2rem;
    }
    
    .logo-text span {
        font-size: 0.7rem;
    }
    
    .hamburger {
        width: 20px;
        height: 20px;
    }
    
    .bar {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
    
    .nav-menu {
        top: 60px;
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .service-content,
    .project-content {
        padding: 0.8rem;
    }
    
    .leader-card {
        padding: 1rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }
    
    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    .nav-link,
    .hamburger,
    .social-links a {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
    }
    
    .logo-track {
        animation-duration: 40s;
        width: calc(24 * 120px + 23 * 2rem); /* Mobile width calculation */
    }
    
    .partners-track {
        animation-duration: 25s;
        width: calc(14 * 120px + 13 * 2rem); /* 14 logos mobile width */
    }
    
    /* Fix potential horizontal scrolling */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Improve tap targets */
    a, button, input, select, textarea {
        touch-action: manipulation;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-image,
    .project-image {
        height: 150px;
    }
}
