/* --------------------------
   GLOBAL THEME
--------------------------- */

/* Colors */
:root {
    --clr-bg-dark: #0f1b3a;           /* deep navy blue background */
    --clr-accent: #7a0e21;           /* rich maroon */
    --clr-accent-light: #b91c35;
    --clr-text-dark: #1a1a1a;
    --clr-text-light: #ffffff;
    --clr-soft-bg: #f8f9fb;

    --radius-xl: 1.25rem;
    --radius-lg: 1rem;
    --radius-md: 0.75rem;
    --radius-sm: 0.5rem;

    --shadow-card: 0 16px 40px rgba(15,27,58,0.12);
}

/* Typography */
html, body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    color: var(--clr-text-dark);
    background-color: #fff;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

h1,h2,h3,h4,h5,h6,
.section-title,
.brand-name,
.footer-brand-name {
    font-family: 'Rajdhani', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-bg-dark);
    letter-spacing: -0.03em;
}

.text-theme {
    color: var(--clr-accent);
}

/* Utilities */
.section-pad {
    padding: 70px 0;
}
@media (min-width:768px){
    .section-pad {
        padding: 90px 0;
    }
}

.section-head .section-mini-title {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--clr-accent);
    background: rgba(186, 23, 53, 0.08);
    padding: 0.4rem 0.7rem;
    border-radius: var(--radius-md);
    margin-bottom: .5rem;
}

.section-head .section-title {
    font-size: clamp(1.5rem, 1vw + 1rem, 2rem);
    font-weight: 700;
    color: var(--clr-bg-dark);
    margin-bottom: .75rem;
}

.section-desc {
    max-width: 560px;
    font-size: .95rem;
    color: #555;
}

/* --------------------------
   TOP BAR
--------------------------- */
.top-bar {
    background: linear-gradient(90deg, var(--clr-accent) 0%, var(--clr-bg-dark) 100%);
    font-size: 0.8rem;
}
.top-bar a {
    color: var(--clr-text-light);
}

/* --------------------------
   NAVBAR / HEADER
--------------------------- */
.header .navbar {
    background-color: var(--clr-bg-dark);
}

.logo-img {
    width: 100%;
    height: 75px;
    object-fit: contain;
    border-radius: 4px;
    /* border-radius: var(--radius-md); */
    background-color: #fff;
    padding: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,.2);
}

.brand-name {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}
.tagline {
    font-size: .7rem;
    color: #8ea2ff;
    font-weight: 500;
    letter-spacing: .05em;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    font-size: .9rem;
    padding: .75rem 1rem;
    position: relative;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--clr-accent-light);
}
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    content:"";
    position:absolute;
    left:1rem;
    right:1rem;
    bottom:0;
    height:2px;
    background: var(--clr-accent-light);
    border-radius: 2px;
}

.btn-call {
    background: var(--clr-accent);
    color: #fff !important;
    border-radius: var(--radius-md);
    box-shadow: 0 14px 24px rgba(186,23,53,.4);
    font-size: .85rem;
    padding: .6rem .9rem;
    line-height: 1.2;
    border: 0;
}
.btn-call:hover {
    background: var(--clr-accent-light);
    color: #fff;
}

/* --------------------------
   HERO / CAROUSEL
--------------------------- */
.hero-section {
    position: relative;
}
.hero-section .carousel,
.hero-section .carousel-item,
.hero-img {
    max-height: 80vh;
    min-height: 420px;
}
.hero-img {
    object-fit: cover;
    filter: brightness(.45);
}
.carousel-caption {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 560px;
    text-shadow: 0 15px 35px rgba(0,0,0,.8);
}
.hero-badge {
    background: var(--clr-accent);
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    color: #fff;
    padding: .4rem .6rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: .07em;
}
.hero-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.6rem, 1vw + 1rem, 2.3rem);
    font-weight: 700;
    margin-top: .75rem;
    margin-bottom: .5rem;
    color: #fff;
    letter-spacing: -0.03em;
}
.hero-desc {
    font-size: .95rem;
    color: #e6e6e6;
    max-width: 480px;
    margin-bottom: 1.25rem;
}
.btn-hero,
.btn-hero-alt {
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: .9rem;
    line-height:1.2;
    padding: .7rem 1rem;
    border:0;
}
.btn-hero {
    background: var(--clr-accent);
    color:#fff;
    box-shadow:0 16px 38px rgba(186,23,53,.55);
}
.btn-hero:hover {
    background: var(--clr-accent-light);
    color:#fff;
}
.btn-hero-alt {
    background:#fff;
    color: var(--clr-bg-dark);
    box-shadow:0 16px 38px rgba(0,0,0,.3);
}
.btn-hero-alt:hover {
    background:#f4f4f4;
    color: var(--clr-bg-dark);
}

