:root {
    --primary: #2A62AC;
    --secondary:#FFD447;
    --dark: #1A1A1A;
    --light: #F8F9FA;
}

body {
    font-family: 'Inter', sans-serif;
}
pre{
     font-family: 'Poppins', sans-serif;
     font-size:18px;
     white-space: pre-wrap;       /* css-3 */
     white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
     white-space: -pre-wrap;      /* Opera 4-6 */
     white-space: -o-pre-wrap;    /* Opera 7 */
     word-wrap: break-word; 
}
p{
     white-space: pre-wrap;       /* css-3 */
     white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
     white-space: -pre-wrap;      /* Opera 4-6 */
     white-space: -o-pre-wrap;    /* Opera 7 */
     word-wrap: break-word;
}
.text-custom{
    color:var(--primary);
}
.bg-custom{
    background-color:var(--primary);
    color:var(--light);
}
.custom-line{
    width: 50px; 
    height: 3px; 
    background-color: var(--primary);
}
.btn-custom{
    border:none;
    background-color:var(--primary);
    color:white;
}
.btn-custom:hover{
    color:var(--primary);
    background-color:white;
    border:2px solid var(--primary);
}
/* Navbar */
.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.navbar-brand span {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    
    color: white;
}


/* About Us */
.about-section {
    background-color: #f8f9fa;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    transition: transform 0.5s ease;
}

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

.about-section .experience-badge {
    bottom: 30px;
    right: 30px;
    min-width: 120px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.about-section .icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: rgba(255, 212, 71, 0.3);
}

.about-section .counter-box {
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    transition: transform 0.3s ease;
}

.about-section .counter-box:hover {
    transform: translateY(-5px);
}

.btn-primary {
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background-color:var(--primary);
    color:var(--light);
    border:none;
}

.about-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    color:var(--primary);
    background-color:var(--light);
    border:2px solid var(--primary);
}

/* why-choose-us */
.why-choose-us {
    background-color: #f8f9fa;
}

.why-choose-us .icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background-color: rgba(255, 212, 71, 0.3);
    
    transition: all 0.3s ease;
}

.why-choose-us .icon-box i{
    color:var(--primary);
}
 
.why-choose-us .feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.why-choose-us .feature-card:hover {
    transform: translateY(-10px);
}

.why-choose-us .feature-card:hover .icon-box {
    background-color: var(--primary);
    color: var(--light);
}

.why-choose-us .feature-card:hover .icon-box i {
    color: white;
}

