@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lora", serif;
}

:root {
    --primary-color: maroon;
    --secondary-color: #fff;
    --black-color: #0000006b;
}

body,html{
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Floating Icons Container */
.floating-icons {
    position: fixed;
    bottom: 30px;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    pointer-events: none;
}

/* Common Icon Styles */
.float-icon {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

/* Left Side - Call Icon */
.call-icon {
    background-color: var(--primary-color);
}

/* Right Side - WhatsApp Icon */
.whatsapp-icon {
    background-color: #25d366;
}

/* Hover Effects */
.float-icon:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .float-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* Navbar Styling */
.navbar {
    background: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    padding: 10px !important;
}

.navbar-brand img {
    height: 80px;
    transition: transform 0.3s ease-in-out;
}

.navbar-brand h3 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 40px;
}

@media(max-width:720PX) {
    .navbar-brand h3 {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 25px;
        margin-left: -30px;
    }
}

@media(max-width:991px) {
    .navbar-brand img {
        margin-left: -300px !important;
        height: 70px;
    }
}

@media(max-width:825PX) {
    .navbar-brand img {
        margin-left: -200px !important;
        height: 60px;
    }
}

@media(max-width:720PX) {
    .navbar-brand img {
        margin-left: -150px !important;
        height: 50px;
    }
}

@media(max-width:560PX) {
    .navbar-brand img {
        margin-left: -60px !important;
        height: 50px;
    }
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

.nav-link {
    color: var(--black-color);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease-in-out;
    margin: 0 8px;
    font-family: "Lora", serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary-color) !important;
    background: var(--primary-color);
    border-radius: 5px;
    padding: 6px 12px;
}

.call-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.call-btn:hover {
    background: #b2050a;
    transform: translateY(-2px);
}

.call-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .navbar-brand {
        order: 1;
    }

    .navbar-toggler {
        order: 2;
    }

    .call-btn {
        order: 3;
        margin-top: 10px;
    }
}

/* Mobile dropdown fix */
@media (max-width: 991px) {
  .navbar-collapse.mobile-menu {
    background: var(--secondary-color);
    position: absolute;
    top: 100%; /* Below navbar */
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    border-top: 2px solid var(--primary-color);
  }

  .navbar-collapse.show {
    display: block;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin: 10px 0;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
}



.carousel-section {
    position: relative;
    overflow: hidden;
}

.carousel-inner img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    animation: zoomIn 10s infinite ease-in-out;
    transition: transform 1s ease-in-out;
}

@keyframes zoomIn {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ===== Overlay Effect ===== */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(20, 20, 20, 0.6));
    z-index: 5;
}

/* ===== Caption ===== */
.carousel-caption {
    position: absolute;
    top: 55%;
    left: 50% !important;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--secondary-color);
    z-index: 10;
    padding: 25px 35px;
    width: 100%;
}

.carousel-caption h1 {
    font-size: 90px;
    font-weight: 800;
    color: var(--secondary-color);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.493);
}

