/* FONT FACE */
@font-face {
    font-family: 'Sora-Bold';
    src: url('../fonts/Sora-Bold.ttf');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sora-SemiBold';
    src: url('../fonts/Sora-SemiBold.ttf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sora-ExtraBold';
    src: url('../fonts/Sora-ExtraBold.ttf');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit-Regular';
    src: url('../fonts/Outfit-Regular.ttf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SofiaSansCondensed-Black';
    src: url('../fonts/SofiaSansCondensed-Black.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/* ./ FONT FACE */
:root {
    --font-primary: 'Poppins', sans-serif;
    --color-red: #EC2825;
    --color-yellow: #FCD702;
    --color-warning: #FFC107;
    --color-blue: #0D4079;
    --color-cyan-dark: #001D25;
    --color-primary-light: #FCD4D4;   /* Equivalent of the 20% opacity red */
    --color-secondary-light: #FFFBE5; /* Equivalent of the 20% opacity yellow */
    --color-tertiary-light: #E7ECF2;  /* Equivalent of the 10% opacity blue */
    --color-quaternary-light: #E4E8E9;  /* Equivalent of the 10% opacity white blue */
    --color-black: #061C25;
    --color-dark: #2B3037;
    --color-medium-dark: #4C5763;
    --color-medium: #6F7D8B;
    --color-medium-light: #C2C7CF;
    --color-light: #EAECEF;
    --color-ultra-light: #F5F6F9;
    --color-white: #FFFFFF;
    --color-green: #6fb231;
}
html, body {
  overflow-x: hidden;
}
body {
  font-family: 'Outfit-Regular';
  padding-top: 75px;
  font-size: 16px;
  background-color: var(--color-ultra-light);
}
img {
    vertical-align: middle;
    max-width: 100%;
}
h1, h2 {
   font-family: 'Sora-SemiBold';
   margin-bottom: 1rem;
}
h5{
     font-family: 'Sora-SemiBold';
    margin-bottom: 1rem;
}
.text-red {
   font-family: 'Sora-ExtraBold';
   color: var(--color-red);
}
.container {
    max-width: 1170px;
}
.sub-heading{
font-family: 'SofiaSansCondensed-Black';
}
/* button */
.btn {
    border-radius: 50px;
    font-family: 'Sora-ExtraBold';
    font-size: 16px;
    padding: 10px 32px;
}
@media only screen and (max-width: 767px) {
    .btn {
        padding: 10px 25px;
    }
}
.btn-primary {
    color: var(--color-black);;
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}
.btn-primary:hover {
    color: var(--color-white);
    background-color: var(--color-red);
    border-color: var(--color-red);
}
.btn-secondary{
  background-color:var(--color-white);
  border-color:var(--color-black);
  color: var(--color-black);
}
.btn-secondary:hover {
    color: var(--color-black);
    background-color:var(--color-ultra-light);
    border-color:var(--color-black);
}
.btn.btn-arrow {
    position: relative;
}
.btn.btn-arrow {
    margin-right: 48px;
}
.btn.btn-arrow:after {
    content: "";
    display: inline-block;
    width: 46px;
    height: 46px;
    position: absolute;
    right: -48px;
    top: 0;
    border-radius: 50px;
    background-image: url("../images/icon-go.svg");
    background-size: cover;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
/* Header */
.navbar{
    background-color: var(--color-ultra-light) !important;
}
.navbar-nav{
font-family: 'Sora-Bold';
}
.navbar-light .navbar-nav .nav-link{
    color: var(--color-black);
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
}
.dropdown-toggle::after {
    border: none;
    width: 14px;
    height: 8px;
    background-image: url('../images/chevron-down.svg');
    background-size: cover;
    margin-left: 6px;
    background-position: center center;
    position: relative;
    top: 2px;
}
.header-logo {
    width: 115px;
}
/* Done by RSA on 27-08-2025(Start) */
@media (max-width: 1199px) {
    .navbar-light .navbar-nav .nav-link{
        padding-left: 13px;
        padding-right: 13px;
    }
}
/* Done by RSA on 27-08-2025(End) */
@media (max-width: 991px) {
    .offcanvas-collapse {
        position: fixed;
        top: 87px;
        bottom: 0;
        left: 100%;
        width: 100%;
        overflow-y: auto;
        visibility: hidden;
        background-color: var(--color-ultra-light);
        transition: transform .3s ease-in-out, visibility .3s ease-in-out;
    }
    .offcanvas-collapse.open {
        visibility: visible;
        transform: translateX(-100%);
    }
    .btn-enroll {
        margin-right: 16px;
    }
    .navbar-nav .dropdown-menu {
        border-radius: 0px !important;
    }
    .navbar-expand-lg .navbar-toggler{
        display: block;
    }
}
@media (max-width: 575px) {
    .header-logo {
        width: 100px;
    }
    .offcanvas-collapse {
        top: 76px;
    }
}
.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}
.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  color: rgba(255, 255, 255, .75);
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.nav-underline .nav-link {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .875rem;
  color: #6c757d;
}
.nav-underline .nav-link:hover {
  color: #007bff;
}
.nav-underline .active {
  font-weight: 500;
  color: #343a40;
}
.dropdown-menu {
    border-radius: 0;
    border: none;
    border-top: 1px solid #dedede;
    min-width: 220px;
    padding: 10px 0 15px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    color: var(--color-red);
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: var(--color-red);
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--color-red);
    background: transparent;
}
.navbar-nav .dropdown-menu {
    border-radius: 16px;
}
/* toggle */
.navbar-toggler:focus{
    box-shadow: none;
}

 /* Smooth transition */
 .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.dropdown> .dropdown-item.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media all and (min-width: 992px) {
    .dropdown>.dropdown-menu,
    .dropdown.open>.dropdown-menu {
       display: block !important;
       opacity: 0;
       visibility: hidden;
       transition: all ease 0.2s;
    }
    
    .dropdown:hover>.dropdown-menu,
    .dropdown.open:hover>.dropdown-menu {
       opacity: 1;
       visibility: visible;
    }

    /* ✅ Arrow rotates on hover */
    .dropdown:hover > .dropdown-item.dropdown-toggle:after {
        transform: rotate(270deg);
    }  
}
/* Hero */
.hero {
background-color: var(--color-ultra-light);
}
.hero h1{
    font-size: 32px;
}
.animation {
    padding-top: 25%;
}
@media (max-width: 767px) {
    .animation {
        display: none;
    }
}
img.woman {
    position: absolute;
    z-index: 1;
    width: 285px;
    max-width: 100%;
    top: 0;
    left: calc(50% - 200px);
}
img.men {
    position: absolute;
    right: calc(50% + 290px);
    top: -60px;
    width: 95px;
}
img.game {
    position: absolute;
    right: 170px;
    top: 0px;
    width: 140px;
}
img.float-card-1 {
    position: absolute;
    bottom: 40px;
    width: 175px;
    right: calc(50% + 130px);
}
img.float-card-2 {
    position: absolute;
    top: 45px;
    left: calc(50% + 55px);
    width: 200px;
}
/* marquee */
:root {
    --marquee-width: 1440px;
    --marquee-height: 72px;
    /* --marquee-elements: 12; */ /* defined with JavaScript */
    --marquee-elements-displayed: 7;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 5s);
}
.partners-logo{
    background-color: var(--color-white);
}
.marquee {
    width: 100%;
    height: var(--marquee-height);
    overflow: hidden;
    position: relative;
}
.marquee:before, .marquee:after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 1;
}
.marquee:before {
    left: 0;
    background: linear-gradient(to right, #f8f8f8 0%, transparent 100%);
}
.marquee:after {
    right: 0;
    background: linear-gradient(to left, #f8f8f8 0%, transparent 100%);
}
.marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
@keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
ul.marquee-content {
    margin: 0;
    padding: 0;
}
.marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: auto;
    max-height: 100%;
    font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
    white-space: nowrap;
}
.marquee-content li img {
    max-width: 160px;
    max-height: 72px;
    height: auto;
    width: auto;
    padding: 0 40px;
    box-sizing: content-box;
}
@media (max-width: 767px) {
    .marquee-content li img{
        padding: 0 20px;
        max-width: 85px;
    }
}
@media (max-width: 1400px) {
    :root {
        --marquee-width: 1200px;
        --marquee-elements-displayed: 7;
    }
    .marquee:before, .marquee:after { width: 5rem; }
}
/* Trending Courses */
.courses {
    background: var(--color-medium-light);
}
.card-video .time-icon{
    display: inline-block !important;
    width: 20px !important;
    margin-right: 10px;
}
.card-video {
    border-radius: 16px;
    height: 100%;
}
.card-video .card-img-top {
    border-radius: 16px 16px 0 0;
    height: 189px;
    object-fit: cover;
}
.card-video.card-title {
    font-family: 'Sora-Bold';
    
}
.card-video .card-duration {
    display: flex;
    align-items: center;
    border: none;
    padding-top: 0;
}
.card-video .card-arrow {
    position: absolute;
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: 50px;
    top: 12px;
    right: 12px;
}
.card-video .card-arrow img {
    width: 28px !important;
    transform: rotate(-45deg);
    position: absolute;
    left: 8px;
    top: 11px;
}
.card-video .time-text {
    font-size: 14px;
}
.owl-carousel .owl-stage {
        display: flex;
}
.owl-nav {
    position: relative;
    width: 275px;
    margin: 48px auto 0 auto;
}
.owl-nav button {
    position: absolute;
    background-color: var(--color-yellow) !important;
    color: var(--color-white);
    margin: 0;
    transition: all 0.3s ease-in-out;
    width: 46px;
    height: 46px;
    border-radius: 50%;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}
.owl-nav button.owl-prev span, .owl-nav button.owl-next span{
    background-position: center;
    background-repeat: no-repeat;
    background-size: 28px;
    width: 100%;
    height: 100%;
    display: block;
    text-indent: -999px;
    overflow: hidden;
}
.owl-nav button.owl-prev span {
    background-image: url('../images/chevron-back.svg');
}
.owl-nav button.owl-next span {
    background-image: url('../images/chevron-forward.svg');
}
.owl-dots {
  text-align: center;
  padding-top: 15px;
}
.owl-dots button.owl-dot {
    width: 15px;
    height: 6px;
    border-radius: 5px;
    display: inline-block;
    background: var(--color-medium-dark);
    margin: 0 5px;
}
.owl-dots button.owl-dot.active {
  background-color: var(--color-black);
  width: 70px;
}
.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button:focus {
    outline: none;
}
/* Categories */
.categories {
    background-color: var(--color-light);
}
.card-skew {
    background-color: var(--color-ultra-light);
    border: none;
    border-radius: 16px;
    padding: 20px;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
}
.card-skew:hover {
    background: var(--color-red);
    transform: skew(0deg, -5deg);
    color: var(--color-white);
}
.card-skew:hover .card-img, .card-skew:hover .card-body {
    transform: skew(0deg, 5deg);
}
.card-skew .card-body {
    padding: 0;
}
.card-skew .card-img {
    width: 64px;
    height: 64px;
    background-color: var(--color-light);
    border-radius: 8px;
    display: flex;
    justify-content: center;
}
.card-skew:hover .card-img {
    background-color: var(--color-white);
}
.card-skew .card-img img {
    width: 36px;
}
.card-skew .card-title {
    font-family: 'Sora-Bold';
    margin: 16px 0;
}
/* Leading */
.leading {
    background-color: var(--color-white);
}
.card-leading {
    background-color: var(--color-light);
    border: none;
    border-radius: 16px;
    padding: 20px;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
    height: 100%;
}
.card-leading .card-body {
    padding: 0;
}
.card-leading .card-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
}
.card-leading .card-img img {
    width: 100%;
}
.card-leading .card-title {
    font-family: 'Sora-Bold';
    margin: 16px 0;
}
.light-pink {
    border-radius: 0px 60px 0px 60px;
    background-color: var(--color-primary-light);
}
.card-leading.light-pink .card-img{
  background-color: rgba(236, 40, 37, 0.2);
}
.dark-grey {
    border-radius:60px 0px 60px 0px;
    background: var(--color-quaternary-light);
}
.light-grey {
    border-radius: 60px 0px 60px 0px;
    background: var(--color-light);
}
.light-yellow {
    border-radius: 0 60px 0 60px;
    background-color: var(--color-secondary-light);
}
/* Accordion */
.faq {
    background: var(--color-ultra-light);
}
.accordion-header {
    margin-bottom: 16px;
}
.accordion-button{
   background: var(--color-medium-light)!important;
   border-radius: 8px;
}
.accordion-button:focus {
    border-color: unset;
    box-shadow: none;
}
.accordion-item:first-of-type .accordion-button{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}
.accordion-item {
    border: none;
    background-color: var(--color-ultra-light);
}
.accordion-button:not(.collapsed) {
    background: var(--color-light);
    color: var(--color-cyan-dark);
    box-shadow: none;
    border-radius: 8px;
}
.accordion-button:not(.collapsed)::after, .accordion-button.collapsed::after{
    background-size: cover;
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
}
.accordion-button.collapsed::after {
    background-image: url(../images/add-circle.svg);
}
.accordion-button:not(.collapsed)::after{
    background-image: url(../images/close-circle.svg);
}
/* Form */
.contact-form{
    background-color: var(--color-light);
    padding: 80px 0;
    color:  var(--color-white);
}
.contact-form-wrapper {
    background-color: #4A5568;
    border-radius: 30px;
    padding: 60px;
    position: relative;
}
@media only screen and (max-width: 559px) {
    .contact-form-wrapper {
        padding: 25px 25px;
    }
    .contact-form h2 {
        font-size: 30px;
    }
}
@media only screen and (min-width: 992px) {
    .contact-form-wrapper {
        margin-top: 90px;
    }
    .contact-form-wrapper::after{
        content: "";
        background-image: url(../images/post.png);
        background-position: right top;
        background-size: 385px;
        background-repeat: no-repeat;
        position: absolute;
        top: -100px;
        right: 0;
        width: 34%;
        height: 100%;
    }
}
.contact-form h2 {
    font-size: 38px;
    font-family: 'Sora-ExtraBold';
}
.contact-form .form-control {
    background-color: var(--color-ultra-light);
    padding: 16px 16px;
    border-radius: 8px;
    box-shadow: 1px 1px 25px 0px rgba(0, 0, 0, 0.15) inset;
}
.contact-form .input-group-text {
    background: var(--color-medium-light); 
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.contact-form .indian-flag {
    margin-right:5px;
}
.contact-form button {
    width: 100%;
    padding: 16px 20px;
}
.contact-form .send-otp-button {
    background: var(--color-yellow)!important; 
    border: 1px solid var(--color-yellow)!important;
}
#contact-form-modal .send-otp-button {
    background: var(--color-yellow); 
}
.send-otp-button button {
    padding: 0px 6px;
}
.btn-submit-one:disabled, .btn-submit-two:disabled {
    pointer-events: all!important;
    cursor: not-allowed!important;
    opacity: .8!important;
}
.btn-submit-two:disabled:hover {
    background: var(--color-yellow)!important;
    color: var(--color-cyan-dark)!important;
}
.send-otp-button:hover {
    background: var(--color-red)!important;
    border: 1px solid var(--color-red)!important;
}
.send-otp-button:hover .btn-submit-one {
    color: var(--color-white)!important;
}
.send-otp-button:hover:has(.btn-submit-one:disabled) {
    background: var(--color-yellow)!important;
    border: 1px solid var(--color-yellow)!important;
}
.send-otp-button:hover .btn-submit-one:disabled {
    color: var(--color-cyan-dark)!important;
}
@media (max-width: 575px) {
    .mobile-full-input-one {
        display: none;
    }

    .btn-submit-one {
        background: var(--color-yellow);
        border-radius: 30px!important;
        margin-top: 16px;
        padding: 9px 30px!important;
    }

    #contactModal .btn-submit-one {
        margin-top: 0;
    }
}
  