/* --------------------------
   ABOUT
--------------------------- */
.about-section .about-img-wrap {
    position: relative;
}
.about-badge {
    position:absolute;
    left:0;
    top:0;
    background: var(--clr-bg-dark);
    color:#fff;
    border-radius: var(--radius-md);
    padding:.5rem .75rem;
    font-family:'Rajdhani',sans-serif;
    font-weight:700;
    font-size:.8rem;
    line-height:1.2;
    text-align:center;
    box-shadow:0 16px 32px rgba(15,27,58,.5);
    z-index:2;
}
.about-badge-top {
    display:block;
    color: var(--clr-accent-light);
    font-size:1rem;
}
.about-badge-bottom {
    display:block;
    font-size:.7rem;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:#fff;
}

.about-main-img {
    border-radius: var(--radius-xl) !important;
    border:4px solid #fff;
}

.about-floating-card {
    position:absolute;
    right:0;
    bottom:-20px;
    background:#fff;
    border-radius: var(--radius-lg);
    padding:1rem 1.25rem;
    box-shadow: var(--shadow-card);
    width: 220px;
}
.icon-circle {
    width:48px;
    height:48px;
    border-radius:50%;
    background: var(--clr-accent);
    box-shadow:0 10px 20px rgba(186,23,53,.4);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.about-list {
    list-style:none;
    padding-left:0;
    margin-top:1rem;
}
.about-list li {
    display:flex;
    align-items:flex-start;
    font-size:.9rem;
    color:#444;
    margin-bottom:.5rem;
}
.about-list i {
    color: var(--clr-accent);
    font-size:1rem;
    margin-top:.2rem;
}

/* --------------------------
   SERVICES
--------------------------- */
.services-section .service-card {
    background:#fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow:hidden;
    transition:all .25s ease;
    border:1px solid rgba(0,0,0,.03);
}
.services-section .service-card:hover {
    transform:translateY(-4px);
    box-shadow:0 24px 48px rgba(15,27,58,.18);
}
.service-img-wrap {
    position:relative;
    background:#fff;
    text-align:center;
    padding:1.5rem;
}
.service-img-wrap img {
    max-height:140px;
    object-fit:contain;
}
.service-badge {
    position:absolute;
    top:1rem;
    left:1rem;
    background: var(--clr-accent);
    color:#fff;
    font-size:.7rem;
    font-weight:600;
    padding:.4rem .6rem;
    border-radius: var(--radius-sm);
    text-transform:uppercase;
    box-shadow:0 14px 28px rgba(186,23,53,.5);
}
.service-body {
    padding:1rem 1.25rem 1.5rem;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-start;
}
.service-title {
    font-size:1rem;
    color: var(--clr-bg-dark);
    font-weight:600;
    line-height:1.3;
    margin:0;
    max-width:70%;
}
.service-link {
    font-size:.8rem;
    font-weight:600;
    text-decoration:none;
    color: var(--clr-accent);
    border-bottom:2px solid transparent;
}
.service-link:hover {
    color: var(--clr-accent-light);
    border-bottom-color: var(--clr-accent-light);
}

/* --------------------------
   WHY US
--------------------------- */
.whyus-section {
    background: radial-gradient(circle at 20% 20%, rgba(15,27,58,.07) 0%, rgba(15,27,58,0) 70%);
}
.why-card {
    display:flex;
    gap:.75rem;
    background:#fff;
    border-radius: var(--radius-lg);
    padding:1rem 1rem;
    box-shadow: var(--shadow-card);
    height:100%;
}
.why-icon {
    width:44px;
    height:44px;
    border-radius:var(--radius-md);
    background: var(--clr-accent);
    color:#fff;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
    box-shadow:0 14px 28px rgba(186,23,53,.45);
}
.why-info h5 {
    font-size:.95rem;
    font-weight:600;
    margin-bottom:.25rem;
    color:var(--clr-bg-dark);
}
.why-info p {
    font-size:.8rem;
    color:#555;
    margin:0;
}
.why-phone {
    color:var(--clr-accent);
    text-decoration:none;
}
.stats-card {
    background:#fff;
    border:1px solid rgba(0,0,0,.03);
}
.stat-box .stat-number {
    font-family:'Rajdhani',sans-serif;
    font-weight:700;
    font-size:2rem;
    color:var(--clr-bg-dark);
    line-height:1;
}
.stat-plus {
    font-size:1.1rem;
    color:var(--clr-accent);
    margin-left:.1rem;
}
.stat-label {
    font-size:.8rem;
    color:#555;
    font-weight:500;
    margin-top:.4rem;
}

/* --------------------------
   ACHIEVEMENTS
--------------------------- */
.ach-card {
    background:#fff;
    border-radius: var(--radius-lg);
    border:1px solid rgba(0,0,0,.03);
}
.ach-icon {
    width:56px;
    height:56px;
    border-radius:var(--radius-md);
    background:var(--clr-bg-dark);
    color:#fff;
    font-size:1.4rem;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-left:auto;
    margin-right:auto;
    box-shadow:0 20px 40px rgba(15,27,58,.5);
}
.ach-title {
    font-size:1rem;
    font-weight:600;
    color:var(--clr-bg-dark);
}
.ach-text {
    font-size:.9rem;
    color:#555;
}

/* --------------------------
   GALLERY
--------------------------- */
.gallery-section {
    background: radial-gradient(circle at 80% 20%, rgba(186,23,53,.07) 0%, rgba(186,23,53,0) 70%);
}
.gallery-item {
    cursor:pointer;
    position:relative;
    overflow:hidden;
    border-radius: var(--radius-md);
}
.gallery-thumb {
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius: var(--radius-md);
    transition: all .25s ease;
}
.gallery-item:hover .gallery-thumb {
    transform:scale(1.05);
    box-shadow:0 24px 48px rgba(0,0,0,.4);
}

/* Modal overrides */
#galleryModal .modal-content {
    background:rgba(0,0,0,.7);
}

