 /* Updated Color Scheme */
:root {
    --primary: #073e5c;   /* Blue */
    --secondary: #052c43; /* Darker Blue */
    --accent: #ef7602;    /* Orange */
    --dark: #1e1e2e;      /* Dark navy */
    --light: #f8fafc;     /* Light background */
    --text: #334155;      /* Dark gray for text */
    --text-light: #64748b; /* Lighter gray */
    --section-bg: #ffffff; /* White background */
    --section-padding: 3rem 1.5rem;
    --border-radius: 12px;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    --box-shadow-hover: 0 15px 30px rgba(0,0,0,0.15);
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    margin-top: 0;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--text);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Layout Components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

nav ul li a {
    color: var(--text);
    font-weight: bolder;
    padding: 0.5rem 0;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(0, 0) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(7, 62, 92, 0.3);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 62, 92, 0.4);
}

.btn-outline {
    background: #ffffff;
    color: #000000;
    border-color: var(--primary);
}

.btn-outline:hover {
    background: #dfdfdf;
    color: var(--primary);
}

.btn-accent {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 118, 2, 0.3);
}

.btn-accent:hover {
    background: #d46902;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 118, 2, 0.4);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn i {
    margin-right: 0.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(30, 30, 46, 0.9), rgba(7, 62, 92, 0.8)), 
                url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    height: unset; /* Use min-height instead */
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 1.5rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* unset  */
/* override anything your .hero::before set, then kill it */
.hero::before {
  content: none !important;     /* no generated content */
  display: none !important;     /* hides it if it had size */
  /* optionally reset any other properties you care about: */
  background: none !important;
  width: 0 !important;
  height: 0 !important;
  /* …etc */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* Floating AI Elements */
.floating-ai {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ai-element {
    position: absolute;
    opacity: 0.7;
    filter: drop-shadow(0 5px 15px rgba(7, 62, 92, 0.3));
}

.ai-element:nth-child(1) {
    top: 20%;
    left: 10%;
    font-size: 3rem;
    color: var(--accent);
    animation: float 8s ease-in-out infinite;
}

.ai-element:nth-child(2) {
    top: 60%;
    left: 15%;
    font-size: 2rem;
    color: var(--primary);
    animation: float 6s ease-in-out infinite reverse;
}

.ai-element:nth-child(3) {
    top: 30%;
    right: 10%;
    font-size: 4rem;
    color: white;
    animation: float 7s ease-in-out infinite 2s;
}

.ai-element:nth-child(4) {
    bottom: 20%;
    right: 15%;
    font-size: 2.5rem;
    color: var(--accent);
    animation: float 5s ease-in-out infinite reverse 1s;
}

/* Vision & Mission Section - Reduced animations */
.vision-mission {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
}

.vm-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.vm-box {
    flex: 1;
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vm-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.vm-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transition: all 0.3s ease;
}

.vm-box:hover:after {
    width: 6px;
}

.vm-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.vm-box:hover .vm-icon {
    transform: scale(1.05);
}

.vm-box h3 {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.vm-box h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    transition: all 0.3s ease;
}

.vm-box:hover h3:after {
    width: 60px;
}

/* Industries Section */
.industries-section {
    background: var(--section-bg);
    position: relative;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.industry-card:hover h3 {
    color: var(--primary);
}

/* Clients Section */
.clients-section {
    background: #f8fafc;
    position: relative;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.client-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-bottom: 3px solid var(--accent);
}

.client-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.client-card h3 {
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    margin: 0;
}

.client-card:hover h3 {
    transform: scale(1.05);
}

/* Cards - Reduced animations */
.card {
    background: var(--section-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-bottom: 3px solid var(--primary);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Industry Sections - Reduced animations */
.industry-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.industry-icon {
    font-size: 2rem;
    color: var(--accent);
    background: rgba(239, 118, 2, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.contact-section h2 {
    color: white;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 2rem;
}

/* Contact Info Section */
.contact-info-section {
    background: var(--light);
    padding: var(--section-padding);
}

.contact-info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-card {
    flex: 1;
    min-width: 250px;
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.contact-info-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-info-card h3 {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover h3 {
    color: var(--primary);
}


/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    20% {
        transform: scale(25, 25);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

/* Scroll Indicator */
        .scroll-indicator {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            color: white;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
            cursor: pointer;
            background: rgba(7, 62, 92, 0.7);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .scroll-indicator:hover {
            background: var(--accent);
            transform: translateX(-50%) scale(1.1);
        }

/* Responsive Design */
@media (max-width: 992px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    
    .vm-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.75rem 1rem;
    }

    @keyframes slidein {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    nav ul li a {
        color: var(--text);
        font-weight: bolder;
        padding: 0.5rem 0;
        position: relative;
        /* slide in */
        animation: slidein 0.5s ease-out;
    }
    
    .hero {
        padding: 5rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .industry-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .industry-icon {
        margin-bottom: 1rem;
        animation: none;
    }
    
    .mission-box {
        padding: 1.5rem;
    }
    
    .card {
        padding: 1.2rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .client-card {
        padding: 1rem;
        min-height: 100px;
    }
    
    .client-logo {
        height: 40px;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    
    .hero {
        padding: 3rem 1rem;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.8rem 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    section {
        padding: 2rem 1rem;
    }
    
    .mission-box {
        padding: 1.2rem;
    }
    
    .industry-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-icon {
        font-size: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .client-card {
        padding: 0.75rem;
        min-height: 90px;
    }
    
    .client-logo {
        height: 30px;
    }
    
    .client-card h3 {
        font-size: 0.8rem;
    }
}