/********** Template CSS **********/
:root {
  --bs-primary: #CE9233;
  --bs-secondary: #797672;
  --bs-light: #F9F8F7;
  --bs-dark: #2B2C2E;

  --bs-body-color: var(--bs-secondary);
  --bs-heading-color: var(--bs-dark);

  --bs-font-sans-serif: 'Poppins', sans-serif;
  --bs-font-headings: 'Roboto', sans-serif;

  --bs-border-radius: 0;
  --bs-border-radius-sm: 0;
  --bs-border-radius-lg: 0;
}

.bg-warning {
  padding: 0 !important;
  font-size: 15px !important;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

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

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** 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: 600;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

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

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



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

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

@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;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    background: rgba(0, 0, 0, .5);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 400px;
    }
    
    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
       max-height: 400px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }

    
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }

    .image_item1{
        height: 600px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown { 
    0% { 
        top: -25px;
    }
    50% { 
        top: -45px;
    }
    100% { 
        top: -25px;
    } 
}


/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgb(0 0 0 / 60%) 57%), url(../img/award.jpg) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}

@media  (max-width: 768px) {
    .feature {
        width: 100%;
        background: linear-gradient(to right, rgba(0, 0, 0, .1), rgb(0 0 0 / 60%) 57%), url(../img/award.jpg) center center no-repeat;
        background-size: cover;
    }
    .vission-mission-section{
        max-width: 100%;
    }
}
/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service .service-inner {
    position: relative;
    flex: 1; /*parent height fill krne ke liye*/
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    padding-bottom: 20px;
    flex-direction: column;
    overflow: hidden;
    display: flex;
}

.service-text {
    flex-grow: 1;      /* text jo space hai, usme grow kare */
}

.service .service-item a {
    margin-top: auto;  /* button bottom pe hamesha */
    z-index: 1;
}


.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
        transition: height 0.5s ease;

}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    width: 100%;
    height: 200px;               /* uniform height */
    object-fit: cover;           /* image distort nahi hogi */
    margin-top: 0px;
    padding-left: 0px;
}

.service .service-item * {
    position: relative;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}
.row.align-items-stretch > [class*='col-'] {
    display: flex;
}


/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/img5.png) left center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 135px;
    height: 135px;
    border-radius:50%;
    object-fit:cover;
    
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Appoinment ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    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;
    color: var(--bs-primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}
.img-fluid1{
    height: 90px;
    width: 100px;
}
.social-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px; /* yahi se icons ke beech ka gap control hoga */
  z-index: 1000;
}