/* Footer */
.footer{
  background-color: var(--color-medium-light);
}
.footer h5 {
    font-size: 20px;
}
.footer-contact ul li {
    display: inline-block;
    vertical-align: middle;
    padding-right: 10px;
}
.footer-contact ul li img {
    margin-right: 10px;
}
.footer-contact ul li a {
    font-size: 14px;
}
footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer ul li a {
    color: var(--color-cyan-dark);
    text-decoration: none;
}
footer ul li a:hover {
    color: var(--color-red);
}
.ft-menu-list {
    padding: 0;
}
footer ul.ft-menu-list li {
    margin-bottom: 10px;
}

/* Done by RSA on 11-08-2025(Start) */
/* -------------------
   Divider and Bottom Footer - CORRECTED
   ------------------- */
.footer-divider {
    border: 0;
    height: 2px!important;
    background-color: var(--color-white); /* The correct WHITE line */
    opacity: 0.75;
    margin: 30px 0;
}
.copyright-text {
    font-size: 0.9rem;
    margin: 0;
}
.footer-legal-links li {
    margin-left: 30px;
}
.footer-legal-links a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.card-body {
    display: flex;
    flex-direction: column;
}
h6.card-title {
    flex-grow: 1;
}
@media (max-width: 991px) {
    .footer-divider {
        margin: 24px 0;
    }
}
@media (max-width: 767px) {
    .footer-legal-links {
        justify-content: center !important;
    }
    .footer-legal-links li {
        margin: 0 15px;
    }
}
@media (max-width: 599px) {
    .owl-dots button.owl-dot {
        width: 6px;
    }
    .owl-dots button.owl-dot.active {
      width: 12px;
    }
}
@media (max-width: 420px) {
    .footer-legal-links li {
        margin: 0 4px;
    }

    .footer-legal-links a {
        font-size: 12px;
    }
}
/* ======================= Form Section Css ======================= */

