/* Safe EMI Theme - Dark Mode & Modern UI */

:root {
    /* --- Color Palette --- */
    --bg-primary: #0b0f19;
    /* Deep Navy */
    --bg-secondary: #111625;
    /* Lighter Navy/Card Bg */
    --bg-tertiary: #1a2035;
    /* Hover/Active states */

    --text-primary: #e6e8ec;
    /* Off-white */
    --text-secondary: #a0a8b8;
    /* Muted Blue-Grey */
    --text-tertiary: #6b788e;
    /* Darker Grey */

    --accent-primary: #00d4ff;
    /* Cyan/Electric Blue (from logo) */
    --accent-secondary: #ffc107;
    /* Gold/Amber (from logo) */
    --accent-danger: #ff4e59;
    /* Soft Red */

    /* --- Gradients --- */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #007bff 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));

    /* --- Glassmorphism --- */
    --glass-bg: rgba(17, 22, 37, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* --- Overrides for Existing Variables (where possible) --- */
    --primary-color-900: var(--accent-primary);
    --text-color-900: var(--text-primary);
    --text-color-800: var(--text-primary);
    --white-color: #ffffff;
}

/* --- Global Resets for Dark Theme --- */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    font-weight: 700;
}

h2.title,
h3.title {
    background: linear-gradient(to right, #fff, #a0a8b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: var(--text-secondary);
}

/* --- Header & Navbar --- */
.pp-header-area.pp-header-area-2 .header-top-area {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pp-header-area.pp-header-area-2 .header-btm-area {
    background-color: rgb(17 22 37 / 90%);
    backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
}

.pp-menu li a {
    color: var(--text-primary) !important;
    font-weight: 500;
}

.pp-menu li a:hover,
.pp-menu li.active a {
    color: var(--accent-primary) !important;
}

/* --- Buttons --- */
.pp-primary-btn {
    background: var(--gradient-primary);
    color: #0b0f19 !important;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.pp-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
    background: var(--gradient-primary);
    /* Keep consistent */
}

/* --- Cards (Services, Testimonials, Info) --- */
.pp-info-card,
.single-service-card,
.single-testimonial-card,
.single-pp-counter {
    background: var(--bg-secondary) !important;
    border: var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pp-info-card:hover,
.single-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.single-service-card .icon-box,
.pp-info-card .info-icon {
    background: rgba(0, 212, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--accent-primary);
}

.single-service-card .title,
.pp-info-card .title {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.single-service-card .des,
.pp-info-card .des {
    color: var(--text-secondary);
}

/* --- Icons --- */
i.fas,
i.fab,
i.far {
    display: inline-block;
}

/* --- Footer --- */
.pp-footer-section {
    background-color: var(--bg-secondary) !important;
    background-image: none !important;
    /* Remove old bg image */
    border-top: var(--glass-border);
}

.single-foo-widget h5 {
    color: var(--accent-primary);
}

.menu-list li a {
    color: var(--text-secondary);
    transition: 0.3s;
}

.menu-list li a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

/* --- Mobile Menu --- */
.mobile-menu {
    background-color: var(--bg-secondary);
}

.mobile-nav-menu li a {
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Logo Size --- */
.logo img,
.footer-logo-main {
    max-height: 100px;
    width: auto;
}

/* --- Sections --- */
.pp-hero-section {
    background-color: var(--bg-primary);
}

.pp-about-company,
.pp-service-section,
.pp-contact-section,
.pp-testimonial-section {
    background-color: var(--bg-primary);
}

/* --- Form --- */
.form-box input,
.form-box textarea {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);

}

.form-box input:focus,
.form-box textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

/* --- Text Highlights --- */
.text-accent {
    color: var(--accent-primary);
}

/* --- Premium Cards (About Section) --- */
.premium-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.premium-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(11, 15, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    font-size: 2rem;
    color: var(--accent-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.premium-card:hover .icon-wrapper {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

/* Card Icon Image Styles */
.premium-card .icon-wrapper .card-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.premium-card:hover .icon-wrapper .card-icon-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Premium Card with Full-Width Image at Top */
.premium-card.premium-card-img {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.premium-card.premium-card-img .card-img-top {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.premium-card.premium-card-img .card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.premium-card.premium-card-img:hover .card-img-top img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.premium-card.premium-card-img .card-content {
    padding: 1.5rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.premium-card.premium-card-img .card-content .title {
    margin-bottom: 1rem;
}

.premium-card.premium-card-img .card-content p {
    flex: 1;
}

.premium-card h5 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.premium-card p {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.section-head-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* --- Service Feature Cards --- */
.service-feature-card {
    background: var(--bg-secondary) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    border-radius: 100% 0 0 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.service-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-feature-card:hover::after {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.service-feature-card .icon-container {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    font-size: 1.8rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-feature-card:hover .icon-container {
    background: var(--accent-primary);
    color: #0b0f19;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.service-feature-card .title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-feature-card .des {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Ultra-Premium Glassmorphism Form --- */
.premium-form-wrapper {
    background: rgba(20, 25, 40, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

/* Ensure no white background from parent containers */
.contact-section-right,
.pp-contact-section,
.pp-contact-section-home-3 {
    background: transparent !important;
    background-color: transparent !important;
}

/* Handle the form wrapper legacy class if it exists elsewhere */
.form-wrapper {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Glow effect behind the form */
.premium-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.premium-form-input {
    background: rgba(11, 15, 25, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    letter-spacing: 0.5px;
    outline: none;
}

.premium-form-input:focus {
    background: rgba(11, 15, 25, 0.9) !important;
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2) !important;
    transform: translateY(-2px);
}

.premium-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 400;
    font-size: 0.95rem;
}

.form-box {
    position: relative;
    margin-bottom: 0;
    background: transparent !important;
    width: 100% !important;
}

/* Ensure headings in this section are visible */
.contact-section-right .title-box-1 h2,
.contact-section-right .title-box-1 h5,
.contact-section-right .title-box-1 p {
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.contact-section-right .title-box-1 h5.sm-title {
    color: var(--accent-primary) !important;
}

.contact-img-modern {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    height: 100%;
    min-height: 500px;
}

.contact-img-modern img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.contact-img-modern:hover img {
    transform: scale(1.05);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}


/* --- Premium Counter Cards --- */
.premium-counter-card {
    background: rgba(255, 255, 255, 0.05);
    /* True Glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* Stronger top light */
    border-radius: 20px;
    padding: 3rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.premium-counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.1), transparent 60%);
    opacity: 0.5;
    /* Always visible slightly */
    transition: opacity 0.4s ease;
    z-index: 0;
}

.premium-counter-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.premium-counter-card:hover::before {
    opacity: 1;
}

.premium-counter-card .icon-box {
    width: 80px;
    height: 80px;
    /* background: rgba(14, 22, 44, 0.5); */
    /* Dark circle base */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--accent-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.premium-counter-card:hover .icon-box {
    background: var(--accent-primary);
    color: #0b0f19;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    border-color: transparent;
}

.premium-counter-card .counter-title {
    font-size: 3rem;
    font-weight: 800;
    color: #007bff !important;
    /* Force white text */
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Shadow for pop */
}

.premium-counter-card .des {
    color: #00d4ff;
    font-size: 1.1rem;

    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

/* --- Premium Testimonial Cards --- */
.premium-testimonial-card {
    background: rgba(20, 25, 40, 0.6) !important;
    /* Visible dark glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.premium-testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: rgba(20, 25, 40, 0.8) !important;
}

.premium-testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    opacity: 0.2;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.premium-testimonial-card .user-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.premium-testimonial-card .user-details h5 {
    color: #fff !important;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.premium-testimonial-card .user-details .role {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-testimonial-card .rating {
    color: #ffc107 !important;
    /* Bright Yellow Stars */
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 2px;
}

.premium-testimonial-card .feedback {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 400;
    font-style: italic;
}


/* --- Premium CTA Section --- */
.premium-cta-section {
    background: linear-gradient(135deg, rgba(20, 25, 40, 0.8), rgba(15, 20, 35, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.premium-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.premium-cta-section .content-box {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.premium-cta-section .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.premium-cta-section .des {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.premium-cta-section .cta-img-container {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    z-index: 1;
    transition: all 0.5s ease;
}

.premium-cta-section:hover .cta-img-container {
    transform: translateY(-50%) scale(1.05) rotate(-2deg);
}

.premium-cta-section .cta-img-container img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

@media (max-width: 991px) {
    .premium-cta-section {
        padding: 3rem 2rem;
        text-align: center;
    }

    .premium-cta-section .content-box {
        margin: 0 auto;
    }

    .premium-cta-section .cta-img-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 3rem;
    }

    .premium-cta-section:hover .cta-img-container {
        transform: scale(1.05);
    }
}

/* --- Premium Footer --- */
.premium-footer {
    background: linear-gradient(180deg, #0b0f19 0%, #05070a 100%);
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

.premium-footer .footer-logo-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Fix for logo and text alignment */
.premium-footer .footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.premium-footer .footer-logo-box h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1;
}

.premium-footer .footer-logo-box h3 span {
    color: var(--accent-primary);
}

.premium-footer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 1.5rem;
    font-size: 1.05rem;
}

.premium-footer h5 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.premium-footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.premium-footer ul li {
    margin-bottom: 1rem;
}

.premium-footer ul li a {
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-footer ul li a:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

.premium-footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.premium-footer .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.premium-footer .social-links a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.premium-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

.premium-footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* =========================================
   PREMIUM NAVBAR STYLES (RE-ADDED)
   ========================================= */
.premium-navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.premium-navbar {
    background: rgba(11, 15, 25, 0.85);
    /* Dark transparent background */
    backdrop-filter: blur(12px);
    /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* padding: 15px 0; */
    transition: all 0.3s ease;
}

.premium-navbar .logo img {
    height: 100px;
    width: auto;
}

/* Navigation Menu */
.premium-navbar nav ul.pp-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 30px;
    list-style: none;
    /* Ensure no bullets */
}

.premium-navbar nav ul.pp-menu li {
    list-style: none;
    display: inline-block;
}

.premium-navbar nav ul.pp-menu li a {
    color: #cbd5e1;
    /* Lighter text for better contrast */
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.premium-navbar nav ul.pp-menu li a:hover,
.premium-navbar nav ul.pp-menu li a.active {
    color: #00d4ff;
    /* Primary Accent Color */
}

/* Underline Effect on Hover */
.premium-navbar nav ul.pp-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #00d4ff;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    /* Glow effect */
}

.premium-navbar nav ul.pp-menu li a:hover::after,
.premium-navbar nav ul.pp-menu li a.active::after {
    width: 100%;
}

/* Navbar CTA Button */
.btn-navbar-cta {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00d4ff 0%, #0056b3 100%);
    /* Stronger gradient */
    color: #fff !important;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, #0056b3 0%, #00d4ff 100%);
}

.btn-navbar-cta i {
    font-size: 16px;
}

/* Mobile Toggle Adjustment */
.mobile-menu-toggle {
    background: transparent;
    border: none;
    color: white;
    padding: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #00d4ff;
}

/* Ensuring alignment in the row */
.premium-navbar .row {
    width: 100%;
    margin: 0;
}

/* =========================================
   PREMIUM ABOUT PAGE STYLES
   ========================================= */

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f35 50%, #0e2a59 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(0,212,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: #00d4ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-hero-title span {
    background: linear-gradient(135deg, #00d4ff 0%, #7b61ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 600px;
}

.about-hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.about-hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 97, 255, 0.1) 100%);
    border-radius: 50px;
    color: #00d4ff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.new-ourimpact{
    background: var(--gradient-primary);
    color: #0b0f19 !important;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0 auto;
    padding: 12px 40px;
}
.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #3762ab;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.mv-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.15);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff 0%, #7b61ff 100%);
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.mv-icon.mission {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
    color: #00d4ff;
}

.mv-icon.vision {
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.15) 0%, rgba(123, 97, 255, 0.05) 100%);
    color: #7b61ff;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0e2a59;
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Story Timeline Section */
.story-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #0e2a59 100%);
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #00d4ff 0%, #7b61ff 100%);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 40px;
    padding-right: 0;
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #00d4ff;
    border: 4px solid #0e2a59;
    border-radius: 50%;
    right: -10px;
    top: 20px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
    right: auto;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 30px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.timeline-year {
    font-size: 0.9rem;
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Core Values Section */
.values-section {
    padding: 100px 0;
    background: #fff;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    border: 1px solid #007bff;
    transition: all 0.4s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.1);
}

.value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 97, 255, 0.1) 100%);
    color: #00d4ff;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #00d4ff 0%, #7b61ff 100%);
    color: #fff;
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0e2a59;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Stats Counter Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0e2a59 0%, #1a3a6e 100%);
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #7b61ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Why Choose Us Section */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.why-us-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.why-us-card:hover {
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 97, 255, 0.1) 100%);
    color: #00d4ff;
}

.why-us-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0e2a59;
    margin-bottom: 8px;
}

.why-us-content p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #0e2a59 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 35px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b61ff 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        margin-left: 0;
    }

    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }

    .timeline-content {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        padding: 140px 0 60px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-image {
        margin-top: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}

/* =========================================
   SERVICE HERO BANNER STYLES
   ========================================= */

.service-hero-banner {
    position: relative;
    height: 400px;
    /* margin-top: 80px; */
    background: url('../../images/service-hero-banner.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-hero-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 26, 0.85) 0%, rgba(14, 42, 89, 0.75) 50%, rgba(10, 15, 26, 0.9) 100%);
    z-index: 1;
}

.service-hero-banner .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.service-hero-banner .banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-transform: none;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero-banner .banner-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Animated accent line */
.service-hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00d4ff, #7b61ff, #00d4ff, transparent);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Responsive Banner */
@media (max-width: 991px) {
    .service-hero-banner {
        height: 350px;
        /* margin-top: 70px; */
    }

    .service-hero-banner .banner-content h1 {
        font-size: 2.5rem;
    }

    .service-hero-banner .banner-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .service-hero-banner {
        height: 300px;
        /* margin-top: 60px; */
    }

    .service-hero-banner .banner-content h1 {
        font-size: 2rem;
    }

    .service-hero-banner .banner-content p {
        font-size: 1rem;
    }
}

/* =========================================
   CAREER PAGE STYLES
   ========================================= */

/* Career Hero Banner */
.career-hero-banner {
    position: relative;
    height: 450px;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f35 50%, #0e2a59 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.career-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="rgba(0,212,255,0.15)"/><circle cx="75" cy="75" r="1" fill="rgba(123,97,255,0.15)"/></svg>');
    background-size: 40px 40px;
    opacity: 0.6;
}

.career-hero-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(123, 97, 255, 0.1) 0%, transparent 50%);
}

.career-hero-banner .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.career-hero-banner .hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: yellow;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.career-hero-banner .banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.career-hero-banner .banner-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.career-hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00d4ff, #7b61ff, #00d4ff, transparent);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

/* Why Join Us Section */
.why-join-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.perk-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.perk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.12);
}

.perk-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 97, 255, 0.1) 100%);
    color: #00d4ff;
    transition: all 0.3s ease;
}

.perk-card:hover .perk-icon {
    background: linear-gradient(135deg, #00d4ff 0%, #7b61ff 100%);
    color: #fff;
    transform: scale(1.1);
}

.perk-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0e2a59;
    margin-bottom: 10px;
}

.perk-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Current Openings Section */
.career-openings-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #0e2a59 100%);
}

.career-openings-section .section-header {
    margin-bottom: 50px;
}

.career-openings-section .section-subtitle {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
}

.career-openings-section .section-title {
    color: #fff;
}

.career-openings-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Modern Job Card */
.job-card-modern {
    background: rgb(37 77 110 / 63%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.job-card-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.1);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.job-card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.job-badge-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.job-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    color: #00d4ff;
    font-weight: 500;
}

.job-badge.location {
    background: rgba(123, 97, 255, 0.15);
    color: #a78bfa;
}

.job-card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b61ff 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    color: #fff;
}

.btn-details {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Job Details Panel */
.job-details-panel {
    display: none;
    margin-top: 25px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.job-details-panel.active {
    display: block;
}

.job-details-panel h4 {
    color: #00d4ff;
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0 10px;
}

.job-details-panel h4:first-child {
    margin-top: 0;
}

.job-details-panel p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.7;
}

.job-details-panel ul {
    padding-left: 20px;
    margin: 0;
}

.job-details-panel ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    position: relative;
}

.job-details-panel ul li::marker {
    color: #00d4ff;
}

/* Career CTA */
.career-cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    text-align: center;
}

.career-cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0e2a59;
    margin-bottom: 15px;
}

.career-cta-section p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 30px;
}

