@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap);




:root {
    --primary-color: #2FC1E5;
    --primary-hover: #162380;
    --secondary-bg: #181717;
    --white: #ffffff;
    --text-color: #4C4C4C;
    --overlay-dark: rgba(0, 0, 0, 0.55);
    --font-family: 'Poppins', sans-serif;
    --p-size: 16px;
    --dark-blue: #162380;
    --nav-size: 18px;
    --radius-rounded: 50px;
    --radius-medium: 10px;
    --transition: all 0.3s ease
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background: var(--white);
    margin: 0
}

@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap);

/* ---------------------- */
/* VARIABLES              */
/* ---------------------- */
:root {
    --primary-color: #2FC1E5;
    --primary-hover: #162380;
    --secondary-bg: #181717;
    --white: #ffffff;
    --text-color: #4C4C4C;
    --overlay-dark: rgba(0, 0, 0, 0.55);
    --font-family: 'Poppins', sans-serif;
    --p-size: 16px;
    --dark-blue: #162380;
    --nav-size: 18px;
    --radius-rounded: 50px;
    --radius-medium: 10px;
    --transition: all 0.3s ease;
}

/* ---------------------- */
/* GLOBAL                 */
/* ---------------------- */
body {
    font-family: var(--font-family);
    color: var(--text-color);
    background: var(--white);
    margin: 0;
}

p {
    font-size: var(--p-size);
}

/* ---------------------- */
/* NAVBAR                 */
/* ---------------------- */
.navbar-custom {
    background: var(--secondary-bg);
}

.navbar-custom .nav-link {
    color: var(--white) !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: var(--nav-size);
    transition: var(--transition);
    cursor: pointer;
}

.navbar-custom .nav-link.active,
.navbar-custom .nav-link:hover {
    color: var(--primary-color) !important;
}


/* ---------------------- */
/* HERO SECTION           */
/* ---------------------- */
.hero-clean {
    position: relative;
    padding: 120px 0;
    background-image: url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
}

.hero-clean::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--overlay-dark);
}

.hero-clean .hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
}

.hero-list li::before {
    content: "\f26a";
    font-family: "bootstrap-icons";
    font-size: 20px;
    color: var(--primary-color);
}

/* ---------------------- */
/* CONTACT FORM           */
/* ---------------------- */
.hero-form {
    background: rgba(0, 0, 0, 0.45);
    padding: 35px;
    border-radius: var(--radius-medium);
    border: 1px solid rgba(255, 255, 255, .8);
}

.hero-form input,
.hero-form textarea {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, .4);
    color: var(--white) !important;
    min-height: 52px;
}

.discount-btn {
    margin-bottom: 20px;
}

.discount-top-text {
    margin-top: 20px;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: #eee;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-radius: var(--radius-rounded);
    padding: 12px 25px;
    color: var(--white) !important;
    font-weight: 500;
    border: none;
    transition: .6s;
    width: max-content;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover) !important;
    color: var(--white);
}


/* ---------------------- */
/* FEATURES SECTION       */
/* ---------------------- */

.feature-card {
    background: #ffffff;
    border-radius: var(--radius-medium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
    min-height: 545px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* icon circle */
.icon-wrap {
    width: 85px;
    height: 85px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrap img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.feature-card h5 {
    color: var(--dark-blue);
}

.feature-card p {
    color: var(--text-color);
}
.feature-card h5 + p.mb-0 {
    min-height: 265px;
}
/* ---------------------- */
/* ABOUT SECTION          */
/* ---------------------- */

.about-section {
    background: #f8f9fb;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--dark-blue);
    /* main underline */
}

section.final-carousel-section .section-title {
    width: 90%;
}

/* optional split color text */
.section-title .title-blue {
    color: var(--dark-blue);
}

.section-title .title-green {
    color: var(--primary-color);
}

/* secondary underline (primary color) */
.section-title::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 160px;
    height: 2px;
    background: var(--primary-color);
}


/* Image */
.about-img {
    width: 100%;
    border-radius: var(--radius-medium);
    object-fit: cover;
}


/* ---------------------- */
/* SERVICES SECTION       */
/* ---------------------- */


/* Card design */
.service-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: var(--radius-medium);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 0 !important;
    position:relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.10);
}

/* Image on top */
.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-medium);
}

/* Title */
.service-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-blue);
}

/* Description */
.service-desc {
    color: var(--text-color);
    font-size: 15px;
    margin-bottom: 0;
    min-height: 140px;
}

.inner-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    padding-bottom: 8px;
    margin-bottom: 18px;
}