.form-content {
    position: relative;
    z-index: 2; /* Ensures content is above the image on mobile */
}

.form-control {
    /* background-color: #F7FAFC; 
    border: none;
    border-radius: 12px; */
    padding: 15px 20px;
    /* font-size: 0.95rem;
    box-shadow: none !important; 
    transition: background-color 0.3s ease; */
}

.form-control::placeholder {
    color: #a0aec0;
}

/* .form-control:focus {
    background-color: #ffffff;
} */

.btn-send {
    background-color: var(--color-yellow);
    color: var(--color-cyan-dark);
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-send:hover {
    color: var(--color-white);
    background: var(--color-red);
}

.custom-error {
    color: #ff6b6b;
    font-size: 20px;
    font-weight: bold;
}

.Newloader {
    margin: 0;
    position: fixed;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: 50%;
    z-index: 999999;
    color: black;
}

.toast-body {
    font-weight: 500; 
    font-size: 18px;
}

/* -------------------
   Responsive Design
   ------------------- */

@media (max-width: 575px) {
    .toast-body {
        font-size: 16px!important;
    }
}

@media (max-width: 400px) {
    #failure-toast, .success-toast {
        width: 100%;
    }
}
/* Done by RSA on 11-08-2025(End) */

/* Done by RSA on 05-09-2025(Start) */
/* counter-section(Start) */
.counter-section {
    background-color: var(--color-white)!important;
    padding: 0 0 50px!important;
}
.counter-item {
    text-align: center;
    position: relative;
    padding: 36px 0!important;
    border-radius: 15px!important;
}
.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;      
    transform: translateY(-50%);
    height: 80%;
    width: 1px;
    background-color: var(--color-dark);
}
.counter-number {
    font-size: 3rem; 
    font-weight: bold;
    color: var(--color-white)!important;
    line-height: 1;
    margin-bottom: 10px;
}
.counter-label {
    font-size: 1.1rem;
    color: var(--color-yellow)!important;
}
.counter-section .row {
    background: var(--color-cyan-dark)!important;
    color: var(--color-white)!important;
    border-radius: 16px!important;
}