.cta-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #0e2a59 0%, #1a3a6e 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 42, 89, 0.3);
    color: #fff;
}

/* Responsive Career Styles */
@media (max-width: 991px) {
    .career-hero-banner {
        height: 400px;
    }

    .career-hero-banner .banner-content h1 {
        font-size: 2.5rem;
    }

    .why-join-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .career-hero-banner {
        height: 350px;
        padding-top: 80px;
    }

    .career-hero-banner .banner-content h1 {
        font-size: 2rem;
    }

    .career-hero-banner .banner-content p {
        font-size: 1rem;
    }

    .why-join-grid {
        grid-template-columns: 1fr;
    }

    .job-card-header {
        flex-direction: column;
    }

    .job-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* Contact Hero Banner */
.contact-hero-banner {
    position: relative;
    height: 450px;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f35 50%, #0e2a59 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(123, 97, 255, 0.08) 0%, transparent 40%);
}

.contact-hero-banner .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.contact-hero-banner .hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: yellow;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-hero-banner .banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-banner .banner-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00d4ff, #7b61ff, #00d4ff, transparent);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.12);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 97, 255, 0.1) 100%);
    color: #00d4ff;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, #00d4ff 0%, #7b61ff 100%);
    color: #fff;
    transform: scale(1.1);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0e2a59;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.contact-info-card a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: #7b61ff;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #0e2a59 100%);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-form-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.contact-form-left h2 span {
    background: linear-gradient(135deg, #00d4ff 0%, #7b61ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
}

.highlight-item h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 3px 0;
}

