@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Momo+Signature&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&family=Tangerine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Momo+Signature&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&family=Tangerine:wght@400;700&display=swap');

:root {
    --black: #000000;
    --maroon: #8e1616;
    --gold: #dddbd8;
    --cream: #eeeeee;
    --dark-maroon: #6b0f0f;
    --light-gold: #f5e8d0;
    --gradient: linear-gradient(120deg, #000000, #0e141a, #1a1a1a);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif !important;
    color: var(--black);
    overflow-x: hidden;
    background-color: var(--cream);
}

a{
    text-decoration:none !important;
}

section {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Michroma", sans-serif !important;

}

/* Navigation */
/* Transparent modern navbar */
/* Default: transparent nav over hero */
/* ------------------- NAVBAR ------------------- */
.modern-nav {
    width: 100%;
    position: fixed;
    top: 0;
    padding: 20px 60px;
    background: transparent;
    /*transition: background 0.4s ease, box-shadow 0.4s ease;*/
    z-index: 1000;
    font-family: "Michroma", sans-serif !important;
}

.modern-nav.scrolled {
    background: rgba(26, 25, 25, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
     width: 100%;
   
    top: 0;
    left: 0;
    /*padding: 20px 60px;*/
    /*backdrop-filter: blur(6px);*/
}

.modern-nav.scrolled .nav-toggle {
    color: white !important;
}

 .logo{
        width:200px;
        padding: 10px;
        border:1px solid var(--maroon);
         border-radius:7px;
    }
    .logo img{
            width: 100%;
        object-fit:cover;
    }

.modern-nav.scrolled .logo {
    background:white !important;
    border:1px solid white !important;
   
}

/* Hamburger icon (mobile) */
.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    position: absolute;
    right: 30px;
}

/* Responsive Menu Behaviour */
@media (max-width: 992px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        background: rgba(0, 0, 0, 0.95);
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: auto;
        border-radius: 10px;
        padding: 20px;
        transition: right 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        width: -webkit-fill-available;
    }

    .nav-menu li {
        width: 100%;
        margin: 10px 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .nav-menu {
        width: 200px;
        right: -100%;
    }

    /* .nav-menu.active {
        right: 10px;
    } */

    .nav-logo {
        font-size: 1.1rem;
    }
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: black;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    background: rgba(0, 0, 0, 0.447);
    padding: 8px;
    border-radius: 40px;
    backdrop-filter: blur(8px);
    margin: 0;
}

.nav-menu li {
    margin: 0 5px;
}

.nav-menu a {
    display: block;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    color:white;
}

.nav-menu li .active {
    background: rgba(255, 255, 255, 0.2);
}

.register-btn {
    background: var(--dark-maroon);
    color: white !important;
    font-weight: 600;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: #b30000 !important;
    color: #fff !important;
}

/* ========== Navbar Responsive ========== */
@media (max-width: 992px) {
    .modern-nav {
        padding: 38px 15px 15px 15px;
    }

    .nav-menu {
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        position: fixed;
        top: 112px;
        right: -100%;
        width: 220px;
        border-radius: 10px;
        padding: 20px;
        transition: right 0.4s ease;
    }

    .nav-menu.active {
        right: 0px;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-menu a {
        color: #fff;
        text-align: center;
    }

    /* Hamburger Menu */
    .nav-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: #000000;
        z-index: 1100;
    }


}

@media (min-width: 993px) {
    .nav-toggle {
        display: none;
    }
}


/* ------------------- HERO SECTION ------------------- */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--cream);
    color: var(--black);
    padding-top: 120px;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.3);
    font-family: "Michroma", sans-serif !important;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333;
}

