/* Modern Root Overrides */
:root {
    --primary: #0b1d3a;
    --warning: #f39100;
    --light-bg: #f8f9fa;
}

body { font-family: 'Poppins', sans-serif; color: #333; }

/* Enhanced Typography */
.ls-2 { letter-spacing: 2px; }
.bg-soft-primary { background: rgba(11, 29, 58, 0.1); }

/* Updated Hero for Tech Startup Feel */
.hero {
    min-height: 85vh;
    background: radial-gradient(circle at 70% 30%, #1a3a6d, #0b1d3a 80%);
    color: white;
    display: flex;
    align-items: center;
}

/* Card Modernization */
.course-card {
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
.course-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
}

.course-img { height: 220px; object-fit: cover; }

/* Partner Marquee Speed Adjustment */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-track { animation: scroll 20s linear infinite; }

/* Button Polishing */
.btn-primary { background: var(--warning); border-color: var(--warning); color: #0b1d3a; }
.btn-primary:hover { background: #d98200; border-color: #d98200; color: #fff; }

:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    background-color: #ffffff;
}

/* Colors & Helpers */
.text-orange { color: var(--orange-main); }
.bg-primary-subtle { background-color: #e2e8f0; }

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: var(--orange-main);
    font-weight: 600;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.social-icons a { color: var(--orange-main); transition: 0.3s; margin-left: 15px; }
.social-icons a:hover { opacity: 0.7; }

/* Navbar Styling */
.navbar { background: #fff !important; }
.nav-link { 
    color: var(--primary-dark) !important; 
    font-weight: 600; 
    padding: 0.5rem 1.2rem !important;
}
.nav-link:hover, .nav-link.active { color: var(--orange-main) !important; }

/* Hero Modernization */
.hero {
    background: radial-gradient(circle at 80% 20%, #162f5a, #0b1d3a 80%);
    color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.btn-primary {
    background: var(--orange-main);
    border: none;
    color: var(--primary-dark);
    transition: 0.3s;
}

.btn-primary:hover {
    background: #fff;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Orbit Animation (Preserved) */
.orbit-wrapper { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; }
.orbit {
    position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
    animation: rotate linear infinite;
}
.orbit1 { width: 280px; height: 280px; animation-duration: 20s; }
.orbit2 { width: 420px; height: 420px; animation-duration: 35s; }
.orbit3 { width: 560px; height: 560px; animation-duration: 50s; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.icon {
    position: absolute; width: 50px; height: 50px; background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px); border-radius: 12px; display: flex; align-items: center; justify-content: center;
}

/* Course Cards */
.course-card {
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
    border-radius: 20px;
}
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

/* Footer */
.footer-section { background: var(--primary-dark); border-top: 4px solid var(--orange-main); }

/* gemini3 */
:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
    --text-slate: #475569;
}

body { font-family: 'Plus Jakarta Sans', sans-serif; color: #1e293b; overflow-x: hidden; }

/* Message Bar */
.top-bar { background: var(--primary-dark); color: var(--orange-main); font-weight: 600; font-size: 13px; }
.message-wrapper { position: relative; height: 24px; overflow: hidden; }
.message { position: absolute; width: 100%; opacity: 0; transform: translateY(100%); transition: 0.5s; }
.message.active { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn-primary { background: var(--orange-main); border: none; color: var(--primary-dark); }
.btn-primary:hover { background: #fff; color: var(--primary-dark); transform: translateY(-2px); }

/* Hero & Orbit */
.hero { background: radial-gradient(circle at 80% 20%, #162f5a, #0b1d3a 80%); color: #fff; min-height: 85vh; display: flex; align-items: center; }
.orbit-wrapper { position: relative; height: 600px; display: flex; align-items: center; justify-content: center; }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); animation: rotate linear infinite; }
.orbit1 { width: 300px; height: 300px; animation-duration: 25s; }
.orbit2 { width: 450px; height: 450px; animation-duration: 40s; }
.orbit3 { width: 600px; height: 600px; animation-duration: 55s; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Cards */
.card-hover { transition: all 0.3s ease; }
.card-hover:hover { transform: translateY(-8px); border-color: var(--orange-main) !important; }
.course-card { border-radius: 20px; overflow: hidden; background: #fff; transition: 0.3s; }
.course-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important; }

/* CTA Gradient */
.cta-gradient { background: linear-gradient(135deg, #0b1d3a 0%, #1e3a8a 100%); box-shadow: 0 20px 50px rgba(11,29,58,0.3); }

/* Footer */
.footer-section { background: var(--primary-dark); }



/* gemi 4 */
:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
}

body { font-family: 'Plus Jakarta Sans', sans-serif; color: #1e293b; overflow-x: hidden; }

/* Announcement Bar */
.top-bar { background: var(--primary-dark); color: var(--orange-main); font-weight: 600; font-size: 13px; }
.message-wrapper { position: relative; height: 24px; overflow: hidden; }
.message { position: absolute; width: 100%; opacity: 0; transform: translateY(100%); transition: 0.5s; }
.message.active { opacity: 1; transform: translateY(0); }

/* Hero & Orbit Animation */
.hero { background: radial-gradient(circle at 80% 20%, #162f5a, #0b1d3a 80%); color: #fff; min-height: 85vh; }
.orbit-wrapper { position: relative; height: 600px; display: flex; align-items: center; justify-content: center; }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); animation: rotate linear infinite; }
.orbit1 { width: 300px; height: 300px; animation-duration: 25s; }
.orbit2 { width: 450px; height: 450px; animation-duration: 40s; }
.orbit3 { width: 600px; height: 600px; animation-duration: 55s; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Cards & UI */
.text-orange { color: var(--orange-main); }
.btn-primary { background: var(--orange-main); border: none; color: var(--primary-dark); }
.btn-primary:hover { background: #fff; color: var(--primary-dark); transform: translateY(-2px); }

.bento-hover { transition: all 0.3s ease; }
.bento-hover:hover { transform: translateY(-8px); border-color: var(--orange-main) !important; background: #fffdf9; }

.course-card { border-radius: 24px; overflow: hidden; transition: 0.3s; background: #fff; }
.course-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important; }

/* CTA & Footer */
.cta-box { background: linear-gradient(135deg, #0b1d3a 0%, #1e3a8a 100%); box-shadow: 0 20px 50px rgba(11,29,58,0.3); }
.footer { background: var(--primary-dark); }
.bg-orange { background: var(--orange-main); }


/* gemini 6*/




:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
}

body { font-family: 'Plus Jakarta Sans', sans-serif; color: #1e293b; overflow-x: hidden; }

/* Announcement Bar */
.top-bar { background: var(--primary-dark); color: var(--orange-main); font-weight: 600; font-size: 13px; }
.message-wrapper { position: relative; height: 24px; overflow: hidden; }
.message { position: absolute; width: 100%; opacity: 0; transform: translateY(100%); transition: 0.5s; }
.message.active { opacity: 1; transform: translateY(0); }

/* Glass Navbar */
.navbar { background: rgba(255, 255, 255, 0.8) !important; backdrop-filter: blur(15px); border-bottom: 1px solid rgba(0,0,0,0.05); }

/* Hero Orbit */
.hero-section { background: radial-gradient(circle at 80% 20%, #162f5a, #0b1d3a 80%); color: #fff; min-height: 85vh; display: flex; align-items: center; }
.orbit-wrapper { position: relative; height: 600px; display: flex; align-items: center; justify-content: center; }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); animation: rotate linear infinite; }
.orbit1 { width: 300px; height: 300px; animation-duration: 25s; }
.orbit2 { width: 450px; height: 450px; animation-duration: 40s; }
.orbit3 { width: 600px; height: 600px; animation-duration: 55s; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Bento Grid Layout */
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 200px); gap: 20px; }
.bento-item { background: #fff; border-radius: 30px; padding: 30px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.bento-main { grid-column: span 2; grid-row: span 2; background: var(--primary-dark); color: #fff; }
.bento-wide { grid-column: span 2; background: #fff8ef; }
.bento-icon { position: absolute; bottom: -20px; right: -20px; font-size: 140px; opacity: 0.05; }

/* Roadmap Steps */
.roadmap-line { position: absolute; top: 75px; left: 0; right: 0; height: 2px; background: #e2e8f0; z-index: 1; }
.step-circle { width: 50px; height: 50px; background: var(--orange-main); color: var(--primary-dark); border-radius: 50%; line-height: 50px; font-weight: 800; position: relative; z-index: 2; box-shadow: 0 0 20px rgba(243, 145, 0, 0.4); }

/* Glass Feature Card */
.glass-feature { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(15px); }
.cta-banner { background: linear-gradient(135deg, #0b1d3a 0%, #1e3a8a 100%); }

/* Global Styling */
.text-orange { color: var(--orange-main); }
.text-gradient { background: linear-gradient(90deg, #f39100, #ff8c00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.btn-primary { background: var(--orange-main); border: none; color: var(--primary-dark); }
.shadow-glow { box-shadow: 0 10px 30px rgba(243, 145, 0, 0.3); }

/* Marquee */
.marquee-track { display: flex; gap: 60px; animation: scroll 25s linear infinite; }
.marquee-track img { height: 45px; opacity: 0.6; filter: grayscale(1); transition: 0.3s; }
.marquee-track img:hover { opacity: 1; filter: grayscale(0); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }



/* about section in home */
/* Color Palette */
:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
    --orange-light: #fff4e6;
    --blue-light: #e7f1ff;
}

.bg-primary-dark { background-color: var(--primary-dark); }
.bg-orange { background-color: var(--orange-main); }
.text-orange { color: var(--orange-main); }
.bg-orange-light { background-color: var(--orange-light); }
.bg-blue-light { background-color: var(--blue-light); }

/* Bento Item Hover Effects */
.feature-bento {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #fff;
}

.feature-bento:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--orange-main) !important;
}

/* Icon Styling */
.icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
}

/* Typography Enhancements */
.tracking-widest { letter-spacing: 0.2em; }
.fw-extrabold { font-weight: 800; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-5 { font-size: 2.2rem; }
    .rounded-5 { border-radius: 30px !important; }
}



/* career journey sections */


/* Career Journey Variables */
:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
}

/* Central Connecting Line */
.journey-wrapper {
    z-index: 1;
}

.path-line {
    position: absolute;
    top: 75px; /* Aligned with step indicators */
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        var(--orange-main),
        var(--orange-main) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.3;
    z-index: -1;
}

/* Step Indicator (Circles) */
.step-indicator {
    width: 50px;
    height: 50px;
    background: var(--orange-main);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.2rem;
    position: relative;
    border: 4px solid #fff;
}

/* Icon Box Animation */
.icon-box-lg {
    font-size: 3rem;
    color: var(--orange-main);
    transition: transform 0.3s ease;
}

/* Journey Card Hover */
.journey-card {
    background: #fff;
    border-radius: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.journey-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: var(--orange-main);
}

.journey-card:hover .icon-box-lg {
    transform: scale(1.2) rotate(5deg);
}

/* Glow Effects */
.shadow-glow {
    box-shadow: 0 0 20px rgba(243, 145, 0, 0.4);
}

.shadow-glow-orange {
    box-shadow: 0 10px 30px rgba(243, 145, 0, 0.3);
}

/* Responsive Path Line Adjustment */
@media (max-width: 991px) {
    .path-line { display: none; }
    .journey-card { border-left: 4px solid var(--orange-main); }
}

/*  student career2 */


:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
}

/* Stepper Icon Styling */
.step-icon-wrap {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--orange-main);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 30px;
    border: 3px solid #fff;
}

/* Flow Arrows */
.step-arrow {
    position: absolute;
    top: 35px;
    right: -25px;
    font-size: 3rem;
    color: var(--orange-main);
    z-index: 10;
}

/* Animations */
.animate-flicker {
    animation: flicker 1.5s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(10px); }
}

.journey-step:hover .step-icon-wrap {
    background: var(--orange-main);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.journey-step:hover .step-num {
    background: #fff;
    color: var(--primary-dark);
}

/* Typography */
.ls-2 { letter-spacing: 2px; }
.fw-extrabold { font-weight: 800; }

/* Responsive Arrow Hiding */
@media (max-width: 991px) {
    .step-arrow { display: none; }
}

/* journey section 3  */


/* Journey Section Styles */
#journey {
    background-color: #f8f9fa;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #f39100; /* Foster Orange */
    color: #0b1d3a;    /* Foster Navy */
    border-radius: 20px;
    line-height: 60px;
    font-weight: 800;
    margin: 0 auto;
    font-size: 1.2rem;
    border: 3px solid #fff;
}

.journey-step {
    transition: transform 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-10px);
}

/* Animated Arrows */
.journey-arrow {
    position: absolute;
    top: 30px;
    right: -25px;
    font-size: 3rem;
    color: #f39100;
    opacity: 0.5;
    z-index: 10;
}

.animate-flicker {
    animation: flicker 1.5s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(10px); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .journey-arrow {
        display: none;
    }
    .journey-step {
        padding-bottom: 2rem;
        border-bottom: 1px dashed #dee2e6;
    }
}


/*journey sections 5 */
/* Career Journey Custom Styles */
.step-icon {
    width: 60px;
    height: 60px;
    background: #f39100; /* Foster Orange */
    color: #0b1d3a;    /* Foster Navy */
    border-radius: 18px;
    line-height: 60px;
    font-weight: 800;
    margin: 0 auto;
    font-size: 1.2rem;
    border: 3px solid #fff;
    position: relative;
    z-index: 2;
}

.icon-wrapper i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.journey-step:hover .icon-wrapper i {
    transform: scale(1.2) rotate(5deg);
}

/* Arrow Styling & Animation */
.step-arrow {
    position: absolute;
    top: 32px;
    right: -25px;
    font-size: 3rem;
    color: #f39100;
    z-index: 1;
}

.animate-flicker {
    animation: flickerMove 1.5s infinite;
}

@keyframes flickerMove {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(12px); }
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
    .step-arrow { display: none; }
    .journey-step { 
        padding: 20px;
        background: #fff;
        border-radius: 20px;
        margin-bottom: 15px;
    }
}


/* about 2 */

/* Color Palette Extensions */
:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
    --orange-light: #fff4e6;
    --blue-light: #e7f1ff;
}

.bg-primary-dark { background-color: var(--primary-dark); }
.bg-orange { background-color: var(--orange-main) !important; }
.text-orange { color: var(--orange-main); }
.bg-orange-light { background-color: var(--orange-light); }
.bg-blue-light { background-color: var(--blue-light); }

/* Bento Interaction */
.feature-bento {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #fff;
}

.feature-bento:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--orange-main) !important;
}

/* Icon Design */
.icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
}

/* Typography Details */
.tracking-widest { letter-spacing: 0.25em; }
.fw-extrabold { font-weight: 800; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-5 { font-size: 2.2rem; }
    .rounded-5 { border-radius: 30px !important; }
}



/* lab cta */
:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
}

/* Glassmorphism Elements */
.glass-pill {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange-main);
}

/* Visual Wrapper */
.experience-visual-wrap {
    position: relative;
    padding: 40px;
}

/* Floating Cards Styling */
.floating-card {
    position: absolute;
    background: rgba(11, 29, 58, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    z-index: 10;
}

.card-1 { top: 10%; left: 0; }
.card-2 { bottom: 15%; right: 5%; width: 200px; }
.card-3 { top: 50%; right: -20px; }

.icon-circle-sm {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* UI Glows */
.shadow-glow-orange {
    box-shadow: 0 10px 30px rgba(243, 145, 0, 0.4);
}

.bg-orange { background-color: var(--orange-main) !important; }
.text-orange { color: var(--orange-main) !important; }

@media (max-width: 991px) {
    .floating-card { display: none; }
    .experience-visual-wrap { padding: 0; }
}
/* faq */


:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
}

/* Accordion Customization */
.custom-faq .accordion-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.custom-faq .accordion-item:hover {
    border-color: var(--orange-main) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.custom-faq .accordion-button {
    background-color: transparent !important;
    color: var(--primary-dark) !important;
    box-shadow: none !important;
}

.custom-faq .accordion-button:not(.collapsed) {
    color: var(--orange-main) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.custom-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b1d3a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f39100'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Typography & Helpers */
.ls-2 { letter-spacing: 2px; }
.fw-extrabold { font-weight: 800; }





/* cta join */



:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
}

/* Glass Card Container */
.cta-glass-card {
    background: linear-gradient(135deg, #0b1d3a 0%, #1a3a6d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(11, 29, 58, 0.3);
    overflow: hidden;
}

/* Animated Glow Blobs */
.cta-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--orange-main) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
}

.blob-1 { top: -100px; left: -100px; animation: floatBlob 10s infinite alternate; }
.blob-2 { bottom: -100px; right: -100px; animation: floatBlob 8s infinite alternate-reverse; }

@keyframes floatBlob {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

/* Typography & Buttons */
.text-gradient-orange {
    background: linear-gradient(90deg, #f39100, #ffae00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-3 { letter-spacing: 3px; }
.fw-extrabold { font-weight: 800; }

.shadow-glow-orange {
    box-shadow: 0 10px 30px rgba(243, 145, 0, 0.5);
    transition: all 0.3s ease;
}

.shadow-glow-orange:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(243, 145, 0, 0.7);
}

.glass-hover:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Avatar Stack Effect */
.-space-x-2 img {
    margin-left: -12px;
}

.z-index-2 { z-index: 2; }



/* footer*/

:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
}

/* Footer Container */
.footer-section {
    background-color: var(--primary-dark);
    color: #fff;
    border-top: 5px solid var(--orange-main);
}

/* Social Icon Circles */
.social-circle {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-circle:hover {
    background: var(--orange-main);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Footer Link Hover Effects */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--orange-main);
    padding-left: 8px;
}

/* Border Adjustment */
.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Heading Typography */
footer h6 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-section { text-align: center; }
    .footer-links a:hover { padding-left: 0; transform: scale(1.1); }
    .d-flex { justify-content: center; }
}*/

/* footer3*/
:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
}

/* Footer Container */
.footer-section {
    background-color: var(--primary-dark) !important;
    border-top: 5px solid var(--orange-main);
}

.text-secondary {
    color: #94a3b8 !important; /* Modern Slate Grey */
}

/* Link Styling */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange-main);
    padding-left: 8px;
}

/* Social Buttons */
.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--orange-main);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Local SEO Helpers */
.tracking-widest {
    letter-spacing: 2px;
}

.footer-map {
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-section { text-align: center; }
    .social-btn { margin: 0 auto; }
}

/* view all courses*/
:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
}

body { font-family: 'Plus Jakarta Sans', sans-serif; }

/* Course Hero */
.course-hero {
    min-height: 60vh;
    background: radial-gradient(circle at 80% 20%, #162f5a, #0b1d3a 80%);
    padding-top: 100px;
}

.hero-blur-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--orange-main) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.15;
    bottom: -150px;
    right: -100px;
}

/* Course Cards */
.course-card-v2 {
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}

.course-card-v2:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1) !important;
    border-color: var(--orange-main);
}

.course-img-box { height: 220px; overflow: hidden; }
.course-img-box img { height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.course-card-v2:hover .course-img-box img { transform: scale(1.1); }

.course-badge {
    position: absolute; top: 20px; left: 20px; background: var(--orange-main);
    color: #fff; padding: 6px 15px; border-radius: 50px; font-size: 0.7rem;
    font-weight: 800; text-transform: uppercase;
}

/* CTA Glassmorphism */
.cta-glass-card {
    background: linear-gradient(135deg, #0b1d3a 0%, #1e3a8a 100%);
    box-shadow: 0 25px 50px rgba(11, 29, 58, 0.3);
}

/* Utils */
.text-orange { color: var(--orange-main); }
.btn-primary { background: var(--orange-main); border: none; color: var(--primary-dark); }
.btn-orange { background: var(--orange-main); color: #fff; border: none; }
.shadow-glow-orange { box-shadow: 0 10px 30px rgba(243, 145, 0, 0.4); }
.active-filter { background: var(--orange-main) !important; color: #fff !important; border-color: var(--orange-main) !important; }
.z-index-2 { z-index: 2; }


:root {
    --primary-dark: #0b1d3a;
    --orange-main: #f39100;
}

/* Placement Hero */
.placement-hero {
    background: radial-gradient(circle at 50% 50%, #162f5a, #0b1d3a 100%);
    min-height: 70vh;
}

.glass-morph {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Placement Card */
.placement-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 4px solid transparent !important;
}

.placement-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    border-color: var(--orange-main) !important;
}

.x-small { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 800; }

/* Marquee Logic */
.marquee-wrapper { overflow: hidden; width: 100%; }
.marquee-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
    align-items: center;
}
.marquee-track img { height: 45px; filter: grayscale(1); opacity: 0.5; transition: 0.3s; }
.marquee-track img:hover { filter: grayscale(0); opacity: 1; }

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Decorative CTA circle */
.cta-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(243, 145, 0, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.shadow-glow { box-shadow: 0 10px 30px rgba(243, 145, 0, 0.5); }


:root {
    --foster-primary: #0046ad;
    --foster-secondary: #00d4ff;
    --foster-dark: #061121;
    --foster-accent: #f39c12;
}

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: #f8fbff; 
    color: var(--foster-dark);
}

.fw-800 { font-weight: 800; }

/* Enhanced Hero */
.creative-hero {
    background: linear-gradient(135deg, var(--foster-dark) 0%, var(--foster-primary) 100%);
    padding: 120px 0 200px;
    color: white;
    position: relative;
    overflow: hidden;
}

.text-gradient {
    background: linear-gradient(to right, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave .shape-fill { fill: #f8fbff; }

/* Stats Overlap Cards */
.stats-overlap { margin-top: -120px; position: relative; z-index: 10; }

.glass-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    height: 100%;
    overflow: hidden;
}

.glass-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0, 70, 173, 0.1); }

.card-num {
    position: absolute; top: -10px; right: 10px; font-size: 6rem;
    font-weight: 900; color: rgba(0,0,0,0.03);
}

.icon-wrap { font-size: 2.5rem; color: var(--foster-primary); }

/* Skill Ecosystem */
.skill-pill {
    padding: 10px 20px;
    background: white;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.skill-pill:hover { background: var(--foster-primary); color: white; transform: scale(1.05); }

/* Journey Stepper */
.journey-wrapper { position: relative; padding-left: 20px; }

.journey-item {
    position: relative;
    padding-bottom: 40px;
    padding-left: 40px;
    border-left: 2px solid #eef2f6;
}

.journey-item:last-child { border-left: none; padding-bottom: 0; }

.journey-dot {
    position: absolute; left: -16px; top: 0;
    width: 32px; height: 32px; background: white;
    border: 2px solid var(--foster-primary);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 0.8rem; font-weight: 800;
    color: var(--foster-primary);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--foster-primary) 0%, var(--foster-secondary) 100%);
    border-radius: 40px; padding: 80px 40px; color: white;
    box-shadow: 0 30px 60px rgba(0, 70, 173, 0.2);
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 30px 60px rgba(0, 70, 173, 0.2); }
    50% { box-shadow: 0 30px 80px rgba(0, 212, 255, 0.4); }
    100% { box-shadow: 0 30px 60px rgba(0, 70, 173, 0.2); }
}

.shadow-glow { box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3); }


/*huhu*/
:root {
    --navy-dark: #0b1d3a;
    --orange-main: #f39100;
    --slate-grey: #94a3b8;
}

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: #f8fbff; 
    color: var(--navy-dark);
}

