:root {
    --primary: #FC6217;
    --secondary:#FFD447;
    --accent: #FC6217;
    --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: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.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 800;
}
/* 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 {
    min-height: 80vh;
    
    color: white;
}


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

.about-us .badge.bg-dark {
    width: 45px;
    height: 45px;
}

.about-us .icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background-color: rgba(252, 98, 23, 0.3);
    
    transition: all 0.3s ease;
}

.about-us .feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

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

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

.about-us .trust-badge {
    position: absolute;
    bottom: 40px;
    left: 0;
    transform: translateX(-30%);
}

.about-us .badge-content {
    min-width: 200px;
    text-align: center;
}

@media (max-width: 991px) {
    .about-us .content-wrapper {
        margin-bottom: 3rem;
    }

    .about-us .trust-badge {
        transform: translateX(0);
        left: 20px;
    }
}

/* 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-section {
  /*  background: linear-gradient(to right, #2D3436 50%, #E5E7EB 50%); */
}

 .team-section .info-card, .image-card {
    aspect-ratio: 1;
    height: 100%;
    position: relative;
}

 .team-section .info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
    padding: 2rem !important;
}

 .team-section .image-card {
    overflow: hidden;
}

 .team-section .image-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(100%);
}

 .team-section .image-card:hover img {
    transform: scale(1.05);
}

 .team-section .icon-circle {
    width: 50px;
    height: 50px;
    background: #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2D3436;
}

 .team-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2D3436;
}
.team-section .social-icons a{
    width: 50px;
    height: 50px;
    background: #E5E7EB;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding:10px;
    color: #2D3436;
}
@media (max-width: 768px) {
     .team-section {
       /* background: #E5E7EB;*/
    }
}
    
/* Facilities */
.services-section {
    background-color: #f8f9fa;
}

.service-showcase {
    height: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.before-after-slider {
    position: relative;
    height: 100%;
    cursor: col-resize;
}

.before-after-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider-handle {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fff;
    cursor: col-resize;
    transform: translateX(-50%);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #00B4D8;
    transform: translate(-50%, -50%);
}

.slider-labels {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.slider-labels span {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 98, 23, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-content {
    padding: 20px;
}

.service-content h4 {
    color: #1d2a4d;
    margin-bottom: 10px;
}

.service-content p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 14px;
}

.appointment-banner {
    background: linear-gradient(45deg, #00B4D8, #0077B6);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
}
.facility-heading{
    height:100vh;
}
@media (max-width: 991px) {
    .service-showcase {
        height: 400px;
        margin-bottom: 30px;
    }
    .facility-heading{
        height:60vh;
    }
}

@media (max-width: 768px) {
    .facility-heading{
        height:40vh;
    }
}


/* Event */
.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: var(--secondary);
    color:black;
    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-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(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 .contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

.contact-section .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  }

.contact-section .icon-circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #f1f1f1;
    display: inline-block;
    transition: background 0.3s ease;
  }

.contact-section .contact-card:hover .icon-circle {
    background: #e0e0e0;
  }

.contact-section .form-control:focus {
    border-color: #6f42c1;
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
  }
  
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);
}

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