/* General Reset & Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #06050b;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header & Navbar */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 5, 11, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.logo-dot {
    color: #818cf8;
}

.navbar-nav .nav-link {
    color: #94a3b8;
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.25s ease;
    padding: 0.5rem 0.8rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff;
}

/* Dropdown Menu Custom Styling */
.navbar-nav .nav-item.dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    background: rgba(15, 12, 29, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(79, 70, 229, 0.15);
    padding: 8px;
    margin-top: 2px !important;
    min-width: 210px;
    z-index: 1050;
}

/* Invisible bridge overlay to prevent hover loss between nav-link and dropdown-menu */
.navbar-nav .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.navbar-nav .dropdown-item {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 9px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    color: #ffffff;
    background: rgba(79, 70, 229, 0.25);
    transform: translateX(4px);
}

.navbar-nav .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 0.4em;
    transition: transform 0.25s ease;
}

.navbar-nav .dropdown:hover .dropdown-toggle::after,
.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Desktop hover toggle support */
@media (min-width: 992px) {

    .navbar-nav .nav-item.dropdown:hover>.dropdown-menu,
    .navbar-nav .nav-item.dropdown .dropdown-menu:hover {
        display: block !important;
        opacity: 1;
        visibility: visible;
        animation: dropdownFadeIn 0.2s ease forwards;
    }
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.logo-icon img {
    width: 40px;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
}

.btn-header-book {
    background: linear-gradient(90deg, #4B4BF9 0%, #5A38F0 35%, #6A2DE9 70%, #7A1FE2 100%);
    ;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-header-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(27, 12, 234, 0.5);
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #06050b;
    background-size: 55px 55px;
    background-position: center center;
    padding: 0px 0px;
}

/* Background Graphics Container */
.hero-bg-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Animated Grid Lines Background */
.bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/*======================
   Vertical Lines
=======================*/
.line.v {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    overflow: hidden;
}

.line.v::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 4px;
    left: 50%;
    top: -280px;

    width: 12px;
    /* Head width */
    height: 280px;

    transform: translateX(-50%);

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0),
            rgba(138, 43, 226, 0.15),
            rgba(138, 43, 226, 0.45),
            rgba(138, 43, 226, 0.8),
            #8a2be2,
            #ffffff);

    border-radius: 50px;
    filter: blur(2px);
    box-shadow:
        0 0 10px #8a2be2,
        0 0 20px #8a2be2;

    animation: moveDown 12s linear infinite;
    animation-delay: var(--delay);
}

/*======================
 Horizontal Lines
=======================*/
.line.h {
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0);
    overflow: hidden;
}

.line.h::after {
    content: "";
    position: absolute;
    left: -300px;
    width: 300px;
    height: 4px;

    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 152, 0, .1) 35%,
            rgba(255, 152, 0, .4) 60%,
            #ff9800 80%,
            #ff9800 100%);


    border-radius: 999px;

    box-shadow: 0 0 12px #ff9800;

    animation: moveRight 12s linear infinite;
    animation-delay: var(--delay);
}

/*======================
 Diagonal Lines
=======================*/
.line.d {
    position: absolute;
    width: 1px;
    height: 180%;
    background: rgba(255, 255, 255, 0);
    overflow: hidden;
}

.line.d1 {
    transform: rotate(90deg);
    top: -40%;
}

.line.d2 {
    transform: rotate(-90deg);
    top: -40%;
}

.line.d::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 220px;
    top: -220px;
    background: linear-gradient(transparent,
            #00ff99,
            #00bfff,
            transparent);
    box-shadow: 0 0 20px #00ff99;
    animation: moveDown 9s linear infinite;
    animation-delay: var(--delay);
}

/*======================
 Animations
=======================*/
@keyframes moveDown {
    from {
        transform: translateY(-220px);
    }

    to {
        transform: translateY(calc(100vh + 220px));
    }
}

@keyframes moveRight {
    from {
        transform: translateX(-250px);
    }

    to {
        transform: translateX(calc(100vw + 250px));
    }
}

/* Content Area Overlay */
.hero-content-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