.fw-800 { font-weight: 800; }
.text-orange { color: var(--orange-main) !important; }
.text-navy { color: var(--navy-dark) !important; }

/* Refined Hero */
.creative-hero {
    background: radial-gradient(circle at top right, #162f5a, var(--navy-dark));
    padding: 120px 0 160px;
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.floating-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
}

/* Stats Overlap */
.stats-overlap { margin-top: -80px; position: relative; z-index: 10; }

.glass-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.glass-card:hover { 
    transform: translateY(-10px) rotate(1deg); 
    border-bottom: 4px solid var(--orange-main);
}

/* Skill Ecosystem */
.skill-pill {
    padding: 10px 22px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}

.skill-pill:hover { 
    background: var(--navy-dark); 
    color: white; 
    border-color: var(--navy-dark);
}

/* Journey Stepper Marks */
.journey-step::before {
    content: "\f058";
    font-family: "bootstrap-icons";
    position: absolute;
    left: -38px;
    top: 0;
    background: #f8fbff;
    color: var(--orange-main);
    font-size: 20px;
}

/* Updated CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #1a3a6d 100%);
    border-radius: 40px; 
    padding: 80px 40px; 
    color: white;
}

.btn-orange {
    background-color: var(--orange-main);
    color: var(--navy-dark);
    border: none;
}

.btn-orange:hover {
    background-color: #d47e00;
    color: white;
}

.shadow-glow { box-shadow: 0 10px 25px rgba(243, 145, 0, 0.3); }




/* all things */

.top-bar{
background:#0b1d3a;
font-size:14px;
font-weight:500;
color: #f39100;
}

.social-icons a{
color: #f39100;
margin-left:10px;
font-size:18px;
}

.message-wrapper{
position:relative;
height:24px;
overflow:hidden;
}

.message{
position:absolute;
width:100%;
opacity:0;
transform:translateY(100%);
transition:0.5s;
}

.message.active{
opacity:1;
transform:translateY(0);
}
/* navbar*/
.navbar{
    background-color: white !important;
  
}
.navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: rgb(11 29 58);
    --bs-nav-link-hover-color: rgb(247 146 32);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
/* mega menu*/
.navbar .dropdown-fullwidth {
    position: static;
}

.navbar .dropdown-fullwidth .dropdown-menu {
    left: 0px;
    margin: 1.25rem auto;
    max-width: 1024px;
    padding: 1rem 0px;
    right: 0px;
    top: 42px;
}
.dropdown-fullwidth h5, .dropdown-fullwidth h6, .dropdown-fullwidth a , .dropdown-item{
    text-decoration: none;
    color: #0b1d3a;
    
}

.dropdown-fullwidth h6:hover, .dropdown-fullwidth a:hover, .dropdown-item:hover{
    color: #f39100;
}
.navbar .btn-normal{
    background-color: #f39100;
    color: #0b1d3a;
}
.navbar .btn-normal:hover{
    color: #f39100;
    background-color: #0b1d3a;
}
.navitem.active{
    color: #f39100 !important;
}
/* hero section*/
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, #102a5c, #0b1d3a 70%);
    color: white;
}