.why-choose-us .feature-hover-content {
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.why-choose-us .feature-card:hover .feature-hover-content {
    opacity: 1;
    transform: translateY(0);
}

/* Team Section */
 .team-section {
      padding: 80px 0;
    }

    .team-section h6 {
      color: #a16f3c;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .team-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .team-card:hover {
      transform: translateY(-5px);
    }

    .team-card img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

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

    .team-card .social-icons {
      position: absolute;
      top: 20px;
      left: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: #ffffffcc;
      padding: 10px;
      border-radius: 0 8px 8px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateX(-20px);
      transition: all 0.4s ease;
    }

    .team-card:hover .social-icons {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
      z-index:10;
    }

    .social-icons a {
      color: #333;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: #00bcd4;
    }

    .team-info {
      padding: 20px;
      background: #fff;
      text-align: center;
    }

    .team-info h5 {
      margin-bottom: 5px;
      font-weight: 600;
    }

    .team-info p {
      font-size: 14px;
      color: #777;
      margin: 0;
    }
    
    
/* Facilities */
.facility-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  height: 100%;
}
.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.facility-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.facility-body {
  padding: 15px 20px;
}
.facility-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.facility-meta {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.facility-date {
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
  margin-top: 10px;
}




/* gallery */
.gallery-card {
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.gallery-card:hover {
    transform: translateY(-5px);
}

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

.gallery-card:hover .gallery-img {
    transform: scale(1.05);
}
/*Vision Mission */
.vision-mission {
    background-color: #f8f9fa;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.vision-card, .mission-card {
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
}

.vision-list {
    list-style: none;
    padding: 0;
}

.mission-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.mission-item:hover {
    background-color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .vision-card, .mission-card {
        padding: 3rem !important;
    }
}

/* Footer */
.footer {
    background: linear-gradient(45deg, #1a1a1a, #2c2c2c);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--bs-primary);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-info li i {
    color: var(--secondary);
}

.contact-info li p {
    opacity: 0.8;
}


.btn-primary {
    padding: 8px 20px;
}

@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
    }
}

/* Contact */
.contact-section {
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-section .contact-form-wrapper {
    background: linear-gradient(135deg, #2A62AC 0%, #FFD447 100%);
    padding: 50px;
    border-radius: 20px;
    height: 100%;
}

.contact-section .badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    font-size: 14px;
}

.contact-section .form-floating .form-control {
    background: rgba(255,255,255,0.9);
    border: none;
    height: 60px;
}

.contact-section .form-floating textarea.form-control {
    height: 150px !important;
}

.contact-section .form-floating .form-control:focus {
    background: white;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}

.contact-section .btn-light {
    padding: 15px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-section .btn-light:hover {
    transform: translateX(10px);
}

.contact-section .social-links {
    display: flex;
    gap: 15px;
}

.contact-section .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.contact-section .social-link:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
}

.contact-section .contact-info {
    height: 100%;
}

.contact-section .info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-section .info-card:hover {
    transform: translateY(-5px);
}

.contact-section .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2A62AC 0%, #FFD447 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-section .card-icon i {
    color: white;
    font-size: 24px;
}

.contact-section .info-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-section .info-card p {
    color: #666;
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-section .contact-form-wrapper,
    .contact-section .contact-info {
        padding: 30px;
    }
}
textarea{
    resize:none;
}

/* description section */
.description-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.image-block {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.image-block img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.content-block {
  padding: 4rem 2rem;
}

@media (max-width: 991.98px) {
  .description-section {
    flex-direction: column;
  }

  .image-block {
    position: relative;
    height: auto;
  }

  .image-block img {
    height: auto;
  }
}
.logo{
    height:40px;
}

/* Parallax */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}


.parallax-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.6), rgba(0,0,0,0.7));
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  backdrop-filter: blur(4px);
  border-radius: 1rem;
}

.parallax-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.parallax-content p {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #ddd;
}


@media (max-width: 768px) {
  .parallax-content h1 {
    font-size: 2rem;
  }
  .parallax-content p {
    font-size: 1rem;
  }
}
    
    
    
/* Testimonial */
.testimonials {
    background-color: #f8f9fa;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 50%;
    opacity: 1;
}

.carousel-control-prev {
    left: -50px;
}

.carousel-control-next {
    right: -50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    padding: 10px;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}
/* Social Media Section */

.social-media-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media-section .view-icon {
  color: #fff;
  font-size: 30px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.social-media-section .social-icons {
  color: var(--secondary);
  font-size: 40px;
}

.social-media-section .social-icons i{
    color: var(--secondary);
    font-size:40px;
}
.social-media-section .position-relative:hover .overlay {
  opacity: 1;
}

.social-media-section  .position-relative:hover .view-icon {
  transform: scale(1);
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, #2A62AC, #FFD447);
  color: #fff;
  padding: 60px 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-section .btn-white {
  background-color: #ffffff;
  color: #00BCD4;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 1rem;
  transition: 0.3s ease-in-out;
  border: none;
}

.cta-section .btn-white:hover {
  background-color: #e0f7fa;
  color: #007c91;
}

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

  .cta-section p {
    font-size: 1rem;
  }
}

/* Video Banner */
.video-banner {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.video-banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}


.qualification-badge {
    background: var(--light);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 5px;
    display: inline-block;
}

.heading{
    color: var(--primary);
}
.btn-outline-primary{
    border:2px solid var(--primary);
    color:var(--primary);
}

.btn-outline-primary:hover{
    color:white;
    background-color:var(--primary);
}

.text-primary{
    color:var(--secondary) !important;
}
.bg-custom-color{
    background: linear-gradient(135deg, #2A62AC, #FFD447);
    color:white;
}

.img-fit{
    height:40vh;
    width:100%;
    object-fit:cover;
}