@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
/********** Template CSS **********/
:root {
    --primary: #DC3545;
    --secondary: #46443e;
    --light: #F5F5F5;
    --dark: #000;
}

body{
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.text-justify{
    text-align: justify;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}
.btn-link {
    text-decoration: none;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background-color: var(--primary);
    overflow: visible; /* Allow slant to extend outside */
    z-index: 1;
}

.topbar-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px; /* Enough width to make skew visible */
    height: 100%;
    background-color: var(--primary);
    transform: skewX(-30deg);
    transform-origin: top left;
    z-index: -1;
}



/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 35px; 
    height: 75px;
    display: flex;
    align-items: center;
    /* background: var(--primary); */
}

.navbar .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.site-logo {
    max-height: 70px;
    width: auto;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }

    .site-logo {
        max-height: 60px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
        transition: .5s;
    }
}

@media (max-width: 576px) {
    .topbar-right {
        font-size: 12px;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .site-logo {
        max-height: 100px;
    }
}



/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/img/Banner.webp') center center / cover no-repeat;
  z-index: 0;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, .56));
  z-index: 1;
}


/* marquee */
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite; 
  }

  .marquee-track:hover {
    animation-play-state: paused;
  }

/* Milestone Card Hover Effect */
.milestone-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.milestone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}

/* Background for countdown container */
.countdown-bg {
    background: url('../img/Banner03.jpg') no-repeat center top / cover;
}

.countdown-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.countdown-content {
    z-index: 2;
    position: relative;
}

.countdown-text-shadow {
    text-shadow: 0 0 5px rgba(0,0,0,0.7);
}


/* Mentor Cards */
.mentor-card img {
    border-radius: 10px;
    object-fit: cover;
    max-height: 300px;
}


/* HighLight */
.highlight-carousel {
    position: relative;
}

.highlight-carousel .highlight-item img {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    object-fit: cover;
}

.highlight-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.highlight-carousel .owl-dot {
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #dddddd;
    border-radius: 2px;
    transition: 0.5s;
}

.highlight-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.highlight-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.highlight-carousel .owl-item .highlight-item {
    transition: 0.5s;
}

.highlight-carousel .owl-item.center .highlight-item {
    background: #ffffff !important;
    box-shadow: 0 0 30px #dddddd;
}

.highlight-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    color: #dc3545;
    border: none;
    border-radius: 50%;
    font-size: 48px;
    padding: 10px 14px;
}

.highlight-carousel .owl-nav button.owl-prev,
.highlight-carousel .owl-nav button.owl-next {
    background-color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 11111;
    transition: background-color 0.3s ease;
}

.highlight-carousel .owl-nav button.owl-prev:hover,
.highlight-carousel .owl-nav button.owl-next:hover {
    background-color: #bb2d3b;
}


/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .testimonial-item {
    transition: 0.5s;
}

.testimonial-carousel .testimonial-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

/* Center active item */
.testimonial-carousel .owl-item.center .testimonial-item {
    background: #ffffff !important;
    box-shadow: 0 0 30px #dddddd;
}

/* Carousel Dots */
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.testimonial-carousel .owl-dot {
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #dddddd;
    border-radius: 2px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

/* Carousel Navigation */
.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    color: #dc3545;
    border: none;
    border-radius: 50%;
    font-size: 48px;
    padding: 10px 14px;
}

.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next {
    background-color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 11;
    transition: background-color 0.3s ease;
}

.testimonial-carousel .owl-nav button.owl-prev:hover,
.testimonial-carousel .owl-nav button.owl-next:hover {
    background-color: #bb2d3b;
}

/* ambassador-carousel */
.ambassador-carousel {
    position: relative;
}

.ambassador-carousel .highlight-item img {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    object-fit: cover;
}

.ambassador-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.ambassador-carousel .owl-dot {
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #dddddd;
    border-radius: 2px;
    transition: 0.5s;
}

.ambassador-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.ambassador-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.ambassador-carousel .owl-item .highlight-item {
    transition: 0.5s;
}

.ambassador-carousel .owl-item.center .highlight-item {
    background: #ffffff !important;
    box-shadow: 0 0 30px #dddddd;
}