.hero-buttons .btn {
    margin-right: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-custom-primary {
    background-color: #800000 !important;
    border: none !important;
    color: #fff !important;
}

.btn-custom-primary:hover {
    background-color: #a51e1e !important;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #800000;
    color: #800000;
}

.btn-secondary:hover {
    background-color: #800000;
    color: #fff;
}

/* Video Box Styling */
.hero-video-wrapper {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: #ffffff86;
    padding: 10px 10px 0px 10px;
}

.hero-video-wrapper video {
    width: 100%;
    height: auto;
    object-fit: cover;

}


/* ========== Hero Responsive ========== */
@media (max-width: 992px) {
    .hero {
        padding: 120px 20px 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-video-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 15px 50px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

/* Stats Section */
.stats-section {
    background: var(--cream);
    color: var(--black);
    padding-bottom: 50px;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Embedded Video */
.stats-video {
    flex: 1 1 250px;
    border-radius: 12px;
    overflow: hidden;
    /* Change the website theme to the dark theme  */
    max-width: 250px;
    max-height: 250px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.stats-video video {
    margin-top: -110px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: brightness(85%);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.stats-video:hover video {
    transform: scale(1.05);
    filter: brightness(100%);
}

/* Stats Boxes */
.stats-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px 40px;
    flex: 2 1 600px;
    gap: 50px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.stat-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--black);
    font-size: 0.95rem;
    margin: 0;
    font-family: "Michroma", sans-serif !important;

}

/* Right Text */
.stats-text {
    flex: 1 1 250px;
    color: var(--black);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 250px;
    font-family: "Michroma", sans-serif !important;

}

/* Stats Boxes */
.stats-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px 40px;
    flex: 2 1 600px;
    gap: 50px;
    text-align: center;
    backdrop-filter: blur(8px);
}

/* Trust Section */
.trust-section {
    background: #f8f9fa;
}

.trust-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.trust-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: #e10600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 auto 15px; */
    font-size: 2rem;
    transition: all 0.3s ease;
}

.trust-card:hover .icon-wrapper {
    background: #c00500;
    transform: scale(1.05);
}

.trust-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.trust-card p {
    color: #666;
    font-size: 0.95rem;
}

/* service-section */

.services-section {
    background: radial-gradient(circle at center, #121212 0%, #0c0c0c 100%);
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-title,
.section-title-dark {
    font-weight: 700;
    color: var(--cream);
    text-align: center;
}

.section-title-dark {
    color: var(--black) !important;
}

.section-subtitle {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 10px auto 0;
    padding-bottom: 50px;
}

.services-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    height: -webkit-fill-available;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.service-card .icon {
    background: #b20000;
    color: #fff;
    font-size: 22px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0;
    line-height: 1.6;
}

/* Center Image */
.service-center {
    flex: 1;
    text-align: center;
    position: relative;
}

.service-center img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 0;
    transition: transform 0.5s ease;
    transform: scale(1.5);
}

/* Responsive */
@media (max-width: 991px) {
    .services-layout {
        flex-direction: column;
        align-items: center;
    }
    


    .services-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-card {
        width: 280px;
    }

    .service-center img {
        max-width: 400px;
    }
}

/* about-section */
.about-section {
    background: var(--gradient);
    color: #fff;
    padding: 100px 0;
}

.about-img img {
    width: 100%;
    max-width: 350px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.about-img img:hover {
    transform: scale(1.03);
}

.about-content {
    padding-left: 30px;
}

.about-subtitle {
    color: var(--maroon);
    /* Red accent underline style */
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.about-subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 60px;
    height: 2px;
    background: var(--maroon);
}

.about-title,
.dark-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.light-title {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.about-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.image-showcase {
    background: linear-gradient(145deg, #1a1a1a, #2b2f33);
    padding: 120px 0;
}

.showcase-img {
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
    filter: brightness(0.95);
}

.showcase-img:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.showcase-img:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Larger first image */
.showcase-img.large img {
    height: 500px;
}

@media (max-width: 991px) {
    .showcase-img img {
        height: 380px;
    }

    .showcase-img.large img {
        height: 400px;
    }
}

@media (max-width: 767px) {

    .showcase-img img,
    .showcase-img.large img {
        height: 300px;
    }

    /* p {
        text-align: left;
    } */

    .stats-video {
        max-width: 100%;
    }

    .stats-video video {
        margin-top: -220px;
    }

    .stats-boxes {
        flex-direction: column;
    }

    .stats-text {
        max-width: 100%;
    }

    .stats-text p {
        text-align: center !important;
    }

    .service-card {
        margin: 0 auto;
    }

    .video-wrapper {
        max-width: 100%;
    }

    iframe {
        width: 100%;
    }
    
    
  
    
    
}

/* Responsive */
@media (max-width: 991px) {
    .about-section {
        text-align: center;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-img img {
        max-width: 200px;
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: var(--cream);
}

.contact-form {
    background: var(--gradient);
    padding: 60px;
    border-radius: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--maroon);
}

.form-control {
    border: 2px solid var(--gold);
    padding: 14px 18px;
    border-radius: 0;
    transition: all 0.3s ease;
    background-color: #0a0a0a;
    color: var(--cream);
    font-weight: 500;
}

.form-control::placeholder {
    color: rgba(248, 238, 223, 0.5);
}

.form-control:focus {
    border-color: var(--cream);
    box-shadow: 0 0 0 0 transparent;
    background-color: #0a0a0a;
    color: var(--cream);
}

.form-label {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

/* Enhanced contact info cards */
.contact-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.contact-info-card {
    background: var(--gradient);
    padding: 40px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 3px solid var(--maroon);
}

.contact-info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(142, 22, 22, 0.4);
    border-color: var(--gold);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.contact-icon {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--cream);
}

.contact-info-card h5 {
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.contact-info-card p {
    color: var(--cream);
    margin: 0;
    font-size: 1rem;
}

/* ===== Footer Styling ===== */
footer.footer {
    background-color: var(--black);
    color: var(--cream);
    padding: 70px 0 30px;
    border-top: 5px solid var(--maroon);
    overflow:hidden;
}

.footer h5 {
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer p {
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.9;
}

.footer .footer-links,
.footer .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links li,
.footer .contact-info li {
    margin-bottom: 10px;
}

.footer .footer-links a,
.footer .contact-info a {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer .footer-links a:hover,
.footer .contact-info a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer .contact-info i {
    color: var(--gold);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer .social-icons a {
    display: inline-block;
    color: var(--cream);
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.footer .social-icons a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 2px solid var(--maroon);
    margin-top: 35px;
    padding-top: 25px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .footer h5 {
        margin-top: 20px;
    }

    .footer .social-icons {
        margin-bottom: 20px;
    }

    .footer .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--maroon));
    width: 0%;
    z-index: 1000;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        /* font-size: 2.3rem; */
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 40px 25px;
    }

    .contact-info-container {
        grid-template-columns: 1fr;
    }

    .nav-link {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

/* ===== Team Section ===== */
.team-section {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.team-section h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.team-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

/* ===== Swiper Slides ===== */
.swiper {
    padding-bottom: 50px;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
}

.team-member img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Overlay Info */
.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 10px;
    transition: all 0.4s ease;
}

.member-info h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.member-info span {
    font-size: 0.9rem;
    color: #ddd;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #000;
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #e10600;
}

@media (max-width: 767px) {
    .team-member img {
        height: 380px;
    }
}

/* --- Breadcrumb Styling --- */
.breadcrumb-section {
    background: url('assets/images/img4.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 180px 0 90px;
    position: relative;
}

.breadcrumb-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    font-size: 2.7rem;
    font-weight: 700;
}

.breadcrumb {
    justify-content: center;
    margin-top: 15px;
}

.breadcrumb-item a {
    color: #f8f9fa;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--light-gold) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white !important;
}

/* === Our Services (About) Section === */
.our-services {
    background-color: #0d0d0d;
    color: #fff;
    padding: 100px 0;
    text-align: justify;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-subtitle {
    color: #b5b5b5;
    font-size: 1rem;
    line-height: 1.7;
}

/* Cards */
.about-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 100%;
    transition: transform 0.4s ease;
}

.about-card img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-card:hover img {
    transform: scale(1.08);
}

.about-card:hover {
    transform: translateY(-6px);
}

/* Label */
.label {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 6px 16px;
    border-radius: 8px;
}

/* Sizes */
.about-card.large {
    height: 420px;
}

.about-card.medium {
    height: 500px;
}

.about-card.small {
    height: 238px;
}

/* Right column layout */
.right-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

/* Responsive */
@media (max-width: 991px) {

    .about-card.large,
    .about-card.medium,
    .about-card.small {
        height: auto;
    }

    .right-column {
        gap: 20px;
    }

    .label {
        font-size: 0.85rem;
        bottom: 10px;
        left: 10px;
    }

    .service-title {
        text-align: center;
    }
}

/* .service-card p {
    color: black;
} */

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background-color: var(--black);
}

.contact-section h2 {
    font-family: "Michroma", sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffffff;
}

.contact-info {
    background: #272727ff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-info h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #800000;
}

.contact-info p,
.contact-info a,
.contact-form p {
    color: #d3d3d3ff;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}

.contact-info a:hover {
    color: #b30000;
}

/* ===== Contact Form ===== */
.contact-form {
    background: #272727ff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 12px;
}

.contact-form .btn {
    background-color: #800000;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 6px;
    transition: 0.3s;
}

.contact-form .btn:hover {
    background-color: #a51e1e;
}

.service-detail img {
    border-radius: 10px;
    width: 100%;
    height: 450px !important;
    height: auto;
    object-fit: cover;
}

.service-detail .section-heading {
    font-weight: 700;
    font-size: 1.9rem;
}

.faq-section .accordion-button {
    background: #f8f9fa;
    font-weight: 500;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #e9ecef;
}

.video-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}


.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--dark-maroon);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: .8rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-maroon);
}


.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
}

.read-more {
    color: var(--primary-gold);
    text-decoration: none;
}

.sidebar {
    background: var(--dark-maroon);
    color: var(--cream);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar h4 {
    margin-bottom: 1.5rem;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: .5rem 0;
    border-bottom: 1px solid pink;
}

.sidebar ul li:last-child {
    border-bottom: none;
}

.sidebar ul li a {
    text-decoration: none;
    color: var(--text-secondary);
}

.sidebar ul li a:hover {
    color: var(--primary-gold);
}