@media (max-width: 991px) {
    .counter-item:nth-child(even)::after {
        display: none;
    }
}
@media (max-width: 767px) {
    .counter-item::after {
        display: none;
    }
    .counter-item {
        padding: 15px 0;
    }
}
/* counter-section(End) */

/* why-arena-animation(Start) */
.why-arena-animation .left-panel {
    position: relative;
    min-height: 700px;   /* adjust as needed */
    display: flex;
    align-items: center; /* vertical center */
    justify-content: left; /* horizontal center if needed */
    overflow: hidden;
    padding: 3rem;       /* same spacing as before */
}

.why-arena-animation .left-panel .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* behaves like background-size: cover */
    z-index: -1;
    opacity: 0.4;
}

.why-arena-animation .left-panel-content {
    position: relative;
    z-index: 1;
    text-align: left;  /* or center if your screenshot had it centered */
    max-width: 400px;   /* adjust as needed */
}

.why-arena-animation .left-panel-content h2 {
    color: var(--color-red);
}

.why-arena-animation .left-panel-content p {
    color: var(--color-black);
    font-size: 20px;
}

.why-arena-animation .right-panel {
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; /* Space between cards */
    justify-content: center;
    align-items: stretch; /* Make sure all cards stretch to same height */
}

.why-arena-animation .card-container {
    flex: 0 0 calc(33.333% - 1rem); /* 3 cards per row, accounting for gap */
    max-width: calc(33.333% - 1rem);
    height: 180px; /* Fixed height for consistency */
    perspective: 1000px; /* For 3D flip effect */
    cursor: pointer;
}

