* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    overflow-x: hidden; 
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { 
    background: linear-gradient(135deg, #0f3460 0%, #1e5fa8 100%); 
    color: white; 
    padding: 1rem 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    transition: all 0.3s ease;
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: bold; }
.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 2rem; 
}
.nav-links a { 
    color: white; 
    text-decoration: none; 
    transition: opacity 0.3s; 
    font-weight: 500; 
    position: relative;
}
.nav-links a:hover { opacity: 0.8; }
.nav-links .active::after { 
    content: ''; 
    position: absolute; 
    bottom: -8px; 
    left: 0; 
    width: 100%; 
    height: 3px; 
    background: #ff6b35; 
}
.menu-toggle { 
    display: none; 
    flex-direction: column; 
    cursor: pointer; 
}
.menu-toggle span { 
    width: 25px; 
    height: 3px; 
    background: white; 
    margin: 3px 0; 
    transition: 0.3s; 
}

/* Hero */
.hero { 
    background: linear-gradient(rgba(15,52,96,0.95), rgba(30,95,168,0.95)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><radialGradient id="bg" cx="50%" cy="50%"><stop offset="0%" stop-color="%231e5fa8"/><stop offset="70%" stop-color="%230f3460"/><stop offset="100%" stop-color="%230a2448"/></radialGradient></defs><rect width="1200" height="600" fill="url(%23bg)"/><circle fill="%23ff6b35" opacity="0.1" cx="200" cy="150" r="100"/><circle fill="%23ffffff" opacity="0.05" cx="900" cy="250" r="150"/><circle fill="%23ff6b35" opacity="0.08" cx="400" cy="400" r="80"/></svg>'); 
    background-size: cover; 
    color: white; 
    padding: 140px 0 100px; 
    text-align: center; 
}
.hero h1 { font-size: 3.2rem; margin-bottom: 1.5rem; animation: fadeInUp 1s ease; }
.hero p { font-size: 1.3rem; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; animation: fadeInUp 1s ease 0.2s both; }
.hero-buttons { 
    display: flex; 
    gap: 1.5rem; 
    flex-wrap: wrap; 
    justify-content: center; 
}
.cta-btn { 
    padding: 15px 35px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: all 0.3s; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
}
.cta-btn.primary { 
    background: linear-gradient(135deg, #ff6b35, #f7931e); 
    color: white; 
    box-shadow: 0 10px 30px rgba(255,107,53,0.3); 
}
.cta-btn.primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 40px rgba(255,107,53,0.4); 
}
.cta-btn.secondary { 
    background: transparent; 
    color: white; 
    border: 2px solid white; 
}
.cta-btn.secondary:hover { 
    background: white; 
    color: #0f3460; 
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #0f3460 0%, #1e5fa8 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
}
.page-hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.page-hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto; }

/* Enhanced Stats Section */
.stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,107,53,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30,95,168,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,107,53,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.stats-background {
    position: relative;
    z-index: 1;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}