/* TEXT LEFT */
.text-box h1 {
    font-size: 42px;
    font-weight: 700;
}

.text-box p {
    color: #cbd5f5;
    line-height: 1.7;
}

/* ORBIT AREA */
.orbit-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

/* CENTER LOGO */
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-logo img {
    width: 120px;
    filter: drop-shadow(0 0 20px rgba(255,165,0,0.6));
}

/* ORBITS */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate linear infinite;
}

.orbit1 { width: 260px; height: 260px; animation-duration: 20s; }
.orbit2 { width: 380px; height: 380px; animation-duration: 30s; }
.orbit3 { width: 500px; height: 500px; animation-duration: 40s; }

/* ROTATE */
@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ICON */
.icon {
    position: absolute;
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 0 15px rgba(99,102,241,0.5);
    animation: float 3s ease-in-out infinite;
}

.icon img {
    width: 26px;
}

/* FLOAT */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ICON POSITIONS */
.orbit .icon:nth-child(1){ top:0%; left:50%; transform:translate(-50%,-50%);}
.orbit .icon:nth-child(2){ top:25%; right:0%;}
.orbit .icon:nth-child(3){ top:50%; right:-5%;}
.orbit .icon:nth-child(4){ bottom:25%; right:0%;}
.orbit .icon:nth-child(5){ bottom:0%; left:50%; transform:translate(-50%,50%);}
.orbit .icon:nth-child(6){ bottom:25%; left:0%;}
.orbit .icon:nth-child(7){ top:50%; left:-5%;}
.orbit .icon:nth-child(8){ top:25%; left:0%;}



