.main-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff; /* Ya jo bhi aapka theme color ho */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* --- 1. HEADER & NAVIGATION (FIXED DROPDOWN) --- */
.main-header {
    background-color: #0d2a4a;
    height: 40px; /* Pehle 70px tha, ab 55px kar diya hai */
    position: fixed;
    top: 0; 
    z-index: 10000;
    left: 0%;
    right: 0%;
    display: flex;
    align-items: center;
}

.navbar {
    max-width: 1200px; 
    margin: 0 auto; 
    width: 100%;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 20px; /* 10px upar-niche padding dene se logo saaf dikhega */
    height: 70px; /* Ek fixed height dene se navbar clean lagta hai */
}

.logo { 
    height: 35px; /* Logo ka size bhi thoda chhota kiya hai taaki fit aaye */
}

.nav-links li { 
    padding: 0 12px; /* Links ke beech ka gap thoda kam kiya */
    position: relative; 
}

/* --- MAIN CONTENT MARGIN FIX --- */
/* Kyunki header ki height kam hui hai, isliye main container ka margin bhi kam karna hoga */
main {
    margin-top: 55px; /* Header ki nayi height ke barabar */
}
.logo { height: 40px; }
.nav-links { display: flex; list-style: none; }
.nav-links li { padding: 0 15px; position: relative; }
.nav-links a { color: white; text-decoration: none; font-size: 14px; }

/* --- DROPDOWN BOX (Yeh ab Slider ke upar aayega) --- */
/* --- NEW FLOATING DROPDOWN DESIGN --- */
.dropdown-content {
    display: none;
    position: absolute;
    /* Button se niche gap rakhne ke liye top ko 120% kiya hai */
    top: 120%; 
    left: 0;
    background-color: #dde0e9;
    border: rgb(240,239,244);
    min-width: 250px;
    
    /* Image jaisa rounded corners */
    border-radius: 15px; 
    
    /* Professional Floating Shadow */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.05);
    
    z-index: 10001;
    padding: 10px 0;
    border: 1px solid rgba(0,0,0,0.03); /* Bahut halki border */
}

/* Dropdown ke upar ek chhota arrow (optional) jo use button se jode */
.dropdown-content::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 20px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}

.dropdown-content a {
    color: #4a4a4a !important;
    padding: 12px 25px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    /* Beech ki patli lines */
    border-bottom: 1px solid rgb(240,239,244); 
    transition: all 0.3s ease;
}

/* Last child se line hatayein */
.dropdown-content a:last-child {
    border-bottom: none;
}

/* Hover effect: Jab mouse link par jaye */
.dropdown-content a:hover {
    background-color: #f3caca;
    color: #0d2a4a !important;
    padding-left: 30px; /* Thoda slide effect */
}

/* Hover karne par dikhana */
.dropdown:hover .dropdown-content {
    display: block;
    /* Smooth fade-in animation */
    animation: slideIn 0.3s ease-out;
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px; /* 0 ki jagah thoda upar-niche padding (10px) dein */
    height: 100%; /* Agar parent ki height fixed hai toh */
}
.navbar img {
    height: 50px;           /* Logo ka size thoda bada karein taaki wo clear dikhe */
    width: auto;            /* Aspect ratio barabar rakhne ke liye */
    display: block;         /* Extra spacing hatane ke liye */
    margin-top: auto;       /* Upar se space dene ke liye */
    margin-bottom: auto;    /* Niche se space dene ke liye */
    max-height: 100%;       /* Navbar se bahar na nikalne paye */
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Jab scroll up karein to ye class trigger hogi */
/* Jab user upar scroll kare tab ye apply hoga */
.main-header.scrolled-up {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Thoda shadow taaki white background par dikhe */
    transition: all 0.3s ease; /* Smooth transition ke liye */
    navigation: fixed; /* Navigation ko fixed rakhne ke liye */
}

/* Jab background white ho, tab links dark blue ho jayein */
.main-header.scrolled-up .nav-links a {
    color: #0d2a4a !important;
}
/* --- END HEADER & NAVIGATION (FIXED DROPDOWN) --- */
/* --- 2. SLIDER Container 1st --- */


.slider-container {
    display: flex;
    width: 90vw;
    max-width: 1100px;
    margin: 20px auto 0;
    height: 60vh;
}

.panel {
    position: relative;
    flex: 0.5;
    margin: 10px;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: flex 0.7s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

/* Background Image Layer */
.panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(0px); 
    transition: all 0.7s ease;
    z-index: 1;
}

/* Bhagwa Solid Overlay Layer */
.panel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: opacity 0.5s ease;
    opacity: 1; 
}

/* Sabhi panels par Sanatan/Bhagwa colors ka gradient pattern */

