/* Custom Variables */
:root {
    --primary: #0B3C6D;
    --secondary: #E5A823;
    --accent: #0E8C61;
    --bg: #F7F9FC;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(11, 60, 109, 0.08);
    --radius: 16px;
    --transition: all 0.3s ease;
}

/* Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 100px 0; }
.bg-light { background-color: var(--white); }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-secondary { color: var(--secondary); }
.w-100 { width: 100%; }
.mt-3 { margin-top: 1rem; }

/* Grid Layouts */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Typography Utility */
.section-subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #1a5c9e);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(11, 60, 109, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(11, 60, 109, 0.4); }
.btn-secondary { background: var(--secondary); color: var(--text-dark); }
.btn-outline { border: 1px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* Sticky Navigation (Glassmorphism) */
.glass-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.glass-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 15px 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { font-family: 'Montserrat'; font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.logo span { color: var(--accent); }
.nav-links a { margin-left: 25px; font-weight: 500; color: var(--text-dark); }
.nav-links a:hover { color: var(--secondary); }
.glass-header:not(.scrolled) .nav-links a,
.glass-header:not(.scrolled) .logo { color: var(--white); }
.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-dark); }
.glass-header:not(.scrolled) .mobile-toggle { color: var(--white); }

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8ed3891000?auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(11, 60, 109, 0.9), rgba(11, 60, 109, 0.6));
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 1200px;
    padding-top: 100px;
}
.hero-content h1 { font-size: 1.2rem; color: var(--secondary); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px;}
.hero-content h2 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; color: var(--white); }
.hero-content p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }
.hero-btns { gap: 15px; display: flex; }
.hero-inner-txt {
    width: 70%;
}
img.stcky {
    display: none;
}
.glass-header.scrolled img.normal {
    display: none;
}

.glass-header.scrolled img.stcky {
    display: block;
    width: 65%;
}
/* About Us */

/* --- Premium Company Profile Section --- */
.corporate-profile-section {
    overflow: hidden;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Right side slightly wider for text */
    gap: 60px;
    align-items: center;
}

/* Image & Experience Badge */
.about-image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}
.image-box {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}
.image-box:hover img {
    transform: scale(1.05);
}
.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--primary), #1a5c9e);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 15px 35px rgba(11, 60, 109, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 4px solid var(--white);
    z-index: 2;
}
.experience-badge .years {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    line-height: 1;
}
.experience-badge .text {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Corporate Content */
.about-content-wrapper .section-title {
    margin-bottom: 25px;
    line-height: 1.3;
}
.corporate-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(229, 168, 35, 0.15); /* Soft secondary background */
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 25px;
}
.corporate-location i {
    color: var(--secondary);
    font-size: 1.2rem;
}
.corporate-location strong {
    font-weight: 700;
}
.corporate-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}
.corporate-description strong {
    color: var(--text-dark);
}

/* Corporate Info Cards */
.info-cards-corporate {
    margin-top: 40px;
    gap: 20px;
}
.corp-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}
.corp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(11, 60, 109, 0.1);
    border-color: rgba(11, 60, 109, 0.1);
}
.corp-icon {
    width: 45px;
    height: 45px;
    background: var(--bg);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    transition: var(--transition);
}
.corp-card:hover .corp-icon {
    background: var(--primary);
    color: var(--white);
}
.corp-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 700;
}
.corp-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Responsive Rules for Profile Section */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    .experience-badge {
        padding: 20px;
        bottom: -10px;
        right: -10px;
    }
    .experience-badge .years {
        font-size: 2.2rem;
    }
    .experience-badge .text {
        font-size: 0.85rem;
    }
}
@media (max-width: 768px) {
    .info-cards-corporate {
        grid-template-columns: 1fr;
    }
    .corporate-description {
        text-align: left;
    }
} 
.info-cards { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
.info-card {
    background: var(--bg);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

/* Feature Cards (Why Us) */
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.feature-card i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; }
.feature-card:hover { transform: translateY(-10px); background: var(--primary); color: var(--white); }
.feature-card:hover h3, .feature-card:hover i { color: var(--white); }

/* Division Cards */
.div-card {
    background: var(--white); padding: 30px; border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.05); transition: var(--transition);
}
.div-card i { font-size: 2rem; color: var(--accent); margin-bottom: 15px; }
.div-card:hover { box-shadow: var(--shadow); border-color: transparent; }

/* Stats */
.stats-section { background: linear-gradient(135deg, var(--primary), var(--accent)); padding: 60px 0; }
.stat-item h2 { font-size: 3.5rem; color: var(--white); display: inline-block; }
.stat-item span { font-size: 3.5rem; color: var(--secondary); font-weight: 700; }
.stat-item p { color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; }

/* Product Cards */
.product-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
}
.product-card img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.5s; }
.product-card:hover img { transform: scale(1.1); }
.product-info { padding: 25px; }
.product-info h3 { margin-bottom: 10px; }
.product-info p { margin-bottom: 20px; font-size: 0.9rem; }

