/********** Template CSS **********/

/* Animation keyframes */
@keyframes slideUpFade {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.hero-section {
      /* background: linear-gradient(to bottom right, #2c2c2c, #1a1a1a); */
      color: white;
      border-radius: 12px;
      padding: 40px 30px;
      position: relative;
      overflow: hidden;
      
    }

    .hero-section .highlight {
      color: #F4DD8A; /* Yellow-Green Highlight */
      font-weight: bold;
    }

    .yellow-bar {
      position: absolute;
      right: 0;
      top: 15%;
      width: 50px;
      height: 70%;
      background: #F4DD8A;
      border-radius: 4px;
    }

    .yellow-strip {
      position: absolute;
      bottom: 0;
      left: 30%;
      width: 40%;
      height: 15px;
      background: #F4DD8A;
      border-radius: 4px;
    }

    .person-img {
      max-width: 100%;
      height: auto;
      z-index: 2;
      position: relative;
    }

    @media (max-width: 992px) {
      .yellow-bar {
        display: none;
      }
      .yellow-strip {
        left: 20%;
        width: 60%;
      }
    }

/* Common animation class */
.impact-card {
  animation: slideUpFade 1s ease forwards;
  opacity: 0; /* Start hidden */
}

/* Staggered animation delay like a ladder */
.impact-card:nth-of-type(1) {
  animation-delay: 0.2s;
}

.impact-card:nth-of-type(2) {
  animation-delay: 0.5s;
}

.impact-card:nth-of-type(3) {
  animation-delay: 0.8s;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.container .col-lg-6:first-child {
  animation: slideInLeft 1s ease-out forwards;
}

.container .col-lg-6:last-child {
  animation: slideInRight 1s ease-out forwards;
}

.connect-form {
    background-color: #1a1a1a;
    max-width: 700px;
    width: 100%;
    border: 5px solid white;
  }

  .connect-form h2 {
    font-size: 2.5rem;
  }

  .connect-form p,
  .connect-form input,
  .connect-form textarea,
  .connect-form button {
    font-size: 1.1rem;
  }

  .connect-form input,
  .connect-form textarea {
    padding: 1rem;
  }

  .connect-form button {
    padding: 0.75rem;
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .connect-form h2 {
      font-size: 2rem;
    }

    .connect-form p,
    .connect-form input,
    .connect-form textarea,
    .connect-form button {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .connect-form h2 {
      font-size: 1.75rem;
    }

    .connect-form p,
    .connect-form input,
    .connect-form textarea,
    .connect-form button {
      font-size: 0.95rem;
    }
  }
.category {
  background-color: #000;
  color: #fff;
}

.category .content {
  background-color: #111;
  border: 2px solid #fff;
  transition: transform 0.3s, background-color 0.3s;
  border-radius: 15px;
  height: 100%;
  color: #fff;
}

.category .content:hover {
  transform: translateY(-5px);
  background-color: #222;
}

.category h2,
.category p {
  color: #fff !important; /* force white text */
}

.category h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.category p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.category a,
.category a:hover,
.category a:focus,
.category a:visited {
  color: #fff !important;
  text-decoration: none;
}

@media (max-width: 768px) {
  .category h2 {
    font-size: 1.5rem;
  }

  .category p {
    font-size: 1rem;
  }
}
.brand-name {
    display: inline-block;
    font-size: 2rem;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
  }

  .brand-name::before,
  .brand-name::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: white;
    z-index: 1;
    animation: revealText 1s ease-out forwards;
  }

  .brand-name::before {
    left: 0;
    transform: translateX(-100%);
    animation-delay: 0s;
  }

  .brand-name::after {
    right: 0;
    transform: translateX(100%);
    animation-delay: 0.2s;
  }

  @keyframes revealText {
    to {
      transform: translateX(0);
      background: transparent;
    }
  }

/* Privacy and policy and confidential notice css */

  .modal-overlay{
    position: fixed;
    inset: 0;                 /* top:0; right:0; bottom:0; left:0; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
    z-index: 9999;
  }
  .modal-overlay.show{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Modal box */
  .modal-box{
    background: #fff;
    color: #111;
    border-radius: 10px;
    width: min(520px, 94%);
    padding: 20px 22px;
    position: relative;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  }

  /* Close button */
  .close-btn{
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 22px;
    line-height: 1;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #111;
  }

  /* Optional: make the footer links look like links if you use buttons instead */
  .footer-link { cursor: pointer; }

  .badge-responsive {
  display: inline-block;
  white-space: normal; /* Allow text to wrap */
  text-align: center;
  width: 100%; /* Take full container width */
  font-size: clamp(0.9rem, 2.5vw, 1.2rem); /* Scales between mobile & desktop */
  padding: 0.6em 1em;
  background-color: #F4DD8A;
  border-radius: 50px;
  font-weight: 600;
}
/* Gallery */
.gallery-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

@media (max-width: 576px) {
  .gallery-img img {
    height: 200px;
  }
}

/* end */
.gallery-img {
    width: 300px;
    height: 300px;
    object-fit: cover; /* Ensures no distortion, crops excess */
    border-radius: 8px; /* Optional for rounded corners */
}

/* Privacy policy code end */

body{
    background-color: black;
}
.brand-name {
    font-size: calc(3rem + 1vw); /* Responsive text size */
    font-weight: 1900;
    color: #f7f2f2;
    transition: all 0.3s ease-in-out;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
  }

  .brand-name:hover {
    color: #ffffff;
    transform: scale(1.05);
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.6);
  }

  @media (max-width: 576px) {
    .brand-name {
      font-size: 1.75rem;
    }
  }
:root {
    /* --primary: #f69050; */
    --primary:     #03080e;
    /* --light: #F0FBFC; */
    --light:  #065bbb;
    --light: #f0e4de;
    --dark: #181d38;
}
#one{
    background: linear-gradient(135deg,  #065bbb, #9fa6f5, #e8aff4, #bdf6f0, #64f187, #c7b3f5);
    background-size: 400% 400%;
    animation: gradientAnimation 8s ease infinite;
    position: relative;
}

/* Apply blur effect only to the background */
#one::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(8px);
    z-index: -1;
}

/* Smooth gradient animation */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn {
    /* background-color: #fb873f; */
    background-color: #065bbb;
    border: none;
}

.btn a {
    text-decoration: none;
    color: #fff;
}

.btn:hover {
    background: transparent;
    color: var(--primary) !important;
    border: 1px solid var(--primary);
}

.btn:hover a {
    color: var(--primary) !important;
}

.btn-light {
    background-color: var(--light);
}

.btn-light:hover {
    background: transparent;
    color: var(--light) !important;
    border: 1px solid var(--light);
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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 {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    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;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar-toggler-icon {
    /* color: #fb873f; */
    color:  #9AA6B2
    
}

.navbar-toggler {
    border: 2px solid  #065bbb;
    
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header carousel ***/

.header-carousel .owl-carousel-item {
    position: relative;
    height: 100vh;
}

.header-carousel p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 30px;
}

@media (max-width: 1300px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 80vh;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 430px) {

    .header-carousel .owl-carousel-item {
        position: relative;
        height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel h1 {
        font-size: 30px;
        line-height: 30px;
    }

    .header-carousel p {
        margin-top: 20px;
        font-size: 15px;
        line-height: 20px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #FFFFFF; */
    color: #065bbb;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}


.page-header {
    /* background: linear-gradient(rgba(245, 245, 246, 0.7), rgba(243, 243, 245, 0.7)), url(../img/carousel-1.jpg); */
    background-image: url(../img/carousel-1.jpg);
    /* background: linear-gradient(rgb(149, 22, 149), rgb(149, 22, 149)), url(../img/carousel-1.jpg); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    /* background: rgba(15, 23, 43, .7); */
    background:  #9AA6B2;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    transition: .5s;
}


.service-item i {
    color: var(--primary);
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: all .3s ease-in-out;
}

.service-item:hover * {
    color: #fff !important;
}

.course-item img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
}

/*** Categories & Courses ***/

.category .content {
    cursor: pointer;
    transition: .5s;
    
}


.category .content:hover {
    background-color: var(--primary);
    color: #fff;
    /* color: rgb(149, 22, 149); */
}


.category .content h5 a {
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease-in-out;
}

.category .content:hover h5 a {
    color: #fff !important;
}

.category img {
    width: 50px;
    height: 50px;
}

.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
    margin-top: -10px;
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    /* border: 1px solid #CCCCCC; */
    border:1px solid  #ce1212;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 100%;
    border-radius: 50%;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); */
    box-shadow: 0 4px 6px  #ce1212;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 10px 0;
}

.testimonials .testimonial-item .stars i {
  color:  #9AA6B2;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.category .row {
    display: flex;
    flex-wrap: wrap;
}

.category .col-lg-4 {
    display: flex;
    flex-direction: column;
}

.category .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* Prevent horizontal overflow */


/* Ensure container fits on all screens */

