
body {
    font-family: 'Segoe UI', sans-serif;
}

/* TOP HEADER */
.top-header {
    background: #830d0b;
    color: white;
    font-size: 14px;
}
.top-header i {
    margin-right: 5px;
}
.social-icons i {
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.social-icons i:hover {
    color: #ffc107;
}

/* NAVBAR */
/* NAVBAR BASE */
.custom-navbar {
    height: 95px;
    transition: all 0.4s ease;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* SHRINK ON SCROLL */
.custom-navbar.scrolled {
    height: 70px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* LOGO */
.navbar-brand {
    line-height: 1.1;
}
.logo-main {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}
.logo-tagline {
    font-size: 12px;
    color: gray;
    letter-spacing: 1px;
}
.logo {
  width: 280px;
}

/* Mobile ke liye */
@media (max-width: 768px) {
  .logo {
    width: 200px;
  }
}

/* NAV LINKS */
.nav-link {
    margin: 0 12px;
    font-weight: 500;
    position: relative;
    color: #333;
    transition: 0.3s;
}

/* UNDERLINE ANIMATION */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--primary);
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* HOVER COLOR */
.nav-link:hover {
    color: var(--primary);
}

.custom-navbar {
    background: #fff;
    height: 95px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* LOGO */
.logo-main {
    font-size: 26px;
    font-weight: bold;
    color: #830d0b;
}
.logo-tagline {
    font-size: 12px;
    color: gray;
}

/* NAV LINKS */
.nav-link {
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    color: #333;
}

/* SMOOTH UNDERLINE EFFECT */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #830d0b;
    left: 0;
    bottom: -6px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #830d0b;
}

/* BUTTON */
.btn-primary {
    background: linear-gradient(45deg, #830d0b, #db3734);
    border: none;
}

@media (max-width: 768px) {

    .top-header {
        text-align: center;
    }

    .top-left {
        width: 100%;
        margin-bottom: 5px;
    }

    .top-right {
        width: 100%;
    }

    .custom-navbar {
        height: auto;
        padding: 10px 0;
    }
}
/* CTA BUTTON */
.btn-primary {
    background: linear-gradient(45deg, #830d0b, #db3734);
    border: none;
}
.btn-primary:hover {
    opacity: 0.9;
}

/* DARK MODE SUPPORT */
body.dark .custom-navbar {
    background: rgba(20,20,20,0.9);
}
body.dark .nav-link {
    color: #ddd;
}

.top-header {
    background: linear-gradient(90deg, #830d0b, #db3734);
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

.top-header i {
    margin-right: 5px;
}

/* SOCIAL ICONS */
.top-right a {
    color: white;
    margin-left: 12px;
    display: inline-block;
    transition: 0.3s;
}

.top-right a:hover {
    transform: translateY(-3px);
    color: #ffc107;
}

/* SLIDER */
.carousel-item img {
    height: auto;
    object-fit: cover;
}

/* SECTION */
.section {
    padding: 60px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* WHY US */
/* WHY SECTION BACKGROUND */
.why-section {
    background: linear-gradient(180deg, #f8fbff, #ffffff);
}

/* CARD DESIGN */
.why-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

/* ICON */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #830d0b, #db3734);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: 0.4s;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(13,110,253,0.2);
}

/* GLOW EFFECT */
.why-card::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(13,110,253,0.1), transparent);
    top: 0;
    left: 0;
    transition: 0.5s;
}

.why-card:hover::before {
    width: 100%;
}

/* ICON HOVER */
.why-card:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
}

/* TEXT */
.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}
.why-card p {
    font-size: 14px;
    color: #666;
}

.why-card:hover .icon-box {
    background: linear-gradient(45deg, #db3734, #830d0b);
}

/* ABOUT */
/* ABOUT IMAGE */
.about-img {
    position: relative;
}
.about-img img {
    width: 100%;
    border-radius: 15px;
    z-index: 2;
    position: relative;
}

/* BACKGROUND SHAPE */
.about-section{
    background: antiquewhite;
}

.about-img::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(45deg, #830d0b, #db3734);
    top: -20px;
    left: -20px;
    border-radius: 15px;
    z-index: 1;
}

/* LIST */
.about-list {
    list-style: none;
    padding: 0;
}
.about-list li {
    margin-bottom: 10px;
    font-size: 15px;
}
.about-list i {
    color: #830d0b;
    margin-right: 8px;
}

/* COUNTERS */
.counter {
    font-weight: bold;
    color: #830d0b;
}

/* COUNTER BOX */
.counter-box {
    background: #fff;
    padding: 25px 10px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* NUMBER */
.counter-box h3 {
    font-size: 28px;
    font-weight: bold;
    color: #830d0b;
    margin-bottom: 5px;
}

/* TEXT */
.counter-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/*

/* GALLERY */
/* CARD */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.4s;
}

/* IMAGE */
.gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* HOVER ZOOM */
.gallery-card:hover img {
    transform: scale(1.15);
}

/* OVERLAY */
.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13,110,253,0.2);
    opacity: 0;
    transition: 0.4s;
}

.gallery-card:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-card img {
        height: 150px;
    }
}

/* CONTACT */
/* SECTION BACKGROUND */
.contact-section {
    background: antiquewhite;
    padding: 60px 0;
}

/* FORM */
.contact-form .form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    transition: 0.3s;
}

