@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/* ===========================
   Root Variables for Reusability
   =========================== */


:root {
    --banner-bg: #1f8ebf;
    --text-color: #ffffff;
    --lightbg: #F5F5F6;
    --font-size: 14px;
    --orange: rgb(243, 160, 42);
}

/* ===========================
   Reset & Base Styling
   =========================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f6f6f6;

}

a {
    text-decoration: none;
    color: inherit;
}

/* modal css start */

  /* Modal backdrop */
  .enq-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 20px;
}

.enq-modal-content {
  background: #fff;
  width: 100%;
  max-width: 420px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  margin: auto; /* This ensures vertical centering when used with flex */
  animation: enq-slideIn 0.3s ease;
}




    @keyframes enq-slideIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

  .enq-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 36px;
  height: 36px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  background-color: var(--banner-bg);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.enq-close-btn:hover {
  background-color: var(--banner-bg);
  color: #fff;
}


    .enq-modal-content h2 {
      background-color: var(--banner-bg);
      color: #fff;
      text-align: center;
      padding: 12px;
      border-radius: 6px;
      margin-bottom: 20px;
    }

    .enq-contact-text {
      text-align: center;
      margin-bottom: 15px;
      font-weight: 600;
      color: var(--banner-bg);
    }

    .enq-contact-text span {
      color: var(--banner-bg);
    }

    .enq-modal-content input,
    .enq-modal-content select,
    .enq-modal-content textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 14px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      resize: vertical;
      transition: border-color 0.3s;
    }

    .enq-modal-content input:focus,
    .enq-modal-content select:focus,
    .enq-modal-content textarea:focus {
      border-color: var(--banner-bg);
      outline: none;
    }

    .enq-modal-content button {
      width: 100%;
      padding: 12px;
      background-color: var(--banner-bg);
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .enq-modal-content button:hover {
      background-color: var(--orange);
    }

    .enq-open-btn {
      margin: 50px auto;
      display: block;
      padding: 12px 24px;
      background-color: #003b9f;
      color: #fff;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .enq-open-btn:hover {
      background-color: #002b7a;
    }

    @media (max-width: 500px) {
      .enq-modal-content {
    width: 100%;
    max-width: 95%;
    padding: 16px;
  }
      .enq-modal-content h2 {
        font-size: 18px;
        padding: 10px;
      }

      .enq-modal-content button {
        font-size: 15px;
        padding: 10px;
      }
    }





/* ===========================
   Tech Banner Styling
   =========================== */
.tech-banner {
    background-color: var(--banner-bg)  ;
    color: var(--text-color);
    padding: 8px 90px;
    font-size: 18px;
    font-weight: 500;

}
.tech-banner .header_section{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-banner ul{
    margin: 0px;
    list-style: none;
    padding: 8px;
}
.tech-banner ul li{
    list-style: none;
    display: inline;
}
.tech-banner ul li i{
    margin: 0px 10px;
}
.tech-banner ul li a:hover{
    color: var(--orange);
}
.tech-banner ul li .fa-whatsapp{
    font-size: 25px;
}
.tech-banner .header_section .enquirenow a{
        border: 2px solid white;
        padding: 5px 20px;
        animation-name: enbtn;
        animation-duration: 1s;
        animation-iteration-count: infinite;
        border-radius: 50px;
}
@keyframes enbtn{
    from{
        background-color: transparent;
    }
    to{
        background-color: var(--orange);
    }
}
.tech-banner .header_section .enquirenow a:hover{
       background-color: var(--orange);
}

.tech-banner .header_section .enquirenow a:first-child{
        margin-right: 5px;
}


@media screen and (max-width:800px){
    .tech-banner{
        padding: 8px 20px;
        font-size: 16px;
    }
    .tech-banner ul li span{
        display: none;
    }

}



/* ===========================
   Navigation Container
   =========================== */
.nav_section nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--lightbg);
    padding: 1px 100px;
    position: relative;
}

.nav_section nav ul {
    margin: 0px;
}

/* ===========================
   Logo Styling
   =========================== */
