:root{
    --primary:#007bff;
    --secondary:#000;
}
body{
     overflow-x: hidden;
}
.navbar {
    transition: all 0.3s ease;
    padding: 25px 0;
    font-family: 'Arial', sans-serif;
}

.navbar-brand {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav {
    margin-left: auto;
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    color: white !important;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 10px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar.scrolled .navbar-brand {
    color: #333 !important;
}

.navbar.scrolled .nav-link {
    color: #333 !important;
}

.navbar.scrolled .nav-link::after {
    background: #333;
}
.navbar.scrolled.navbar-brand{
    color:black;
}
.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(51,51,51, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }

    .navbar.scrolled .navbar-collapse {
        background: white;
    }

    .nav-item {
        margin: 5px 0;
    }

    .nav-link {
        text-align: center;
    }
}


/* Carousel Styles */
.banner-img{
    height: 100vh; 
    object-fit: cover;
}
#carousel-item {
    position: relative;
}
#carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Black overlay */
}
.carousel-caption {
    z-index: 2;
    bottom: 50%;
    transform: translateY(50%);
    padding: 0;
    background: none;
}
.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.carousel-caption p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
}

/* Parallax Section */
.parallax {
    
    height: 80vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.parallax-content {
    background: rgba(0,0,0,0.6);
    color: white;
    padding:150px 0px;
    height:100%;
}


/* Gallery Styles */
.gallery-item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    margin-bottom: 20px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-wrapper:hover .overlay {
    opacity: 1;
}

.gallery-wrapper .overlay a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.gallery-wrapper .overlay i {
    transition: transform 0.3s ease;
}

.gallery-wrapper:hover .overlay i {
    transform: scale(1.2);
}

/* Vision Mission Styles */
.vision-mission {
    background: #f8f9fa;
    padding: 80px 0;
}
.vision-mission-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

/* Facilities Styles */
.facilities-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}
.facility-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}
.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #007bff, #00e1ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 20px;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}
.facility-card .card-body {
    text-align: center;
    padding: 20px;
}
.facility-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}
.facility-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}
.facility-image {
    height: 200px;
    object-fit: cover;
}

/* Why Choose Us Styles */
.why-choose-us {
    padding: 80px 0;
    background: #fff;
}
.why-choose-card {
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}
.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #007bff, #00e1ff);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.why-choose-card:hover {
    transform: translateY(-5px);
}
.why-choose-card:hover::before {
    opacity: 1;
}
.why-choose-card:hover * {
    color: white !important;
}
.why-choose-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.why-choose-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
}
.why-choose-card p {
    color: #666;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.stats-counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.stats-label {
    color: #666;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* Footer Styles */
footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}
.social-links a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: #007bff;
}
ul#menulist li {
  display:inline;
}
.carousel-control-prev,.carousel-control-next{
	display:none;
}
.fa-round{
      padding: 5px;
      font-size: 20px;
      
      text-align: center;
      text-decoration: none;
      color:black;
}
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; 
}
pre{
     font-family:inherit;
     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; 
}
.shine-effect {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 50%;
    height: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: 0.5s;
}
.card-body:hover .shine-effect {
    top: 150%;
    left: 150%;
}
.event-image {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-item {
    height: 100%;
    min-height: 400px; /* You can adjust this based on your design */
}

.event-content {
    height: 100%;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
 
    list-style: none; 
    padding-left: 0;
}

.btn-primary{
    background: linear-gradient(45deg, #007bff, #00e1ff);
    border: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;
}
textarea{
    resize:none;
}

/* Contact Section */
.contact-header {
   
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-top: 76px;
}

.contact-info-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.form-control {
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 20px;
}



.map-container {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.social-icon {
    color: var(--primary-color);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--secondary-color);
}

.qualification-badge {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 5px;
    display: inline-block;
}

/* Event */
.event-section {
    background-color: #f8f9fa;
}

.section-header .subtitle {
    color: #c5a47e;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

.event-content {
    padding: 25px;
}

.event-meta {
    margin-bottom: 15px;
}

.event-meta span {
    display: inline-block;
    margin-right: 20px;
    color: #666;
    font-size: 0.9rem;
}

.event-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.event-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.event-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-outline-primary {
    border-radius:50%;
    color: var(--primary);
    transition: all 0.3s ease;
}
.btn-outline-primary i{
    color: var(--primary) !important;
    font-size:12px;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white !important;
}
.btn-outline-primary:hover i{
    color: white !important;
}
.btn-custom{
    border: 2px solid var(--primary);
    padding:20px;
    width:80px;
    height:80px;
    border-radius:50%;
}
.btn-custom i{
    font-size:30px;
    font-weight:800;
}
.service-card:hover .btn-custom{
    background-color:var(--primary);
    color:white;
}
@media (max-width: 768px) {
    .event-card {
        margin-bottom: 30px;
    }
    
    .event-image {
        height: 200px;
    }
}


/* Testimonial */
    .testimonial-section {
      padding: 60px 0;
    }

    .testimonial-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease-in-out;
      height: 100%;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .testimonial-content {
      font-size: 1rem;
      color: #555;
      font-style: italic;
      margin-bottom: 20px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
    }

    .testimonial-author img {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }

    .author-name {
      font-weight: 600;
      margin-bottom: 0;
    }

    .author-role {
      font-size: 0.9rem;
      color: #888;
    }

    .testimonial-section .section-title {
      font-weight: 700;
      margin-bottom: 40px;
    }
  
/* CTA section */
.cta-section {
  background: linear-gradient(45deg, #007bff, #00e1ff);
  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;
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary);
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 1rem;
  transition: 0.3s ease-in-out;
  border: 2px solid var(--primary);
}

.btn-white:hover {
  background-color: black;
  color: white;
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}      

/* 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;
  }
}

/* Team Section */

.team-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Section Title Styles */
.team-section .section-title .subtitle {
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-section .section-title .title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-section .title-shape {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.team-section .title-shape span {
    width: 30px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
}

.team-section .title-shape span:nth-child(2) {
    width: 60px;
    background: #6366f1;
}

/* Team Card Styles */
.team-section .team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-section .team-card:hover {
    transform: translateY(-10px);
}

.team-section .member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-section .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-section .team-card:hover .member-image img {
    transform: scale(1.1);
}

.team-section .social-links {
    position: absolute;
    top: 20px;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: right 0.3s ease;
}

.team-section .team-card:hover .social-links {
    right: 20px;
}

.team-section .social-links a {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-section .social-links a:hover {
    background: #6366f1;
    color: #fff;
    transform: translateX(-5px);
}

.team-section .member-info {
    padding: 1.5rem;
    text-align: center;
}

.team-section .member-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.team-section .member-info span {
    color: #6366f1;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.team-section .member-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .team-section .section-title .title {
        font-size: 2rem;
    }

    .team-section .team-card {
        margin-bottom: 30px;
    }

    .team-section .member-image {
        height: 250px;
    }
}
        