/* --- CSS VARIABLES (Aapki Color Palette) --- */
:root {
    --primary-blue: #034BA2;     /* Professional Industrial Blue */
    --secondary-blue: #0066FF;   /* Bright Blue for links/hover */
    --accent-orange: #DD8615;    /* Action Buttons / Highlights */
    --dark-bg: #1D1E1E;          /* Footer and Dark Sections */
    --text-main: #212529;        /* Main Body Text */
    --text-muted: #434343;       /* Subtitles / Paragraphs */
    --light-gray: #F8F8F8;       /* Section Backgrounds */
    --border-color: #D7D7D7;     /* Lines and Borders */
    --white: #FFFFFF;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ✨ Lenis Fix: Mobile aur Desktop dono par scrolling maintain karne ke liye */
html.lenis,
body.lenis {
    height: auto !important;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

/* Horizontal scroll prevent karne ke liye extra safety */
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    
    /* 🛠️ THE BIG FIX 🛠️ */
    overflow: hidden;
    overflow-x: hidden !important; /* Sirf side scroll rokega */
    overflow-y: scroll;   /* ✅ Ise 'auto' kiya taaki mobile scroll chalu ho jaye */
    
    /* Mobile smooth scrolling support */
    -webkit-overflow-scrolling: touch; 
    position: relative;
}


a {
    text-decoration: none;
    transition: 0.3s ease;
    color: inherit;
}

ul {
    list-style: none;
}

/* Image scaling fix taaki layout mobile par break na ho */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ====================================
              NAV-BAR
==================================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

/* Important: Body ko navbar height ka offset do */
body {
    padding-top: 80px;
}

/* ---------- Logo ---------- */

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* ---------- Desktop Nav Links ---------- */

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.btn-nav {
    background: var(--primary-blue);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 4px;
}

.btn-nav:hover {
    background: var(--accent-orange);
}

/* ---------- Hamburger ---------- */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    /* padding-right: 40px; */
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.bar {
    width: 28px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}


/* ====================================
        MOBILE RESPONSIVE
==================================== */

@media (max-width: 992px) {

    .navbar {
        padding: 0 20px;
    }

    .hamburger {
        margin-right: 20px;
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 0;
        transition: left 0.4s ease;
    }

    .nav-links li {
        width: 100%;
        padding: 20px 0;
        text-align: center;
    }

    .nav-links.active {
        left: 0;
    }

    /* Burger to X animation */

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }
}