/* --------------------------
   CONTACT
--------------------------- */
.contact-card,
.contact-form-card {
    background:#fff;
    border:1px solid rgba(0,0,0,.03);
    box-shadow: var(--shadow-card);
}
.contact-card .text-theme,
.contact-badge .text-theme,
.contact-section .text-theme {
    color: var(--clr-accent) !important;
}
.contact-badge {
    background:#fff;
    border:1px solid rgba(0,0,0,.05);
}
.contact-badge i {
    color:var(--clr-bg-dark);
}
.form-control,
.form-control:focus,
.form-control-lg,
.form-control-lg:focus {
    border-radius: var(--radius-md);
    border-color:#d0d4e6;
    box-shadow:none;
    font-size:.9rem;
}
.btn-theme {
    background: var(--clr-accent);
    color:#fff;
    border-radius: var(--radius-md);
    font-weight:600;
    border:0;
    box-shadow:0 18px 36px rgba(186,23,53,.5);
}
.btn-theme:hover {
    background: var(--clr-accent-light);
    color:#fff;
}
.btn-outline-theme {
    border-radius: var(--radius-md);
    border:2px solid var(--clr-accent);
    color:var(--clr-accent);
    font-weight:600;
    background:transparent;
}
.btn-outline-theme:hover {
    background:var(--clr-accent);
    color:#fff;
    box-shadow:0 18px 36px rgba(186,23,53,.5);
}

/* --------------------------
   MAP
--------------------------- */
.map-section {
    position:relative;
    overflow:hidden;
}
.map-embed-wrapper {
    width:100%;
    height:350px;
}
@media(min-width:768px){
    .map-embed-wrapper { height:420px; }
}
.map-embed {
    border:0;
    width:100%;
    height:100%;
}

