:root {
    --primary: #0d6efd;
    --secondary:#FFD447;
    --dark: #1A1A1A;
    --light: #F8F9FA;
}

body {
    font-family: 'Inter', 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;
}
.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(13, 110, 253, 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(13, 110, 253, 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 {
    background-color: #f8f9fa;
}

.member-img-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.member-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.img-border {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid #0d6efd;
    border-radius: 50%;
    z-index: 1;
}

.member-info {
    margin-top: -30px;
    position: relative;
    border: 1px solid #eee;
}

.team-section .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-section .social-links a:hover {
    background: #ffc107;
    color: white;
    transform: translateY(-3px);
}

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

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

@media (max-width: 768px) {
    .member-img-wrapper {
        width: 150px;
        height: 150px;
    }
}
    
    
/* Facilities */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-meta span {
    color: var(--primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-title {
    margin-bottom: 1rem;
}

.blog-title a {
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary);
}

.read-more .btn {
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    border: none;
    transition: all 0.3s ease;
}

.read-more .btn:hover {
    background: #549BFD;
    transform: translateX(5px);
}

.nav-arrow {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #17d1d1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #17d1d1;
    color: white;
}

@media (max-width: 991px) {
    .blog-image {
        height: 200px;
    }
}


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

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


/* Overlay icon styling */
.gallery-overlay-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 6px 8px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-overlay-icon a {
    color: #fff;
    text-decoration: none;
}

.gallery-card:hover .gallery-overlay-icon {
    opacity: 1;
    transform: translateY(0);
}


/*Vision Mission */
.dots-pattern {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #0d6efd;
    border-radius: 50%;
}

.icon-box {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-item {
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateX(10px);
}

.vision-box {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    position: relative;
    overflow: hidden;
}

.vision-box::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -75px;
    right: -75px;
}

.vision-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .vision-box {
        margin-top: 2rem;
    }
}

/* 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-color: #f8f9fa;
}

.contact-section .subtitle {
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.contact-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Contact Info Styles */
.contact-section .info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-section .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #007bff;
    transition: width 0.3s ease;
}

.contact-section .info-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.contact-section .icon-box {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-section .info-card:hover .icon-box {
    transform: rotateY(360deg);
}

.contact-section .icon-box i {
    color: white;
    font-size: 1.5rem;
}

.contact-section .info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-section .info-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.8;
}

/* Contact Form Styles */
.contact-section .contact-form-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-section .form-floating {
    margin-bottom: 1rem;
}

.contact-section .form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.contact-section .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0,123,255,0.1);
}

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

.contact-section .btn-primary {
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: #007bff;
    border: none;
}

.contact-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-section .contact-form-box {
        padding: 1.5rem;
    }

    .contact-section .info-card {
        padding: 1.5rem;
    }

    .contact-section .section-header h2 {
        font-size: 2rem;
    }
}
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 */
        .testimonial-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.08);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .testimonial-card.active {
            background: #ff9800;
            color: white;
        }

        .quote-icon {
            font-size: 2rem;
            color: rgba(0,0,0,0.1);
            margin-bottom: 1rem;
        }

        .active .quote-icon {
            color: rgba(255,255,255,0.2);
        }

        .client-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1.5rem;
            border: 3px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

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

        .testimonial-text {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .rating {
            color: #ffd700;
        }

        .active .rating {
            color: white;
        }

        .client-name {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .client-position {
            font-size: 0.85rem;
            opacity: 0.8;
            margin: 0;
        }

        @media (max-width: 768px) {
            .testimonial-card {
                margin-bottom: 1.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(--secondary);
  font-size: 40px;
}

.social-media-section .social-icons i{
    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: var(--primary);
  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: var(--primary);
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 1rem;
  transition: 0.3s ease-in-out;
  border: none;
}

.cta-section .btn-white:hover {
  background-color: #BFDAFF;
  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, rgba(13,110,253,0.8), rgba(13,110,253,0.3));
    color:white;
}