/* ====================================
              HERO SECTION 
   ==================================== */


   .hero {
    min-height: 100svh; /* Mobile safe viewport height */
    display: flex;
    align-items: center;
    padding: 80px 8% 50px;
    background: linear-gradient(135deg, #f1f6ff 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}
.hero-container {
    display: flex; /* Side-by-side layout ke liye */
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
    max-width: 1400px; /* Badi screens ke liye boundary */
    margin: 0 auto;
}

/* --- Left Side: Content --- */
.hero-text {
    flex: 1; 
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark-bg);
}

.blue-text {
    color: var(--primary-blue);
    margin-right: 13px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-main {
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px 35px;
    font-weight: 700;
    border-radius: 5px;
}

.btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 5px;
}

.btn-main:hover {
    background: var(--accent-orange);
}

/* --- Right Side: Visual/Slider --- */
.hero-visual {
    flex: 1.2; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 700px; /* Container size thoda chota kiya */
    height: 600px;
    overflow: hidden !important; /* Isse side ki images kat jayengi */
}

.heroSwiper {
    width: 100%;
    /* Overflow hidden zaroori hai side ki images ko chhupane ke liye */
    overflow: hidden !important; 
    padding: 20px 0;
}

.swiper-slide {
    width: 500px !important; /* Image ka width thoda kam kiya */
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
    
    /* Side wali images ko poori tarah hide karne ke liye */
    opacity: 0 !important; 
    visibility: hidden;
    transform: scale(0.8);
}

.swiper-slide-active {
    opacity: 1 !important;
    visibility: visible;
    filter: blur(0px);
    transform: scale(1.1) !important; /* Active image halki si badi dikhegi */
    z-index: 10;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 550px; /* Height control karne ke liye */
    object-fit: contain;
    /* filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); */
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.2));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Background Glow Effect */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(3, 75, 162, 0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* --- Responsive (Mobile Fix) --- */
@media (max-width: 992px) {
    .hero {
        padding-top: 120px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-visual {
        max-width: 100%;
        height: 400px;
        margin-top: 30px;
    }
    
    .hero-btns {
        justify-content: center;
    }
}

/* ====================================
   PURE MOBILE RESPONSIVE (ONLY MOBILE)
   ==================================== */

   @media (max-width: 767px) {

    .hero {
        min-height: auto;
        padding: 120px 20px 60px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    /* Text Section */
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .btn-main {
        width: 100%;
        max-width: 280px;
    }

    /* Visual Section */
    .hero-visual {
        height: 320px;
        max-width: 100%;
        margin-top: 10px;
    }

    .swiper-slide {
        width: 260px !important;
        height: 300px;
        transform: scale(1) !important;
    }

    .swiper-slide-active {
        transform: scale(1.05) !important;
    }

    .swiper-slide img {
        max-height: 280px;
        animation: none; /* Mobile pe floating animation remove (performance boost) */
    }

    .hero-glow {
        width: 350px;
        height: 350px;
    }

}




/* ====================================
              VIDEO-SECTION 
   ==================================== */
/* --- 🎥 PAHARPUR INSPIRED VIDEO SECTION --- */

.partner-showcase-section {
    padding: 80px 0; /* Mast padding space ke liye */
    background: var(--white);
}

/* Container width control karne ke liye */
.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Text Content */
.showcase-header {
    text-align: center;
    max-width: 800px; /* Paragraph ko zyada failne se rokega */
    margin-bottom: 40px;
}

.showcase-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue); /* Aapka industrial blue color */
    margin-bottom: 15px;
    text-transform: uppercase; /* Capital letters look */
    letter-spacing: 1px;
}

.showcase-subtext {
    font-size: 1.05rem;
    color: var(--text-muted); /* Dark gray text readable formatting */
    line-height: 1.7;
}

/* Video Box Container */
.video-container-box {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Video box control width */
    border-radius: 12px; /* Screenshot jaise smooth curved corners */
    overflow: hidden; /* Video corners ko bhi round rakhega */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow depth ke liye */
    background-color: var(--dark-bg); /* Video load hone tak dark filler */
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Subtle mute/unmute control jaisa screenshot me corner me hai */
.mute-control-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
    color: var(--text-main);
    z-index: 10;
}

.mute-control-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
    .partner-showcase-section {
        padding: 50px 0;
    }
    
    .showcase-heading {
        font-size: 1.8rem;
    }
    
    .showcase-subtext {
        font-size: 0.95rem;
    }
}



/* ====================================
              PRODUCT-SECTION 
   ==================================== */

.products-preview {
    padding: 100px 8%;
    background: var(--white);
    text-align: center;
}

