:root {
    --primary: #0066CC;
    --secondary: #E8F1F9;
    --dark: #1A1A1A;;
    --accent: #FC6217;
    --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:2px solid var(--primary);
    color:var(--primary);
    background-color:white;
}
.btn-custom:hover{
    color:var(--dark);
    background-color:var(--secondary);
}

.section-badge {
    background-color: rgba(252, 98, 23, 0.3);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
}
/* Navbar */
.navbar {
    background: white;
    padding: 0;
    width: 100%;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #00cec9, #0984e3, #6c5ce7);
}

.navbar-brand {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary) !important;
    padding: 25px 0;
    position: relative;
}

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

.nav-link {
    color: var(--primary) !important;
    font-weight: 500;
    padding: 30px 20px !important;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transition: left 0.3s ease-in-out;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}




/* Responsive */
@media (max-width: 1199px) {
    .navbar-brand {
        padding: 15px 0;
        font-size: 1.8rem;
    }

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

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

   
}

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

/* Hero Section */
.hero-section {
    background: var(--secondary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: relative;
}

.hero-image img {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

/* About Us */
.about-image {
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}



.service-card {
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card.featured {
    background: var(--primary);
    color: white;
}

.service-card:not(.featured) {
    background: #fff;
    border: 1px solid #eee;
}

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


/* why-choose-us */
.why-choose-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}


.why-choose-us .number-badge {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-choose-us .feature-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-choose-us .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-choose-us .icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(252, 98, 23, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.why-choose-us .content h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.why-choose-us .content p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

.why-choose-us .image-wrapper {
    position: relative;
    padding: 20px;
}

.why-choose-us .main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-choose-us .experience-card {
    position: absolute;
    bottom: 40px;
    left: 0;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-choose-us .exp-icon {
    width: 40px;
    height: 40px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #0d6efd;
}

.why-choose-us .experience-card h3 {
    margin: 0;
    color: #0d6efd;
}

.why-choose-us .experience-card p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

.why-choose-us .clients-card {
    position: absolute;
    top: 40px;
    right: 0;
    background: #0d6efd;
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
}

.why-choose-us .clients-card .number {
    display: block;
    font-size: 24px;
    font-weight: bold;
}

.why-choose-us .clients-card .text {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .why-choose-us .features-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-us .image-wrapper {
        margin-top: 40px;
    }

    .why-choose-us .experience-card, .clients-card {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
}

/* Team Section */
.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-social {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
}

.social-icon {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #007bff;
    color: white;
    transform: translateY(-3px);
}

.social-icon i{
    font-size:12px;
}
.team-info {
    padding: 20px;
    text-align: center;
}

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

.team-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .team-image img {
        height: 250px;
    }
}
    
/* Facilities */
.facility-card {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .facility-image {
        position: relative;
        overflow: hidden;
    }

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

    .facility-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        opacity: 0;
        transition: all 0.3s ease;
    }
    .facility-overlay i{
        font-size:30px;
    }

    .facility-overlay h3 {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }

    .facility-overlay p {
        color: rgba(255, 255, 255, 0.8);
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }

    .facility-card:hover .facility-overlay {
        opacity: 1;
    }

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

    .facility-card:hover .facility-overlay h3,
    .facility-card:hover .facility-overlay p {
        transform: translateY(0);
    }

    @media (max-width: 768px) {
        .facility-image img {
            height: 250px;
        }
    }
        
        


/* Event */
.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.event-img {
    height: 100%;
    object-fit: cover;
}

.event-details {
    color: #6c757d;
    font-size: 0.9rem;
}

.event-details i {
    color: #212529;
}

.btn-outline-dark {
    border-radius: 30px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .event-img {
        height: 200px;
    }
    .event-card .col-md-5{
        width:40%;
    }
    .event-card .col-md-7{
        width:60%;
    }
    .event-card img{
        width:100%;
        height:100%;
    }
}



/* gallery */
.gallery-section {
  padding: 60px 0;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #6f42c1;
  text-align: center;
  margin-bottom: 40px;
}
    
/*Vision Mission */
.dots-pattern {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    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, var(--primary), #FDBFA1);
    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(0, 102, 204, 0.4);
    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 */

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

/* Banner */
.banner-section {
    position: relative;
    height: 100vh;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    padding: 0 15%;
}

.banner-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    padding: 0;
    transition: all 0.3s ease;
}

.banner-dots button.active {
    background: white;
    transform: scale(1.2);
}

.btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary);
    color:black;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

@media (max-width: 768px) {
    .carousel-caption {
        padding: 0 10%;
    }
    
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .banner-dots {
        right: 15px;
    }
}
/* End Banner */


.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(--primary)!important;
}
.bg-primary{
    background-color:var(--primary)!important;
}
.bg-custom-color{
    background: linear-gradient(135deg, rgba(252,98,23,0.9), rgba(252,98,23,0.4));
    color:white;
}
.list-unstyled li a{
    color: rgba(255,255,255,0.7);
}
.list-unstyled li a:hover{
    color: rgba(252,98,23,0.8);
}

@media (max-width:768px){
    .event-card .col-md-5{
        width:45%;
    }
    .event-card .col-md-7{
        width:55%;
    }
}