/* --------------------------
   FOOTER
--------------------------- */
.footer-section {
    background: radial-gradient(circle at 20% 20%, rgba(186,23,53,.12) 0%, rgba(15,27,58,0) 70%), var(--clr-bg-dark);
    font-size:.9rem;
}
.footer-logo {
    width:150px;
    height:50px;
    object-fit:contain;
    border-radius: var(--radius-md);
    background-color:#fff;
    padding:4px;
    box-shadow:0 10px 20px rgba(0,0,0,.4);
}
.footer-brand-name {
    color:#fff;
    font-size:1.05rem;
}
.footer-desc {
    color:#cfd4ff;
    max-width:220px;
}
.btn-call-footer {
    background:var(--clr-accent);
    color:#fff;
    border-radius:var(--radius-md);
    border:0;
    box-shadow:0 16px 32px rgba(186,23,53,.5);
}
.btn-call-footer:hover {
    background: var(--clr-accent-light);
    color:#fff;
}
.footer-title {
    font-size:1rem;
    font-weight:600;
    color:#fff;
    margin-bottom:1rem;
}
.footer-links li {
    margin-bottom:.4rem;
}
.footer-links a {
    text-decoration:none;
    color:#cfd4ff;
    font-size:.9rem;
}
.footer-links a:hover {
    color:#fff;
}
.footer-links i {
    color: var(--clr-accent);
    font-size:.8rem;
    margin-right:.4rem;
}

.footer-contact i {
    font-size:1rem;
}
.footer-contact span,
.footer-contact a {
    color:#fff;
    font-size:.85rem;
    line-height:1.4;
}
.footer-emergency {
    color:var(--clr-accent-light);
    font-weight:600;
    font-size:.95rem;
    text-decoration:none;
}

.footer-divider {
    border-top:1px solid rgba(255,255,255,.15);
}

/* --------------------------
   SCROLL TO TOP BUTTON
--------------------------- */
.scroll-top-btn {
    position:fixed;
    right:1rem;
    bottom:1rem;
    width:42px;
    height:42px;
    border:none;
    border-radius: var(--radius-md);
    background: var(--clr-accent);
    color:#fff;
    font-size:1.1rem;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 16px 32px rgba(186,23,53,.5);
    opacity:0;
    visibility:hidden;
    transition:all .25s ease;
    z-index:999;
}
.scroll-top-btn.show {
    opacity:1;
    visibility:visible;
}
.scroll-top-btn:hover {
    background:var(--clr-accent-light);
}

/* --------------------------
   RESPONSIVE TWEAKS
--------------------------- */
@media(max-width: 575.98px){
    .carousel-caption{
        max-width:90%;
    }
    .hero-heading{
        font-size:1.6rem;
    }
    .hero-desc{
        font-size:.85rem;
    }
    .tagline{
        font-size:.6rem;
    }
    .navbar-nav .nav-link {
        padding:.6rem .8rem;
    }
}

.top-wrap {
    position: sticky;
    top: 0;
    z-index: 1030; /* higher than cards etc */
}



@media (max-width: 575.98px){
    #hero {
        /* padding-top: 60px; */
    }
}






/* --------------------------
   FLOATING ACTION BUTTONS
--------------------------- */
.fab-container2{
    position: fixed;
    left: 1rem;
    bottom: 5rem; /* clears the scroll-top button at bottom:1rem */
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.fab-container{
    position: fixed;
    right: 1rem;
    bottom: 5rem; /* clears the scroll-top button at bottom:1rem */
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.fab-item{
    position: relative;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.fab{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(0,0,0,.25);
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    opacity: .98;
}
.fab:hover{
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(0,0,0,.28);
}

/* Brand colors */
.fab-whatsapp{ background: #25D366; } /* WhatsApp green */
.fab-call{ background: var(--clr-accent); } /* Site maroon */

/* Optional subtle pulse to attract attention */
@keyframes fabPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.fab-whatsapp{ animation: fabPulse 2.4s infinite; }

/* Floating labels (show on hover, desktop only) */
.fab-label{
    background: rgba(15,27,58,.95); /* deep navy from theme */
    color: #fff;
    font-size: .8rem;
    padding: .35rem .5rem;
    border-radius: .5rem;
    white-space: nowrap;
    transform: translateX(8px);
    opacity: 0;
    pointer-events: none;
    transition: all .15s ease;
    border: 1px solid rgba(255,255,255,.08);
}
.fab-item:hover .fab-label{
    transform: translateX(0);
    opacity: 1;
}

/* Mobile-friendly sizing and spacing */
@media (max-width: 575.98px){
    .fab{ width: 56px; height: 56px; font-size: 1.35rem; }
    .fab-container{ right: .8rem; bottom: 4.8rem; gap: .55rem; }
    .fab-label{ display: none; } /* hide labels on small screens to avoid clutter */
}

/* Ensure scroll-top stays visible beside FABs */
#scrollTopBtn{ right: 1rem; bottom: 1rem; }
@media(max-width:767px)
{
	.mb-ds-nn{
		display:none
	}
}