.section-desc {
    max-width: 700px;
    margin: 10px auto 50px;
    color: var(--text-muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.product-img {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #fff; /* Image background white for clean look */
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-img img {
    max-width: 80%;
    height: auto;
    transition: transform 0.5s ease;
}

/* --- HOVER EFFECTS --- */
.product-card:hover {
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-blue);
    transform: translateY(-10px);
}

.product-card:hover .product-img img {
    transform: scale(1.15); /* Image zoom on hover */
}

.product-info h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    transition: transform 0.3s ease;
    color: var(--accent-orange);
}

.product-card:hover .arrow {
    transform: translateX(10px); /* Arrow moves right on hover */
}

.product-info p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Center Button Styling */
.view-more-container {
    margin-top: 40px;
}


/* ====================================
   PRODUCT SECTION RESPONSIVE
   (Tablet + Mobile Only)
   ==================================== */

/* 📱 Tablet (768px – 991px) */
@media (max-width: 991px) {

    .products-preview {
        padding: 80px 5%;
    }

    .product-grid {
        gap: 30px;
    }

    .product-card {
        padding: 25px;
    }

    .product-img {
        height: 220px;
    }

    .product-info h3 {
        font-size: 20px;
    }

}


/* 📱 Mobile (Below 768px) */
@media (max-width: 767px) {

    .products-preview {
        padding: 70px 20px;
    }

    .section-desc {
        margin-bottom: 35px;
        font-size: 14px;
    }

    /* Single Column Layout */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-card {
        padding: 20px;
        border-radius: 12px;
    }

    .product-img {
        height: 200px;
        margin-bottom: 15px;
    }

    .product-img img {
        max-width: 75%;
    }

    .product-info h3 {
        font-size: 18px;
    }

    .product-info p {
        font-size: 14px;
    }

    /* Remove heavy hover transforms on mobile */
    .product-card:hover {
        transform: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .product-card:hover .product-img img {
        transform: none;
    }

    .product-card:hover .arrow {
        transform: none;
    }

    .view-more-container {
        margin-top: 30px;
    }

}



/* ====================================
              STATS-SECTION 
   ==================================== */

.stats {
    display: flex;
    justify-content: space-around;
    padding: 80px 8%;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====================================
   STATS SECTION RESPONSIVE
   (Tablet + Mobile Only)
   ==================================== */

/* 📱 Tablet (768px – 991px) */
@media (max-width: 991px) {

    .stats {
        padding: 70px 5%;
        gap: 30px;
    }

    .stat-item h2 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 1rem;
    }

}


/* 📱 Mobile (Below 768px) */
@media (max-width: 767px) {

    .stats {
        flex-direction: column;
        align-items: center;
        padding: 60px 20px;
        gap: 25px;
    }

    .stat-item {
        width: 100%;
        max-width: 300px;
    }

    .stat-item h2 {
        font-size: 2.2rem;
    }

    .stat-item p {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }

}



/* ====================================
              INDUSTRIES-SECTION 
   ==================================== */

.industries-section {
    padding: 100px 8%;
    background: var(--white);
}

.industries-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.industries-left, .industries-right {
    flex: 1;
}

/* Accordion Styling */
.acc-item {
    border-bottom: 1px solid var(--border-color);
    padding: 25px 0;
    cursor: pointer;
    transition: 0.3s;
}

.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.acc-header h3 {
    font-size: 22px;
    color: var(--text-muted);
    transition: 0.3s;
}

/* Plus/Minus Icon */
.plus-minus {
    width: 20px;
    height: 2px;
    background: var(--text-muted);
    position: relative;
    transition: 0.3s;
}
.plus-minus::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--text-muted);
    transform: rotate(90deg);
    transition: 0.3s;
}

/* Active State Styling */
.acc-item.active .acc-header h3 {
    color: var(--primary-blue);
    font-weight: 800;
}

.acc-item.active .plus-minus {
    background: var(--primary-blue);
}
.acc-item.active .plus-minus::after {
    transform: rotate(0deg);
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.acc-item.active .acc-content {
    max-height: 150px;
    margin-top: 15px;
}

.acc-content p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Right Side Image Animation */
.image-box {
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s;
}

.image-fade {
    opacity: 0;
    transform: scale(1.1);
}


/* ====================================
   INDUSTRIES SECTION RESPONSIVE
   (Tablet + Mobile Only)
   ==================================== */

/* 📱 Tablet (768px – 991px) */
@media (max-width: 991px) {

    .industries-section {
        padding: 80px 5%;
    }

    .industries-container {
        gap: 40px;
    }

    .image-box {
        height: 450px;
    }

    .acc-header h3 {
        font-size: 20px;
    }

}


/* 📱 Mobile (Below 768px) */
@media (max-width: 767px) {

    .industries-section {
        padding: 70px 20px;
    }

    /* Stack Layout */
    .industries-container {
        flex-direction: column;
        gap: 35px;
    }

    .industries-left,
    .industries-right {
        width: 100%;
    }

    /* Accordion Adjustments */
    .acc-item {
        padding: 18px 0;
    }

    .acc-header h3 {
        font-size: 18px;
    }

    .acc-content p {
        font-size: 14px;
    }

    /* Image Section */
    .image-box {
        height: 280px;
        border-radius: 15px;
    }

    .image-box img {
        object-fit: cover;
    }

}



/* ====================================
              SERVICE-SECTION 
   ==================================== */

.services {
    padding: 100px 8%;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: var(--accent-orange);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-top: 10px;
}

.line {
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    margin: 15px auto;
}

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

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 10px;
    border-bottom: 5px solid var(--border-color);
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.card-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--border-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}