/* 1st, 4th Panel: Light Saffron (#FF9933) */
.panel:nth-child(3n+1)::after {
    background-color:rgba(156, 87, 93, 0.85);

}

/* 2nd, 5th Panel: Deep Bhagwa/Orange (#FF6600) - White ki jagah */
.panel:nth-child(3n+2)::after {
    background-color: rgba(49, 27, 146, 0.25);
}

/* 3rd, 6th Panel: Darker Saffron (#FF4500) */
.panel:nth-child(3n+3)::after {
    background-color: rgba(25, 27, 31, 0.85);
}

/* Explore hone par color hat jayega */
.panel.active::after {
    opacity: 0; 
}

.panel.active {
    flex: 5;
    border-radius: 20px;
}

/* Company Name Styling */
.panel h3 {
    position: absolute;
    /* 50% se ghatakar 45% kiya taaki icon se thoda upar chala jaye */
    top: 45%; 
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    z-index: 3;
    color: white; 
    margin: 0;
    white-space: nowrap;
    writing-mode: vertical-rl;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 1;
    transition: opacity 0.3s ease, top 0.3s ease; /* Smooth transition ke liye */
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

/* Active hone par name hide */
.panel.active h3 {
    opacity: 0;
}

/* Icon Setup */
.icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* --- END SLIDER Container 1st --- */
/* -----------------------3. loan-info-container --------------- */

/* Background ko "Hard" aur vibrant banane ke liye (Body par apply karein) */

.loan-info-container { 
    display: flex;  
    width: 95%; 
    max-width: 1100px; 
    margin: 40px auto; /* Thoda space upar se */
    gap: 25px; /* Dono cards ke beech gap */
}

.loan-card { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    border-radius: 25px; /* Rounded corners */
    position: relative;
    overflow: hidden;
    
    /* 3D Shape & Glass Effect */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4); /* Glass edge */
    
    /* Solid Shadow for 3D depth */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                inset 0 0 15px rgba(255, 255, 255, 0.1); 
    
    transition: transform 0.3s ease;
}

.loan-card:hover {
    transform: translateY(-10px); /* Hover par 3D movement */
}

/* --- Hard Transparent Backgrounds --- */

.orange-bgs { 
    background: rgba(221, 35, 35, 0.4); /* Solid yet transparent Red */
}

.green-bgs { 
    background: rgba(69, 180, 17, 0.4); /* Solid yet transparent Green */
}

/* --- Solid White Text --- */

.loan-card, 
.card-header h2, 
.card-footer p,
.loan-main-icon { 
    color: #ffffff !important; /* Pure Solid White */
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Text ko stand-out karne ke liye */
}

.card-header { 
    padding: 30px; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    border-bottom: 1px solid rgba(255,255,255,0.2); 
}

.loan-main-icon { font-size: 50px; }