/* Timeline */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::after { content: ''; position: absolute; width: 2px; background: var(--primary); top: 0; bottom: 0; left: 50%; margin-left: -1px; }
.timeline-item { padding: 20px 40px; position: relative; width: 50%; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-icon { position: absolute; width: 40px; height: 40px; right: -20px; background: var(--secondary); border-radius: 50%; top: 15px; z-index: 1; display: flex; align-items: center; justify-content: center; color: white; }
.timeline-item:nth-child(even) .timeline-icon { left: -20px; }
.timeline-content { padding: 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }

/* Testimonials */
.review-card { background: var(--white); padding: 40px; border-radius: var(--radius); margin: 20px 0 50px; box-shadow: var(--shadow); }
.stars { color: var(--secondary); margin-bottom: 15px; }

/* Contact Forms */
.glass-card { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
/*.contact-form input, .contact-form textarea {
    width: 100%; padding: 15px; margin-bottom: 20px;
    border: 1px solid #e2e8f0; border-radius: 8px; font-family: 'Poppins';
    background: var(--bg);
}*/

/* Footer */
.footer { background: var(--text-dark); color: #cbd5e1; padding: 80px 0 0; }
.footer h3 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--secondary); }
.newsletter-form { display: flex; }
.newsletter-form input { flex: 1; padding: 12px; border: none; border-radius: 4px 0 0 4px; }
.newsletter-form button { background: var(--secondary); border: none; padding: 0 20px; border-radius: 0 4px 4px 0; color: var(--text-dark); cursor: pointer; }
.social-links a { color: var(--white); margin-right: 15px; font-size: 1.2rem; }
.social-links a:hover { color: var(--secondary); }
.footer-bottom { text-align: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 50px; }

/* Media Queries (Responsive) */
@media (max-width: 992px) {
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .about-container { flex-direction: column; }
    .hero-content h2 { font-size: 3rem; }
}
@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow);
    }
    .nav-links.active { display: flex; }
    .glass-header:not(.scrolled) .nav-links a { color: var(--text-dark); margin: 10px 0; }
    .mobile-toggle { display: block; }
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 0; }
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-icon { left: 11px !important; }
}
@media (max-width: 576px) {
    .grid-4, .grid-3 { grid-template-columns: 1fr; }
    .hero-content h2 { font-size: 32px;
        line-height: 40px !important; }
        a.logo img {
    width: 80%;
}
}
/* --- Premium Contact Section: Box Designs --- */
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.btn-block { width: 100%; display: flex; justify-content: center; align-items: center; padding: 15px; font-size: 1.1rem; }

/* Contact Info Boxes */
.contact-info-boxes {
    gap: 30px;
}
.contact-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}
.contact-box:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(11, 60, 109, 0.12);
}
.box-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(11, 60, 109, 0.05);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}
.contact-box:hover .box-icon {
    background: var(--primary);
    color: var(--white);
}
.box-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}
.box-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Form and Map Grid */
.contact-interactive {
    gap: 30px;
    align-items: stretch;
}
.shadow-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Form Area Styles */
.contact-form-area {
    padding: 40px;
}
.form-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}
.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.input-group {
    margin-bottom: 20px;
}
.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}
.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}
.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(11, 60, 109, 0.05);
}

/* Map Area Styles */
.map-container {
    height: 100%;
    min-height: 400px;
    filter: grayscale(80%) contrast(1.1); 
    transition: filter 0.3s ease;
}
.map-container:hover {
    filter: grayscale(0%) contrast(1);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .contact-info-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-interactive {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .contact-info-boxes {
        grid-template-columns: 1fr;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .contact-form-area {
        padding: 30px 20px;
    }
}

/* --- Enhanced Corporate Info Cards --- */
.info-cards-corporate {
    margin-top: 40px;
    gap: 25px;
}
.corp-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(11, 60, 109, 0.06);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Premium Top Border Hover Effect */
.corp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.corp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(11, 60, 109, 0.12);
    border-color: transparent;
}
.corp-card:hover::before {
    transform: scaleX(1);
}

/* Upgraded Icons */
.corp-icon {
    width: 55px;
    height: 55px;
    background: rgba(11, 60, 109, 0.05); /* Soft primary tint */
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}
.corp-card:hover .corp-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

/* Typography Adjustments for longer text */
.corp-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-dark);
}
.corp-card p {
    font-size: 0.9rem; /* Slightly larger for readability */
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
    text-align: justify; /* Gives a neat, blocky corporate look */
}

/* Responsive adjustments for 20-word text */
@media (max-width: 1024px) {
    .corp-card {
        padding: 25px 20px;
    }
}
@media (max-width: 768px) {
    .info-cards-corporate {
        grid-template-columns: 1fr;
    }
    .corp-card p {
        text-align: left; /* Better readability on small screens */
    }
}
/* --- Premium Business Divisions (Image + Clean Card Design) --- */
.div-card-premium {
    background: #f1f1f1;
    border-radius: var(--radius);
    border: 1px solid #f1f5f9; /* Soft border as seen in the reference */
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.div-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 60, 109, 0.08);
    border-color: transparent;
}

/* Image Container Styles */
.div-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.div-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.div-card-premium:hover .div-image img {
    transform: scale(1.08);
}

/* Card Content Styles */
.div-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Green Icon mimicking the reference image */
.div-icon {
    margin-bottom: 15px;
}
.div-icon i {
    font-size: 1.8rem;
    color: var(--accent); /* Uses the #0E8C61 Green */
}

/* Typography matching the reference */
.div-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.div-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Learn More Link matching the reference */
.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}
.learn-more-link i {
    color: var(--accent); /* Green arrow */
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.learn-more-link:hover {
    color: var(--text-dark);
}
.learn-more-link:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments for Divisions */
@media (max-width: 1024px) {
    .div-card-premium .div-content {
        padding: 20px;
    }
}
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}   
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }

    .hero-inner-txt {
    width: 100% !important;
}
}



@media(min-width: 1025px) {
    .whatsapp-float {
    position: fixed;
    bottom: 50px !important;
    right: 100px !important;}
}

.form-message{
    margin-top:20px;
    padding:15px;
    border-radius:8px;
    font-size:15px;
    font-weight:600;
    text-align:center;
}

.success{
    background:#e8f8ed;
    color:#1b8a3c;
    border:1px solid #6ed18b;
}

.error{
    background:#ffecec;
    color:#d93025;
    border:1px solid #f5a4a4;
}