/* partner section*/
.partner-section {
         background: linear-gradient(135deg, #fff7ed, #fef3c7);
        padding: 30px 15px;
      text-align: center;
    }

    .partner-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .partner-heading {
      font-family: 'Poppins';
      font-size: 32px;
      color: rgb(5, 18, 54);
      font-weight: 500;
     
    }
.partner-heading span{
  font-family: 'Monotype Corsiva';
  color:  rgb(255, 125, 3);
}
    .marquee-wrapper {
      overflow: hidden;
      position: relative;
    }

    .marquee-track {
      display: flex;
      gap: 50px;
      animation: scroll 25s linear infinite;
    }

    .marquee-track img {
      max-height: 90;
      max-width: 190px;
      object-fit: contain;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .marquee-track img:hover {
      transform: scale(1.05);
    }

    @keyframes scroll {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }

    /* courses */
    .top-label {
    display: inline-block;
    background: #eef2ff;
    color: #6c63ff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
}

/* Title */
.section-title h2 {
    font-weight: 700;
    margin-top: 10px;
}

.section-title span {
    color: #6c63ff;
}

/* Tabs */
.tabs a {
    margin-right: 20px;
    text-decoration: none;
    color: #6c757d;
    font-weight: 500;
}

.tabs a.active {
    color: #6c63ff;
}

/* Card */
.course-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #e6e9ef;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Image */
.course-img {
    height: 200px;
    object-fit: cover;
}

/* Badge */
.badge-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4da6;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}

/* Green Badge */
.badge-green {
    background: #22c55e;
}

/* Content */
.course-body {
    padding: 20px;
}

/* Info Row */
.info {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

/* Title */
.course-title {
    font-weight: 600;
    margin: 10px 0;
}

/* Rating */
.rating {
    color: #fbbf24;
    font-size: 14px;
}

/* Placement */
.placement {
    font-size: 13px;
    color: #6c757d;
}

/* Footer */
.card-footer {
    text-align: center;
    background: none;
    border-top: none;
    padding-bottom: 15px;
}

.card-footer a {
    text-decoration: none;
    color: #4c6ef5;
    font-weight: 500;
}
.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* about Section */

  .about-section {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
      font-family: 'Poppins', sans-serif;
      color: #1e293b;
      padding: 80px 0;
      position: relative;
    }

    /* Soft glowing background */
    .about-bg {
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, #f97316, transparent);
      filter: blur(100px);
      top: 0;
      left: 0;
      opacity: 0.3;
    }

    .about-title {
      font-weight: 800;
      font-size: 38px;
      background: linear-gradient(90deg, #f97316, #fb923c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .about-text {
      color: #475569;
      line-height: 1.8;
    }

    .feature-card {
      border-radius: 20px;
      padding: 25px;
      background: #ffffff;
      box-shadow: 0 10px 30px rgba(249,115,22,0.15);
      transition: 0.4s;
      border: 1px solid rgba(249,115,22,0.1);
    }

    .feature-card:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 20px 50px rgba(249,115,22,0.3);
      border-color: #f97316;
    }

    .icon-box {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 15px;
      background: linear-gradient(135deg, #f97316, #fb923c);
      color: white;
      font-size: 22px;
      margin-bottom: 15px;
    }

    .about-img {
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .stats {
      display: flex;
      gap: 30px;
      margin-top: 30px;
    }

    .stat-box h4 {
      font-weight: 700;
      color: #f97316;
    }

    .stat-box p {
      color: #64748b;
    }


    /* feed section */
    
    .feed-section {
     /* background: radial-gradient(circle at top left, #f3e8ff, #eef2ff, #ecfeff);*/
      font-family: 'Poppins', sans-serif;  
      padding: 80px 0;
      text-align: center;
      position: relative;
    }

    /* Decorative blobs 
    .blob {
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.4;
      z-index: 0;
    }

    .blob1 { background: #a855f7; top: 10%; left: 5%; }
    .blob2 { background: #06b6d4; bottom: 10%; right: 5%; }*/

    .feed-title {
      font-weight: 800;
      font-size: 36px;
      background: linear-gradient(90deg, #7c3aed, #ec4899);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
      z-index: 2;
    }

    .feed-sub {
      color: #6b7280;
      margin-bottom: 50px;
      position: relative;
      z-index: 2;
    }

    /* Carousel */
    .carousel-wrapper {
      overflow: hidden;
      position: relative;
      z-index: 2;
    }

    .carousel-track {
      display: flex;
      gap: 25px;
      animation: scroll 25s linear infinite;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .carousel-wrapper:hover .carousel-track {
      animation-play-state: paused;
    }

    /* Cards */
    .feed-card {
      min-width: 260px;
      border-radius: 25px;
      overflow: hidden;
      background: linear-gradient(180deg, #ffffff, #faf5ff);
      box-shadow: 0 15px 40px rgba(124,58,237,0.2);
      transition: 0.4s ease;
      position: relative;
    }

    .feed-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
      opacity: 0;
      transition: 0.5s;
    }

    .feed-card:hover::before {
      opacity: 1;
    }

    .feed-card:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 25px 60px rgba(124,58,237,0.35);
    }

    .feed-img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    /* Overlay text */
    .overlay {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding: 15px;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      color: #fff;
      text-align: left;
    }

    .overlay h6 {
      margin: 0;
      font-weight: 700;
    }

    .overlay span {
      font-size: 12px;
      color: #ddd;
    }

    /* Floating icons */
    .icon-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(255,255,255,0.9);
      padding: 8px;
      border-radius: 50%;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* cta + testimonials */

.cta-sec{
  background: linear-gradient(135deg, #fff7ed, #fef3c7);;
}
     .cta-box {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff;
    box-shadow: 0 15px 40px rgba(249,115,22,0.3);
  }

  .testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f97316;
  }


  /* footer */


   .footer-section {
    background: #0b1d3a;
    border-top: 2px solid #f97316;
    color: white;
  }

  .footer-link {
    color: #475569;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
  }

  .footer-link:hover {
    color: #f97316;
    transform: translateX(5px);
  }

  .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff7ed;
    border-radius: 50%;
    color: #f97316;
    transition: 0.3s;
  }

  .social-icon:hover {
    background: #f97316;
    color: #fff;
    transform: scale(1.1);
  }