.logo img {
    max-width: 110px;
    height: auto;
    display: block;
    padding: 10px;
}

/* ===========================
   Mobile Menu Icons
   =========================== */
.menu-icons {
    display: none;
    font-size: 24px;
    color: var(--orange);
    cursor: pointer;
}

/* Initially Hide Close Icon */
#closeMenu {
    display: none;
}

/* ===========================
   Menu List (Desktop)
   =========================== */
.menus ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.menus ul li {
    position: relative;
    padding: 20px 10px;
}

.menus ul li a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    font-weight: 500;
    color: #474747;

}

.menus ul li a::before {
    content: "";
    width: 140%;
    height: 2px;
    background-color: var(--orange);
    position: absolute;
    top: 59px;
    left: -14px;
    transform: scaleX(0.0);
    transform-origin: left;
    transition-property: all;
    transition-duration: .5s;
}

.menus ul li:hover>a {
    color: var(--orange);
}

.menus ul li:hover a::before {
    transform: scaleX(1.0);
}

.menus ul li:last-child a::before {
    opacity: 0;
}




/* ===========================
   First-Level Dropdown (Desktop)
   =========================== */
.menus ul li .dropdown {
    position: absolute;
    top: 99%;
    left: 0;
    background-color: var(--lightbg);
    border-top: 2px solid var(--orange);
    display: none;
    flex-direction: column;
    min-width: 160px;
    z-index: 10;
    margin: 0px;
    padding: 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.menus ul li .dropdown li {
    margin: 0px;
    padding: 0px;
    width: 100%;
}

.menus ul li .dropdown li a::before {
    height: 0px;
}


/* Show dropdown on hover */
.menus ul li:hover>.dropdown {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===========================
   Second-Level Dropdown (Nested)
   =========================== */
.dropdown li {
    position: relative;
}

.dropdown li .dropdown {
    top: 0;
    left: 100%;
    margin-left: -1px;
    display: none;
    border-left: 2px solid var(--orange);
}

.dropdown li:hover>.dropdown {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    padding: 10px 15px;
    white-space: nowrap;
    font-size: 14px;
    background-color: var(--lightbg);

}

.dropdown li a:hover {
    background-color: #eee;
    color: var(--orange);
}

/* Right edge alignment fix */
.menus ul li:last-child .dropdown,
.menus ul li:nth-last-child(2) .dropdown {
    left: auto;
    right: 0;
}

/* ===========================
   Login Link Styling
   =========================== */
.login-link {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--banner-bg);
    padding-left: 30px;
    padding-right: 130px;

}


.login-link i {
    margin-right: 5px;
    color: var(--banner-bg);
}

.login-link i:hover {
    color: var(--orange);
}



/* ===========================
   Mobile Responsive Styling
   =========================== */
@media screen and (max-width: 1172px) {
    .nav_section nav {
        padding: 15px 30px;
    }

    .menu-icons {
        display: block;
    }

    .menus {
        position: absolute;
        top: 63px;
        left: -100%;
        width: 100%;
        background-color: var(--lightbg);
        transition: left 0.3s ease-in-out;
        z-index: 99;
    }

    .menus.active {
        left: 0;
    }

    .menus ul {
        flex-direction: column;
        gap: 0;
    }

    .menus ul li {
        width: 100%;
    }

    .menus ul li a {
        padding: 15px;
        border-bottom: 1px solid #ddd;
        font-size: 15px;
    }

    .menus ul li .dropdown {
        position: static;
        background-color: #f0f0f0;
        border-top: none;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        top: 90%;
    }

    .menus ul li.open .dropdown {
        display: flex;
    }

    .dropdown li .dropdown {
        position: static;
        border-left: none;
        margin-left: 0;
    }

    .dropdown li.open .dropdown {
        display: flex;
    }
}








/* <!-- <---------------------second  section ---------------------> --> */

.sectiontwo {
    display: grid;
    grid-template-columns: 50% 50%;
    background-image: linear-gradient(to bottom right, rgb(253, 253, 237), rgb(223, 233, 235));
    height: 500px;
    overflow: hidden;

}

.graphicheading {
    padding-left: 100px;
    padding-top: 130px;
}

.graphicheading h1 {

    color: var(--banner-bg);
    font-weight: 700;
    padding-bottom: 10px;
    font-size: 60px;
    font-family: "Poppins", sans-serif;
    letter-spacing: -1px;
}

.graphicheading h4 {
    font-weight: 300;
    font-size: 25px;
    color: #333;
}

.graphicheadingbutton {
    margin-top: 20px;
}

.graphicheadingbutton button {
    border-radius: 5px;
    padding: 10px 25px;
    background-color: var(--orange);
    color: rgb(78, 77, 77);
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}



.graphicheadingbutton button:hover {
    background-color: var(--banner-bg);
    color: white;
}

.graphicheadingbutton span button {
    margin-left: 20px;
    background-color: rgb(217, 217, 217);
}

.imagegraphic img{
    width: 100%;
    transform: translateY(-80px);
}


@media screen and (max-width:1303px){
    .imagegraphic img{
    width: 100%;
    transform: translateY(-0px);
}
}


/* ========== Responsive ========== */
@media screen and (max-width: 992px) {
    .sectiontwo {
        display: grid;
        grid-template-columns: 1fr 1fr;

        background-image: linear-gradient(to bottom right, rgb(253, 253, 237), rgb(223, 233, 235));
        height: 673px;

    }

    .sectiontwo {
        grid-template-columns: 1fr;
        padding: 50px 30px;
        text-align: center;
    }

    .graphicheading {
        padding-left: 0px;
        padding-top: 0px;
        text-align: left;
    }

    .graphicheading h1 {
        font-size: 42px;
        padding-top: 0;
    }

    .graphicheading h4 {
        font-size: 23px;
    }

    .graphicheadingbutton {
        display: flex;

        flex-wrap: wrap;
    }

    .graphicheadingbutton span button {
        margin-left: 10px;
        margin-top: 0px;
    }

    .imagegraphic {
        margin-top: 30px;
    }
       .imagegraphic img{
    width: 100%;
    transform: translateY(-100px);
}
}
@media screen and (max-width:600px){
           .imagegraphic img{
            transform: scale(1.2);
           }
}

@media screen and (max-width:410px){
          .graphicheading h1{
              font-size: 30px;
              line-height: 40px;
          }
          .graphicheading h4{
              font-size: 18px;
              transform: translateY(-10px);
          }
          
.graphicheadingbutton button {
    padding: 10px 10px;

}
.imagegraphic img{
    transform: scale(1.4) translateX(-20px) translateY(50px);
}

}




/* <!-- <---------------------third section ---------------------> --> */

.featureheading {
    padding: 100px 150px 0px 150px;
    text-align: left;
}

.featureheading h2 {
    color: var(--banner-bg);
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;

}

.featureheading h5 {
    color: rgb(122, 122, 122);
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 15px;
}

.featureheading h5 span {
    color: var(--orange);
    font-weight: 400;
}

.featureheading h6 {
    font-weight: 400;
    color: rgb(150, 150, 150);
    font-size: 16px;
    line-height: 1.6;

}

/* ====================
   Responsive Styling
   ==================== */
@media screen and (max-width: 992px) {
    .featureheading {
        padding: 60px 30px 10px 30px;
    }

    .featureheading h2 {
        font-size: 30px;
    }

    .featureheading h5 {
        font-size: 16px;
    }

    .featureheading h6 {
        font-size: 15px;
    }
}

@media screen and (max-width: 576px) {
    .featureheading {
        padding: 80px 30px 10px 30px;
    }

    .featureheading h2 {
        font-size: 26px;
    }

    .featureheading h5 {
        font-size: 15px;
    }

    .featureheading h6 {
        font-size: 14px;
    }
}



/* <!-- <---------------------four  section ---------------------> --> */

/* reset */
.carousel,
.carousel * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* container */
.carousel {
    position: relative;
    margin: 40px 150px;
    overflow: hidden;
    background: #f9f9f9;
    border-radius: 12px;
}

/* viewport window */
.carousel__viewport {
    overflow: hidden;
    width: 100%;
}

/* flex-track */
.carousel__track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

/* individual card */
.carousel__slide {
    margin: 10px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px  rgb(166, 166, 166);
    /* for 3D flip */
    text-align: center;
    padding-bottom: 20px;
}

.carousel__slide h3{
    padding: 10px;
    font-size: 20px;
    font-weight: 300;
}
.carousel__slide a{
    color: var(--orange);
}




/* nav buttons */
.carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff9800;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.carousel__nav--prev {
    left: 10px;
}

.carousel__nav--next {
    right: 10px;
}


@media screen and (max-width:968px){
    .carousel {
    margin: 0px 20px 40px 20px;

}
}


/* <!-- <---------------------five  section ---------------------> --> */

.main-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.left-column {
  flex: 1 1 30%;
  text-align: center;
}

.left-column h1 {
  font-size: 2.8rem;
  color: #222;
}

.left-column span {
  color: #007bff;
  font-size: 1.2rem;
}

.right-column {
  flex: 1 1 65%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-row {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  gap: 40px;
}

.logo-img {
  height: 60px;
  width: auto;
}

/* Faster animations */
.speed1 .logo-track {
  animation: scrollLeft 10s linear infinite;
}
.speed2 .logo-track {
  animation: scrollLeft 8s linear infinite;
  animation-delay: 1s;
}
.speed3 .logo-track {
  animation: scrollLeft 12s linear infinite;
  animation-delay: 2s;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
  }

  .left-column, .right-column {
    flex: 1 1 100%;
  }

  .left-column h1 {
    font-size: 2rem;
  }

  .logo-img {
    height: 40px;
  }
}









.Transformationsmain {
    margin: 180px 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    overflow: hidden;
}

.Transformationsmainheading h2 {
    color: rgb(87, 86, 86);
    font-weight: 600;
    font-size: 2.5rem;

}

.Transformationsmainheading h4 {
    color: var(--banner-bg);
    font-weight: 400;
    font-size: 2.0rem;
    margin-top: 10px;
}


/* Tablet */
@media (max-width: 992px) {
    .Transformationsmain {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .Transformationsmainheading h2 {
        font-size: 2rem;
    }

    .Transformationsmainheading h4 {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .Transformationsmain {
       margin: 100px 30px;
       
    }

    .Transformationsmainheading h2 {
        font-size: 3rem;
    }

    .Transformationsmainheading h4 {
        font-size: 1.4rem;
    }
}


/* <!-- <---------------------six section ---------------------> --> */

.Categories {
    background-color: rgb(241, 244, 247);
    padding: 0px 5% 30px 5%;
    text-align: center;
}

.Categories h1 {
    color: var(--banner-bg);
    font-size: 40px;
    margin-bottom: 10px;
}

.Categories h3 {
    font-size: 23px;
    color: #444;
}

.Categoriesall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding-top: 40px;
}

.Categoriescardmain {
    background-color: white;
    display: grid;
    grid-template-columns: 30% 70%;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.Categoriescardmain:hover {
    transform: translateY(-5px);
}

.Categoriesimage:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--banner-bg);
}

.Categoriesimage:last-child {
    text-align: left;
    padding-left: 10px;
}

.Categoriesimage h5 {
    font-size: 15px;
    margin: 5px 0;
    color: #333;
}

.Categoriesimage h6 {
    font-size: 13px;
    color: gray;
}

.Categoriesimage h6 i {
    margin-left: 5px;
}

/* Tablet */
@media (max-width: 992px) {
    .Categories {
        background-color: rgb(241, 244, 247);
        padding: 0px 30px 0px 30px;
        text-align: center;
    }

    .Categories h1 {
        font-size: 28px;
    }

    .Categories h3 {
        font-size: 18px;
    }

    .Categoriesall {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Mobile */
@media (max-width: 600px) {
    .Categories {
        padding: 0px 30px 0px 30px;
        text-align: left;
    }

    .Categories h1 {
        font-size: 24px;
    }

    .Categories h3 {
        font-size: 16px;
    }

    .Categoriescardmain {
        grid-template-columns: 25% 75%;
        padding: 8px;
    }

    .Categoriesimage h5 {
        font-size: 14px;
    }

    .Categoriesimage h6 {
        font-size: 12px;
    }
}

.line {
    padding: 30px 30px 10px 30px;
    border-bottom: 1px dashed rgb(134, 134, 134);
}





/* <--------------section7 ---------->*/


.small_image{
    display: none;
}

@media (max-width: 900px) {
    .large_image{
       display: none;
    }
 .small_image{
         display: block;
    }
}

.inquiriesmain {
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: center;
    gap: 20px;
    padding: 20px 100px 40px 0px;
}

.inquiriesimage img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.inquiriesheading {
    padding-left: 40px;
    text-align: left;
}

.inquiriesheading h3 {
    font-size: 32px;
    color: rgb(100, 100, 100);
    margin-bottom: 10px;
}

.inquiriesheading h6 {
    font-size: 20px;
    color: rgb(117, 118, 118);
    margin-bottom: 20px;
}

.inquiriesheading button {
    border-radius: 5px;
    padding: 10px 25px;
    background-color: var(--orange);
    border: none;
    color: wheat;
    font-size: 16px;
    cursor: pointer;
    margin-left: 0;
}


/* Responsive styles */
@media (max-width: 768px) {
    .inquiriesmain {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 0px 30px 40px 0px;
    }

    .inquiriesheading {
        padding-left: 0;
    }

    .inquiriesheading h3 {
        font-size: 22px;
        color: rgb(100, 100, 100);
        margin-bottom: 10px;
    }

    .inquiriesheading h6 {
        text-align: left;
        font-size: 15px;
    }

    .inquiriesheading button {

        display: inline-block;
    }

}


/* <------------------ about ------------------------> */



.container {
      display: grid;
      grid-template-columns: auto auto;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    /* Trainer Profile */
    .profile-section h2 {
      font-size: 30px;
      font-weight: bold;
      color: #05006d;
      margin-bottom: 25px;
    }

    .bullet {
      display: flex;
      align-items: start;
      gap: 10px;
      margin-bottom: 15px;
      font-size: 16px;
      color: #444;
      line-height: 1.6;
    }

    .bullet::before {
      content: "✔️";
      color: #4a58a2;
      margin-top: 3px;
    }

    /* Enquiry Card */
    .enquiry-card {
      background: white;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      border-radius: 10px;
      padding: 30px;
    }

    .enquiry-card h2 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 20px;
      text-align: center;
    }

    .enquiry-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .enquiry-form input,
    .enquiry-form select {
      padding: 12px 14px;
      font-size: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      width: 100%;
    }

    .phone-wrapper {
      display: flex;
      gap: 10px;
    }

    .phone-wrapper select {
      width: 30%;
    }

    .phone-wrapper input {
      width: 70%;
    }

    .enquiry-form button {
      padding: 12px;
      background-color: #1d1e7d;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .enquiry-form button:hover {
      background-color: #11125f;
    }

    /* Responsive for Tablets & Mobiles */
    @media (max-width: 900px) {
      .container {
        grid-template-columns: 1fr;
      }

      .profile-section,
      .enquiry-card {
        width: 100%;
      }

      .phone-wrapper {
        flex-direction: column;
      }

      .phone-wrapper select,
      .phone-wrapper input {
        width: 100%;
      }
    }



    /* course details css start */

    .hero-section {
      background: linear-gradient(135deg, #e3e3e3, #eaeaea);
      padding: 50px 20px;
    }

    .hero-img {
      max-width: 100%;
      object-fit: cover;
    }

    .ai-badge {
      background: #e8f9e8;
      color: #28a745;
      border-radius: 20px;
      padding: 5px 15px;
      font-size: 14px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 15px;
    }

    .btn-orange {
      background-color: #ff8c1a;
      color: white;
      border-radius: 8px;
      padding: 10px 25px;
      font-weight: 600;
      border: none;
    }

    .btn-orange:hover {
      background-color: #e67600;
    }

    @media (max-width: 768px) {
      .hero-img {
        border-radius: 20px;
        margin-top: 30px;
      }
    }

   .left_area{
    background-color: rgb(238, 238, 238);
    margin: 50px 0px;
    padding: 50px 20px;
    box-shadow: 2px 5px 10px rgb(232, 232, 232);
   }
   .right_area{
      background-color: rgb(244, 244, 244);
      margin: 50px 0px;
      padding: 20px 50px;

   }
   .left_area h4{
    color: var(--banner-bg);
   }
   .left_area p{
    font-size: .9rem;
    color: #525252;
   }
   
   .left_area h6{
    color: var(--banner-bg);
   }

   .left_area h5{
    color: rgb(74, 74, 74);
    font-size: 1rem;
   }




.syllabus-container {
      max-width: 900px;
      margin: auto;
      border-radius: 8px;
      overflow: hidden;
    }

    /* Accordion button */
    .accordion-btn {
      background-color:var(--banner-bg);
      color: white;
      padding: 18px 20px;
      font-size: 16px;
      font-weight: bold;
      text-align: left;
      border: none;
      outline: none;
      width: 100%;
      cursor: pointer;
      position: relative;
      transition: background-color 0.3s;
    }

    .accordion-btn:hover {
      background-color: #355ca1;
    }

    .accordion-btn::after {
      content: '+';
      font-size: 20px;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
    }

    .accordion-btn.active::after {
      content: '-';
    }

    /* Content area */
    .accordion-content {
      display: none;
      padding: 20px;
      border-top: 1px solid #ccc;
      background-color: #fefefe;
    }

    .accordion-content ul {
      padding-left: 20px;
      margin-top: 10px;
    }

    .accordion-content p,
    .accordion-content li {
      font-size: 15px;
      color: #333;
      line-height: 1.6;
    }

    /* Unique class names for each section */
    .section-python {}
    .section-sql {}
    .section-ds {}
    .section-crispml {}

.download_brochure{
        text-align: center;
    }
.download_brochure button{
    background-color: orange;
    padding: 10px 50px;
    border: none;
    box-shadow: 2px 5px 10px rgb(250, 210, 135);
    
}


.quick-enquiry-box {
  background-color: #fff;
  border: 1px solid #ccc;
  border-left: 5px solid var(--orange);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  margin: 20px auto;
  max-width: 600px;
}

.quick-enquiry-heading {
  margin-bottom: 15px;
  color: var(--banner-bg);
  font-size: 20px;
}

.quick-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quick-enquiry-form label {
  font-weight: bold;
  color: #333;
}

.quick-enquiry-form input,
.quick-enquiry-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: var(--font-size);
  width: 100%;
}

.quick-enquiry-form button {
  background-color: var(--banner-bg);
  color: var(--text-color);
  border: none;
  padding: 12px;
  font-size: var(--font-size);
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quick-enquiry-form button:hover {
  background-color: var(--orange);
}

@media (max-width: 768px) {
  .quick-enquiry-box {
    padding: 20px;
    margin: 10px;
  }
}


/* video crausel css start */








/* student register css start */

  .registration-container {
      max-width: 600px;
      background-color: #fff;
      margin: 40px auto;
      padding: 30px 25px;
      border-radius: 10px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .registration-container h2 {
      text-align: center;
      color: var(--banner-bg);
      margin-bottom: 20px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      margin-bottom: 6px;
      color: #333;
      font-weight: 500;
      font-size: var(--font-size);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: var(--font-size);
      outline: none;
      transition: 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--banner-bg);
      box-shadow: 0 0 5px rgba(33, 150, 243, 0.2);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 80px;
    }

    .submit-btn {
      background-color: var(--orange);
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 6px;
      width: 100%;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .submit-btn:hover {
      background-color: #d98b1f;
    }

    @media (max-width: 480px) {
      .registration-container {
        padding: 20px 15px;
      }
    }