/* ====================================
              CAREER-SECTION
   ==================================== */

.join-team {
    padding: 100px 8%;
    background: var(--white);
}

.join-container {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
}

.join-image, .join-content {
    flex: 1;
}

.join-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.join-content {
    padding: 50px;
}

.join-content p {
    margin-bottom: 20px;
}

.join-content h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin: 15px 0;
}

/* ====================================
      CAREER MODAL UPDATED STYLING
   ==================================== */

/* 1. Modal Overlay */
.modal {
    display: none; /* Default Hidden */
    position: fixed;
    z-index: 9999; /* Isse header ke bhi upar rahega */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 26, 51, 0.8); /* Dark Blue Transparent */
    backdrop-filter: blur(10px); /* Modern Glass Effect */
    overflow-y: auto; /* Agar form bada ho toh scroll ho jaye */
    /* overflow-y: hidden !important; */
}

/* 2. Modal Content Box */
.modal-content {
    background: #ffffff;
    margin: 20px auto;
    padding: 40px;
    width: 90%;
    max-width: 500px; /* Perfect width for forms */
    border-radius: 25px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    animation: modalSlide 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlide {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* 3. Close Button */
.close-btn {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 35px;
    color: var(--primary-blue);
    cursor: pointer;
    transition: 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    color: var(--accent-orange);
    transform: rotate(90deg);
}

/* 4. Form Layout */
#careerForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.modal-content h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
}

/* 5. Inputs & Textarea Styling */
#careerForm input, 
#careerForm textarea {
    padding: 14px 18px;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    font-size: 16px;
    background: #f8fafd;
    outline: none;
    transition: 0.3s;
    width: 100%;
}

#careerForm input:focus, 
#careerForm textarea:focus {
    border-color: var(--accent-orange);
    background: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
}

#careerForm textarea {
    height: 110px;
    resize: none;
}

/* 6. Resume Upload Section (New Fix) */
.file-upload {
    background: #fff5ee;
    padding: 20px;
    border-radius: 15px;
    border: 2px dashed var(--accent-orange);
    text-align: center;
    margin-top: 5px;
}

.file-upload label {
    display: block;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.file-upload input[type="file"] {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    color: #555;
}

/* 7. Submit Button (btn-main update) */
#careerForm .btn-main {
    margin-top: 10px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.4s;
}

#careerForm .btn-main:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

/* 8. Mobile Responsiveness */
@media (max-width: 600px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
        margin: 20px auto;
    }
    
    .modal-content h2 {
        font-size: 1.8rem;
    }
}