.social-icon {
  background: #25D366; /* default color, niche override */
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  text-decoration: none;
  border: 2px solid #fff;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

/* Custom colors */
.social-icon.whatsapp { background: #25D366; }
.social-icon.instagram { background: #ff0066; }
.social-icon.facebook { background: #6699ff; }
.social-icon.linkedin { background: #0077b5; }

.social-icon:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

/*closeimg*/
 

   #splash-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .img-wrapper {
      position: relative;
      display: inline-block;
    }

    .img-wrapper img {
      max-width: 90vw;
      max-height: 80vh;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 22px;
      background: red;
      color: white;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      text-align: center;
      line-height: 30px;
      cursor: pointer;
    }

    #main-website {
      display: none;
      
    }

    /* Media Query: Tablet */
    @media (max-width: 768px) {
      .close-btn {
        top: 8px;
        right: 8px;
        font-size: 20px;
        width: 28px;
        height: 28px;
        line-height: 28px;
      }

      .img-wrapper img {
        max-width: 95vw;
      }
    }

    /* Media Query: Mobile */
    @media (max-width: 480px) {
      #main-website {
        font-size: 16px;
      }
    }

    /* General carousel */
.carousel-inner {
  max-height: 600px;
}

.banner {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
}

/* Background images */
.banner-4 {
  background: url('../img/classroom-image1.webp') no-repeat center center/cover;
}

.banner-2 {
  background: url('../img/classroom-image3.webp') no-repeat center center/cover;
  flex-direction: column;
  justify-content: center;
}
.banner-3 {
  background: url('../img/classroom-image2.jpg') no-repeat center center/cover;
  flex-direction: column;
  justify-content: center;
}
.banner-1 {
  background: url('../img/sap-banner.png') no-repeat center center/cover;
  flex-direction: column;
  justify-content: center;
}
/* Dark overlay */
.banner .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

/* Banner content */
.banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.banner-3 .banner-content {
  max-width: 900px;
}

/* Headings */
.banner-main-heading h5 {
  font-size: 65px;
  font-family: Montserrat, sans-serif;
  color: rgb(245, 248, 58);
  margin-bottom: 15px;
}

.banner-sub-heading h3 {
  font-size: 35px;
  font-family: Montserrat, sans-serif;
  color: #ffb347;
  margin-bottom: 20px;
}

.banner-2 .banner-main-heading h2 {
  font-size: 55px;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  color: #f1f1f1;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.banner-2 .banner-heading h3,
.banner-2 .banner-sub-heading h3 {
  font-size: 45px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  color: rgb(245, 248, 58);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.banner-3 .banner-main-heading h2 {
  font-size: 45px;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  color: #f1f1f1;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.banner-3 .banner-heading h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fadc34;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.banner-3 .banner-sub-heading h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}


/* Bootstrap ke display-1 ko banner ke andar control karo */
.banner-main-heading .display-1 {
  font-size: clamp(28px, 6vw, 64px) !important; /* responsive + force */
  line-height: 1.1;
  font-family: Montserrat, sans-serif;
  color: rgb(245, 248, 58);
  margin-bottom: 15px;
}

/* Optional: subheading ko bhi responsive rakho */
.banner-sub-heading h3 {
  font-size: clamp(16px, 3vw, 35px);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;      /* ya apna theme color */
  padding: 5px 20px;
  height: 92px;          /* fixed height */
  overflow:hidden;   /* logo bada ho to cut na ho */
}

.top-bar .logo img {
  max-height: 144px;      /* topbar ke barabar */
  width: auto;
  transform: scale(1.3); /* yaha size badhane ka control */
  transform-origin: left center; /* zoom ka anchor */
  padding-top: 6px;
}

    .contact-info {
      display: flex;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
    }

    .contact-item {
      display: flex;
      align-items: center;
      font-size: 17px;
    }

    .contact-item i {
      margin-right: 6px;
      color: #000000;
    }

   

.logo-zoom {
  animation: zoomLogo 2s infinite ease-in-out;
}

@keyframes zoomLogo {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

   /* Tablet view adjustments */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start; /* Align everything to the left */
    padding: 0px;
    display: none;
  }

  .contact-info {
    flex-direction: column;
    align-items: flex-start; /* Align menu to left */
    gap: 10px;
    margin-bottom: 10px;
  }

  .logo {
    align-self: flex-start; /* Change from flex-end to flex-start */
  }
  .logo-img-mb{
    display: block;
    width:100px !important;
  }
}

/* Mobile view adjustments */
@media (max-width: 480px) {
  .contact-item {
    font-size: 14px;
  }

  .logo img {
    height: 60px;
    max-width: 100px;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start; /* Ensure logo + menu are left-aligned */
  }
}

.carousel .carousel-item a{
    border-radius: 10px;
}

.sap-heading{
    font-size: 2.55rem !important;
}
.sap-title{
    font-size: 1.1rem !important;
}


.footer {
  background-color: #000 !important; /* black background */
  color: #fff !important;           /* white text */
}

.footer h5,
.footer p,
.footer a {
  color: #fff !important;
}

.footer a.btn-link {
  display: block;
  padding: 2px 0;
  color: #ccc !important; /* halka grey links */
  text-decoration: none;
}

.footer a.btn-link:hover {
  color: #ffc107 !important; /* yellow hover */
}
.btn-square {
  width: 40px;
  height: 40px;
  border-radius: 50%; /* circle banane ke liye */
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-square i {
    color: #fff !important;   /* Icon white */
}
.btn-square {
    background: transparent;  /* No white box */
    border: 1px solid #fff;   /* White border */
}

.footer-logo img {
    min-width: 180px;     /* Logo ki width fix */
    height: 100px;         /* Proportion maintain hoga */
    display: block;
    margin: 0 auto;       /* Center me lane ke liye */
    border-radius: 8px;   /* Thoda rounded look */
    background-color: #fff; /* Agar logo transparent hai to background white milega */
    padding: 8px;         /* Thoda space andar */
}
.footer p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;  /* Text evenly align hoga */
}
.course-sec h3{
    font-size: 2.85rem !important;
    font-family: Arial, Helvetica, sans-serif;
}
.course-sec p{
    font-size: 1.4rem !important;
    font-family: Arial, Helvetica, sans-serif;
}

.image-fluid{
    border-radius: 15px;
}











/* feature and vission misssion start */




    