/* Tagline Pill */
.hero-tagline-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.hero-tagline-pill:hover {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.tagline-text {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #4B4BF9 0%, #5A38F0 35%, #6A2DE9 70%, #7A1FE2 100%);
    ;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sparkle-icon {
    font-size: 0.85rem;
}

/* MSME Badge */
.msme-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 22px;
    border: 1px solid rgba(245, 158, 11, 0.45);
    background: rgba(18, 14, 28, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.badge-text {
    color: #f97316;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.star-icon {
    color: #f59e0b;
    font-size: 0.7rem;
}

/* Main Hero Typography */
.hero-title {
    font-size: 100px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 auto;
}

.title-white {
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.title-gradient {
    background: linear-gradient(135deg, #4B4BF9 0%, #5A38F0 35%, #6A2DE9 70%, #7A1FE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Subtitle Paragraph */
.hero-description {
    color: #8e8e94;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 680px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Action Buttons */
.hero-buttons {
    margin-top: 10px;
}

.btn-explore {
    background: linear-gradient(90deg, #4B4BF9 0%, #5A38F0 35%, #6A2DE9 70%, #7A1FE2 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(56, 22, 249, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-explore:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(90, 22, 249, 0.5);
}

.btn-explore .arrow-icon {
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn-explore:hover .arrow-icon {
    transform: translateX(4px);
}

.btn-book-hero {
    background: #10073b;
    border: 1.5px solid rgba(99, 102, 241, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-book-hero:hover {
    color: #ffffff;
    border-color: rgba(99, 102, 241, 0.8);
    background: rgba(30, 27, 75, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-contact-hero {
    background: #10073b;
    border: 1.5px solid rgba(99, 102, 241, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-contact-hero:hover {
    color: #ffffff;
    border-color: rgba(99, 102, 241, 0.8);
    background: rgba(30, 27, 75, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}


/* Scroll Indicator */
.scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.75;
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: #94a3b8;
    font-weight: 700;
}

.scroll-line {
    width: 1.5px;
    height: 18px;
    background: linear-gradient(to bottom, #f97316, transparent);
    border-radius: 2px;
}

/* Responsive Media Queries */
@media (max-width: 1440px) {
    .hero-title {
        font-size: 70px !important;
    }
}


@media (max-width: 991px) {
    .main-header {
        position: sticky;
        top: 0;
        background: rgba(6, 5, 11, 0.95);
        backdrop-filter: blur(16px);
    }

    .navbar-collapse {
        background: rgba(12, 10, 22, 0.95);
        padding: 20px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 15px;
    }

    .hero-section {
        padding-top: 60px;
        min-height: calc(100vh - 80px);
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

/* About Us Section Styles */
.about-section {
    background-color: #06050b;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-subtitle {
    color: #f97316;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.title-highlight {
    background: #7a53e4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.author-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.about-intro-text {

    font-size: 1.125rem;
    line-height: 1.75;
    font-weight: 400;
}

.about-intro-text strong {
    color: #ffffff;
}

.about-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 12, 28, 0.65) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), inset 0 1px 2px rgba(255, 255, 255, 0.25);
}

.quote-card {
    border: 1.5px solid #f97316;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(18, 15, 32, 0.8) 100%);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.18), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.card-mission {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(15, 12, 28, 0.7) 100%);
}

.card-mission::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(75, 82, 255, 0.8), transparent);
    box-shadow: 0 0 10px rgba(75, 82, 255, 0.6);
}


.card-msme {
    border: 1px solid rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(15, 12, 28, 0.7) 100%);
}

.card-vision {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(236, 72, 153, 0.4);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(15, 12, 28, 0.7) 100%);
}

.card-vision::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(238, 9, 121, 0.5), transparent);
    box-shadow: 0 0 10px rgba(75, 82, 255, 0.6);
}

.card-stat-orange {
    border: 1px solid rgba(249, 115, 22, 0.35);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.06) 0%, rgba(15, 12, 28, 0.7) 100%);
}

.card-stat-pink {
    border: 1px solid rgba(217, 70, 239, 0.35);
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.06) 0%, rgba(15, 12, 28, 0.7) 100%);
}

.card-stat-blue {
    border: 1px solid rgba(59, 130, 246, 0.35);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(15, 12, 28, 0.7) 100%);
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #f8fafc;
    font-weight: 500;
    line-height: 1.6;
}

.author-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
}

.author-title {
    color: #94a3b8;
    font-size: 0.8rem;
}

.card-icon-wrap {
    font-size: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.card-desc {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
}

.card-subtitle-text {
    color: #94a3b8;
    font-size: 0.85rem;
}

.certified-tag {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: #f97316;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-orange {
    background: linear-gradient(135deg, #f97316, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-pink {
    background: linear-gradient(135deg, #ec4899, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-blue {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.btn-learn-more {
    background: linear-gradient(90deg, rgba(75, 75, 254, 1) 0%, rgba(87, 27, 230, 1) 100%, rgba(87, 27, 230, 1) 49%);
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;

}

.btn-learn-more:hover {
    color: #ffffff;
    border-color: rgba(99, 102, 241, 0.8);
    background: rgba(30, 27, 75, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);

}

.btn-learn-more:hover .arrow-icon {
    transform: translateX(4px);
}

/* Featured Services Section Styles */
.services-section {
    background-color: #06050b;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 55px 55px;
    background-position: center center;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-description {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    width: 100%;
}

.service-card:hover {
    background: rgba(22, 22, 22, 0.95);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

.hover-effect-orange:hover {
    border-color: rgb(209 88 8 / 44%);
    box-shadow: 0 7px 18px rgb(230 127 11 / 64%), inset 0 1px 2px rgba(206, 96, 6, 0.25);
}

.hover-effect-blue:hover {
    border-color: #4b4bf9;
    box-shadow: 0 7px 18px #4b4bf9d9, inset 0 1px 2px #4b4bf96e;
}

.hover-effect-pink:hover {
    border-color: #eb6eb0bd;
    box-shadow: 0 7px 18px #eb6eb0ba, inset 0 1px 2px #eb6eb0;
}

.hover-effect-purple:hover {
    border-color: #6a2de9cc;
    box-shadow: 0 7px 18px #6a2de9b3, inset 0 1px 2px #6a2de980;
}

.service-card .glow {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    transform-style: preserve-3d;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 20px;
    transition: opacity 0.35s ease, border-color 0.3s, box-shadow 0.3s;
    transform: none;
    opacity: 0;
}

.service-card:hover .glow {
    opacity: 1;
}

.service-card>*:not(.glow) {
    position: relative;
    z-index: 2;
    transform: translateZ(30px);
    transform-style: preserve-3d;
    transition: transform 0.35s ease;
}


.service-icon-wrap {
    font-size: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-title {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

.service-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.service-title a:hover {
    opacity: 0.85;
}

/* Dynamic color change when parent card is hovered */
.hover-effect-orange:hover .service-title a {
    color: #f97316;
}

.hover-effect-blue:hover .service-title a {
    color: #60a5fa;
}

.hover-effect-pink:hover .service-title a {
    color: #f472b6;
}

.hover-effect-purple:hover .service-title a {
    color: #c084fc;
}

.service-desc {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.65;
}

/* Service Benefits Box */
.service-benefits {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
    transition: all 0.3s ease;
}

.hover-effect-orange .service-benefits {
    border-left-color: #f97316;
}

.hover-effect-blue .service-benefits {
    border-left-color: #4b4bf994;
}

.hover-effect-pink .service-benefits {
    border-left-color: #ec4899;
}

.hover-effect-purple .service-benefits {
    border-left-color: #8b5cf6;
}

.benefits-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.benefits-text {
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.45;
}

/* Service Tag Pills */
.tag-pill {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.tag-orange {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: #f97316;
}

.tag-blue {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

.tag-pink {
    background: rgba(236, 72, 153, 0.12);
    border: 1px solid rgba(236, 72, 153, 0.4);
    color: #f472b6;
}

.tag-purple {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #a78bfa;
}


/* Service Action Links */
.service-link {
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.service-link .arrow-icon {
    transition: transform 0.25s ease;
}

.service-link:hover .arrow-icon {
    transform: translateX(4px);
}

.link-orange {
    color: #f97316;
}

.link-orange:hover {
    color: #fb923c;
}

.link-blue {
    color: #60a5fa;
}

.link-blue:hover {
    color: #93c5fd;
}

.link-pink {
    color: #f472b6;
}

.link-pink:hover {
    color: #fbcfe8;
}

.link-purple {
    color: #c084fc;
}

.link-purple:hover {
    color: #e9d5ff;
}

.link-amber {
    color: #fbbf24;
}

.link-amber:hover {
    color: #fde047;
}

.link-violet {
    color: #c084fc;
}

.link-violet:hover {
    color: #e9d5ff;
}

/* Bottom CTA Button */
.btn-view-all-services {
    background: linear-gradient(90deg, #4B4BF9 0%, #5A38F0 35%, #6A2DE9 70%, #7A1FE2 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 42px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgb(114 46 255 / 40%);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-view-all-services:hover {
    color: #ffffff;
    border-color: rgba(99, 102, 241, 0.8);
    background: rgba(30, 27, 75, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-view-all-services .arrow-icon {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.btn-view-all-services:hover .arrow-icon {
    transform: translateX(4px);
}

/* Featured Sessions Section Styles */
.sessions-section {
    background-color: #06050b;
    background-size: 55px 55px;
    background-position: center center;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(90deg, #4B4BF9 0%, #5A38F0 35%, #6A2DE9 70%, #7A1FE2 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 20px #6a2de9;
}

.session-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(15, 12, 28, 0.75) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.session-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.category-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: capitalize;
}

.text-orange {
    color: #f97316;
}

.category-label.text-orange {
    color: #f97316;
}

.category-label.text-blue {
    color: #60a5fa;
}

.category-label.text-amber {
    color: #fbbf24;
}

.category-label.text-purple {
    color: #a78bfa;
}

.top-stat-box .text-orange {
    color: transparent;
    background-image: linear-gradient(135deg, rgb(255, 106, 0), rgb(238, 9, 121));
    background-clip: text;
    filter: drop-shadow(rgba(255, 106, 0, 0.376) 0px 0px 20px);
}

.top-stat-box .text-blue {
    color: transparent;
    background-image: linear-gradient(135deg, rgb(75, 82, 255), rgb(238, 9, 121));
    background-clip: text;
    filter: drop-shadow(rgba(75, 82, 255, 0.376) 0px 0px 20px);
}

.top-stat-box .text-purple {
    color: transparent;
    background-image: linear-gradient(135deg, rgb(75, 82, 255), rgb(255, 106, 0));
    background-clip: text;
    filter: drop-shadow(rgba(75, 82, 255, 0.376) 0px 0px 20px);
}

.top-stat-box .text-pink {
    color: transparent;
    background-image: linear-gradient(135deg, rgb(75, 82, 255), rgb(255, 106, 0));
    background-clip: text;
    filter: drop-shadow(rgba(75, 82, 255, 0.376) 0px 0px 20px);
}


.status-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
}

.badge-popular {
    border: 1px solid rgba(249, 115, 22, 0.5);
    color: #f97316;
    background: rgba(249, 115, 22, 0.12);
}

.badge-new {
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.12);
}

.badge-upcoming {
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.12);
}

.badge-limited {
    border: 1px solid rgba(168, 85, 247, 0.5);
    color: #c084fc;
    background: rgba(168, 85, 247, 0.12);
}

.badge-certified {
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.12);
}

.badge-corporate {
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.12);
}

.session-title {
    font-weight: 700;
    font-size: 1.25rem;
}

.session-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.session-title a:hover {
    color: #818cf8;
}

.session-details-list li {
    color: #94a3b8;
    font-size: 0.88rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-icon {
    font-size: 0.95rem;
}

.border-top-glass {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.btn-register-session {
    background: linear-gradient(90deg, #4B4BF9 0%, #5A38F0 35%, #6A2DE9 70%, #7A1FE2 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 8px 22px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 18px #6a2de9;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-register-session:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px #6366f1;
}

/* Recorded Sessions Section Styles */
.recorded-section {
    background-color: #06050b;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 55px 55px;
    background-position: center center;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.recorded-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(15, 12, 28, 0.75) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.recorded-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.thumbnail-wrap {
    height: 160px;
    overflow: hidden;
    position: relative;
    border-radius: 18px 18px 0 0;
}

.thumbnail-bg {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.recorded-card:hover .thumbnail-bg {
    transform: scale(1.06);
}

.grad-orange {
    background: url(https://embed-ssl.wistia.com/deliveries/bf56e35b9b337dba40b4e4abee2440f4.webp?image_crop_resized=960x540);
    background-size: cover;
    background-repeat: no-repeat;
}

.grad-blue {
    background: url(https://i.ytimg.com/vi/GLneLGYZgnA/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLBRVFfQ71sE3WObd3sMQQkz18MTtw);
    background-size: cover;
    background-repeat: no-repeat;
}

.grad-pink {
    background: url(https://i.ytimg.com/vi/0rr83lrB95o/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLCgtVPk5rMonC-b4nBSW0Dm3RLpTQ);
    background-size: cover;
    background-repeat: no-repeat;
}

.grad-purple {
    background: url(https://i.ytimg.com/vi/4aQ2R0LrLM0/maxresdefault.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.play-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    padding-left: 3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.recorded-card:hover .play-icon {
    transform: scale(1.15);
}

.duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(6, 5, 11, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #cbd5e1;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.recorded-title {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.45;
}

.recorded-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.recorded-title a:hover {
    opacity: 0.85;
}

/* Hovering card transitions title color */
.recorded-card:hover .recorded-title a {
    color: #818cf8;
}

.btn-buy-recorded {
    background: linear-gradient(90deg, #4B4BF9 0%, #5A38F0 35%, #6A2DE9 70%, #7A1FE2 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 7px 18px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px #5a38f0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-buy-recorded:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(234, 88, 12, 0.5);
}

.btn-explore-library {
    background: linear-gradient(90deg, #4B4BF9 0%, #5A38F0 35%, #6A2DE9 70%, #7A1FE2 100%);
    border: 1.5px solid rgba(99, 102, 241, 0.45);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-explore-library:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px #472edd;
}

/* MSME Registration Highlight Section Styles */
.msme-section {
    background-color: #06050b;
    position: relative;
    z-index: 10;
}

.msme-banner {
    background: linear-gradient(135deg, rgba(20, 15, 45, 0.85) 0%, rgba(10, 8, 25, 0.95) 100%);
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.msme-ambient-glow {
    position: absolute;
    top: -50%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.msme-shield-wrap img {
    width: 180px;
    height: 180px;
    position: relative;
}

.msme-shield-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 25px rgba(59, 130, 246, 0.4));
}

.msme-title {
    color: #a78bfa;
    font-weight: 800;
    font-size: 1.65rem;
    letter-spacing: -0.01em;
}

.msme-desc {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 520px;
}

.btn-verified-msme {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.45);
    color: #c4b5fd;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.btn-verified-msme .dot-icon {
    width: 7px;
    height: 7px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
}

.msme-mini-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    min-width: 80px;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.msme-mini-badge:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.badge-icon img {
    width: 40px;
}

.badge-label {
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
}

.stats-bar {
    background: linear-gradient(rgb(6, 7, 15) 0%, rgb(8, 11, 36) 50%, rgb(6, 7, 15) 100%);
    border-top: 1px solid rgba(255, 106, 0, 0.1);
    border-bottom: 1px solid rgba(75, 82, 255, 0.1);
}

/* Testimonials Preview Section Styles */
.testimonials-section {
    background-color: #06050b;
    background-size: 55px 55px;
    background-position: center center;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.top-stat-box {
    padding: 10px;
}

.top-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.top-stat-label {
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(15, 12, 28, 0.75) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.star-rating {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.avatar-ag {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
}

.avatar-vs {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
}

.avatar-nk {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}

.avatar-ds {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.avatar-ak {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.avatar-ns {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.author-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
}

.author-role {
    color: #94a3b8;
    font-size: 0.78rem;
}

.btn-view-testimonials {
    background: linear-gradient(90deg, #4B4BF9 0%, #5A38F0 35%, #6A2DE9 70%, #7A1FE2 100%);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 10px 30px rgb(114 46 255 / 40%);
    font-size: 1rem;
    padding: 14px 38px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-view-testimonials:hover {
    color: #ffffff;
    border-color: rgba(99, 102, 241, 0.8);
    background: rgba(30, 27, 75, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-view-testimonials .arrow-icon {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.btn-view-testimonials:hover .arrow-icon {
    transform: translateX(4px);
}

/* Footer Styles - Reference Design Match */
.footer-section {
    background-color: #030207;
    position: relative;
    z-index: 10;
}

.footer-top-border {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #f97316 0%, rgba(139, 92, 246, 0.4) 50%, rgba(255, 255, 255, 0.05) 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.glowing-orange-dot {
    position: absolute;
    top: -4px;
    left: 60px;
    width: 9px;
    height: 9px;
    background-color: #f97316;
    border-radius: 50%;
    box-shadow: 0 0 10px #f97316, 0 0 20px #f97316;
}

.brand-logo-circle {
    width: 44px;
    height: 44px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(15, 12, 28, 0.8) 100%);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

.brand-title {
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.2;
}

.brand-orange {
    color: #f97316;
}

.brand-white {
    color: #ffffff;
}

.brand-subtitle {
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    display: block;
}

.footer-desc {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.65;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.social-icon-btn:hover .fa-instagram {
    color: #f472b6;
}

.social-icon-btn:hover .fa-linkedin-in {
    color: #60a5fa;
}

.social-icon-btn:hover .fa-youtube {
    color: #ef4444;
}

.social-icon-btn:hover .fa-file-lines {
    color: #c084fc;
}

.social-icon-btn:hover .fa-whatsapp {
    color: #4ade80;
}

.footer-column-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-nav-links li {
    margin-bottom: 10px;
}

.footer-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-nav-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-details li {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    font-size: 0.95rem;
}

.contact-icon.text-blue {
    color: #60a5fa;
}

.contact-icon.text-orange {
    color: #f97316;
}

.msme-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1px solid rgba(249, 115, 22, 0.5);
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
    font-size: 0.82rem;
    font-weight: 700;
}


.footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.copyright-text-white {
    font-size: 0.85rem;
}

.copyright-text-muted {
    color: #64748b;
    font-size: 0.85rem;
}

.legal-links a {
    color: #ffffff;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #94a3b8;
}

.btn-learn-more:hover .arrow-icon {
    transform: translateX(4px);
}

.btn-learn-more:hover .arrow-icon {
    transform: translateX(4px);
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 60px;
    }

    .msme-badge {
        padding: 5px 16px;
    }

    .badge-text {
        font-size: 0.68rem;
        letter-spacing: 1px;
    }

    .btn-explore,
    .btn-book-hero {
        padding: 12px 26px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   INNER PAGES DESIGN SYSTEM & CUSTOM COMPONENTS
   ========================================================================== */

/* Page Banner / Hero */
.inner-page-hero {
    position: relative;
    padding: 10px 0px;
    background: radial-gradient(circle at 50% 0%, rgba(90, 56, 240, 0.22) 0%, rgba(6, 5, 11, 1) 75%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.inner-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 350px;
    background: radial-gradient(circle, rgba(122, 31, 226, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.inner-hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.inner-hero-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 20px;
}

/* Breadcrumbs */
.custom-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    font-size: 0.88rem;
}

.custom-breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.custom-breadcrumb a:hover {
    color: #ffffff;
}

.custom-breadcrumb .sep {
    color: #f97316;
    font-size: 0.8rem;
}

.custom-breadcrumb .current {
    color: #f97316;
    font-weight: 600;
}

/* Custom Glass Forms & Inputs */
.glass-input,
.glass-select,
.glass-textarea {
    background: rgba(15, 12, 29, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-size: 0.95rem !important;
    backdrop-filter: blur(12px);
    transition: all 0.25s ease !important;
}

.glass-input:focus,
.glass-select:focus,
.glass-textarea:focus {
    border-color: rgba(99, 102, 241, 0.8) !important;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3) !important;
    background: rgba(20, 16, 40, 0.85) !important;
    outline: none !important;
}

.glass-input::placeholder,
.glass-textarea::placeholder {
    color: #64748b !important;
}

.glass-select option {
    background: #0f0c1d;
    color: #ffffff;
}

.glass-label {
    color: #cbd5e1;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

/* Glass Card Component */
.glass-card-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(15, 12, 28, 0.75) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.35s ease;
}

.glass-card-box:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(99, 102, 241, 0.15);
}

/* Team / Mentor Card */
.team-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(16, 12, 30, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(122, 31, 226, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(122, 31, 226, 0.2);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.bg-avatar-1 {
    background: linear-gradient(135deg, #4F46E5, #9333EA);
}

.bg-avatar-2 {
    background: linear-gradient(135deg, #F97316, #EF4444);
}

.bg-avatar-3 {
    background: linear-gradient(135deg, #06B6D4, #3B82F6);
}

.bg-avatar-4 {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
}

/* Gallery Layout & Hover */
.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 12, 28, 0.6);
    aspect-ratio: 4 / 3;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 5, 11, 0.95) 0%, rgba(6, 5, 11, 0.4) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(6, 5, 11, 0.75);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.4);
}

/* Auth Cards & Tabs */
.auth-wrapper {
    max-width: 480px;
    margin: 0 auto;
}

.auth-nav-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 5px;
    margin-bottom: 25px;
}

.auth-nav-tabs .nav-item {
    flex: 1;
}

.auth-nav-tabs .nav-link,
.auth-tab-btn {
    width: 100%;
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.25s ease;
    text-align: center;
}

.auth-nav-tabs .nav-link:hover,
.auth-tab-btn:hover {
    color: #ffffff;
}

.auth-nav-tabs .nav-link.active,
.auth-tab-btn.active {
    background: linear-gradient(90deg, #4B4BF9 0%, #5A38F0 35%, #6A2DE9 70%, #7A1FE2 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(106, 45, 233, 0.4);
}

/* Rating Stars Interactive */
.rating-select {
    display: flex;
    gap: 8px;
    font-size: 1.8rem;
    color: #475569;
    cursor: pointer;
}

.rating-select i {
    transition: color 0.2s ease, transform 0.2s ease;
}

.rating-select i.active,
.rating-select i:hover {
    color: #f59e0b;
    transform: scale(1.15);
}

/* Custom Accordion */
.custom-accordion .accordion-item {
    background: rgba(15, 12, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px;
    box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: rgba(99, 102, 241, 0.12);
    color: #f97316;
}

.custom-accordion .accordion-button::after {
    filter: invert(1);
}

.custom-accordion .accordion-body {
    color: #94a3b8;
    font-size: 0.98rem;
    line-height: 1.7;
    padding: 0 20px 20px;
}

/* Modal Custom styling */
.glass-modal .modal-content {
    background: rgba(12, 10, 24, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.glass-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
}

.glass-modal .btn-close {
    filter: invert(1);
}

/* Lightbox Modal */
.lightbox-modal .modal-body {
    padding: 0;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}

/* Nav Active Link Indicator */
.navbar-nav .nav-link.active-page {
    color: #ffffff !important;
    font-weight: 700;
    position: relative;
}

.navbar-nav .nav-link.active-page::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #7a1fe2);
    border-radius: 3px;
}

.text-blue {
    color: #4b4bf9;
}

.text-purple {
    color: #7a1fe2;
}

.text-pink {
    color: #ec4899;
}

.vission-misson {

    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(15, 12, 28, 0.7) 100%);
}

/* Glass Modal Styling */
.glass-modal .modal-content {
    background: rgba(15, 12, 29, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(99, 102, 241, 0.2);
}

.glass-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 20px 24px !important;
}

.glass-modal .modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}