.contact-form .form-control:focus {
    border-color: #830d0b;
    box-shadow: 0 5px 20px rgba(13,110,253,0.15);
    outline: none;
}

/* BUTTON */
.submit-btn {
    padding: 12px 30px;
    border-radius: 50px;
    background: linear-gradient(45deg, #830d0b, #db3734);
    border: none;
    color: white;
    font-weight: 600;
    transition: 0.4s;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

/* MAP */
.contact-map iframe {
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* HEADING */
.contact-section .section-title h2 {
    margin-bottom: 8px;
    color: #830d0b;
}
.contact-section .section-title p {
    margin-bottom: 30px;
    color: #666;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .contact-map iframe {
        height: 300px;
    }
}

/* FOOTER */
.footer {
    background: #212529;
    color: white;
    padding: 50px 0;
}
.footer a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}
.footer a:hover {
    color: #830d0b;
}
.footer i {
    margin-right: 8px;
}
/* LOADER */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ddd;
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 12px 15px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* SLIDER IMAGE */
/* .slider-img {
    width: 100%;
    height: 500px;
    object-fit: cover; /* desktop 
}

/* MOBILE FULL IMAGE FIX 
@media (max-width: 768px) {
    .slider-img {
        height: auto;          /* auto height 
        object-fit: contain;   /* show full image 
        background: #000;      /* fill empty space 
    }
} */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 50%;
}

/* SECTION BG */
.specialties-section {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

/* CARD */
.special-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    text-align: center;
}

/* IMAGE */
.special-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.6s;
}

/* OVERLAY (GLASS EFFECT) */
.special-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: linear-gradient(
        to top,
        rgba(13,110,253,0.9),
        rgba(13,110,253,0.3),
        transparent
    );

    color: #fff;
    opacity: 0;
    transition: 0.4s;
    backdrop-filter: blur(4px);
}

/* TEXT */
.special-overlay h5 {
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: 0.4s;
}
.special-overlay p {
    font-size: 14px;
    transform: translateY(20px);
    transition: 0.4s;
}

/* HOVER EFFECT */
.special-card:hover img {
    transform: scale(1.15);
}

.special-card:hover .special-overlay {
    opacity: 1;
}

.special-card:hover .special-overlay h5,
.special-card:hover .special-overlay p {
    transform: translateY(0);
}

/* BORDER GLOW */
.special-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: 0.3s;
}

.special-card:hover::after {
    border-color: rgba(13,110,253,0.5);
}

.special-card:hover {
    box-shadow: 0 20px 40px rgba(13,110,253,0.25);
}

@media (max-width: 768px) {
    .special-card img {
        height: 220px;
    }
}

/* VIDEO CARD */
.youtube-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* HOVER EFFECT */
.youtube-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(13,110,253,0.25);
}

/* RESPONSIVE IFRAME */
.youtube-card iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.youtube-card:hover iframe {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .youtube-card iframe {
        height: 180px;
    }
}

.youtube-card::after {
    content: "\f144";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: rgba(255,255,255,0.8);
    opacity: 0;
    transition: 0.3s;
}

.youtube-card:hover::after {
    opacity: 1;
}
/* SECTION BACKGROUND */
.why-choose-us-section {
    background: #f0f8ff;
    padding: 80px 0;
}

/* IMAGE */
.why-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.why-img img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.6s ease;
}
.why-img:hover img {
    transform: scale(1.08);
}

/* DECORATIVE CIRCLE */
.decorative-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(13,110,253,0.2);
    top: -20px;
    right: -20px;
    z-index: 1;
    animation: floatCircle 6s ease-in-out infinite;
}
@keyframes floatCircle {
    0%, 100% { transform: translateY(0);}
    50% { transform: translateY(15px);}
}

/* TEXT */
.why-text h2 {
    color: #830d0b;
    margin-bottom: 10px;
}
.why-text .tagline {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* LIST */
.why-list {
    list-style: none;
    padding: 0;
}
.why-list li {
    margin-bottom: 12px;
    font-size: 15px;
}
.why-list i {
    color: #830d0b;
    margin-right: 8px;
}

/* BUTTON */
.why-text .btn-primary {
    background: linear-gradient(45deg, #830d0b, #db3734);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: 0.3s;
}
.why-text .btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .why-img, .why-text {
        text-align: center;
    }
    .why-img .decorative-circle {
        display: none;
    }
    .why-text .btn-primary {
        margin-top: 20px;
    }
}

/* SECTION BACKGROUND */
.qr-contact-section {
    background: #f0f8ff;
    padding: 80px 0;
}

/* QR CARD */
.qr-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
}
.qr-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}
.qr-card h4 {
    margin-top: 20px;
    color: #830d0b;
    font-weight: 600;
    font-size: 18px;
}
.qr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(13,110,253,0.2);
}