.why-arena-animation .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.why-arena-animation .card-container:hover .card-inner {
    transform: rotateY(180deg);
}

.why-arena-animation .card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Hide back of the front card */
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.why-arena-animation .card-front {
    background-color: var(--color-red); /* Red color */
    color: var(--color-white);
    z-index: 2;
}

.why-arena-animation .card-back {
    background-color: var(--color-blue); /* Blue color for the back */
    color: var(--color-white);
    transform: rotateY(180deg); /* Start rotated for the back */
    font-size: 0.9rem;
    line-height: 1.3;
}

.why-arena-animation .card-icon {
    font-size: 2.5rem; /* Icon size */
    margin-bottom: 0.5rem;
}

.why-arena-animation .card-title {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (min-width: 1600px) {
    .why-arena-animation .col-lg-4 { width: 50%; }
    .why-arena-animation .col-lg-8 { width: 50%; }
}

@media (max-width: 1300px) {
    .why-arena-animation .card-back-title {
        display: none;
    }
}

@media (max-width: 1199px) {
    .why-arena-animation .right-panel {
        padding: 1rem;
    }
}

@media (max-width: 991px) {
    .why-arena-animation .card-container {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    .why-arena-animation .card-back-title {
        display: block;
    }
}

@media (max-width: 576px) {
    .why-arena-animation .card-container {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .why-arena-animation .left-panel {
        min-height: 400px;
        padding: 1.5rem;
    }
    .why-arena-animation .left-panel-content {
        padding: 1.5rem;
    }
}
/* why-arena-animation(End) */

/* recruiters-testimonials(Start) */

/* Testimonials Section */
.recruiters-testimonials .testimonial-card {
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 0 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.recruiters-testimonials .testimonial-card:hover {
    transform: translateY(-5px);
}

.recruiters-testimonials .testimonial-quote {
    padding: 2rem 2rem 5rem 2rem;
    position: relative;
    min-height: 380px;
}

.recruiters-testimonials .quote-mark {
    font-size: 4rem;
    color: var(--color-yellow);
    font-weight: bold;
    line-height: 1;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    z-index: 1;
}

.recruiters-testimonials .quote-image {
    width: 22px!important;
    filter: sepia(100%) saturate(10000%) hue-rotate(350deg);
}

.recruiters-testimonials .quote-text {
    font-family: 'Outfit-Regular';
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-black);
    margin: 1rem 0 1.5rem 0;
    padding-left: 1rem;
    position: relative;
    z-index: 2;
}

.recruiters-testimonials .read-more {
    color: var(--color-red);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    position: relative;
    z-index: 2;
}

.recruiters-testimonials .testimonial-footer {
    background-color: var(--color-red);
    padding: 2.5rem 2rem 1.5rem; 
    color: white;
    text-align: center;
    border-radius: 0 0 15px 15px;
    position: relative;
    min-height: 160px;
}


.recruiters-testimonials .testimonial-footer .profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    position: absolute;
    top: -40px;   
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
}


.recruiters-testimonials .testimonial-footer .profile-info {
    margin-top: 20px; 
}

.recruiters-testimonials .testimonial-footer .profile-info h6 {
    margin: 0;
    font-family: 'Sora-SemiBold';
    font-weight: 600;
    font-size: 16px;
}

.recruiters-testimonials .testimonial-footer .profile-info p {
    margin: 5px 0px 0px 0px;
    font-family: 'Outfit-Regular';
    font-size: 14px;
    opacity: 0.9;
}

/* Modal Styles */
#testimonialModal .modal-content {
    border-radius: 15px;
    border: none;
    overflow: hidden;
}

#testimonialModal .modal-header {
    background-color: var(--color-red);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    position: relative;
}