.loan-btn { 
    margin-top: 15px; 
    padding: 12px 35px; 
    border-radius: 50px; 
    border: none; 
    font-weight: 800; 
    text-transform: uppercase;
    cursor: pointer; 
    background: #ffffff; /* Solid white button */
    color: #000; /* Button text black for contrast */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card-footer { 
    padding: 25px; 
    text-align: center; 
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .loan-info-container { 
        flex-direction: column; 
        align-items: center;
    }
    .loan-card { width: 100%; }
}
/* -----------------------END loan-info-container --------------- */
/* -----------------------4. Udyam Registered (MSME), Government of India | UDYAM-DL-02-0107330 --------------- */
.nbfc-info-container {
    width: 90vw;
    max-width: 1100px;
    margin: 20px auto; /* Isse bhi center alignment aayegi slider ki tarah */
    background-color: #f8f9fa; /* Halka grey background */
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.nbfc-content {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.nbfc-logo img {
    height: 150px; /* Ribbon image ka size */
    width: auto;
}

.nbfc-text {
    flex: 1;
    color: #0d2a4a;
    line-height: 1.6;
    font-size: 18px;
}

.nbfc-text p {
    margin-bottom: 10px;
}

.cert-no {
    color: #28a745; /* Green color jaisa image mein hai */
    font-weight: bold;
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
    .nbfc-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nbfc-logo img {
        height: 120px;
    }

    .nbfc-text {
        font-size: 16px;
    }
}
/* -----------------------END Udyam Registered (MSME), Government of India | UDYAM-DL-02-0107330 --------------- */ 
/* -----------------------5. How to Learn & Earn with the Latest Technologies in Digital Marketing, Freelancing, and Affiliate Marketing?  --------------- */
.p2p-info-section {
    background-color: #0d2a4a; /* Dark Blue Background */
    margin-top: 20px;
    width: 90vw;
    max-width: 1100px;
    margin: 20px auto; /* Isse bhi center alignment aayegi slider ki tarah */
    background-color: rgb(237,240,249); /* Halka grey background */
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.p2p-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.p2p-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.p2p-title span {
    color: #ff5e00; /* Orange highlight */
}

/* Title ke niche wali dots/line */
.p2p-divider {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dot.orange { background-color: #ff5e00; }
.dot.green { background-color: #28a745; }

/* Content Layout */
.p2p-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
}

.p2p-image {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.p2p-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.image-caption {
    margin-top: 15px;
    color: #ff5e00;
    font-weight: bold;
    font-size: 20px;
}

.image-caption span {
    color: #28a745;
}

.p2p-text {
    flex: 1.5;
    line-height: 1.8;
    font-size: 16px;
}

.p2p-text p {
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .p2p-content {
        flex-direction: column;
        align-items: center;
    }
    .p2p-text {
        text-align: center;
    }
    .p2p-title {
        font-size: 26px;
    }
}
/* -----------------------END How to Learn & Earn with the Latest Technologies in Digital Marketing, Freelancing, and Affiliate Marketing?  --------------- */  
/* -----------------------6. OUR HAPPY CLIENTS --------------- */
:root {
    --primary-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    --btn-gradient: linear-gradient(to right, #ff416c, #ff4b2b);
}

/* Main Container */
.slider-wrapper {
    position: relative;
    width: 900px;
    height: 450px;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

/* Card Stack */
.card-stack {
    width: 800px;
    height: 350px;
    background: white;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    /* overflow: hidden; ko hata diya taaki photo bahar nikal sake */
}

/* Individual Card */
.card-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
}

.card-item.active {
    opacity: 1;
    visibility: visible;
}

/* 3D Photo - Center and Float Fix */
.card-img {
    width: 280px;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    position: absolute;
    left: -80px; 
    top: 50%;
    transform: translateY(-50%); /* Bilkul center mein */
    z-index: 10;
    border: 8px solid #fff;
    box-shadow: 15px 15px 40px rgba(0,0,0,0.3);
    
    /* Subtle 3D movement */
    animation: float3d 4s ease-in-out infinite;
}

@keyframes float3d {
    0%, 100% { transform: translateY(-50%) translateZ(20px); }
    50% { transform: translateY(-55%) translateZ(50px); }
}

/* Text Section - Spacing Fix */
.card-info {
    margin-left: 300px; /* Photo ke liye gap */
    padding-right: 60px;
}

.date { font-size: 14px; color: #888; display: block; margin-bottom: 5px; }
.card-info h2 { font-size: 28px; margin-bottom: 10px; color: #333; }
.card-info p { color: #666; line-height: 1.6; margin-bottom: 20px; }

.read-more {
    background: var(--btn-gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* Dots Container - Positioning Fix */
.s-container {
    position: absolute;
    right: 30px; /* Card ke andar right side mein */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 20; /* Taaki upar dikhe */
}

.dot {
    width: 10px;
    height: 10px;
    background: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    list-style: none;
}

.dot.active {
    background: #ff4b2b;
    height: 25px; /* Pill shape */
    border-radius: 10px;
}


/* -----------------------END OUR HAPPY CLIENTS --------------- */
/* -----------------------7. OUR EXPERTS ARE READY TO TRANSFORM YOUR BUSINESS --------------- */
/* --- 1. Keyframes (Running Effect) --- */
@keyframes lineFlow {
    from { background-position: 0 0; }
    to { background-position: 40px 0; }
}

@keyframes lineFlowVertical {
    from { background-position: 0 0; }
    to { background-position: 0 40px; }
}

/* --- 2. Automated Running Dots --- */

/* Har item ke right mein running line (except last one in row) */
.expert-item {
    flex: 1;
    min-width: 220px;
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
    border-radius: 12px;
    /* Yeh right side ki running line hai */
    background-image: linear-gradient(to bottom, #007bff 50%, transparent 50%);
    background-size: 2px 15px;
    background-repeat: repeat-y;
    background-position: right;
    animation: lineFlowVertical 1s linear infinite;
}

/* Horizontal Running Line (Jo pure grid ke beech mein aati hai) */
.full-line {
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #007bff 50%, transparent 50%);
    background-size: 15px 2px;
    background-repeat: repeat-x;
    animation: lineFlow 1s linear infinite;
    margin: 20px 0;
}

/* --- 3. Hover Effects (With Different Colors) --- */
.expert-item:hover {
    background-color: #ffffff;
    box-shadow: 0px 10px 25px rgba(0, 123, 255, 0.15);
    transform: translateY(-8px);
    z-index: 2;
    background-image: none; /* Hover par line hide ho jaye taki box clean dikhe */
    border: 1px solid #007bff;
}

/* Alag alag hover colors */
.expert-item:nth-child(4n+1):hover { border-color: #ff5e00; }
.expert-item:nth-child(4n+2):hover { border-color: #007bff; }
.expert-item:nth-child(4n+3):hover { border-color: #28a745; }
.expert-item:nth-child(4n+4):hover { border-color: #6f42c1; }

.expert-item:hover .expert-num {
    transform: scale(1.1);
    color: #ff5e00;
}

/* --- 4. Cleaning & Structure --- */
.experts-section {
    width: 90vw;
    max-width: 1100px;
    margin: 20px auto;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.experts-main-title {
    font-size: 20px;
    font-weight: bold;
    color: #ff5e00;
    margin-bottom: 40px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.experts-grid {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.expert-num {
    display: block;
    font-size: 28px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 15px;
    transition: 0.3s;
}

.expert-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .expert-item {
        flex: 100%;
        background-image: none !important;
        border-bottom: 2px dashed #007bff;
    }
    .full-line { display: none; }
}
/* -----------------------END OUR EXPERTS ARE READY TO TRANSFORM YOUR BUSINESS --------------- */
/* -----------------------8. Why Should You Get Leads from Skill Set Success Pro? --------------- */
.why-lend-section {
    
    background-color: #f9f9f9;
    width: 100%;
    height: auto;
}

.why-lend-container {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* --- FLEX GRID FOR SIDE-BY-SIDE BOXES --- */
.why-lend-grid {
    display: flex;
    justify-content: space-between; /* Boxes ke beech barabar space */
    align-items: stretch; /* Sabki height barabar rakhega */
    gap: 15px; /* Boxes ke beech ka gap */
    margin-top: 40px;
    flex-wrap: nowrap; /* Forced side-by-side on desktop */
}

/* --- INDIVIDUAL CARD STYLING --- */
.lend-card {
    flex: 1; /* Har box ko barabar width dega */
    background-color: #ffffff;
    padding: 30px 15px;
    border-radius: 10px;
    border-bottom: 5px solid #e0e0e0;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: justify;
    line-height: 1.6;
}

/* --- HOVER EFFECT: BECOMES GREEN --- */
.lend-card:hover {
    background-color: #28a745; /* Green Background */
    border-bottom-color: #1e7e34;
    transform: translateY(-10px); /* Upar uthega */
}

/* --- HOVER EFFECT: BECOMES GREEN --- */
.lendd-card:hover {
    background-color: #ff5e00; /* Green Background */
    border-bottom-color: #1e7e34;
    transform: translateY(-10px); /* Upar uthega */
}

/* Hover par text color change */
.lend-card:hover h3, 
.lend-card:hover p {
    color: #ffffff !important;
}

/* Icon Container */
.lend-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border: 2px solid #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: 0.3s;
}

.lend-card:hover .lend-icon {
    border-color: white;
}

/* Title & Text */
.lend-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0d2a4a;
}

.lend-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .why-lend-grid {
        flex-wrap: wrap; /* Tablet par 2x2 dikhega */
    }
    .lend-card {
        flex: 45%;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .lend-card {
        flex: 100%; /* Mobile par ek ke niche ek */
    }
}
/* -----------------------END Why Should You Get Leads from Skill Set Success Pro? --------------- */
/* -----------------------9. Founder & CEO, Skill Set Success Pro --------------- */

.founder-section {
    
    background-color: #fff;
    display: flex;
    justify-content: center;
    max-width: 1100px;
    margin: 30px auto; /* Isse bhi center alignment aayegi slider ki tarah */
    background-color: #f8f9fa; /* Halka grey background */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;

}

.founder-container {
    width: 90vw;
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Wrapper with Boxes */
.founder-image-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    position: relative;
    z-index: 2;
    width: 350px;
    height: 350px;
    box-shadow: 15px 15px 30px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative Black Boxes */
.deco-box {
    position: absolute;
    width: 80px;
    height: 120px;
    background-color: #1a0b0b; /* Dark brownish black */
    z-index: 1;
}

.top-left {
    top: -30px;
    left: 20px;
}

.bottom-right {
    bottom: -30px;
    right: 20px;
}

/* Details Section */
.founder-details {
    flex: 1.5;
    text-align: center;
}

.founder-name {
    font-size: 28px;
    font-weight: bold;
    color: #1a0b0b;
    margin-bottom: 5px;
}

.founder-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.founder-subtitle {
    font-size: 18px;
    color: #444;
    font-style: italic;
}

/* Custom Divider */
.founder-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
}

.founder-divider .line {
    width: 80px;
    height: 2px;
    background-color: #5c2b21;
}

.founder-divider .dot-center {
    width: 8px;
    height: 8px;
    background-color: #5c2b21;
    border-radius: 50%;
}

/* Stats Section */
.founder-stats h3 {
    font-size: 22px;
    color: #1a0b0b;
    margin-bottom: 15px;
}

.dotted-line {
    border-top: 2px dotted #888;
    width: 80%;
    margin: 15px auto;
}

.founder-stats p {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .founder-container {
        flex-direction: column;
        text-align: center;
    }
    .main-image {
        width: 280px;
        height: 280px;
    }
    .deco-box {
        display: none; /* Mobile par clean look ke liye boxes hide kar sakte hain */
    }
}
/* -----------------------END Founder & CEO, Skill Set Success Pro --------------- */
/* -----------------------10. Service we provide --------------- */
.services-section {
    padding: 30px 0;
    background-color: #fff;
    text-align: center;
    max-width: 1100px;
    margin: 30px auto; /* Isse bhi center alignment aayegi slider ki tarah */
    background-color: #f8f9fa; /* Halka grey background */
    padding: 30px;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    padding-bottom: 10px !important;
    border-radius: 12px;
    border: 1px solid #e0e0e0;

}
.services-container {
    text-align: center;
    padding: 0 15px;
}
.service-subtitle {
    margin-top: 0 !important;
    margin-bottom: 5px !important;
    font-size: 14px;
    letter-spacing: 1px;
}
.service-main-title {
    margin-top: 0 !important;
    margin-bottom: 5px !important;
    font-size: 32px;
    line-height: 1.2;
}

/* Description Paragraph - Iske neeche ka margin khatam karne ke liye */
.service-description {
    margin-bottom: 15px !important; /* Isse photo aur text ke beech ka gap kam hoga */
    padding-bottom: 0 !important;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px !important;
    
}

/* Photo/Slider Container - Agar photo ke upar extra gap hai */
.services-container + .photo-container, 
.swiper-container {
    position: relative !important;
    margin-top: 10px !important; /*
    max-width: 1200px;    /* Aapki website ki width ke hisaab se */
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px;   /* Dono taraf barabar padding */
    padding-right: 20px;
    display: block;
}
.service-main-title {
    font-size: 32px;
    color: #1a237e; /* Dark Blue */
}

.service-main-title span {
    color: #c5a059; /* Gold color */
}

.service-description {
    max-width: 800px;
    margin: 10px auto 40px;
    color: #555;
    line-height: 1.0;
}

/* Slider Layout */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 80vw;
    max-width: 1050px;
    margin: 0 auto;
    
}

.service-slide {
    display: none; /* Default hidden */
    justify-content: space-between;
    gap: 20px;
}

.service-slide.active {
    display: flex; /* Sirf active slide dikhegi */
    animation: fadeIn 0.5s ease;
}

/* Card & Hover Animation */
.service-card {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.img-box {
    width: 100%;
    height: 330px;
    overflow: hidden;
    align-items: center;
    border-radius: 10px;

}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    align-items: center;
    transition: transform 0.5s ease; /* Hover ke liye transition */
}

/* Photo Badi hone wala effect */
.service-card:hover img {
    transform: scale(1.15); /* Photo zoom hogi */
}

.label {
    position: absolute;
    bottom: -10px;
    left: 5%;
    width: 90%;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-weight: bold;
    color: #1a237e;
    z-index: 10;
}

/* Dots Styling */
.dots-container {
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 30%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background-color: #09c256;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .service-slide {
        flex-direction: column;
    }
    .service-card {
        margin-bottom: 30px;
    }
}       
/* -----------------------END Service we provide --------------- */
/* -----------------------11. Our Philosophy --------------- */
/* --- Bubble Pop & Line Layout --- */
.mvo-container { 
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 30px; /* Circles ke beech ki doori */
    max-width: 1200px; 
    margin: 80px auto; 
    height: auto; 
    flex-wrap: wrap; /* Mobile par apne aap niche aa jayenge */
}

.mvo-circle { 
    position: relative; /* Ab absolute ki zaroorat nahi line ke liye */
    width: 280px; 
    height: 280px; 
    border-radius: 50%; 
    border: 12px solid; 
    background: #ffffff; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding: 25px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    transition: all 0.3s ease;
    cursor: pointer;
    animation: float 4s ease-in-out infinite;
}

/* Colors */
.mission { border-color: #8cb369; animation-delay: 0s; }
.values { border-color: #43a6d8; animation-delay: 1s; }
.vision { border-color: #e36422; animation-delay: 2s; }

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- The "Gubbare Jaisa" Pop Animation --- */
@keyframes bubblePop {
    0% { transform: scale(1); opacity: 1; }
    45% { transform: scale(1.2); } /* Thoda phulega */
    50% { transform: scale(1.3); opacity: 0.5; } /* Phatne ka start */
    100% { transform: scale(1.6); opacity: 0; visibility: hidden; } /* Poora phat gaya */
}

.mvo-circle:hover { 
    animation: bubblePop 0.4s forwards; /* Mouse jate hi foot jayega */
}

/* Text Styling */
.mvo-circle h3 { font-size: 20px; color: #333; margin-bottom: 10px; }
.mvo-circle p { font-size: 14px; color: #666; line-height: 1.4; }

/* Mobile View */
@media (max-width: 768px) {
    .mvo-container { gap: 20px; }
    .mvo-circle { width: 250px; height: 250px; animation: none; }
}
/* -----------------------END Our Philosophy --------------- */

/* ---------------------- Top Performers -----------------------------------*/

.performers-section {
    text-align: center;
    background: #fff;
    width: auto;
    height: auto;
    height: 190px;
    
}

.performer-header h1 { font-size: 28px; margin-bottom: 5px; color: #222; }
.performer-header p { font-size: 16px; color: #555; margin-bottom: 25px; }

.slider-viewport {
    position: relative;
    width: 100%;
    height: 160px; 
    overflow: hidden;
    display: flex;
    align-items: center;
}

.blue-line {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 3px;
    background: #283593;
    z-index: 1;
    transform: translateY(-50%);
}

.avatar-track {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    will-change: transform;
}

.avatar-item {
    /* SCREEN PAR 5 PHOTO DIKHANE KE LIYE */
    flex: 0 0 15%; 
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s ease;
}

.avatar-item img {
    /* Size thoda chota kiya hai taaki 5 photos overlap na hon */
    width: 85px; 
    height: 85px;
    border-radius: 50%;
    border: 3px solid #e65100;
    background: #fff;
    object-fit: cover;
    transition: 0.4s;
}

.avatar-item.active img {
    transform: scale(1.3); /* Center wali photo zoom */
    border-width: 5px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Mobile par 3 photos dikhayenge kyunki 5 bahut choti ho jayengi */
@media (max-width: 768px) {
    .avatar-item { flex: 0 0 33.33%; } 
}

/*  ------------------------End Top Performars  ------------------------------------------ --*/
/*  ------------------------12. Why Choose Skill Set Success Pro------------------------------ --*/

.shivoham-timeline {
    padding: 80px 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    padding-top: 20px !important;    /* Upar ka gap */
    padding-bottom: 2px  !important; /* Neeche ka gap */
    margin-top: 0px !important;      /* Extra margin hatane ke liye */
    margin-bottom: 0px !important;   /* Extra margin hatane ke liye */
}

.main-title { text-align: center; color: #1a5656; margin-bottom: 60px; }

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Vertical Lines wrapper */
.lines-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    gap: 40px; /* Gap between two lines */
    z-index: 1;
}

.v-line {
    width: 3px;
    height: 100%;
    background: #f0f0f5;
    position: relative;
}

.fill-effect {
    position: absolute;
    top: 0;
    width: 100%;
    height: 0%;
    background: #ee0808;
}

/* Square Dots Styling */
.square-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 3;
}

/* Dot Positions */
.pos-start { top: 0; }           /* 1st Square - Start */
.pos-center { top: 50%; }        /* 2nd Square - Center */
.pos-end { bottom: 0; }         /* 3rd Square - Last */

/* Cards Layout */
.row { display: flex; justify-content: space-between; margin-bottom: 120px; }
.t-card {
    width: 42%;
    padding: 25px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.left-card { text-align: right; }
.right-card { text-align: left; }

/* Colors */
.orange-bg { background: #fcae5e; }
.green-bg  { background: #5efc9f; color: #1a5656; }
.purple-bg { background: #9b82f3; }
.red-bg    { background: #ff7675; }

/*  ------------------------END Why Choose Skill Set Success Pro------------------------------ --*/
/*  ------------------------13. Scroll-Triggered Progress Bar animation hai----------------------- --*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

.stats-section {
    padding: 60px 20px;
    background: #fff;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: hidden;
    padding-top: 20px !important;    /* Upar ka gap */
    padding-bottom: 20px !important; /* Neeche ka gap */
    margin-top: 0px !important;      /* Extra margin hatane ke liye */
    margin-bottom: 0px !important;   /* Extra margin hatane ke liye */
}

.stats-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.skill-box {
    width: 100%;
    margin-bottom: 25px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-name {
    font-size: 18px;
    font-weight: 600;
    color: #2d5a52;
}

.skill-value {
    font-size: 16px;
    font-weight: 600;
    color: #2d5a52;
} 

.progress-line {
    height: 18px;
    width: 100%;
    background: #f0f0f5;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-line span {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #b34700, #d95400); 
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.1, 0.42, 0.41, 1);
}

/*  ------------------------END Scroll-Triggered Progress Bar animation hai----------------------- --*/
/*  ------------------------14.  21st Century Skills: Learn, Earn & Grow ----------------------------- --*/

.features-section {
    padding: 50px 20px;
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
    text-align: center;
    color: #800080; /* Purple color from image */
    font-size: 32px;
    margin-bottom: 30px;
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns like image */
    gap: 20px;
    border: 1px solid #e0e0e0;
    padding: 40px;
    border-radius: 25px; /* Rounded main container */
}

.feature-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #ff9900;
    margin-right: 15px;
    border: 1px solid #eee;
}

.text-box h3 {
    font-size: 20px;
    margin: 0;
    color: #045f1a;
}

.text-box p {
    font-size: 14px;
    margin: 0;
    color: #330cdd;
}

/* --- Different Hover Colors --- */

.hover-purple:hover { background: #f3e5f5; border-color: #8e24aa; transform: translateY(-5px); }
.hover-blue:hover { background: #e3f2fd; border-color: #1e88e5; transform: translateY(-5px); }
.hover-indigo:hover { background: #e8eaf6; border-color: #3949ab; transform: translateY(-5px); }
.hover-teal:hover { background: #e0f2f1; border-color: #00897b; transform: translateY(-5px); }
.hover-orange:hover { background: #fff3e0; border-color: #fb8c00; transform: translateY(-5px); }
.hover-red:hover { background: #ffebee; border-color: #e53935; transform: translateY(-5px); }
.hover-cyan:hover { background: #e0f7fa; border-color: #00acc1; transform: translateY(-5px); }
.hover-green:hover { background: #e8f5e9; border-color: #43a047; transform: translateY(-5px); }

/* Responsive for Mobile */
@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
}
/*  ------------------------  END 21st Century Skills: Learn, Earn & Grow ----------------------------- --*/

/*--  ------------------------ 16. Testimonial Slider/Grid---------------------------- --*/
.team-section-wrapper {
    position: relative;
    width: 100%;
    padding: 06px 0;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), 
                url('images/global.png') no-repeat center center fixed !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Background Glows */
.section-glow { position: absolute; border-radius: 50%; filter: blur(120px); z-index: 1; opacity: 0.5; }
.glow-1 { width: 350px; height: 350px; background: #ff0077; top: 5%; left: 10%; }
.glow-2 { width: 450px; height: 450px; background: #0088ff; bottom: 5%; right: 10%; }

/* Slider Layout */
.slider-container { width: 100%; z-index: 2; position: relative; }
.slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: moveLeft 40s linear infinite;
    
    /* 15s ko badal kar 40s kar diya gaya hai slow karne ke liye */
    


}

.slider-container:hover .slider-track {
    animation-play-state: paused;
}

/* Glassmorphism Card */
.glass-card {
    width: 320px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    color: white;
    flex-shrink: 0;
    transition: 0.3s;
}

.glass-card:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-5px); }

.img-container { width: 120px; height: 120px; margin: 0 auto 20px; border: 3px solid #fff; border-radius: 50%; overflow: hidden; }
.img-container img { width: 100%; height: 100%; object-fit: cover; }

.open-popup-btn {
    background: white; color: black; border: none; padding: 10px 30px;
    border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.3s;
}
.open-popup-btn:hover { background: #ff0077; color: white; }

/* POPUP MODAL STYLING */
.popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); display: none; justify-content: center; align-items: center; z-index: 9999;
}
.popup-box {
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(25px);
    padding: 40px 30px; border-radius: 20px; width: 380px; text-align: center;
    color: white; border: 1px solid rgba(255,255,255,0.2); position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.close-icon { position: absolute; top: 15px; right: 20px; font-size: 35px; cursor: pointer; transition: 0.3s; }
.close-icon:hover { color: #ff0077; }
.popup-divider { margin: 15px 0; border: 0; border-top: 1px solid rgba(255,255,255,0.2); }
#popupName { color: #ff0077; font-size: 26px; }
#popupBio { line-height: 1.7; font-size: 16px; color: #f0f0f0; text-align: center; }

/* Scroll Animation */
@keyframes moveLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 9)); } /* (320px width + 30px gap) * 4 cards */
}

/*--  ------------------------ 16. END Testimonial Slider/Grid---------------------------- --*/
/*--  ------------------------ 17.  Who can join our Most  ------------------------------------------------------- --*/
.skills-section-v2 {
    padding: 50px 5%;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.skills-container-v2 {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    align-items: flex-start;
}

.skills-text-content { flex: 1; }
.skills-text-content h1 { font-size: 40px; color: #0a19ec; margin-bottom: 20px; font-weight: bold; }
.skills-text-content p { font-size: 16px; color: #444; line-height: 1.6; }

.skills-progress-area { flex: 1; }

.skill-row { margin-bottom: 15px; width: 100%; }

.bar-bg {
    background: #eeeeee; /* Grey background like the image */
    height: 38px;
    width: 100%;
    position: relative;
    border-radius: 2px;
}

.bar-fill-v2 {
    background: #8AFF8A; /* Original Red */
    height: 100%;
    width: 0%; /* Start at 0 for animation */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    transition: width 1.5s ease-in-out; /* Smooth fill animation */
    white-space: nowrap;
}

.didm-demo-btn {
    margin-top: 25px;
    background: #b22222;
    color: white;
    border: 3px solid #ffcc00; /* Yellow Border */
    padding: 15px 35px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.didm-demo-btn:hover { background: #8b0000; }

/*--  ------------------------ 17.  END Who can join our Most  ------------------------------------------------------- --*/

/* ****************unique 3D Flip (Mirror)*********************** */
.audit-main-container {
    width: 100%;
    padding: 10px 10px;
    background: #fefeff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.audit-card-3d {
    width: 100%;
    max-width: 1100px;
    height: 320px;
    perspective: 2000px;
}

.audit-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.audit-card-3d:hover .audit-card-inner {
    transform: rotateY(180deg);
}

/* Common style for both sides */
.audit-side {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Yeh piche wala hissa chhupata hai */
    background: linear-gradient(145deg, #0a1128, #0f172a);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 40px;
}

/* Front side position */
.front {
    z-index: 2;
    transform: rotateY(0deg);
}

/* Back side position (Pehle se 180deg ghuma hua) */
.back {
    transform: rotateY(180deg);
}

.audit-flex-layout {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

/* Baki ka design same rahega */
.profile-side { flex: 1; text-align: center; }
.img-circle { width: 110px; height: 110px; margin: 0 auto 15px; position: relative; }
.img-circle img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.logo-tag { position: absolute; top: 0; left: -15px; background: #fff; color: #000; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: bold; }
.profile-side h3 { color: #fff; font-size: 18px; }
.profile-side p { color: #94a3b8; font-size: 13px; }

.vertical-line { width: 1px; height: 140px; background: rgba(255,255,255,0.15); margin: 0 30px; }

.text-side { flex: 2; color: #fff; }
.text-side h2 { font-size: 30px; margin-bottom: 12px; }
.text-side p { color: #94a3b8; font-size: 15px; }

.button-side { flex: 1.2; display: flex; justify-content: flex-end; }
.ux-audit-btn {
    background: #64748b; color: #fff; border: none; padding: 18px 32px;
    border-radius: 40px; font-size: 17px; font-weight: 600; cursor: pointer;
}

/* ****************unique 3D Flip (Mirror)*********************** */

/* -----------------------END Footer Section --------------- */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f7f6; /* Light background taaki footer ka curve dikhe */
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Side scroll rokne ke liye */
}

.footer {
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px; 
    font-size: 13px;
    left: 0%;
    right: 0%;
    line-height: 20px;
    margin-top: 50px;
}

.footer-row {
    width: 85%;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-col {
    flex-basis: 22%;
    padding: 10px;
}

.logo {
    font-size: 22px;
    margin-bottom: 30px;
}

.footer-col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.underline {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving {
    0% { left: -20px; }
    100% { left: 100%; }
}

.footer-col ul li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #fff;
}

form {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}

form input {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
    margin-left: 10px;
}

form button {
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
    color: #fff;
}

/* Icons styling: White circles with colored logos */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a i {
    font-size: 20px;
    color: #000;
}

/* YouTube hover effect */
.yt-link:hover i {
    color: #ff0000;
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright {
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 700px) {
    .footer {
        border-top-left-radius: 0; /* Mobile par curve hat jayega space ke liye */
    }
    .footer-col {
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .underline {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
    }
}


/* -----------------------**************************************Register Section Section*********************************** --------------- */
/* ***************************************************************************************************************************************** */
/* Popup Styles */
.popup-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover { color: #ff0000; }

.popup-header { text-align: center; margin-bottom: 25px; }
.popup-header h2 { color: #4b6cb7; margin-bottom: 5px; }
.popup-header p { font-size: 14px; color: #666; }

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.4);
}
/* -----------------------**************************************END Register Section Section*********************************** --------------- */