/* Global Vars & Reset from Design System */
:root {
    /* Brand Colors */
    --primary-color: #0B4F93;
    /* Deep Trust Blue */
    --secondary-color: #00A8CC;
    /* Tech Cyan */
    --accent-color: #FF9F1C;
    /* Action Amber */
    --success-color: #10B981;

    /* Neutrals */
    --dark-bg: #0F172A;
    /* Slate 900 */
    --heading-color: #1E293B;
    /* Slate 800 */
    --text-color: #334155;
    /* Slate 700 */
    --light-bg: #F1F5F9;
    /* Slate 100 */
    --white: #FFFFFF;

    /* UI Properties */
    --transition: all 0.3s ease-in-out;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Soft Shadow */
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 6px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Tools */
h1,
h2,
h3,
h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 500;
    /* Medium weight from Design System */
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #083C72;
    /* Darker Brand Blue */
    border-color: #083C72;
    transform: translateY(-2px);
    /* Lift effect */
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background-color: #f1f5f9;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}


/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-bg);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-radius: 6px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
}

.dropdown-menu li a:hover {
    background-color: #f1f5f9;
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    /* Almost full height */
    min-height: 600px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    /* Fallback or gradient */
    display: flex;
    align-items: center;
    color: var(--white);
    background-image: url('https://images.unsplash.com/photo-1504384308090-c54be3855833?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    /* Dark blue overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}


/* Trust Bar */
.trust-bar {
    background-color: #f8fafc;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.trust-bar p {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.logo-item {
    color: #94a3b8;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
    color: var(--text-color);
}

/* Premium Domain Search Card */
/* ... existing domain search styles ... */

/* Dynamic Hero Section */
.hero-dynamic {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(-45deg, #0f172a, #1e293b, #0f172a, #334155);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-dynamic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatShape 10s infinite alternate;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
}

.shape-2 {
    bottom: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    animation-delay: -5s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

/* Premium Service Cards (Home) */
.service-card-premium {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-card-premium:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.service-card-premium:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.bg-primary-grad {
    background: linear-gradient(135deg, var(--primary-color), #1e293b);
}

.bg-secondary-grad {
    background: linear-gradient(135deg, var(--secondary-color), #0ea5e9);
}

.bg-accent-grad {
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
}

.bg-success-grad {
    background: linear-gradient(135deg, var(--success-color), #10b981);
}

/* Glass Stat Cards */
.stat-card-glass {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.stat-card-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.about-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #64748b;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}


/* Services Section */
.services-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    /* Soft default shadow */
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    /* Deep hover shadow */
    border-color: var(--secondary-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #e0f2fe;
    color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #64748b;
    margin-bottom: 25px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    gap: 12px;
    /* Micro animation */
}


/* Product Spotlight */
.product-spotlight {
    padding: 100px 0;
    background: linear-gradient(120deg, var(--primary-color) 0%, #003366 100%);
    color: var(--white);
    overflow: hidden;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.product-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.badge {
    background: var(--accent-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: 1px;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--accent-color);
}

.product-image {
    position: relative;
}

.img-placeholder {
    background: rgba(255, 255, 255, 0.1);
    height: 400px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.img-placeholder i {
    font-size: 5rem;
    opacity: 0.5;
}

.img-placeholder span {
    font-weight: 600;
    opacity: 0.8;
}


/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-item p {
    font-weight: 600;
    color: #64748b;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: var(--transition);
    position: relative;
    border: 1px solid #e2e8f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 25px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #cbd5e1;
    /* Placeholder */
    object-fit: cover;
}

.client-details h4 {
    margin-bottom: 2px;
    color: var(--heading-color);
    font-weight: 600;
}

.client-details span {
    font-size: 0.9rem;
    color: #64748b;
}


/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 40px;
    opacity: 0.8;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* Footer */
.footer {
    background-color: #0b1120;
    /* Darker than slate 900 */
    color: #cbd5e1;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li i {
    width: 20px;
    color: var(--secondary-color);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
    /* Micro interaction */
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsiveness */
@media (max-width: 992px) {
    .product-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------
   Additions for JavaScript Functionality 
   -------------------------------------------------- */

/* Sticky Header Scrolled State */
.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    /* Shrink header slightly */
}

/* Mobile Menu Styles (Hidden by default on desktop) */
@media (max-width: 992px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        padding: 10px 0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    /* Adjust CTA for mobile menu integration if needed */
    .header-cta {
        display: none;
        /* Hide default CTA location on mobile */
    }

    .header-cta.active {
        display: block;
        /* Show inside menu logic if moved, or handle differently */
        position: absolute;
        top: 400px;
        /* Example positioning */
        left: 20px;
    }

    /* Reset Dropdowns for mobile linear view */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        width: 100%;
        visibility: visible;
        opacity: 1;
        transform: none;
        display: none;
        /* JS could toggle this, or use CSS hover fallback */
        background-color: #f8fafc;
        padding-left: 20px;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Scroll Animations */
.animate-fade-up,
.service-card,
.stat-item,
.product-content,
.about-content,
.project-card,
.feature-item,
.domain-search-container,
.pricing-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grids */
.service-card:nth-child(2) {
    transition-delay: 0.1s;
}

.service-card:nth-child(3) {
    transition-delay: 0.2s;
}

.service-card:nth-child(4) {
    transition-delay: 0.3s;
}

.stat-item:nth-child(2) {
    transition-delay: 0.1s;
}

.stat-item:nth-child(3) {
    transition-delay: 0.2s;
}

.stat-item:nth-child(4) {
    transition-delay: 0.3s;
}

/* --------------------------------------------------
   Portfolio Page Styles
   -------------------------------------------------- */

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #cbd5e1;
    padding: 8px 24px;
    border-radius: 50px;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 240px;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 79, 147, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 25px;
}

.project-tags {
    margin-bottom: 12px;
}

.project-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    margin-right: 10px;
}

.project-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.project-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* --------------------------------------------------
   Floating WhatsApp Widget
   -------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    /* Effect from Blueprint */
    background-color: #128C7E;
    color: #FFF;
    /* Ensure icon stays white */
}

.whatsapp-float i {
    margin-top: 2px;
    /* Minor alignment adjustment */
}

/* Tooltip for the widget - Hidden as per request */
.whatsapp-float::after {
    display: none;
}

.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* --------------------------------------------------
   Enhanced Footer with Trust Badges
   -------------------------------------------------- */

.footer-badges {
    border-top: 1px solid #1e293b;
    padding: 30px 0;
    margin-bottom: 20px;
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-item i {
    font-size: 1.5rem;
    color: #cbd5e1;
}

/* Newsletter Input Style */
.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 0.9rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form button {
    padding: 10px 15px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

/* --------------------------------------------------
   Career Page Responsive Styles
   -------------------------------------------------- */
.job-list-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 30px;
}

.job-info h3 {
    margin-bottom: 5px;
}

.job-meta {
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 500;
}

.job-desc {
    font-size: 0.95rem;
    color: var(--text-color);
}

.apply-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 20px;
}

.apply-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* --------------------------------------------------
   Enhancing Global Responsiveness
   -------------------------------------------------- */
@media (max-width: 768px) {

    /* Hero Text Sizing */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Career Card Stacking */
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .apply-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    /* General Padding Adjustments */
    .section-header h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    /* Footer Adjustments */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-col {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 20px auto 0;
    }

    .footer-col ul li a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .badge-item {
        width: 100%;
        justify-content: center;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 4px;
        width: 100%;
    }
}

/* New About Section Styles */
.mission-vision-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #f8fafc;
}

.mission-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.mission-row:last-child {
    margin-bottom: 0;
}

.mission-row.reverse {
    flex-direction: row-reverse;
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.mission-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.mission-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}

.mission-visual {
    flex: 1;
    position: relative;
}

.mission-visual img {
    border-radius: 20px 0 20px 0;
    box-shadow: -20px 20px 0 var(--primary-color);
    transition: transform 0.3s ease;
}

.mission-visual:hover img {
    transform: translate(5px, -5px);
}

@media (max-width: 992px) {
    .mission-row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        margin-bottom: 60px;
    }

    .mission-row.reverse {
        flex-direction: column;
    }

    .mission-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .mission-visual img {
        box-shadow: none;
        border: 5px solid var(--primary-color);
    }
}

/* New Process Section Styles */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 0 15px;
}

.step-number {
    width: 100px;
    height: 100px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.process-step:hover .step-number {
    background: var(--primary-color);
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.step-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-timeline::before {
        display: none;
    }

    .process-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        flex-shrink: 0;
        margin-bottom: 0;
    }
}

/* New Premium Team Styles */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* Premium Pricing Cards (Hosting Page) */
.price-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

.price-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.price-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.price-header .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -1px;
}

.price-header .period {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

.feature-list-price {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
    flex-grow: 1;
}

.feature-list-price li {
    padding: 12px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.feature-list-price li i {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.popular-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: 25px;
    right: -30px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    letter-spacing: 1px;
}

/* Button override for pricing */
.price-card .btn {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    margin-top: auto;
}

/* Premium Tech Specs Section */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Premium Domain Search Card */
.domain-search-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    max-width: 800px;
    margin: 60px auto 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.domain-search-container:hover {
    transform: translateY(-5px);
}

.search-box {
    display: flex;
    gap: 15px;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    outline: none;
    color: var(--text-color);
}

.search-box button {
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-box button:hover {
    transform: scale(1.02);
}

.domain-extension {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.domain-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.domain-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .search-box {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .search-box input {
        width: 100%;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .search-box button {
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }
}

.tech-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.tech-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.tech-card:hover::after {
    transform: scaleX(1);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.tech-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.tech-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.team-card .member-img-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.team-card .member-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.team-card:hover .member-img {
    transform: scale(1.05);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: 0;
    border-radius: 20px 20px 50% 50%;
}

.team-card h3 {
    margin-top: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
}

.team-card .role {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 35px;
    height: 35px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* ================================================
   ABOUT PAGE RESPONSIVE & ACCORDION STYLES
   ================================================ */

/* Accordion / Collapsible Section Styles */
.accordion-section {
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.accordion-header {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-header:hover {
    background: linear-gradient(135deg, var(--light-bg) 0%, #f1f5f9 100%);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
}

.accordion-toggle {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-toggle.active {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 1000px;
    padding: 24px;
}

/* Responsive About Page Sections */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .product-spotlight {
        grid-template-columns: 1fr !important;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

/* Responsive About Page Sections */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .mission-row {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .mission-visual {
        order: 2 !important;
    }

    .mission-text {
        order: 1 !important;
    }

    .mission-row.reverse .mission-visual {
        order: 1 !important;
    }

    .mission-row.reverse .mission-text {
        order: 2 !important;
    }

    .mission-text h3 {
        font-size: 1.5rem !important;
    }

    .mission-text p {
        font-size: 1rem !important;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 20px !important;
    }
}

@media (max-width: 600px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-content {
        padding-top: 30px !important;
    }

    .accordion-header {
        padding: 16px 16px;
    }

    .accordion-header h3 {
        font-size: 1rem;
    }

    .feature-card {
        padding: 24px 16px !important;
    }

    .feature-card h4 {
        font-size: 1rem !important;
    }

    .feature-card p {
        font-size: 0.875rem !important;
    }

    .value-card {
        padding: 30px 20px !important;
    }

    .team-grid {
        grid-template-columns: 1fr !important;
    }

    .cta-buttons {
        flex-direction: column !important;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    /* Home Page Mobile Responsive */
    .about-grid {
        grid-template-columns: 1fr !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .stat-item {
        padding: 30px 20px !important;
    }

    .testimonial-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Global Glassmorphism Pricing Cards */
.price-card,
.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    overflow: hidden;
}

.price-card::before,
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-card:hover,
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.price-card:hover::before,
.pricing-card:hover::before {
    opacity: 1;
}

.price-card.popular,
.pricing-card.popular {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 2;
}

.price-card.popular:hover,
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 159, 28, 0.4);
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 10px 0;
}

.price span.period,
.price-header span.period {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
}

.feature-list-price {
    margin: 30px 0;
    text-align: left;
}

.feature-list-price li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.feature-list-price i {
    color: var(--success-color);
}


/* Compatibility Styles for Service-Web.html */
.pricing-section {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.features-list {
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.features-list i {
    color: var(--success-color);
}

.features-list li.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}


/* Accordion Styles for FAQs */
.accordion-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.accordion-header {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-header.active {
    color: var(--primary-color);
}

.accordion-toggle {
    width: 30px;
    height: 30px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    color: var(--primary-color);
}

.accordion-header.active .accordion-toggle {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-right: 20px;
}

.accordion-content p {
    padding-bottom: 25px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}


.accordion-content.active {
    max-height: 500px;
    /* Adjust if content is very long */
    padding-bottom: 20px;
}


/* =========================================
   PREMIUM NAVIGATION STYLES (Overrides)
   ========================================= */

/* Glassmorphism Header */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Navbar Layout */
.nav-container {
    max-width: 1280px;
    /* Slightly wider */
}

/* Nav Links - Modern Pill/Underline Style */
.nav-links {
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--heading-color);
    letter-spacing: 0.3px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

/* Animated Gradient Underline */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Dropdown Menu - Premium Look */
.dropdown-menu {
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 15px;
    width: 240px;
    top: 120%;
    /* Offset slightly more */
}

.dropdown:hover .dropdown-menu {
    top: 100%;
    /* Slide up effect */
}

.dropdown-menu li a {
    border-radius: 8px;
    padding: 12px 15px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg, #f0f9ff, #e0f2fe);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Mobile Toggle Update */
@media (max-width: 992px) {
    .header {
        background-color: white;
        /* Solid on mobile for better readability */
    }

    .nav-links {
        background-color: white;
        gap: 0;
    }

    .nav-links a::after {
        display: none;
        /* No underline on mobile lists */
    }

    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid #f1f5f9;
        display: block;
    }

    .nav-links a:hover {
        background-color: #f8fafc;
        color: var(--primary-color);
    }
}


/* =========================================
   ULTRA-PREMIUM NAVIGATION (Stylish v2) 
   ========================================= */

/* 1. Gradient Logo Text */
.logo a {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.logo a .highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 2. Premium Nav Links */
.nav-links {
    background: rgba(255, 255, 255, 0.5);
    /* Subtle pill container */
    padding: 5px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
}

/* Remove old underline, use Glow Pill instead */
.nav-links a::after {
    display: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background: rgba(11, 79, 147, 0.08);
    /* faint primary bg */
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(11, 79, 147, 0.1);
}

/* 3. Gradient Glow CTA Button */
.header-cta .btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50px;
    /* Fully rounded pill */
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.4);
    /* Colored glow */
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.header-cta .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    /* Pop effect */
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.6);
}

.header-cta .btn-primary:hover::before {
    left: 100%;
    /* Shine animation */
}

/* 4. Enhanced Header Glass */
.header {
    background: rgba(255, 255, 255, 0.7);
    /* More transparent */
    backdrop-filter: blur(20px) saturate(180%);
    /* Deeper iOS-style glass */
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}


/* =========================================
   PERFECT CENTERED NAVIGATION
   ========================================= */

/* Ensure the container uses the full width */
.nav-container {
    padding: 0 40px;
    /* More breathing room */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Fallback */
    position: relative;
}

/* 1. Logo stretches to occupy left space or stays fixed */
.logo {
    flex: 0 0 auto;
    /* Don't shrink */
}

/* 2. Navbar (Links) takes up center space */
.navbar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

/* 3. CTA Buttons take up right space */
.header-cta {
    flex: 0 0 auto;
}

/* 4. Responsive adjustments */
@media (max-width: 992px) {
    .navbar {
        position: static;
        transform: none;
    }

    .nav-container {
        padding: 0 20px;
    }
}


/* =========================================
   FIX: PREVENT NAVBAR WRAPPING
   ========================================= */

.nav-links {
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    /* Keep icon close to text */
}

/* Ensure centering doesn't cause overlap issues on medium screens */
@media (max-width: 1200px) {
    .navbar {
        position: static;
        transform: none;
        margin: 0 20px;
        /* Give some spacing */
    }

    .nav-container {
        justify-content: space-between;
    }
}


/* =========================================
   PROFESSIONAL STANDARD LAYOUT (Clean)
   ========================================= */

/* Reset Container for Standard Flex Layout */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    /* Standard Side padding */
}

/* Reset Navbar Positioning (Disable Centering) */
.navbar {
    position: static !important;
    transform: none !important;
    margin-left: auto;
    /* Push to right, next to CTA */
    margin-right: 30px;
    /* Space between links and CTA */
    justify-content: flex-end;
}

/* Ensure Links are Clean and Spaced */
.nav-links {
    display: flex;
    gap: 30px;
    /* Clean spacing */
    background: transparent;
    /* Remove pill background */
    border: none;
    padding: 0;
    backdrop-filter: none;
}

/* Professional Link Style */
.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    /* Cleaner than Uppercase */
    letter-spacing: normal;
    color: var(--heading-color);
    padding: 10px 0;
    /* Vertical breathing room */
    border-radius: 0;
}

/* Simple Premium Hover Underline */
.nav-links a::after {
    display: block !important;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Remove Hover Pill Background */
.nav-links a:hover,
.nav-links a.active {
    background: transparent;
    box-shadow: none;
    color: var(--primary-color);
}

/* Ensure CTA stays on the right */
.header-cta {
    flex: 0 0 auto;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .nav-container {
        padding: 0 20px;
    }

    .navbar {
        display: none !important;
        /* Hide standard nav on mobile */
    }
}

/* ========================================
   ENHANCED HERO SECTION STYLES
   ======================================== */

/* Grid Overlay Pattern */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    z-index: 1;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

/* Animated Hero Badge */
.hero-badge-animated {
    display: inline-block;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(129, 140, 248, 0.2));
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(56, 189, 248, 0.4);
    color: #38bdf8;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-badge-animated i {
    margin-right: 10px;
    animation: rocketFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.6));
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(56, 189, 248, 0.15),
            0 0 30px rgba(56, 189, 248, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 12px 35px rgba(56, 189, 248, 0.25),
            0 0 50px rgba(56, 189, 248, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
        transform: scale(1.02);
    }
}

@keyframes rocketFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-4px) rotate(-5deg);
    }

    75% {
        transform: translateY(-2px) rotate(5deg);
    }
}

/* Hero Title */
.hero-title-main {
    font-size: 4.2rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 900;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
        0 8px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 40%, #c084fc 70%, #e879f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: gradientShimmer 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Hero Description */
.hero-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 45px;
    max-width: 700px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Hero Buttons */
.hero-buttons-enhanced {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    justify-content: center;
}

.btn-hero-main {
    padding: 16px 38px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4),
        0 5px 15px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-main::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.7s;
}

.btn-hero-main::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-hero-main:hover::before {
    left: 100%;
}

.btn-hero-main:hover::after {
    opacity: 1;
}

.btn-hero-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.5),
        0 8px 20px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-hero-main:active {
    transform: translateY(-2px);
}

.btn-hero-glass {
    padding: 16px 38px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-hero-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-hero-glass:hover::before {
    opacity: 1;
}

.btn-hero-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-hero-glass:active {
    transform: translateY(-2px);
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-item i {
    color: #38bdf8;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5));
    animation: iconPulse 2s ease-in-out infinite;
}

.trust-item:nth-child(1) i {
    animation-delay: 0s;
}

.trust-item:nth-child(2) i {
    animation-delay: 0.3s;
}

.trust-item:nth-child(3) i {
    animation-delay: 0.6s;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.8));
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-title-main {
        font-size: 3.2rem;
        letter-spacing: -1.5px;
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .btn-hero-main,
    .btn-hero-glass {
        padding: 18px 36px;
        font-size: 1.05rem;
        width: 100%;
        justify-content: center;
    }

    .hero-trust-badges {
        gap: 30px;
        justify-content: center;
        padding-top: 25px;
    }

    .trust-item {
        font-size: 0.95rem;
    }

    .trust-item i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-badge-animated {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}/* About Page Enhancements */

/* Timeline Card Hover Effects */
.timeline-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

/* Team Card Hover Effects */
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-card:hover .member-img {
    transform: scale(1.1);
}

/* Float Animation for Hero Shapes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Fade Up Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Gradient Text Animation */
.hero-gradient-text {
    animation: gradientShift 3s ease infinite;
    background-size: 200% auto;
}

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