.highlight-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Modern Contact Form */
.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 45px;
}

.contact-form-card h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px 35px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b61ff 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0e2a59;
    margin: 0;
}

.faq-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 97, 255, 0.1) 100%);
    color: #00d4ff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #00d4ff 0%, #7b61ff 100%);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 28px 22px;
}

.faq-answer p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Contact Styles */
@media (max-width: 1199px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .contact-hero-banner {
        height: 400px;
    }

    .contact-hero-banner .banner-content h1 {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-section {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .contact-hero-banner {
        height: 350px;
        padding-top: 80px;
    }

    .contact-hero-banner .banner-content h1 {
        font-size: 2rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .contact-form-left h2 {
        font-size: 1.8rem;
    }
}

/* =========================================
   HOMEPAGE HERO SECTION PREMIUM REDESIGN
   ========================================= */

.premium-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0f1a 0%, #0e1a2f 50%, #1a1035 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.premium-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(123, 97, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

/* Animated floating particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    animation: float-particle 15s infinite ease-in-out;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
}

.hero-particles span:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
}

.hero-particles span:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
}

.hero-particles span:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

.premium-hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: yellow;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    }
}

.premium-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
}

.premium-hero-title .brand-name {
    display: block;
    background: linear-gradient(135deg, #fff 0%, #00d4ff 50%, #7b61ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.premium-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.premium-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 550px;
    margin-bottom: 40px;
}

/* Hero CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 38px;
    background: linear-gradient(135deg, #00d4ff 0%, #7b61ff 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.45);
    color: #fff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 38px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* Hero Right Side - Visual Elements */
.hero-visual-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone-mockup {
    position: relative;
    z-index: 2;
}

.hero-phone-mockup img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Glowing orbit rings */
.hero-orbit-ring {
    position: absolute;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: orbit-rotate 20s linear infinite;
}

.hero-orbit-ring:nth-child(1) {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-orbit-ring:nth-child(2) {
    width: 450px;
    height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(123, 97, 255, 0.15);
    animation-duration: 30s;
    animation-direction: reverse;
}

@keyframes orbit-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Floating feature badges around phone */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    animation: float-badge 4s ease-in-out infinite;
    z-index: 10;
}

.floating-badge i {
    color: #00d4ff;
    font-size: 1.1rem;
}

.floating-badge.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: 25%;
    left: -15%;
    animation-delay: 1s;
}

.floating-badge.badge-4 {
    top: 10%;
    left: -15%;

    animation-delay: 1s;
}

.floating-badge.badge-3 {
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #7b61ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Hero */
@media (max-width: 1199px) {
    .premium-hero-title {
        font-size: 3.5rem;
    }

    .hero-orbit-ring:nth-child(1) {
        width: 280px;
        height: 280px;
    }

    .hero-orbit-ring:nth-child(2) {
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 991px) {
    .premium-hero-section {
        padding: 100px 0 60px;
    }

    .premium-hero-title {
        font-size: 3rem;
    }

    .hero-visual-container {
        margin-top: 50px;
    }

    .floating-badge {
        display: none;
    }

    .hero-stats-row {
        gap: 25px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .premium-hero-section {
        padding: 80px 0 50px;
        min-height: auto;
    }

    .premium-hero-title {
        font-size: 2.5rem;
    }

    .premium-hero-desc {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stat-item {
        flex: 1 1 45%;
    }
}

/* --- PAN India Section --- */
.pan-india-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.pan-india-section .section-title span {
    color: var(--accent-primary);
}

.pan-india-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 40px;
}

.states-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.state-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.state-card:hover {
    transform: translateX(5px);
    border-color: var(--accent-primary);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.1);
}

.states-column-right .state-card:hover {
    transform: translateX(-5px);
}

.state-card h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.india-map-container {
    flex: 3;
    text-align: center;
    position: relative;
    z-index: 1;
}

.india-map-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    width: 100%;
}

.india-map-wrapper img {
    width: 100%;
    height: auto;
    max-height: 700px;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.2));
}

.map-marker {
   position: absolute;
    transform: translate(-50%, -50%);
    z-index: 5;
    animation: bounce 2s infinite;
}
.map-marker span {
    background: #111827;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #00d4ff;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.marker-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.marker-india .marker-icon {
    font-size: 2.6rem;
    color: #ff2f3a;
    animation: bounce-strong 2.4s infinite;
}

.marker-india .marker-label {
    font-size: 0.95rem;
    padding: 8px 10px;
    border-width: 2px;
}
/* INDIA – MAIN */
.marker-india {
    top: 40%;
    left: 71%;
    animation: bounce-strong 2.5s infinite;
}
.marker-india span {
    font-size: 14px;
    padding: 8px 18px;
    border: 2px solid #ff3b3b;
}

/* NEAR INDIA */
.marker-nepal { top: 40%; left: 75%; animation-delay: .2s; }
.marker-bangladesh { top: 45%; left: 72%; animation-delay: .4s; }

/* MIDDLE EAST / EUROPE */
.marker-uae { top: 50%; left: 61%; animation-delay: .3s; }
.marker-uk { top: 30%; left: 40%; animation-delay: .5s; }
.marker-germany { top: 42%; left: 52%; animation-delay: .6s; }

/* NORTH AMERICA */
.marker-usa { top: 35%; left: 15%; animation-delay: .7s; }
.marker-canada { top: 20%; left: 20%; animation-delay: .9s; }

/* ASIA / PACIFIC */
.marker-singapore { top: 60%; left: 78%; animation-delay: .6s; }
.marker-australia { top: 76%; left: 83%; animation-delay: 1s; }



@keyframes bounce {
    0%,100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-8px); }
}

