:root {
    --primary: #0d6efd;
    --secondary:black;
    --dark: #1a1a1a;
    --light: #f5f6fa;
}

body {
    font-family: 'Poppins', sans-serif;
}
pre{
     font-family: 'Poppins', sans-serif;
     font-size:17px;
     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;
}
/* Announcement Bar */
.announcement-bar {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 1.0rem;
}

.announcement-bar span {
    color: var(--primary);
    font-weight: 500;
}

/* Main Navbar */
.navbar {
    background: white;
    padding: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark) !important;
    padding: 20px 0;
    letter-spacing: 1px;
}

.nav-item {
    position: relative;
    margin: 0 5px;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    padding: 25px 10px !important;
    position: relative;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 40px);
}



/* Icons */
.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-icon {
    position: relative;
    color: var(--dark);
    text-decoration: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.nav-icon:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateY(-2px);
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Dropdown */
.dropdown-menu {
    margin-top: 0;
    border: none;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 25px;
    color: var(--dark);
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
}

.dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 30px;
}

/* Responsive */
@media (max-width: 1199px) {
    .announcement-bar {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .navbar-brand {
        font-size: 1.8rem;
        padding: 15px 0;
    }

    .navbar-toggler {
        border: none;
        padding: 8px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        border-top: 1px solid var(--light);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-link {
        padding: 12px 20px !important;
    }

    .nav-link::after {
        bottom: 8px;
    }

  
    .nav-icons {
        justify-content: center;
        padding-top: 15px;
        border-top: 1px solid var(--light);
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .announcement-bar {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .nav-icon {
        width: 30px;
        height: 30px;
    }
}

/* Carousel */
.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-caption-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 1rem;
  width:90%;
}

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

/* 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(13, 110, 253, 0.1);
}

.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);
}

.about-section .btn-primary {
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

/* 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(13, 110, 253, 0.1);
    transition: all 0.3s ease;
}

.why-choose-us .icon-box i{
    color:#0d6efd;
}
 
.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(--bs-primary);
    color: red;
}

.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);
}

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

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

.facilities-img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

/* 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(--bs-primary);
    transform: translateY(-3px);
}

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

.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: #f8f9fa !important;
}

.contact-section .form-control {
    padding: 1rem;
}

.contact-section .form-control:focus {
    box-shadow: none;
    border-color: #4169E1;
}

.contact-section .btn-primary {
    background: #4169E1;
    border: none;
    padding: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.contact-section .btn-primary:hover {
    background: #3154b3;
}

.contact-section .office-item {
    transition: all 0.3s ease;
}

.contact-section .office-item:hover {
    transform: translateX(10px);
}

.contact-section .social-links a {
    color:var(--primary);
    transition: all 0.3s ease;
}

.contact-section .social-links a:hover {
    color:white;
    opacity: 0.8;
    transform: translateY(-3px);
}

        
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;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.parallax-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 700px;
}

.parallax-overlay h1 {
  font-size: 3rem;
  font-weight: bold;
}

.parallax-overlay p {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .parallax-overlay h1 {
    font-size: 2rem;
  }
}
/* Testimonial */
.testimonial-img{
    width:80px;
    height:80px;
    object-fit:cover;
}

/* 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: #fff;
  font-size: 30px;

}

.social-media-section .position-relative:hover .overlay {
  opacity: 1;
}

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

.team-card .btn-outline-primary{
    width:40px;
    height:40px;
}

.social-media-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eee;
}

.social-media-img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.social-media-img-wrapper:hover img {
  transform: scale(1.1);
}

.social-media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.social-media-img-wrapper:hover .social-media-overlay {
  opacity: 1;
}

.social-media-overlay i {
  font-size: 2rem;
  color: #fff;
}


/* Team */

.team-section {
  background: #f8f9fa;
  padding: 60px 0;
}
.team-section .team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.team-section .team-card:hover {
  transform: translateY(-10px);
}
.team-section .team-img {
  position: relative;
  overflow: hidden;
}
.team-section .team-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.team-section .team-card:hover img {
  transform: scale(1.05);
}
.team-section .team-content {
  text-align: center;
  padding: 20px;
}
.team-section .team-content h5 {
  margin: 10px 0 5px;
  font-weight: 600;
}
.team-section .team-content p {
  margin-bottom: 15px;
  color: #6c757d;
}
.team-section .social-icons a {
  color: #555;
  margin: 0 8px;
  font-size: 18px;
  transition: color 0.3s;
}
.team-section .social-icons a:hover {
  color: #007bff;
}

.feature-list li:before {
 
    list-style: none; 
    padding-left: 0;
}