#testimonialModal .modal-title {
    font-family: 'Sora-SemiBold';
    font-size: 1.5rem;
    margin: 0;
}

#testimonialModal .modal-body {
    padding: 0;
    position: relative;
}

#testimonialModal .modal-profile-section {
    text-align: center;
    padding: 2rem 2rem 1rem 2rem;
    background: var(--color-white);
}

#testimonialModal .modal-profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-red);
    margin-bottom: 1rem;
}

#testimonialModal .modal-content-section {
    padding: 0 2rem 2rem 2rem;
    background: var(--color-white);
}

#testimonialModal .modal-name {
    font-family: 'Sora-SemiBold';
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

#testimonialModal .modal-title-text {
    font-family: 'Outfit-Regular';
    font-size: 1rem;
    color: var(--color-medium-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

#testimonialModal .modal-quote-text {
    font-family: 'Outfit-Regular';
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-black);
    text-align: left;
    margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
    .recruiters-testimonials .testimonial-quote {
        min-height: 431px;
    }
}

@media (max-width: 991px) {
    .recruiters-testimonials .testimonial-quote {
        min-height: 360px!important;
    }
}

@media (max-width: 767px) {
    .recruiters-testimonials .testimonial-card {
        margin: 0 5px;
    }
    
    .recruiters-testimonials .testimonial-quote {
        padding: 1.5rem;
    }
    
    .recruiters-testimonials .quote-text {
        font-size: 14px;
    }
    
    .recruiters-testimonials .testimonial-footer {
        padding: 1rem 1.5rem;
    }
    
    .recruiters-testimonials .profile-img {
        width: 50px;
        height: 50px;
    }
    
    .recruiters-testimonials .modal-profile-img {
        width: 70px;
        height: 70px;
    }
    .recruiters-testimonials .testimonial-footer .profile-info {
        margin-top: 40px;
    }
}
@media (max-width: 599px) {
    .recruiters-testimonials .testimonial-quote {
        min-height: 270px!important;
    }
}