.spinner {
    width: 18px;
    height: 18px;
    border: 3px solid #ffffff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* ====================================
   JOIN TEAM SECTION RESPONSIVE
   (Tablet + Mobile Only)
   ==================================== */

/* 📱 Tablet (768px – 991px) */
@media (max-width: 991px) {

    .join-team {
        padding: 80px 5%;
    }

    .join-container {
        gap: 40px;
    }

    .join-content {
        padding: 40px;
    }

    .join-content h2 {
        font-size: 2.2rem;
    }

    /* Modal Tablet */
    .modal-content {
        width: 70%;
        padding: 35px;
    }

}


/* 📱 Mobile (Below 768px) */
@media (max-width: 767px) {

    .join-team {
        padding: 70px 20px;
    }

    /* Stack Layout */
    .join-container {
        flex-direction: column;
        gap: 0;
    }

    .join-image {
        height: 250px;
    }

    .join-image img {
        height: 100%;
        object-fit: cover;
    }

    .join-content {
        padding: 30px 20px;
        text-align: center;
    }

    .join-content h2 {
        font-size: 1.9rem;
    }

    .join-content p {
        font-size: 14px;
    }

    .join-content .btn-main {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    /* Modal Mobile */
    .modal-content {
        width: 90%;
        margin: 7% auto;
        padding: 25px;
        border-radius: 12px;
    }

    .close-btn {
        font-size: 26px;
        top: 5px;
        right: 15px;
    }

    #careerForm input,
    #careerForm select,
    #careerForm textarea {
        font-size: 14px;
        padding: 10px;
    }

}



/* ====================================
              FOOTER
   ==================================== */

   .footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 8% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.footer-col h3 {
    margin-bottom: 25px;
    font-size: 18px;
    color: var(--accent-orange);
}

.footer-col p {
    color: #ababab;
    max-width: 300px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ababab;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

/* --- FOOTER BOTTOM UPDATED --- */
.footer-bottom-container {
    display: flex;
    justify-content: space-between; /* Text left mein, links right mein */
    align-items: center;
    flex-wrap: wrap; /* Mobile par stack ho jayenge */
    gap: 15px;
}

.footer-legal-links a {
    color: #767676; /* Same as copyright text */
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-legal-links a:hover {
    color: var(--white); /* Hover par chamkega */
}

.separator {
    color: #434343;
    margin: 0 10px;
}

/* Mobile Fix */
@media (max-width: 600px) {
    .footer-bottom-container {
        justify-content: center;
        text-align: center;
    }
}

/* Mobile Responsiveness for Logo */
@media (max-width: 768px) {
    .logo img { height: 45px; }
    .footer-logo img { height: 55px; }
    .footer-container { grid-template-columns: 1fr; gap: 30px; }
}



/* --- Contact Links Styling --- */
.contact-link {
    color: #ababab !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

/* WhatsApp Icon Color */
.whatsapp-style i {
    color: #25D366; 
    font-size: 1.2rem;
}

/* Email/Gmail Icon Color */
.email-style i {
    color: #EA4335; /* Gmail Red Color */
    font-size: 1.1rem;
}

.contact-link:hover {
    color: var(--white) !important;
    transform: translateX(5px); /* Chhota sa slide effect */
}


/* ====================================
   FOOTER RESPONSIVE UPGRADE
   (Tablet + Mobile Only)
   ==================================== */

/* 📱 Tablet (768px – 991px) */
@media (max-width: 991px) {

    .footer {
        padding: 70px 5% 20px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col p {
        max-width: 100%;
    }

}


/* 📱 Mobile (Below 768px) */
@media (max-width: 767px) {

    .footer {
        padding: 60px 20px 20px;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col h3 {
        margin-bottom: 15px;
    }

    .footer-col p {
        margin: 0 auto;
        margin-top: 10px;
        max-width: 100%;
        font-size: 14px;
    }

    .footer-col ul {
        padding: 0;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a:hover {
        padding-left: 0; /* Mobile pe slide effect remove */
    }

    /* Footer Bottom */
    .footer-bottom-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .footer-legal-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .separator {
        display: none; /* Mobile pe clean look */
    }

    .footer-logo img {
        height: 50px;
    }

}




/* ====================================
         BUTTON ANIMATION LOGIC 
   ==================================== */


/* Saare buttons ke liye common transition */
.btn-main, .btn-outline, .btn-nav, #openModal {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yeh bezier curve 'pop' effect deta hai */
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hover par Zoom aur Shadow effect */
.btn-main:hover, .btn-outline:hover, .btn-nav:hover, #openModal:hover {
    transform: scale(1.1); /* Button 10% bada ho jayega */
    box-shadow: 0 10px 25px rgba(3, 75, 162, 0.3); /* Blue shadow (aapki palette se) */
    filter: brightness(1.1); /* Halka sa chamkega */
}

/* Jab button click ho (Active state) */
.btn-main:active, .btn-outline:active, .btn-nav:active {
    transform: scale(0.95); /* Click karne par halka sa dabega */
}