/* INFO BOX */
.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
    cursor: default;
}
.info-box i {
    font-size: 28px;
    color: #830d0b;
    flex-shrink: 0;
}
.info-text h5 {
    margin: 0 0 5px 0;
    font-weight: 600;
}
.info-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* HOVER EFFECT */
.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13,110,253,0.2);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .qr-card img {
        width: 150px;
        height: 150px;
    }
    .qr-card h4 {
        font-size: 16px;
    }
}

/* SECTION BACKGROUND */
.find-us-online-section {
    background: #f8fbff;
    padding: 80px 0;
}

/* ONLINE BOX */
.online-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
}

.online-box img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.online-box h5 {
    font-weight: 600;
    margin: 0;
}

/* HOVER EFFECT */
.online-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(13,110,253,0.2);
}
.online-box:hover img {
    transform: scale(1.1);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .online-box img {
        width: 60px;
    }
}

/* FOOTER BACKGROUND */
.footer-section {
    background: #830d0b;
    color: #fff;
    padding: 60px 0 30px 0;
}

/* LOGO */
.footer-logo {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* FOOTER LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover {
    color: #db3734;
    text-decoration: underline;
}

/* CONTACT INFO */
.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.footer-contact i {
    color: #db3734;
}

/* SOCIAL MEDIA */
.footer-social a {
    display: inline-block;
    color: #830d0b;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}
.footer-social a:hover {
    background: #db3734;
    color: #fff;
    transform: translateY(-3px);
}

/* DIVIDER */
.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-social a {
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: #007BFF; /* nice blue */
  color: white;
  border: none;
  border-radius: 50%; /* makes it circular */
  font-size: 16px;
  cursor: pointer;
  opacity: 0; /* hidden by default */
  pointer-events: none;
  transition: opacity 0.4s, transform 0.3s;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* subtle shadow */
}

#backToTop:hover {
  background-color: #0056b3; /* darker blue on hover */
  transform: scale(1.1); /* slight zoom effect */
}

#backToTop.visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-buttons {
  position: fixed;
  bottom: 101px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  opacity: 0; /* initially hidden on mobile */
  pointer-events: none;
}
.floating-buttons.scroll-show {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.4s;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s, background-color 0.3s, opacity 0.4s;
  opacity: 0.9;
}

.floating-btn:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* WhatsApp */
.floating-btn.whatsapp {
  background-color: #25D366;
}

/* Call */
.floating-btn.call {
  background-color: #007BFF;
}

/* Back to Top */
.floating-btn.top {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .floating-buttons {
    opacity: 0;
    pointer-events: none;
  }

  .floating-buttons.scroll-show {
    opacity: 1;
    pointer-events: auto;
  }
}
/* Mobile pe icons chhote karna */
@media (max-width: 768px) {
  .floating-btn {
    width: 45px;      /* pehle 60px */
    height: 45px;     /* pehle 60px */
    font-size: 20px;  /* pehle 24px */
  }

  /* SVG bhi adjust karne ke liye */
  .floating-btn svg {
    width: 20px;   /* pehle 24px */
    height: 20px;  /* pehle 24px */
  }

  /* Spacing adjust karna agar zarurat ho */
  .floating-buttons {
    gap: 12px; /* pehle 15px */
    bottom: 90px; /* optional, thoda upar se spacing */
  }
}

/* Initially hidden for Back to Top */
#backToTop {
  opacity: 0;
  pointer-events: none;
}

#backToTop.visible {
  opacity: 1;
  pointer-events: auto;
}

/* BREADCRUMB SECTION */
.breadcrumb-section {
    padding: 60px 0;
    background: url(../img/br.jpg);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Optional subtle overlay effect */
.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.15);
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

/* TITLE */
.breadcrumb-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* BREADCRUMB NAV */
.breadcrumb-nav {
    font-size: 16px;
}

.breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-nav a:hover {
    color: #ffd700;
}

.breadcrumb-nav span {
    margin: 0 6px;
}

.breadcrumb-nav .active {
    font-weight: 600;
    opacity: 0.9;
}

/* ===== SLIDER ===== */
.slider-section {
  width: 100%;
  background: #000; /* optional */
}

/* Image settings */
.slider-img {
  width: 100%;
  height: 80vh;
  object-fit: contain; /* 🔥 prevents cropping */
  background: #000; /* fills empty space */
}

/* Arrows styling */
.custom-arrow {
  background-size: 60% 60%;
  filter: invert(1); /* white arrows */
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .slider-img {
    height: auto;         /* 🔥 no forced height */
    max-height: 60vh;     /* keeps it neat */
    object-fit: contain;  /* ensures full image visible */
  }

}