@keyframes bounce-strong {
    0%,100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-16px); }
}

.marker-icon {
    color: #ff4e59;
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 78, 89, 0.6));
    animation: bounce 2s infinite;
}

.marker-label {
    background: #1a2035;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    margin-top: 5px;
    border: 1px solid var(--accent-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

@media (max-width: 991px) {
    .pan-india-container {
        flex-direction: column;
        gap: 50px;
    }
    .india-map-container {
        order: -1;
        width: 100%;
    }
    .states-column {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 575px) {
    .states-column {
        grid-template-columns: 1fr 1fr;
    }
    .state-card {
        padding: 12px 10px;
    }
    .state-card h6 {
        font-size: 0.85rem;
    }
}


/* about us rm copy page */

.about-section {
    padding: 80px 0;
    background: #f6fbff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Left Image */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Right Content */
.about-content {
    flex: 1.2;
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #002b5c;
    margin-bottom: 10px;
}

.about-content h4 {
    font-size: 22px;
    font-weight: 500;
    color: #004aad;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 20px;
    text-align: left;
}

/* Button */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border: 2px solid #004aad;
    color: #004aad;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-btn span {
    font-size: 16px;
}

.about-btn:hover {
    background: #004aad;
    color: #ffffff;
}
@media (max-width: 991px) {
    .about-container {
        flex-direction: column;
    }

    .about-content {
        padding: 40px;
    }

    .about-content h2 {
        font-size: 32px;
    }
}