.carousel-caption p {
    font-size: 1.1rem;
    color: #f1f1f1;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* ===== Buttons ===== */
.carousel-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.carousel-caption .btn-custom,
.carousel-caption .btn-custom-one {
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.carousel-caption .btn-custom {
    background: var(--primary-color);
    color: #fff;
}

.carousel-caption .btn-custom:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.carousel-caption .btn-custom-one {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.carousel-caption .btn-custom-one:hover {
    background: #b2050a;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ===== Mobile View ===== */
@media (max-width: 992px) {
    .carousel-inner img {
        height: 55vh !important;
    }

    .carousel-caption {
        top: 45%;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-caption .btn-custom,
    .carousel-caption .btn-custom-one {
        width: 60%;
    }
}

@media (max-width: 600px) {
    .carousel-caption h1 {
        font-size: 20px;
    }

    .carousel-caption p {
        font-size: 15px;
    }

    .carousel-caption .btn-custom,
    .carousel-caption .btn-custom-one {
        font-size: 14px;
        padding: 6px 15px;
        width: 65%;
    }
}

@media (max-width: 400px) {
    .carousel-caption h1 {
        font-size: 17px;
    }

    .carousel-caption p {
        font-size: 13px;
    }

    .carousel-caption .btn-custom,
    .carousel-caption .btn-custom-one {
        font-size: 13px;
        padding: 5px 12px;
        width: 60%;
    }
}



/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section .section-title {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.about-section h2 {
    font-weight: 800;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.about-section p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.about-btn:hover {
    background: #b2050a;
    transform: translateY(-3px);
}

/* ===== RIGHT IMAGES ===== */
.about-images {
    position: relative;
}

.about-images img {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease-in-out;
    width: 100%;
    object-fit: cover;
    height: 500px;
}

.about-images img:hover {
    transform: scale(1.05);
}

.about-img1 {
    position: relative;
    z-index: 2;
    border: 5px solid #fff;
}

.about-img2 {
    position: absolute;
    bottom: -200px;
    right: -10px;
    width: 100% !important;
    /* height: 500px; */
    border: 5px solid #fff;
    z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-img2 {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
        width: 100%;
    }

    .about-images {
        text-align: center;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    position: relative;
    background: url("../all-images/carousel-img/2.png") center/cover no-repeat;
    color: var(--secondary-color);
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

/* ===== HEADER ===== */
.services-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 10px maroon;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* ===== SERVICE BOX ===== */
.service-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.7);
}

/* IMAGE BOX */
.img-box {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-box:hover .img-box img {
    transform: scale(1.1);
}

/* BORDER LINE */
.border-line {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

/* CONTENT */
.content-box {
    padding: 25px;
    text-align: center;
}

.content-box h4 {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-box p {
    color: #ddd;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .services-header h2 {
        font-size: 2rem;
    }

    .img-box {
        height: 100%;
    }
}


/* ===== CORE VALUES SECTION ===== */
.core-values-section {
    padding: 100px 0;
    background-color: #fff;
}

.core-values-header {
    text-align: center;
    margin-bottom: 60px;
}

.core-values-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.core-values-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== LEFT SIDE NAV ===== */
.values-tabs {
    border-right: 2px solid #eee;
}

.nav-pills .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.nav-pills .nav-link i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background-color: var(--primary-color) !important;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(229, 7, 14, 0.3);
}

.nav-pills .nav-link.active i,
.nav-pills .nav-link:hover i {
    color: #fff;
}

/* ===== RIGHT SIDE CONTENT ===== */
.tab-content {
    padding-left: 30px;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.tab-pane p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .values-tabs {
        border-right: none;
        border-bottom: 2px solid #eee;
        margin-bottom: 30px;
    }

    .tab-content {
        padding-left: 0;
    }
}


.cta-section {
    background: url("../all-images/carousel-img/4.png") center/cover no-repeat;
    position: relative;
    overflow: hidden;
    height: 40vh;
}

.cta-overlay {
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 50px;
}

.cta-section .text-highlight {
    color: var(--primary-color);
    text-shadow: 2px 2px 8px rgb(255, 255, 255);
}

.cta-section p {
    color: #f1f1f1;
}

/* ===== Buttons ===== */
.btn-primary-theme {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    border: none;
    transition: all 0.3s ease;
    font-family: "Lora", serif !important;
}

.btn-primary-theme:hover {
    background-color: #b1060a !important;
    box-shadow: 0 0 12px rgba(229, 7, 14, 0.7);
    transform: translateY(-3px);
}

.btn-whatsapp-theme {
    background-color: #25d366 !important;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    font-family: "Lora", serif !important;
}

.btn-whatsapp-theme:hover {
    background-color: #1da851;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.7);
    transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .cta-section {
        height: auto;
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}


.testimonials-section {
    background-color: #f8f9fa;
    position: relative;
}

.text-highlight {
    color: var(--primary-color);
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.testimonial-card {
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.testimonial-user h5 {
    color: #222;
}

.testimonial-user small {
    color: #777;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
    opacity: 1;
}

.bi-quote {
    color: var(--primary-color) !important;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .testimonial-card {
        margin: 0 10px;
    }
}