.multi-text-section {
    background: #f8f9fb;
}

/* ---------------------- */
/* FAQ SECTION            */
/* ---------------------- */

.faq-section .accordion-item {
    border: none;
    border-bottom: 1px solid #dcdcdc;
    border-radius: 0;
}

.faq-section .accordion-button {
    background: transparent;
    font-weight: 600;
    color: var(--dark-blue);
    box-shadow: none;
    padding: 18px 10px;
    font-size: 17px;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--dark-blue);
    background: transparent;
    box-shadow: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23162380' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
    transform: rotate(-180deg);
}

.faq-section .accordion-button.collapsed::after {
    transform: rotate(0deg);
}

.faq-section .accordion-body {
    color: var(--text-color);
    font-size: 15px;
    padding: 0 10px 20px 10px;
}


/* ------------------------------------ */
/* HIGHLIGHT BACKGROUND SECTION         */
/* ------------------------------------ */
.highlight-section {
    position: relative;
    padding: 80px 0;
    background-image: url('../images/bg_img_bottom.webp');
    background-size: cover;
    background-position: center;
}

.highlight-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Glass Box */
.highlight-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-medium);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
}

/* Subtitle inside highlight */
.highlight-subtitle {
    color: var(--white);
    font-weight: 600;
}

/* Phone Row */
.phone-highlight {
    color: var(--white);
    font-size: 18px;
    border-top: 2px solid var(--primary-color);
}

.phone-highlight i {
    font-size: 20px;
    color: var(--primary-color);
}

/* Checklist */
.highlight-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 16px;
}

.highlight-list li::before {
    content: "\f26a";
    font-family: "bootstrap-icons";
    font-size: 20px;
    color: var(--primary-color);
}


/* ---------------------------------- */
/* DISCOUNT SECTION                   */
/* ---------------------------------- */

.discount-section {

    position: relative;
    overflow: hidden;
}

/* Background Image on Right */
.discount-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/discount-bg.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.discount-overlay {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* Blue curved shape on left */
/* .discount-shape {
    position: absolute;
    left: 0;
    top: 50%;
    width: 85%;
    height: 75%;
    background: linear-gradient(135deg, #27c7e9, #0d2c8b);
    border-radius: 0 200px 200px 0;
    transform: translateY(-50%);
    z-index: 3;
} */

/* Front PNG woman */
.discount-woman {
    position: relative;
    z-index: 4;
}

/* RIGHT SIDE CONTENT */
.discount-content {
    z-index: 5;
    position: relative;
    color: var(--white);
}

/* Text styles */
.discount-top-text {
    font-size: 18px;
    opacity: 0.9;
}

.discount-middle-text {
    font-size: 28px;
    font-weight: 600;
    margin: 35px 0;
}

.discount-badge {
    background: var(--white);
    color: var(--dark-blue);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
}

.discount-desc {
    margin: 25px 0px;
    line-height: 1.6;
    font-size: 22px;
}

/* Button */
.discount-btn {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    padding: 12px 22px;
    font-size: 18px;
    width: max-content;
}

.discount-btn:hover {
    background: var(--primary-hover);
    color: var(--white);
}

/* ----------------------------------------- */
/* FINAL CAROUSEL SECTION                    */
/* ----------------------------------------- */

.final-carousel-section {
    background: #ffffff;
}

/* Text styling */
.text-carousel-row p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-carousel-row strong {
    color: var(--dark-blue);
    font-size: 16px;
    margin-top: 10px;
    display: inline-block;
}

/* Custom arrow buttons */
.carousel-nav button {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.carousel-nav button:hover {
    background: var(--dark-blue);
}

/* Remove default controls */
.carousel-control-prev,
.carousel-control-next {
    display: none !important;
}


/* --------------------------- */
/* FOOTER MAIN                 */
/* --------------------------- */

.footer-main {
    background: #1a1a1a;
    color: var(--white);
    font-size: 15px;
}

.footer-logo {
    width: 140px;
}

.footer-text {
    color: #cccccc;
    line-height: 1.7;
}

/* TITLES */
.footer-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    position: relative;
    margin-bottom: 40px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 16px;
        color: #dedede;
        display: flex;
        align-items: center;
        gap: 8px;
    }

.footer-links li i {
    color: var(--primary-color);
}

/* SOCIAL ICONS */
.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    border-radius: 50%;
    color: var(--white);
    transition: 0.3s;
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--primary-color);
}

/* COPYRIGHT AREA */
.footer-bottom {
    background: var(--primary-color);
    color: var(--white);
}

