:root {
    --primary: #dc3545;
    --primary-rgb: 220, 53, 69; 
    --secondary:#F7A5AD;
    --dark: #1A1A1A;
    --light: #F8F9FA;
}

body {
    font-family: 'Inter', sans-serif;
}
pre{
     font-family: 'Poppins', sans-serif;
     font-size:16px;
     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 Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 8px 20px !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    font-weight:600;
}

/* Hero Section Styles */
.hero-section {
    background-color: #f8f9ff;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 12px 35px;
    font-weight: 500;
    transition: all 0.3s ease;
    border:none;
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 50px;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        padding: 15px 0;
    }
    
    h1.display-4 {
        font-size: 2.5rem;
    }
}

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

.about-section .about-images {
    position: relative;
    padding: 2rem;
}

.about-section .main-image {
    position: relative;
    z-index: 2;
}

.about-section .main-image img {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-section .secondary-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    z-index: 10;
}

.about-section .secondary-image img {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}


.about-section .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.about-section .feature-item i {
    font-size: 1.2rem;
}

.about-section .btn-primary {
    padding: 0.8rem 2rem;
    font-weight: 500;
}

@media (max-width: 991px) {
    .about-section .about-images {
        margin-bottom: 3rem;
    }
    
    .about-section .about-content {
        padding-left: 0 !important;
    }
    
    .about-section .experience-badge {
        padding: 1rem;
    }
    
    .about-section .experience-badge .years {
        font-size: 2rem;
    }
}

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

.why-choose-us .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(220,53,69, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.why-choose-us .feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.why-choose-us .feature-item {
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.why-choose-us .feature-item:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
}

/* Team Section */
.team-member {
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.team-member .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-member .social-links a:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-3px);
}


    
/* 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 img {
      width: 100%;
      height: 250px; /* Fixed height */
      object-fit: cover; /* Ensures images fill the card equally */
      border-radius: 10px;
    }
    .gallery-card {
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      margin-bottom: 30px;
    }
    
/*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;
    }
}


/* Contact */
.contact-section{
    padding-top:140px;
    padding-bottom:80px;
}
.contact-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  textarea:focus, input:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
  }

.contact-section .form-control{
    border:1px solid;
}
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;
  }
}
    
/* Event */
.blog-card {
	transition: transform 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

.blog-card:hover .blog-img {
	transform: scale(1.1);
}

.blog-meta {
	font-size: 0.9rem;
}
    
/* Testimonial */
.testimonial-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      padding: 2rem;
      text-align: center;
      position: relative;
      margin-top: 60px;
    }
    .testimonial-img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      border: 5px solid #fff;
      position: absolute;
      top: -50px;
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }
    .testimonial-name {
      font-weight: 600;
      margin-top: 1rem;
      font-size: 1.25rem;
    }
    .testimonial-text {
      color: #6c757d;
      font-size: 0.95rem;
      margin-top: 0.5rem;
    }
    
    

/* 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(--primary);
  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(90deg, #d53369 0%, #daae51 100%);
  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);
}


.bg-custom-color{
    background: linear-gradient(135deg, #dc3545, #F9C1C7);
    color:white;
}




.cta-section {
     background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, 30%);
}

.form-control {
    border: none;
    padding: 0.8rem 1.5rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.btn-light {
    font-weight: 500;
    padding-left: 2rem;
    padding-right: 2rem;
}

footer a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}


.footer-section{
    color: #a1a1aa;
}
.social-links a {
    color: #fff;
    font-size: 1.25rem;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

@media (max-width: 991.98px) {
    .cta-section form {
        margin-top: 2rem;
    }
}

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