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

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.top-bar {
    background: linear-gradient(135deg, #112e65 0%, #2e5596 100%);
    color: rgb(255, 255, 255);
    padding: 10px;
    font-size: 14px;
}

.top-bar-content {
    max-width: 1210px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    margin-right: 10px;
    transition: opacity 0.3s ease-in-out;
}

.contact-info a:hover {
    opacity: 0.6;
}

.cta-button {
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-button:hover {
    background: #f4410a;
}

/* 
/* Navigation */
nav {
    background: rgb(255, 255, 255);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    padding-top: 1px;
    padding-bottom: 1px;
    z-index: 1000;
}

.nav-content {
    max-width: 1150px;
    margin: 0 auto;
    padding: 5px 20px;
    padding-top: 1px;
    padding-bottom: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-weight: bold;
    text-decoration: none;
}

.logo span {
    font-size: 12px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #1a3d7d 0%, #31589b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: rgb(9, 9, 9);
}

.logo-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2a5298;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 90vw;
    max-width: 1100px;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-radius: 10px;
    padding: 30px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Custom Scrollbar Styling */
.dropdown-content::-webkit-scrollbar {
    width: 10px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2a5298 0%, #667eea 100%);
}

.dropdown.active .dropdown-content {
    display: block;
    opacity: 1;
}

.mega-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-column h4 {
    color: #1e3c72;
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2a5298;
    font-weight: 600;
}

.mega-column a {
    color: #555;
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    padding-left: 10px;
}

.mega-column a:hover {
    color: #2a5298;
    border-left-color: #ff6b35;
    padding-left: 15px;
    background: rgba(42, 82, 152, 0.05);
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #174189 50%, #172a7d 100%);
    color: white;
    padding: 20px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    margin-top: 20px;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-intro {
    font-size: 19px !important;
    opacity: 0.85 !important;
    max-width: 750px;
    margin: 0 auto 35px !important;
    line-height: 1.5;
    margin-bottom: 100px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: white;
    color: #2a5298;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Stats Section */
.stats {
    background: #f8f9fa;
    padding: 60px 20px;
}

.stats-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #2a5298;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #666;
}

/* Features Section */
.features {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1e3c72;
}

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

.feature-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2a5298;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e3c72;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Clients Section */
.clients {
    background: #f8f9fa;
    padding: 60px 20px;
}

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

.clients h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1e3c72;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.client-logo {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-weight: bold;
    color: #666;
    transition: transform 0.3s;
}

.client-logo:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Footer */
footer {
    background: linear-gradient(160deg, #0f2552 0%, #1e3c72 60%, #16336a 100%);
    color: white;
    padding: 0 0 0;
    position: relative;
    overflow: hidden;
}

/* Decorative top glow line */
/* footer::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6b35, #667eea, #ff6b35, transparent);
} */

/* Brand banner inside footer */
.footer-brand {
    text-align: center;
    padding: 50px 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 40%, #a8c4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.footer-brand-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Main footer grid */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 60px;
    padding: 50px 20px 40px;
    margin-bottom: 0;
}

.footer-section h3 {
    margin-bottom: 22px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section h6 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c1c0c0;
    margin: 18px 0 10px;
}

/* Social icon pills */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateX(4px);
}

.social-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e3c72;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {

    /* Top Bar Mobile */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .contact-info a {
        margin-right: 0;
        font-size: 13px;
    }

    .cta-button {
        padding: 6px 15px;
        font-size: 13px;
    }

    /* Navigation Mobile */
    .nav-content {
        padding: 12px 15px;
    }

    .logo {
        font-size: 22px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 0;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links>li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-links>li>a {
        display: block;
        padding: 15px;
        font-size: 16px;
    }

    /* Dropdown Mobile */
    .dropdown-content {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        max-height: none;
        padding: 15px;
        margin-top: 0;
        box-shadow: none;
        border-radius: 0;
        background: #f8f9fa;
    }

    .mega-menu {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mega-column h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .mega-column a {
        font-size: 13px;
        padding: 6px 0;
    }

    /* Hero Mobile */
    .hero {
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 12px 30px;
        font-size: 16px;
    }

    /* Stats Mobile */
    .stats {
        padding: 40px 15px;
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }

    /* Features Mobile */
    .features {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-icon {
        font-size: 40px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 15px;
    }

    /* Clients Mobile */
    .clients {
        padding: 40px 15px;
    }

    .clients h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .client-logo {
        padding: 20px 15px;
        font-size: 14px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 50px 15px;
    }

    .cta-section h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 16px;
    }

    /* Footer Mobile */
    footer {
        padding: 20px 15px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section ul li {
        font-size: 14px;
    }
}

/* Very Small Mobile Devices */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .stat-number {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .cta-section h2 {
        font-size: 24px;
    }
}