.footer-bottom span {
    font-weight: 600;
}



/* ------------------------------------------------ */
/* INNER PAGE LAYOUT                                */
/* ------------------------------------------------ */

.innerpage-section {
    background: #ffffff;
}

/* Sidebar Box */
.sidebar-box {
    background: #f8f9fb;
    border-radius: var(--radius-medium);
}

.sidebar-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 18px;
    color: #162380;
}

/* Sidebar Menu */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 12px;
}

.sidebar-menu li a {
    color: var(--dark-blue);
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sidebar-menu li a::before {
    content: "•";
    color: var(--primary-color);
    font-size: 20px;
}

.sidebar-menu li a:hover {
    color: var(--primary-color);
}

.sidebar-menu li a.active {
    font-weight: 600;
    color: var(--primary-color);
}

/* CONTACT BOX */
/* Contact Box Background with Blue Dark Overlay */
.contact-bg {
    background-image: url('../images/form-bg.webp');
    /* Your real file */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: var(--radius-medium);
    position: relative;
    overflow: hidden;
}

/* Blue overlay */
.contact-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(28, 55, 130, 0.65);
    /* Dark navy + blue shade */
    z-index: 1;
}

/* Content above overlay */
.contact-bg * {
    position: relative;
    z-index: 2;
}

/* Icon */
.contact-icon {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 10px;
}

/* Phone number */
.contact-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

/* FORM BOX */
.sidebar-form {
    background: #F5F5F5;
    border-radius: var(--radius-medium);

}

.form-title {
    font-weight: 600;
    color: #162380;
}

.sidebar-form input.form-control {
    border: 1px solid #181717;
    border-radius: 4px;
    height: 48px;
}

/* Right Content */
.inner-title {
    font-size: 20px;
    color: var(--dark-blue);
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 18px;
}

.inner-banner {
    background: url('../images/homeServiceBg.webp') center/cover no-repeat;
    padding: 5.5rem 0;
    position: relative;
    color: #fff
}

.banner-subtitle {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
}

.inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1
}


/* -------------------------------------- */
/* CONTACT FORM SECTION                    */
/* -------------------------------------- */

.contactform-section {
    background: #ffffff;
}

/* Input & Textarea styling */
.form-input {
    border: 1px solid #181717;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 15px;
    color: var(--text-color);
    background: #ffffff;
    height: 50px;
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.15rem rgba(2, 148, 64, 0.2);
}

/* Center Button */
.contactform-section .btn-primary-custom {
    padding: 10px 30px;
    font-weight: 500;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #2fc1e5;
}

.dropdown-item {
    margin-bottom: 5px;
}

ul.dropdown-menu {
    border-radius: 0;
}

/* ---------------------------- */
/* THANK YOU SECTION            */
/* ---------------------------- */
.inner-banner.thanks {
    background: url('../images/thank-you.webp') center/cover no-repeat;
}

.thankyou-section {
    background: #ffffff;
}

.thank-logo {
    width: 260px;
    max-width: 100%;
}

.thank-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
}

.thank-divider {
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.5;
    border: none;
}

.thank-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}
a.navbar-brand img.img-fluid {
    max-width: 125px;
}
.footer-bottom a {
    color: inherit;
}

/* NAVBAR DROPDOWN ON HOVER (Desktop Only) */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        cursor: pointer;
    }

    .navbar .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: 0.25s ease-in-out;
        margin-top: 10px;
    }
}


@media(max-width:767px) {
    a.navbar-brand img.img-fluid {
        height: 80px;
    }

    .feature-card h5 {
        color: var(--dark-blue);
        min-height: 100%;
    }
    .discount-desc {
        font-size: 16px;
    }
    .section-title {
        font-size: 22px;
    }
    .hero-list li {
        align-items: start;
        gap: 10px;
        font-size: 14px;
    }
    ul.hero-list.d-flex.flex-column.gap-3{
        padding-left:0;
    }
}
.whatsapp-fixed-icon-mn {
    position: fixed;
    width: 75px;
    height: 75px;
    background: #2FC1E5;
    bottom: 35px;
    z-index: 9;
    right: 35px;
    border-radius: 50px;
    border: 2px solid #ffffff;
}

    .whatsapp-fixed-icon-mn a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        color: white;
        font-size: 36px;
    }

    .whatsapp-fixed-icon-mn:hover a {
        color: #2FC1E5;
    }

    .whatsapp-fixed-icon-mn:hover {
        background: white;
        border-color: #2FC1E5;
    }