﻿:root {
    --primary: #5B4BFF;
    --secondary: #00C2A8;
    --accent: #FFB703;
    --dark: #1E293B;
    --light: #F8FAFC;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

.topbar {
    background: var(--primary);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.topbar a {
    color: #fff;
    margin-left: 10px;
}

.navbar {
    padding: 15px 0;
}

.nav-link {
    font-weight: 600;
    margin-left: 20px;
}

.hero-section {
    padding: 100px 0;
    background:
    linear-gradient(135deg,#5B4BFF,#00C2A8);
    color: white;
}

.hero-section h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-badge {
    background: rgba(255,255,255,.2);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
}

.btn-demo,
.btn-primary-custom {
    background: var(--accent);
    border: none;
    color: #000;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
}

.btn-primary-custom:hover {
    background: #ff9900;
}

.btn-outline-custom {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    margin-left: 15px;
}

.section-padding {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
}

.feature-box {
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.programs-section {
    background: #f8fafc;
    padding: 90px 0;
}

.program-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
    margin-bottom: 30px;
}

.program-card:hover {
    transform: translateY(-10px);
}

.counter-section {
    background: var(--primary);
    color: white;
    padding: 90px 0;
}

.counter-section h2 {
    font-size: 55px;
    font-weight: 800;
}

.testimonial-card {
    max-width: 700px;
    margin: auto;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.franchise-section {
    background:
    linear-gradient(135deg,#00C2A8,#5B4BFF);
    color: white;
    padding: 100px 0;
}

.contact-section {
    padding: 90px 0;
}

.form-control {
    height: 55px;
    border-radius: 12px;
}

footer {
    background: #0f172a;
    color: white;
    padding: 70px 0;
}

.hero-image {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media(max-width:768px) {

.hero-section h1 {
    font-size: 38px;
}

.section-title h2 {
    font-size: 30px;
}

.hero-section {
    text-align:center;
}

.btn-outline-custom {
    display:block;
    margin:15px auto 0;
}
}

    .topbar {
    background: #26104a;
    padding: 12px 0;
    color: #fff;
    font-size: 15px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.topbar-item {
    color: #fff;
    font-weight: 500;
}

.topbar-item i {
    color: #ffc107;
    margin-right: 8px;
}

.topbar-item a {
    color: #fff;
    text-decoration: none;
}

.topbar-item a:hover {
    color: #ffc107;
}

.topbar-right {
    display: flex;
    gap: 12px;
}

.social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
}

.social:hover {
    transform: translateY(-3px);
    color: #fff;
}

.facebook {
    background: #2196f3;
}

.twitter {
    background: #ffc107;
}

.instagram {
    background: #ff4081;
}

.whatsapp {
    background: #8bc34a;
}
.hero-slider {
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background:
    linear-gradient(
    135deg,
    #f8fbff 0%,
    #eef5ff 100%);
}

.hero-row {
    min-height: 650px;
}

.hero-tag {

    background: #ffe7c4;
    color: #ff7a00;

    padding: 10px 22px;
    border-radius: 30px;

    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-title {

    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #1b1642;

    margin-bottom: 25px;
}

.hero-title span {
    color: #5b4bff;
}

.hero-text {

    font-size: 20px;
    line-height: 1.8;
    color: #666;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-demo {

    background: #ff6b35;
    color: #fff;

    padding: 16px 32px;
    border-radius: 50px;

    text-decoration: none;
    font-weight: 600;
}

.btn-franchise {

    background: #5b4bff;
    color: white;

    padding: 16px 32px;
    border-radius: 50px;

    text-decoration: none;
    font-weight: 600;
}

.hero-stats {

    display: flex;
    gap: 50px;

    margin-top: 50px;
}

.hero-stats h3 {

    color: #5b4bff;
    font-weight: 800;
    font-size: 32px;
}

.hero-image {

    max-height: 560px;
    animation: float 4s ease-in-out infinite;
}

.floating-card {

    position: absolute;

    background: white;

    padding: 12px 20px;

    border-radius: 15px;

    box-shadow:
    0 15px 30px rgba(0,0,0,.08);

    font-weight: 600;
}

.card-1 {
    top: 100px;
    left: 20px;
}

.card-2 {
    bottom: 100px;
    right: 50px;
}

.floating-circle {

    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.circle-1 {

    width: 180px;
    height: 180px;

    background: rgba(91,75,255,.08);

    top: 40px;
    right: 30px;
}

.circle-2 {

    width: 120px;
    height: 120px;

    background: rgba(255,107,53,.10);

    bottom: 80px;
    left: 80px;
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@media(max-width:991px){

.hero-slider,
.hero-row{
    min-height:auto;
}

.hero-title{
    font-size:42px;
}

.hero-buttons{
    flex-direction:column;
}

.hero-stats{
    justify-content:center;
    text-align:center;
}

.hero-image{
    margin-top:40px;
}
}

    .journey-section {

    position: relative;
    padding: 100px 0 120px;

    background:
    linear-gradient(
    180deg,
    #ffffff 0%,
    #f6fbff 100%);
}

.section-tag {

    color: #ff5b84;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.journey-title {

    font-size: 56px;
    font-weight: 800;
    color: #1a2140;
    margin-bottom: 25px;
}

.journey-desc {

    font-size: 20px;
    color: #6b7280;
    line-height: 1.8;
}

.journey-image {

    max-height: 450px;
    animation: float 4s infinite ease-in-out;
}

.stats-row {

    margin-top: 70px;
}

.stat-card {

    background: white;

    border-radius: 30px;

    padding: 40px 25px;

    text-align: center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition: .4s;

    height: 100%;
}

.stat-card:hover {

    transform: translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);
}

.stat-icon {

    width: 90px;
    height: 90px;

    border-radius: 50%;

    margin: auto auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 38px;
    color: white;
}

.purple {
    background: linear-gradient(135deg,#7b5cff,#5b4bff);
}

.pink {
    background: linear-gradient(135deg,#ff84a1,#ff5b84);
}

.teal {
    background: linear-gradient(135deg,#00d4c8,#00b7a8);
}

.orange {
    background: linear-gradient(135deg,#ffb347,#ff8f00);
}

.blue {
    background: linear-gradient(135deg,#46b3ff,#1d8fff);
}

.stat-card h3 {

    font-size: 48px;
    font-weight: 800;
    color: #1a2140;
    margin-bottom: 10px;
}

.stat-card p {

    font-size: 18px;
    font-weight: 600;
    color: #64748b;
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@media(max-width:991px){

    .journey-title{
        font-size:40px;
    }

    .journey-image{
        margin-top:40px;
    }

    .stat-card{
        margin-bottom:25px;
    }
}

    .hero-slider {
    position: relative;
}

.hero-bg {
    height: 720px;
    object-fit: cover;
    width: 100%;
      object-position: center center;

}

.hero-overlay {

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.20) 50%,
    rgba(0,0,0,.05) 100%);
}

.hero-content {

    position: absolute;

    left: 10%;
    top: 50%;

    transform: translateY(-50%);

    text-align: left;

    max-width: 650px;

    bottom: auto;
}

.hero-tag {

    background: #ffb703;

    color: #000;

    padding: 10px 20px;

    border-radius: 50px;

    font-weight: 600;
}

.hero-content h1 {

    font-size: 70px;

    font-weight: 800;

    color: #fff;

    margin-top: 25px;
    margin-bottom: 20px;
}

.hero-content p {

    font-size: 22px;

    color: #fff;

    line-height: 1.8;
}

.btn-demo {

    background: #ff6b35;

    color: white;

    padding: 15px 35px;

    border-radius: 50px;

    text-decoration: none;
}

.btn-franchise {

    background: #5b4bff;

    color: white;

    padding: 15px 35px;

    border-radius: 50px;

    text-decoration: none;

    margin-left: 10px;
}


.hero-slider,
.carousel,
.carousel-inner,
.carousel-item {
    width: 100%;
    height: 720px;
}

.hero-bg {
    width: 100%;
    height: 720px;
    object-fit: cover;
    object-position: center right;
    display: block;
}

.carousel-item {
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.55) 0%,
        rgba(0,0,0,.25) 40%,
        rgba(0,0,0,.05) 100%
    );
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

.hero-content-right {

    left: auto !important;

    right: 8% !important;

    max-width: 550px;

    text-align: left;

    transform: translateY(-50%);
}

.section-header h2 {

    font-size: 48px;
    font-weight: 800;
    color: #1b1642;

    margin-bottom: 20px;
}

.section-header p {

    max-width: 700px;
    margin: auto;
    color: #6b7280;
}

.section-tag {

    color: #ff5b84;
    font-weight: 700;
    text-transform: uppercase;
}

.program-card {

    border-radius: 30px;

    overflow: hidden;

    text-align: center;

    padding: 30px;

    height: 100%;

    color: white;

    transition: .4s;

    position: relative;
}

.program-card:hover {

    transform: translateY(-10px);
}

.program-img {

    width: 140px;
    height: 140px;

    margin: auto;

    border-radius: 50%;

    overflow: hidden;

    border: 5px solid rgba(255,255,255,.3);

    margin-bottom: 25px;
}

.program-img img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-card h3 {

    font-size: 30px;
    font-weight: 700;

    margin-bottom: 15px;
}

.program-card p {

    min-height: 120px;
}

.program-card a {

    color: white;
    text-decoration: none;
    font-weight: 600;
}

.program-purple {

    background:
    linear-gradient(
    135deg,
    #6a5cff,
    #4d3fff);
}

.program-pink {

    background:
    linear-gradient(
    135deg,
    #ff6b9e,
    #ff4f84);
}

.program-teal {

    background:
    linear-gradient(
    135deg,
    #00c9b7,
    #00a89a);
}

.program-orange {

    background:
    linear-gradient(
    135deg,
    #ffb347,
    #ff8f00);
}

.program-section {

    padding: 100px 0;

    background:
    linear-gradient(
    180deg,
    #f7f8ff 0%,
    #eef8ff 100%);
}

.why-softbrain-section {

    padding: 100px 0;

    background:
    linear-gradient(
    180deg,
    #fdfcff 0%,
    #eef8ff 100%);

    position: relative;
}

.section-subtitle {

    color: #ff5b84;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title h2 {

    font-size: 48px;
    font-weight: 800;
    color: #1d2142;

    margin-top: 15px;
    margin-bottom: 20px;
}

.section-title p {

    max-width: 700px;
    margin: auto;

    color: #6b7280;
    font-size: 18px;
}

.why-card {

    background: #fff;

    padding: 40px 25px;

    border-radius: 25px;

    text-align: center;

    height: 100%;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition: .4s;
}

.why-card:hover {

    transform: translateY(-12px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.12);
}

.icon-box {

    width: 90px;
    height: 90px;

    border-radius: 50%;

    margin: auto auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 38px;

    color: #fff;
}

.purple {
    background: linear-gradient(135deg,#7b5cff,#5b4bff);
}

.orange {
    background: linear-gradient(135deg,#ffb347,#ff8f00);
}

.teal {
    background: linear-gradient(135deg,#00d4c8,#00b7a8);
}

.pink {
    background: linear-gradient(135deg,#ff84a1,#ff5b84);
}

.why-card h4 {

    font-size: 24px;
    font-weight: 700;

    margin-bottom: 15px;

    color: #1d2142;
}

.why-card p {

    color: #6b7280;

    line-height: 1.8;
}

.why-softbrain-section::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    background:
    rgba(91,75,255,.05);

    border-radius: 50%;

    top: -100px;
    left: -100px;
}

.why-softbrain-section::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    background:
    rgba(255,91,132,.05);

    border-radius: 50%;

    bottom: -80px;
    right: -80px;
}

.transformation-section {

    padding: 100px 0;

    background:
    linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fbff 100%);

    position: relative;
}

.benefit-box {

    margin-bottom: 60px;
}

.benefit-icon {

    width: 80px;
    height: 80px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 32px;

    margin-bottom: 20px;
}

.purple {
    background: #6a5cff;
}

.pink {
    background: #ff5b84;
}

.teal {
    background: #00c9b7;
}

.orange {
    background: #ff9f1c;
}

.benefit-box h4 {

    font-size: 28px;
    font-weight: 700;

    color: #1b1642;

    margin-bottom: 15px;
}

.benefit-box p {

    color: #64748b;
    line-height: 1.8;
}

.center-kid {

    max-height: 500px;

    animation: float 4s infinite ease-in-out;
}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.success-section {

    padding: 100px 0;

    background:
    linear-gradient(
    180deg,
    #f8fbff,
    #ffffff);
}

.success-card {

    background: white;

    border-radius: 25px;

    padding: 25px;

    min-height: 420px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition: .4s;
}

.success-card:hover {

    transform: translateY(-10px);
}

#successCarousel .carousel-control-prev,
#successCarousel .carousel-control-next {

    width: 50px;
    height: 50px;

    background: #5b4bff;

    border-radius: 50%;

    top: 50%;

    transform: translateY(-50%);
}

#successCarousel .carousel-control-prev {
    left: -70px;
}

#successCarousel .carousel-control-next {
    right: -70px;
}

.events-section {

    padding: 100px 0;

    background:
    linear-gradient(
    180deg,
    #f7f9ff 0%,
    #ffffff 100%);
}

.events-section h2 {

    font-size: 60px;
    font-weight: 800;

    color: #09142d;
}

.events-section h2 span {

    color: #00c9a7;
}

.event-box,
.highlight-box {

    background: white;

    border-radius: 30px;

    padding: 25px;

    height: 100%;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.event-header {

    display: flex;
    align-items: center;

    margin-bottom: 25px;
}

.event-header i {

    width: 55px;
    height: 55px;

    background: #eef5ff;

    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #5b4bff;

    font-size: 22px;

    margin-right: 15px;
}

.event-header h4 {

    margin: 0;

    font-weight: 700;
}

.event-poster {

    position: relative;

    overflow: hidden;

    border-radius: 20px;
}

.event-poster img {

    width: 100%;

    border-radius: 20px;
}

.event-date {

    position: absolute;

    top: 15px;
    right: 15px;

    background: white;

    color: #0077cc;

    padding: 10px 20px;

    border-radius: 30px;

    font-weight: 700;
}

.event-content {

    margin-top: 20px;
}

.event-content h5 {

    font-weight: 700;

    color: #09142d;
}

.event-btn {

    display: inline-block;

    background: #ff6b35;

    color: white;

    padding: 12px 25px;

    border-radius: 30px;

    text-decoration: none;

    margin-top: 10px;
}

.highlight-item img {

    border-radius: 15px;
}

.highlight-item h5 {

    margin-top: 12px;

    font-weight: 600;
}

.partner-section {

    padding: 100px 0;

    background:
    linear-gradient(
    135deg,
    #f7f8ff,
    #eef9ff);
}

.partner-slider {

    overflow: hidden;

    margin-top: 60px;

    position: relative;
}

.partner-track {

    display: flex;

    width: calc(250px * 10);

    animation: scrollLogo 30s linear infinite;
}

.partner-logo {

    width: 250px;

    height: 140px;

    background: white;

    border-radius: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-right: 25px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}

.partner-logo img {

    max-width: 140px;

    max-height: 90px;

    filter: grayscale(100%);

    transition: .4s;
}

.partner-logo:hover img {

    filter: grayscale(0%);
}

.partner-logo:hover {

    transform: translateY(-8px);
}

@keyframes scrollLogo {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-section {

    padding: 100px 0;

    background:
    linear-gradient(
    180deg,
    #f8f7ff 0%,
    #ffffff 100%);

    overflow: hidden;
}

.testimonial-card {

    background: rgba(255,255,255,.85);

    backdrop-filter: blur(15px);

    border-radius: 30px;

    padding: 35px;

    position: relative;

    min-height: 320px;

    border: 1px solid rgba(255,255,255,.5);

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.quote-icon {

    position: absolute;

    top: 25px;
    right: 25px;

    font-size: 50px;

    color: rgba(91,75,255,.12);
}

.stars {

    color: #ffb400;

    font-size: 22px;

    margin-bottom: 20px;
}

.testimonial-card p {

    font-size: 17px;

    line-height: 1.9;

    color: #555;
}

.testimonial-user {

    display: flex;

    align-items: center;

    margin-top: 30px;
}

.testimonial-user img {

    width: 70px;
    height: 70px;

    border-radius: 50%;

    object-fit: cover;

    margin-right: 15px;

    border: 3px solid #5b4bff;
}

.testimonial-user h5 {

    margin: 0;

    font-weight: 700;

    color: #1b1642;
}

.testimonial-user span {

    color: #777;
}

.presence-section {

    padding: 100px 0;

    background:
    linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f9ff 100%);
}

.presence-map {

    position: relative;

    text-align: center;
}

.presence-map img {

    max-height: 500px;
}

.map-dot {

    width: 16px;
    height: 16px;

    background: #ff5b84;

    border-radius: 50%;

    position: absolute;

    animation: pulse 2s infinite;
}

.dot1 {
    top: 25%;
    left: 35%;
}

.dot2 {
    top: 35%;
    left: 45%;
}

.dot3 {
    top: 48%;
    left: 38%;
}

.dot4 {
    top: 58%;
    left: 42%;
}

.dot5 {
    top: 68%;
    left: 48%;
}

@keyframes pulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.presence-card {

    padding: 35px;

    border-radius: 25px;

    text-align: center;

    color: white;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
}

.presence-card h3 {

    font-size: 48px;

    font-weight: 800;

    margin-bottom: 10px;
}

.presence-card p {

    margin: 0;

    font-size: 18px;

    font-weight: 600;
}

.purple {
    background: linear-gradient(135deg,#6a5cff,#4f46e5);
}

.teal {
    background: linear-gradient(135deg,#00c9a7,#00a693);
}

.orange {
    background: linear-gradient(135deg,#ffb347,#ff8f00);
}

.pink {
    background: linear-gradient(135deg,#ff6b9e,#ff4d80);
}

.presence-content {

    margin-top: 40px;
}

.presence-content h4 {

    font-size: 30px;

    font-weight: 700;

    color: #1b1642;

    margin-bottom: 20px;
}

.presence-content p {

    color: #64748b;

    line-height: 1.8;
}

.presence-btn {

    display: inline-block;

    margin-top: 20px;

    background: #5b4bff;

    color: white;

    padding: 14px 35px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;
}

.global-presence-section {

    padding: 100px 0;

    background:
    linear-gradient(
    135deg,
    #f6f8ff,
    #eefaff);
}

.world-map-wrapper {

    position: relative;

    max-width: 1100px;

    margin: 60px auto;
}

.world-map {

    width: 100%;

    opacity: .95;
}

.country-pin {

    position: absolute;

    width: 18px;
    height: 18px;

    background: #ff5b84;

    border-radius: 50%;

    animation: pulse 2s infinite;
}

.country-pin span {

    position: absolute;

    top: -35px;
    left: -20px;

    background: white;

    padding: 6px 12px;

    border-radius: 20px;

    font-size: 12px;

    font-weight: 600;

    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

/* Approximate Locations */

.india {
    top: 52%;
    left: 67%;
}

.uae {
    top: 47%;
    left: 60%;
}

.uk {
    top: 28%;
    left: 47%;
}

.usa {
    top: 35%;
    left: 20%;
}

.canada {
    top: 22%;
    left: 20%;
}

.australia {
    top: 75%;
    left: 82%;
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(255,91,132,.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255,91,132,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,91,132,0);
    }
}

.global-stat {

    background: white;

    padding: 30px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.global-stat h3 {

    font-size: 42px;

    font-weight: 800;

    color: #5b4bff;
}
.franchise-cta-section {

    padding: 100px 0;

    background:
    linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fbff 100%);
}

.franchise-cta {

    background:
    linear-gradient(
    135deg,
    #1d2142 0%,
    #35206a 100%);

    border-radius: 35px;

    padding: 70px;

    position: relative;

    overflow: hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,.15);
}

.franchise-cta::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
    rgba(255,255,255,.05);

    top: -150px;
    right: -100px;
}

.franchise-cta::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
    rgba(0,201,167,.08);

    bottom: -100px;
    left: -100px;
}

.cta-badge {

    display: inline-block;

    background: rgba(255,255,255,.12);

    color: #fff;

    padding: 10px 20px;

    border-radius: 50px;

    font-size: 14px;

    margin-bottom: 20px;
}

.franchise-cta h2 {

    font-size: 56px;

    font-weight: 800;

    color: white;

    margin-bottom: 20px;
}

.franchise-cta h2 span {

    color: #00d4c8;
}

.franchise-cta p {

    font-size: 20px;

    line-height: 1.8;

    color: rgba(255,255,255,.85);

    max-width: 700px;
}

.cta-stats {

    display: flex;

    gap: 50px;

    margin-top: 35px;
}

.cta-stats h4 {

    color: #ffb347;

    font-size: 36px;

    font-weight: 800;

    margin-bottom: 5px;
}

.cta-stats span {

    color: white;
}

.cta-btn {

    background:
    linear-gradient(
    135deg,
    #ffb347,
    #ff8f00);

    color: #1d2142;

    padding: 18px 40px;

    border-radius: 60px;

    text-decoration: none;

    font-size: 20px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    transition: .4s;
}

.cta-btn:hover {

    transform: translateY(-5px);

    color: #1d2142;
}

.softbrain-footer {

    background:
    linear-gradient(
    135deg,
    #1b1642,
    #241c57);

    color: white;

    padding-top: 80px;

    position: relative;
}

.softbrain-footer::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 6px;

    background:
    linear-gradient(
    90deg,
    #5b4bff,
    #00c9a7,
    #ff9f1c,
    #ff5b84);
}

.footer-logo img {

    max-height: 80px;

    margin-bottom: 20px;
}

.footer-about {

    color: rgba(255,255,255,.75);

    line-height: 1.9;
}

.softbrain-footer h4 {

    margin-bottom: 25px;

    font-weight: 700;

    color: white;
}

.softbrain-footer ul {

    list-style: none;

    padding: 0;
}

.softbrain-footer ul li {

    margin-bottom: 12px;
}

.softbrain-footer ul li a {

    color: rgba(255,255,255,.75);

    text-decoration: none;

    transition: .3s;
}

.softbrain-footer ul li a:hover {

    color: #00c9a7;

    padding-left: 5px;
}

.footer-contact p {

    color: rgba(255,255,255,.75);

    margin-bottom: 15px;
}

.footer-contact i {

    color: #ff9f1c;

    margin-right: 10px;
}

.footer-social {

    margin-top: 25px;
}

.footer-social a {

    width: 45px;
    height: 45px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.08);

    border-radius: 50%;

    margin-right: 10px;

    color: white;

    text-decoration: none;

    transition: .3s;
}

.footer-social a:hover {

    background: #5b4bff;

    transform: translateY(-4px);
}

.footer-bottom {

    padding: 20px 0 30px;
}

.footer-bottom a {

    color: #00c9a7;

    text-decoration: none;
}

.softbrain-footer hr {

    border-color:
    rgba(255,255,255,.12);

    margin-top: 50px;
}
.developer-strip {

    background: #151233;

    padding: 10px 0;

    border-top: 1px solid rgba(255,255,255,.08);

    margin-top: 0;
}

.developer-content {

    text-align: center;

    color: rgba(255,255,255,.75);

    font-size: 14px;

    letter-spacing: .5px;
}

.developer-content a {

    color: #00c9a7;

    text-decoration: none;

    font-weight: 700;
}

.developer-content a:hover {

    color: #ffffff;
}
.developer-strip {

    width: 100%;

    background: #151233;

    padding: 15px 0;

    border-top: 1px solid rgba(255,255,255,.08);
}

.developer-content {

    text-align: center;

    color: rgba(255,255,255,.75);

    font-size: 14px;

    letter-spacing: .5px;

    font-weight: 500;
}

.developer-content a {

    color: #00c9a7;

    text-decoration: none;

    font-weight: 700;

    margin-left: 5px;

    transition: .3s;
}

.developer-content a:hover {

    color: #ffffff;
}
.developer-strip {

    width: 100vw;

    margin-left: calc(50% - 50vw);

    background: #151233;

    padding: 18px 0;

    border-top: 1px solid rgba(255,255,255,.08);
}

.developer-content {

    text-align: center;

    color: rgba(255,255,255,.75);

    font-size: 14px;

    font-weight: 500;

    letter-spacing: .5px;
}

.developer-content a {

    color: #00c9a7;

    text-decoration: none;

    font-weight: 700;
}

.developer-content a:hover {

    color: #ffffff;
}

.softbrain-footer {

    padding-top: 80px;
    padding-bottom: 20px;   /* Change this */
}

.success-card {

    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0,0,0,.08);

    transition: .4s;

    height: 100%;
}

.success-card:hover {

    transform: translateY(-10px);
}

.success-img {

    height: 260px;

    overflow: hidden;
}

.success-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.success-card:hover img {

    transform: scale(1.05);
}

.success-content {

    padding: 25px;
}

.success-content h4 {

    font-size: 24px;

    font-weight: 700;

    color: #1b1642;

    margin-bottom: 10px;
}

.student-rank {

    color: #ff9f1c;

    font-weight: 700;

    margin-bottom: 15px;

    font-size: 16px;
}

.success-content p {

    color: #64748b;

    line-height: 1.8;

    min-height: 90px;
}

.success-btn {

    display: inline-block;

    background: #5b4bff;

    color: white;

    text-decoration: none;

    padding: 10px 22px;

    border-radius: 30px;

    font-weight: 600;

    margin-top: 10px;
}

.success-btn:hover {

    background: #4338ca;

    color: white;
}

.achievement-badge {

    display: inline-block;

    background: #fff4d6;

    color: #ff9f1c;

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 15px;
}
.success-img {

    background: white;

    padding: 10px 10px 25px;

    border-radius: 15px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.12);

    display: inline-block;
}

.success-img img {

    width: 180px;

    height: 220px;

    object-fit: cover;

    border-radius: 10px;
}
.success-card {

    background: #fff;

    border-radius: 30px;

    padding: 30px 25px;

    text-align: center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition: .4s;

    height: 100%;
}

.success-card:hover {

    transform: translateY(-8px);
}

.success-img {

    display: flex;

    justify-content: center;

    margin-bottom: 25px;
}

.success-img img {

    width: 220px;

    height: 280px;

    object-fit: cover;

    border-radius: 18px;

    background: #fff;

    padding: 8px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.15);
}

.success-content h4 {

    font-size: 24px;

    font-weight: 700;

    color: #1b1642;

    margin-bottom: 12px;
}

.achievement-badge {

    display: inline-block;

    background: #fff4d6;

    color: #ff9f1c;

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 18px;
}

.success-content p {

    color: #64748b;

    line-height: 1.8;

    min-height: 90px;

    margin-bottom: 20px;
}

.success-btn {

    background: #5b4bff;

    color: white;

    padding: 10px 25px;

    border-radius: 30px;

    text-decoration: none;

    display: inline-block;

    font-weight: 600;
}
.dropdown-custom {

    position: relative;
}

.dropdown-menu-custom {

    position: absolute;

    top: 100%;
    left: 0;

    min-width: 250px;

    background: #ffffff;

    border-radius: 0 0 12px 12px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    padding: 10px 0;

    list-style: none;

    margin: 0;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: all .3s ease;

    z-index: 999;
}

.dropdown-custom:hover .dropdown-menu-custom {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.dropdown-menu-custom li a {

    display: block;

    padding: 14px 22px;

    color: #1b1642;

    font-size: 15px;

    font-weight: 500;

    text-decoration: none;

    transition: .3s;
}

.dropdown-menu-custom li a:hover {

    background: #f5f7ff;

    color: #5b4bff;

    padding-left: 28px;
}
.dropdown-menu-custom {

    border-top:
    4px solid #ff6b35;
}
.dropdown-menu-custom li a:hover {

    background: #fff5ef;

    color: #ff6b35;
}

.course-dropdown {
    position: relative;
}

.course-menu {

    position: absolute;

    top: 100%;

    left: 0;

    width: 700px;

    background: #fff;

    border-radius: 0 0 15px 15px;

    overflow: hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: all .3s ease;

    z-index: 9999;
}

.course-dropdown:hover .course-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.course-image {

    height: 100%;
}

.course-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.course-links {

    padding: 25px;
}

.course-links a {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 15px;

    color: #1b1642;

    text-decoration: none;

    border-radius: 10px;

    font-weight: 600;

    transition: .3s;
}

.course-links a:hover {

    background: #f7f7ff;

    color: #ff7b3d;

    transform: translateX(5px);
}

.course-links i {

    width: 35px;

    height: 35px;

    line-height: 35px;

    text-align: center;

    border-radius: 50%;

    background: #f2f4ff;

    color: #5b4bff;
}

.navbar-nav > li > a
{
    padding: 30px 10px;
    font-size:16px;
}
.btn-demo
{
    background:#ff6f30;
    color:#fff;
    padding:12px 20px;
    border-radius:30px;
    font-size:18px;
    font-weight:600;
}
.topbar-right{
    display:flex;
    align-items:center;
    gap:10px;
}

/* Buttons */

.top-btn{
    display:flex;
    align-items:center;
    gap:6px;
    padding:8px 16px;
    border-radius:30px;
    text-decoration:none;
    color:#fff;
    font-size:13px;
    font-weight:600;
    transition:all .3s ease;
}

.register-btn{
    background:#ff7a3d;
}

.register-btn:hover{
    background:#ff6220;
    color:#fff;
    transform:translateY(-2px);
}

.login-btn{
    background:#1d2b6b;
}

.login-btn:hover{
    background:#15204f;
    color:#fff;
    transform:translateY(-2px);
}
/* ===========================
   TOP BAR
=========================== */

.topbar {

    background: #1d1447;

    padding: 10px 0;

    font-size: 14px;

    color: #fff;
}

.topbar-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;
}

/* LEFT */

.topbar-left {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}

.topbar-item {

    color: #fff;

    display: flex;

    align-items: center;

    gap: 8px;
}

.topbar-item a {

    color: #fff;

    text-decoration: none;
}

.topbar-item i {

    color: #ff7a3d;
}

.divider {

    width: 1px;

    height: 15px;

    background: rgba(255,255,255,.25);
}

/* RIGHT */

.topbar-right {

    display: flex;

    align-items: center;

    gap: 15px;
}

/* BUTTONS */

.topbar-actions {

    display: flex;

    gap: 10px;
}

.top-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    text-decoration: none;

    padding: 9px 18px;

    border-radius: 50px;

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    transition: .3s;

    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

.register-btn {

    background: linear-gradient(
        135deg,
        #ff8a4d,
        #ff6b35
    );
}

.login-btn {

    background: linear-gradient(
        135deg,
        #38217c,
        #24195d
    );
}

.top-btn:hover {

    color: #fff;

    transform: translateY(-3px);
}

/* SOCIAL */

.topbar-social {

    display: flex;

    gap: 8px;
}

.social {

    width: 34px;

    height: 34px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #fff;

    transition: .3s;
}

.facebook {
    background: #1877f2;
}

.instagram {
    background: #e4405f;
}

.whatsapp {
    background: #25d366;
}

.social:hover {

    transform: translateY(-3px);

    color: #fff;
}

/* MOBILE */

@media(max-width:991px) {

    .topbar-inner {

        flex-direction: column;

        gap: 12px;

        text-align: center;
    }

    .topbar-left {

        justify-content: center;
    }

    .topbar-right {

        flex-direction: column;

        gap: 12px;
    }

    .divider {

        display: none;
    }
}