/* recruiters-testimonials(End) */

/* training-partners(Start) */
.image-row  {
    gap: 50px;
}

.training-partners-logos {
    height: 175px;
}

@media (max-width: 991px) {
    .image-row  {
        gap: 20px;
    }
    
    .training-partners-logos {
        height: 150px;
    }
}

@media (max-width: 767px) {
    .training-partners-logos {
        height: 120px;
    }
}

@media (max-width: 575px) {
    .image-row  {
        gap: 10px;
    }

    .training-partners-logos {
        height: 75px;
    }
}

@media (max-width: 350px) {
    .training-partners-logos {
        height: 65px;
    }
}

/* training-partners(End) */

/* arena-superstars(Start) */

.arena-superstars {
    background-color: var(--color-light)!important;
}

.arena-superstars .record-number {
    color: var(--color-red);
    font-weight: bold; 
    font-size: 18px;
}

.superstars-card {
    position: relative;
    border-radius: 0.625rem;
    overflow: hidden;
    background: var(--color-red);
    box-shadow: -0.25rem -0.25rem 0.625rem var(--color-red) inset,
                0 0.25rem 0.25rem #00000040,
                0.25rem 0.25rem 0.625rem var(--color-red) inset;
    transition: transform .2s ease-in-out;
}
.superstars-card p {
    font-size: 16px;
}
.superstars-card:hover {
    transform: translateY(-5px);
}
.card-background {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}
.profile-picture {
    width: 5rem!important;
    height: 5rem;
    object-fit: cover;
    top: 58%!important;
}
@media (max-width: 767px) {
    .superstars-card p {
        font-size: 14px;
    }
}
@media (max-width: 599px) {
    .superstars-card p {
        font-size: 16px;
    }
}
/* arena-superstars(End) */