.ambassador-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    color: #dc3545;
    border: none;
    border-radius: 50%;
    font-size: 48px;
    padding: 10px 14px;
}

.ambassador-carousel .owl-nav button.owl-prev,
.ambassador-carousel .owl-nav button.owl-next {
    background-color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 11111;
    transition: background-color 0.3s ease;
}

.ambassador-carousel .owl-nav button.owl-prev:hover,
.ambassador-carousel .owl-nav button.owl-next:hover {
    background-color: #bb2d3b;
}

/* Footer Styling */
footer {
    background-color: white;
    color: #333; /* Dark text for contrast */
}

footer .footer-text {
    font-size: 16px;
    line-height: 1.5;
}

footer .footer-social a {
    color: #333 !important; /* Dark social icons */
    font-size: 18px;
}

footer .footer-social a:hover {
    color: #007bff; /* Change on hover */
}

footer .footer-link {
    text-decoration: none;
    color: #333;
}

footer .footer-link:hover {
    color: #007bff;
}

footer .text-dark {
    color: #333 !important;
}

footer hr.border-light {
    border-color: #e0e0e0;
}

/* Ensure image is responsive */
footer img {
    max-width: 100%;
    height: auto;
}

/* Bottom Footer Text Styling */
footer .footer-text {
    font-size: 16px;
}

footer .d-flex.justify-content-between {
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .d-flex a {
    text-decoration: none;
    color: #333;
}

footer .d-flex a:hover {
    color: #007bff;
}

/* background */
.bg-header {
    background: linear-gradient(rgba(220, 53, 69, .8), rgba(220, 53, 69, .5)), url(../img/header-bg.webp) center center no-repeat;
    background-size: cover;
}

/* Journey */
.timeline {
    border-left: 3px solid var(--bs-danger);
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1.5px;
    height: 100%;
    width: 3px;
    background: var(--bs-danger);
}

.timeline-item {
    position: relative;
}

.timeline-icon {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.seminar-card {
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    color: #212529;
}

.seminar-card:hover {
    background-color: var(--bs-primary);
    color: #fff;
    transform: translateY(-5px);
}

.seminar-card:hover .text-primary,
.seminar-card:hover .card-title,
.seminar-card:hover i {
    color: #fff !important;
}


/* Partners Logo */
.partner-logo {
  max-height: 80px; /* uniform height */
  object-fit: contain; /* preserve logo aspect ratio */
  transition: transform 0.3s;
}
.partner-logo:hover {
  transform: scale(1.1);
}
@media(max-width: 768px) {
  .partner-logo {
    max-height: 60px;
  }
  .carousel-inner .d-flex > div {
    flex: 1 0 45%; /* 2 logos per row on mobile */
    margin-bottom: 10px;
  }
}


/* Gallery */
.hover-zoom {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-zoom:hover {
  transform: scale(1.05);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.video-thumb .play-icon {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-thumb:hover .play-icon {
  opacity: 1;
}

/* WhatsApp CSS */
.Whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    /*box-shadow: 2px 2px 3px #999;*/
    z-index:100;
}

.Whatsapp-my-float{
    margin-top:14px;
}

/* Registration Progress Steps */
.progress-steps {
    position: relative;
}

/* Each Step */
.progress-steps li {
    width: 25%;
    text-align: center;
    position: relative;
    z-index: 3;
    color: #bfbfbf;
    font-weight: 600;
}

/* Step Icon */
.progress-steps .step-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #d6d6d6;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 5px;
    font-size: 18px;
}

/* Active Step (RED) */
.progress-steps li.active {
    color: #dc3545;
}

.progress-steps li.active .step-icon {
    background: #dc3545;
}

/* Background Line */
.progress-steps::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 8%;
    width: 84%;
    height: 4px;
    background: #d6d6d6;
    border-radius: 3px;
    z-index: 1;
}

/* Filled Progress Line (RED) */
.progress-bar-line-fill {
    position: absolute;
    top: 22px;
    left: 8%;
    height: 4px;
    width: 0%;
    background: #dc3545;
    border-radius: 3px;
    transition: width 0.35s ease;
    z-index: 2;
}