.stat-item {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 6px solid transparent;
}
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(30,95,168,0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.stat-item:hover::before {
    opacity: 1;
}
.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}
.stat-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff6b35, #1e5fa8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(255,107,53,0.3);
    transition: all 0.4s ease;
}
.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}
.stat-icon i {
    font-size: 2.5rem;
    color: white;
}
.stat-content {
    position: relative;
    z-index: 1;
}
.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #1e5fa8;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-plus {
    font-size: 2rem;
    color: #ff6b35;
    font-weight: bold;
    vertical-align: top;
}
.stat-item h3 {
    color: #0f3460;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.stat-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}
.stat-item.clients { border-top-color: #28a745; }
.stat-item.projects { border-top-color: #17a2b8; }
.stat-item.years { border-top-color: #ffc107; }

/* Featured */
.featured { background: #f8f9fa; padding: 90px 0; }
.featured h2, section h2 { 
    font-size: 2.8rem; 
    text-align: center; 
    margin-bottom: 4rem; 
    color: #0f3460; 
    position: relative; 
}
.featured h2::after, section h2::after { 
    content: ''; 
    position: absolute; 
    bottom: -15px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 80px; 
    height: 4px; 
    background: linear-gradient(90deg, #ff6b35, #1e5fa8); 
    border-radius: 2px; 
}
.featured-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 2rem; 
}
.featured-card { 
    background: white; 
    padding: 3rem 2rem; 
    border-radius: 20px; 
    text-align: center; 
    text-decoration: none; 
    color: inherit; 
    transition: all 0.3s; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
}
.featured-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 25px 50px rgba(0,0,0,0.15); 
    color: inherit; 
}
.featured-card i { font-size: 4rem; color: #ff6b35; margin-bottom: 1.5rem; }
.featured-card h3 { color: #0f3460; margin-bottom: 1rem; }

/* Content Sections */
.about-content, .team-content, .products-content, .clients-content, .contact-content {
    padding: 90px 0;
    background: #f8f9fa;
}

/* About Page - Industry Cards */
.about-overview {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}
.about-overview p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.industries-section {
    margin-bottom: 4rem;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.industry-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid transparent;
}
.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(30,95,168,0.1));
    transition: height 0.4s ease;
    z-index: 0;
}
.industry-card:hover::before {
    height: 100%;
}
.industry-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.industry-card > * {
    position: relative;
    z-index: 1;
}
.industry-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b35, #1e5fa8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255,107,53,0.3);
    transition: all 0.3s ease;
}
.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}
.industry-icon i {
    font-size: 2.5rem;
    color: white;
}
.pharma { border-top-color: #28a745; }
.oil-gas { border-top-color: #ffc107; }
.petrochemical { border-top-color: #dc3545; }
.it-telecom { border-top-color: #17a2b8; }
.automobile { border-top-color: #6f42c1; }
.fmcg { border-top-color: #fd7e14; }
.industry-card h3 {
    color: #0f3460;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.industry-card p {
    color: #666;
    line-height: 1.6;
}

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }
.team-member { 
    background: white; 
    padding: 2.5rem; 
    border-radius: 20px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
    text-align: center; 
    transition: all 0.4s; 
}
.team-avatar { 
    width: 140px; 
    height: 140px; 
    border-radius: 50%; 
    margin: 0 auto 1.5rem; 
    background: linear-gradient(135deg, #ff6b35, #1e5fa8); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 3.5rem; 
    color: white; 
    box-shadow: 0 10px 30px rgba(255,107,53,0.3); 
}
.team-role { color: #ff6b35; font-weight: 600; margin-bottom: 1rem; }
.team-contact { margin-top: 1.5rem; }
.contact-link { 
    color: #1e5fa8; 
    text-decoration: none; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-weight: 600; 
}
.contact-link:hover { color: #ff6b35; }

/* Services/Products */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2.5rem; }
.service-item { 
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%); 
    padding: 3rem 2.5rem; 
    border-radius: 25px; 
    text-align: center; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.08); 
    transition: all 0.4s; 
    position: relative; 
    overflow: hidden; 
}
.service-item::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    height: 6px; 
    background: linear-gradient(90deg, #ff6b35, #1e5fa8); 
}
.service-item:hover { 
    transform: translateY(-20px); 
    box-shadow: 0 35px 70px rgba(0,0,0,0.15); 
}
.service-icon { 
    font-size: 3.8rem; 
    margin-bottom: 1.5rem; 
    background: linear-gradient(135deg, #ff6b35, #1e5fa8); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
}
.service-item h3 { color: #0f3460; margin-bottom: 1.2rem; font-size: 1.4rem; }

/* Clients */
.clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.region-clients { 
    background: white; 
    padding: 3rem; 
    border-radius: 25px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.08); 
    transition: all 0.3s; 
}
.region-clients:hover { transform: translateY(-10px); }
.region-clients h3 { 
    color: #0f3460; 
    margin-bottom: 2rem; 
    font-size: 1.6rem; 
    border-bottom: 4px solid #ff6b35; 
    padding-bottom: 1rem; 
    display: inline-block; 
}
.client-list { list-style: none; }
.client-list li { 
    padding: 1rem 0; 
    border-bottom: 1px solid #eee; 
    transition: all 0.3s; 
    font-weight: 500; 
}
.client-list li:hover { 
    background: #f8f9fa; 
    padding-left: 1.5rem; 
    color: #1e5fa8; 
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 3.5rem; }
.contact-info, .contact-form { 
    background: white; 
    padding: 3.5rem; 
    border-radius: 25px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.08); 
}
.contact-info h3 { color: #0f3460; margin-bottom: 2rem; font-size: 1.6rem; }
.contact-item { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 2.5rem; 
}
.contact-item i { 
    font-size: 1.8rem; 
    color: #ff6b35; 
    margin-right: 1.5rem; 
    width: 50px; 
    margin-top: 5px; 
}
input, textarea { 
    width: 100%; 
    padding: 18px; 
    border: 2px solid #eee; 
    border-radius: 15px; 
    margin-bottom: 2rem; 
    font-size: 1rem; 
    transition: all 0.3s; 
    font-family: inherit; 
}
input:focus, textarea:focus { 
    outline: none; 
    border-color: #1e5fa8; 
    box-shadow: 0 0 0 3px rgba(30,95,168,0.1); 
}
button[type="submit"] { 
    background: linear-gradient(135deg, #ff6b35, #1e5fa8); 
    color: white; 
    padding: 18px 40px; 
    border: none; 
    border-radius: 50px; 
    font-size: 1.2rem; 
    cursor: pointer; 
    width: 100%; 
    transition: all 0.3s; 
    font-weight: 600; 
}
button[type="submit"]:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 35px rgba(255,107,53,0.4); 
}

/* reCAPTCHA Styles */
.recaptcha-container {
    margin-bottom: 2rem;
    text-align: center;
}
.g-recaptcha {
    margin-bottom: 1rem;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-weight: 500;
}
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer { 
    background: #0f3460; 
    color: white; 
    text-align: center; 
    padding: 2.5rem 0; 
    font-size: 0.95rem; 
}
footer a { color: #ff6b35; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Animations */
@keyframes fadeInUp { 
    from { opacity: 0; transform: translateY(30px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links { 
        position: fixed; 
        flex-direction: column; 
        background: rgba(15,52,96,0.98); 
        top: 80px; 
        left: -100%; 
        width: 100%; 
        height: calc(100vh - 80px); 
        padding: 2rem 0; 
        transition: left 0.3s; 
    }
    .nav-links.active { left: 0; }
    .hero, .page-hero { padding: 120px 0 80px; }
    .hero h1, .page-hero h1 { font-size: 2.2rem; }
    .hero p, .page-hero p { font-size: 1.1rem; }
    h2 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .stats {
        padding: 80px 0;
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .stat-item {
        padding: 2rem 1.5rem;
    }
    .stat-number {
        font-size: 2.8rem;
    }
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    .stat-icon i {
        font-size: 2rem;
    }
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .industry-card {
        padding: 2rem 1.5rem;
    }
    .industry-icon {
        width: 80px;
        height: 80px;
    }
    .industry-icon i {
        font-size: 2rem;
    }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .container { padding: 0 15px; }
    section { padding: 60px 0; }
}
@media (max-width: 480px) {
    .hero, .page-hero { padding: 100px 0 60px; }
    .team-avatar { width: 120px; height: 120px; font-size: 3rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-overview { margin-bottom: 3rem; }
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}