/* hands-on-training(Start) */
.hands-on-training {
    background-image: url('/images/hands-on-training.png');
    width: 100%;
    height: 14rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
}

.hands-on-training h2 {
    color: var(--color-white);
}
/* hands-on-training(End) */

/* student-work(Start) */
.student-work .media-content {
    overflow: hidden;
    padding-left: 4rem;
    border: 0.08rem solid black;
    height: 33rem;
    flex-direction: row;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.student-work .image-container {
    position: relative;
    width: 67.67rem!important;
}

.student-work .image-container img, .student-work .media-content .image-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-work .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 5rem!important;
    height: 5rem!important;
    object-fit: cover!important;
}

.student-work .video-player {
    position: absolute;
    top: 0;
    left: 0;
    display: none;   /* hidden until clicked */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-work .media-content .text-content {
    width: 37.42rem;
    height: 52.56rem;
    background: var(--color-red);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.student-work .media-content .text-content .logo {
    width: 7.84rem;
    height: 4.17rem;
    margin-bottom: 1.67rem;
}

.student-work .media-content .text-content p {
    width: 22rem;
    height: 11rem;
    color: #f3f3f3;
    font-family: Nunito,sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.73rem;
    text-align: center;
}

@media (max-width: 991px) {
    .student-work .media-content {
      flex-direction: column;   /* stack image + text */
      height: auto;             /* let it grow naturally */
      text-align: center;       /* center align text */
      gap: 1rem;              /* reduce spacing */
      padding-left: 0rem;
      border: none;
    }
  
    .student-work .image-container {
      width: 100% !important;   /* make image full width inside border */
      max-width: 30rem;         /* but limit max size so it's neat */
      margin: 0 auto;           /* center horizontally */
    }
  
    .student-work .text-content-responsive {
      padding: 0.5rem;
    }
  
    .student-work .text-content-responsive p {
      font-size: 1.25rem;       /* bigger, heading-like */
      font-weight: 600;
      color: var(--color-red);
    }
  }
/* student-work(End) */

/* Done by RSA on 05-09-2025(End) */


/* Done by RSA on 18-09-2025(Start) */
.otp-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 15px 0;
}

.otp-input {
    width: 55px;
    height: 55px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: all 0.2s ease;
}

.otp-input:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
    transform: scale(1.05);
}

.resend-container {
    text-align: center;
    font-size: 17px;
}

.resend-btn {
    background: none;
    border: none;
    color: var(--color-blue);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.resend-btn:disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: none;
}

.timer {
    font-weight: bold;
    margin-left: 5px;
}

@media (max-width: 480px) {
    .otp-input {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .otp-container {
        gap: 8px;
    }
}
/* Done by RSA on 18-09-2025(End) */


/* Done by RSA on 20-09-2025(Start) */
.dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
    width: 95%;
    margin-left: 2px;
}

.dropdown-menu .dropdown-menu .dropdown-item {
    white-space: normal;
}

@media (max-width: 991px) {
    /* Make nested dropdowns appear below their parent item */
    .nav-item.dropdown .dropdown-menu .dropdown-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        border-top: 1px solid #dedede;
        background: var(--color-primary-light);
    }

    .nav-item.dropdown {
        position: relative !important;
    }

    /* Arrow toggle rotation */

    .submenu-toggle-active::after {
        transform: rotate(180deg);
    }
}



/* Done by RSA on 20-09-2025(End) */
