/* CSS RESET SECTION STARTS */
:root {
    --thm-font: "Poppins", sans-serif;
    --heading-font: "Playfair Display", serif;
    --thm-color: #68686f;
    --thm-color-rgb: 104, 104, 111;
    --thm-base: #e91e63;
    --thm-base-rgb: 233, 30, 99;
    --thm-primary: #ff4081;
    --thm-primary-rgb: 255, 64, 129;
    --thm-black: #1c1c27;
    --thm-black-rgb: 28, 28, 39;
    --thm-black2: #16161f;
    --thm-black2-rgb: 22, 22, 31;
    --thm-gray: #f9f0f5;
    --thm-gray-rgb: 249, 240, 245;
    --thm-border-color: #f0e1e8;
    --thm-border-color-rgb: 240, 225, 232;
    --thm-text-dark: #a2a2b1;
    --thm-text-dark-rgb: 162, 162, 177;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--thm-font);
    color: var(--thm-color);
    font-size: 16px;
    line-height: 1.875;
    overflow-x: hidden;
}

a {
    color: var(--thm-black);
    transition: all .5s ease;
    text-decoration: none;
}

a:hover {
    color: var(--thm-base);
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1200px) {
    .container-fluid {
        max-width: 1140px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* CSS RESET SECTION ENDS */

/* HEADER STYLES SECTION STARTS */
/* Topbar Styles - ALL ON RIGHT SIDE */
.topbar {
    background-color: var(--thm-black);
    position: relative;
    display: none;
}

@media (min-width: 1200px) {
    .topbar {
        display: block;
    }
    
    .topbar .container-fluid {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-left: 0;
        padding-right: 0;
    }
}

.topbar__right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.topbar__info {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.topbar__info a {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    color: var(--thm-text-dark);
    font-size: 12px;
    font-weight: 400;
    transition: all .5s ease;
    line-height: 1.7em;
}

.topbar__info a:hover {
    color: #fff;
}

.topbar__info a i {
    color: var(--thm-base);
    font-size: 14px;
    margin-right: 10px;
}

.topbar__links {
    margin-left: auto;
    display: none;
    align-items: center;
}

@media (min-width: 1281px) {
    .topbar__links {
        display: flex;
    }
}

.topbar__links a {
    display: flex;
    align-items: center;
    color: var(--thm-text-dark);
    font-size: 12px;
    font-weight: 400;
    transition: all .5s ease;
    line-height: 1.7em;
}

.topbar__links a + a {
    margin-left: 20px;
}

.topbar__links a:hover {
    color: #fff;
}

.topbar__social {
    display: flex;
    align-items: center;
    padding-right: 15px;
    padding-left: 40px;
}

.topbar__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 14px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    transition: all .5s ease;
}

.topbar__social a:hover {
    background-color: var(--thm-black2);
    color: var(--thm-base);
}

/* Main Menu Styles */
.main-menu {
    position: relative;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.main-menu .container-fluid {
    display: flex;
    align-items: center;
}

.main-menu__logo {
    position: absolute;
    top: -40px;
    left: 0;
    width: 260px;
    height: 120px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@media (max-width: 1199px) {
    .main-menu__logo {
        position: relative;
        top: auto;
        left: auto;
        height: 80px;
        width: auto;
        margin-left: -20px;
    }
}

.main-menu__logo img {
    position: relative;
    z-index: 11;
    width: 140px;
    height: auto;
}

[class*="main-menu__logo__shape-"] {
    position: absolute;
    width: 322px;
    height: 120px;
}

@media (max-width: 1199px) {
    [class*="main-menu__logo__shape-"] {
        height: 80px;
        display: none;
    }
}

.main-menu__logo__shape-1 {
    fill: var(--thm-base);
    left: 0;
}

.main-menu__logo__shape-2 {
    fill: #fff;
    left: -10px;
}

.main-menu__nav {
    padding-left: 375px;
}

@media (max-width: 1399px) {
    .main-menu__nav {
        padding-left: 315px;
    }
}

@media (max-width: 1199px) {
    .main-menu__nav {
        display: none;
    }
}

.main-menu__right {
    margin-left: auto;
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.main-menu__toggler {
    font-size: 20px;
    color: var(--thm-black);
    transition: all .5s ease;
    display: none;
}

@media (max-width: 1199px) {
    .main-menu__toggler {
        display: flex;
    }
}

.main-menu__toggler:hover {
    color: var(--thm-base);
}

.main-menu__search {
    font-size: 24px;
    color: var(--thm-black);
    border-left: 1px solid var(--thm-border-color);
    padding-left: 30px;
    margin-left: 30px;
    display: flex;
    align-items: center;
    height: 40px;
    padding-right: 30px;
    transition: all .5s ease;
}

@media (max-width: 475px) {
    .main-menu__search {
        padding-right: 0;
    }
}

@media (max-width: 374px) {
    .main-menu__search {
        padding-left: 20px;
        margin-left: 10px;
    }
}

.main-menu__search:hover {
    color: var(--thm-base);
}

.thm-btn {
    display: inline-block;
    vertical-align: middle;
    appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--thm-base);
    color: #fff;
    font-size: 15px;
    font-family: var(--thm-font);
    padding: 23px 40px;
    text-align: center;
    transition: .5s;
    line-height: 1.1;
}

.thm-btn:hover {
    color: var(--thm-base);
    background-color: #fff;
}

.main-menu__btn {
    padding: 17px 25px;
    font-size: 15px;
    margin-right: 0;
}

@media (min-width: 1581px) {
    .main-menu__btn {
        margin-right: 30px;
    }
}

@media (max-width: 475px) {
    .main-menu__btn {
        display: none;
    }
}

.main-menu__btn:hover {
    background-color: var(--thm-black);
    color: #fff;
}

.main-menu__contact {
    display: none;
    align-items: center;
}

@media (min-width: 1581px) {
    .main-menu__contact {
        display: flex;
    }
}

.main-menu__contact__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--thm-gray);
    color: var(--thm-base);
    font-size: 27px;
    border-radius: 50%;
    margin-right: 13px;
    transition: all .5s ease;
}

.main-menu__contact__text {
    color: var(--thm-color);
    transition: all .5s ease;
    font-size: 14px;
    line-height: 1;
}

.main-menu__contact__text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 10px;
}

.main-menu__contact:hover .main-menu__contact__icon {
    background-color: var(--thm-base);
    color: #fff;
}

/* Navigation Menu Styles */
.main-menu__list,
.main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {
    .main-menu__list,
    .main-menu__list ul {
        display: flex;
    }
}

.main-menu__list {
    margin-left: auto;
    margin-right: auto;
}

.main-menu__list > li {
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
}

.main-menu__list > li + li {
    margin-left: 35px;
}

@media (min-width: 1341px) {
    .main-menu__list > li + li {
        margin-left: 45px;
    }
}

.main-menu__list > li > a {
    font-family: var(--thm-font);
    font-size: 16px;
    display: flex;
    align-items: center;
    color: var(--thm-color);
    position: relative;
    transition: all .5s ease;
}

.main-menu__list > li > a:after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--thm-base);
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0, 1);
    transform-origin: right center;
    transition: transform .5s ease;
}

.main-menu__list > li.current-menu-item > a,
.main-menu__list > li.current-menu-ancestor > a,
.main-menu__list > li:hover > a {
    color: var(--thm-base);
    text-shadow: 0 0 1px currentColor;
}

.main-menu__list > li.current-menu-item > a:after,
.main-menu__list > li.current-menu-ancestor > a:after,
.main-menu__list > li:hover > a:after {
    transform: scale(1, 1);
    transform-origin: left center;
}

.main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: .5s ease;
    z-index: 99;
    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, .1);
}

.main-menu__list li:hover > ul {
    opacity: 1;
    visibility: visible;
}

.main-menu__list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

.main-menu__list li ul li + li {
    border-top: 1px solid rgba(var(--thm-black), .1);
}

.main-menu__list li ul li a {
    font-size: 16px;
    line-height: 30px;
    color: var(--thm-black);
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: .5s;
}

.main-menu__list li ul li:hover > a {
    background-color: var(--thm-base);
    color: #fff;
}

.main-menu__list li ul li > ul {
    top: 0;
    left: 100%;
}

.main-menu__list li ul li > ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

/* Sticky Header */
.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    transform: translateY(-120%);
    transition: transform .5s ease;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, .05);
    display: none;
}

@media (min-width: 1200px) {
    .stricky-header {
        display: block;
    }
}

.stricky-header .main-menu__logo {
    top: 0;
    height: 80px;
}

.stricky-header .main-menu__logo__shape-1,
.stricky-header .main-menu__logo__shape-2 {
    height: 80px;
}

.stricky-header.stricky-fixed {
    backface-visibility: visible !important;
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-120%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Logo Styles - FIXED COLOR */
.text-logo {
    font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 700;
    color: var(--thm-black); /* FIXED: Changed to black for visibility */
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.text-logo .main-text {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--thm-black); /* FIXED: Changed to black for visibility */
}

.text-logo .sub-text {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--thm-black); /* FIXED: Changed to black for visibility */
    text-transform: uppercase;
    font-family: var(--thm-font);
}

/* Fix for sticky header logo text color */
.stricky-header .text-logo,
.stricky-header .text-logo .main-text,
.stricky-header .text-logo .sub-text {
    color: var(--thm-black) !important; /* FIXED: Changed to black for visibility */
}

@media (max-width: 768px) {
    .text-logo {
        font-size: 36px;
    }
    
    .text-logo .main-text {
        font-size: 36px;
    }
    
    .text-logo .sub-text {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .text-logo {
        font-size: 32px;
    }
    
    .text-logo .main-text {
        font-size: 32px;
    }
    
    .text-logo .sub-text {
        font-size: 11px;
    }
}
/* HEADER STYLES SECTION ENDS */

/* HERO SLIDER STYLES SECTION STARTS */
.slider-container {
    width: 100%;
    height: 100vh;
    max-height: 876px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    margin-top: 0;
}

@media (max-width: 992px) {
    .slider-container {
        height: 70vh;
        min-height: 500px;
        max-height: 700px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 80vh;
        min-height: 550px;
        max-height: 650px;
    }
}

@media (max-width: 576px) {
    .slider-container {
        height: 85vh;
        min-height: 600px;
        max-height: 700px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 90vh;
        min-height: 650px;
        max-height: 750px;
    }
}

@media (max-width: 375px) {
    .slider-container {
        height: 95vh;
        min-height: 700px;
        max-height: 800px;
    }
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slider-slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 20;
}

@media (max-width: 992px) {
    .slide-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.text-content {
    flex: 0 0 50%;
    padding-right: 50px;
    position: relative;
    z-index: 25;
}

@media (max-width: 992px) {
    .text-content {
        flex: 0 0 auto;
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
        order: 1;
    }
}

.welcome-text {
    color: #e91e63;
    font-family: var(--thm-font);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

@media (max-width: 1200px) {
    .welcome-text {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .welcome-text {
        font-size: 14px;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
}

.main-heading {
    color: var(--thm-black);
    font-family: var(--heading-font);
    font-size: 75px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

@media (max-width: 1400px) {
    .main-heading {
        font-size: 65px;
    }
}

@media (max-width: 1200px) {
    .main-heading {
        font-size: 55px;
        margin-bottom: 25px;
    }
}

@media (max-width: 992px) {
    .main-heading {
        font-size: 45px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 38px;
        margin-bottom: 18px;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 32px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.1;
    }
}

@media (max-width: 375px) {
    .main-heading {
        font-size: 26px;
        margin-bottom: 10px;
    }
}

.main-heading br {
    display: block;
    margin-top: 10px;
}

.slider-btn {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    font-family: var(--thm-font);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 45px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .slider-btn {
        font-size: 16px;
        padding: 14px 40px;
    }
}

@media (max-width: 768px) {
    .slider-btn {
        font-size: 15px;
        padding: 13px 35px;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .slider-btn {
        font-size: 14px;
        padding: 12px 30px;
        margin-top: 12px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 375px) {
    .slider-btn {
        font-size: 13px;
        padding: 11px 25px;
    }
}

.slider-btn:hover {
    background: var(--thm-black);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.image-content {
    flex: 0 0 50%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .image-content {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
        justify-content: center;
        order: 2;
    }
}

@media (max-width: 768px) {
    .image-content {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .image-content {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .image-content {
        height: 200px;
    }
}

.main-image {
    width: 100%;
    max-width: 900px;
    height: 90%;
    border-radius: 20px;
    border: 5px solid #e91e63;
    overflow: hidden;
    position: relative;
    box-shadow: -20px 20px 40px rgba(233, 30, 99, 0.2);
}

@media (max-width: 1400px) {
    .main-image {
        max-width: 800px;
        height: 85%;
    }
}

@media (max-width: 1200px) {
    .main-image {
        max-width: 700px;
        height: 80%;
    }
}

@media (max-width: 992px) {
    .main-image {
        width: 100%;
        max-width: 600px;
        height: 100%;
        border-radius: 20px;
        border: 5px solid #e91e63;
        box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
    }
}

@media (max-width: 768px) {
    .main-image {
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .main-image {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .main-image {
        max-width: 350px;
        border-width: 4px;
    }
}

@media (max-width: 375px) {
    .main-image {
        max-width: 300px;
        border-width: 3px;
    }
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

@media (max-width: 768px) {
    .slider-nav {
        bottom: 40px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .slider-nav {
        bottom: 30px;
        gap: 10px;
    }
}

.nav-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-dot {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 480px) {
    .nav-dot {
        width: 12px;
        height: 12px;
    }
}

.nav-dot.active {
    background: #e91e63;
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 100;
}

@media (max-width: 768px) {
    .slider-arrows {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .slider-arrows {
        padding: 0 15px;
    }
}

.arrow {
    width: 50px;
    height: 50px;
    background: rgba(233, 30, 99, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.arrow:hover {
    background: var(--thm-black);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-text {
    animation: fadeIn 0.8s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}
/* HERO SLIDER STYLES SECTION ENDS */

/* CONTACT INFO BAR STYLES SECTION STARTS */
.contact-info-bar {
    background-color: var(--thm-black);
    color: white;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .contact-info-bar {
        padding: 15px 0;
    }
}

.contact-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .contact-info-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        gap: 5px;
    }
}

.contact-item i {
    color: var(--thm-base);
    font-size: 20px;
}

.contact-item .contact-label {
    font-weight: 600;
    margin-right: 5px;
}
/* CONTACT INFO BAR STYLES SECTION ENDS */

/* COMMON SECTION STYLES SECTION STARTS */
section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 50px 0;
    }
}

/* Section title */
.sec-title {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .sec-title {
        margin-bottom: 40px;
    }
}

.sec-title .sub-title {
    display: inline-block;
    font-size: 12px;
    color: var(--thm-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid var(--thm-base);
    border-radius: 40px;
    padding: 6px 17px;
}

.sec-title h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 600;
    color: var(--thm-black);
    font-family: var(--heading-font);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .sec-title h2 {
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .sec-title h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

.sec-title p {
    color: var(--thm-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Clearfix */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* Row and columns */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.row.align-items-center {
    align-items: center;
}

.col-lg-6, .col-md-12, .col-sm-12 {
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-12 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-6 {
        width: 50%;
    }
}

/* Button */
.theme-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--thm-font);
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 14px 40px;
    border: solid;
    border-width: 1px;
    z-index: 1;
    transition: all 0.5s ease-in-out;
    background: var(--thm-base);
    border-color: var(--thm-base);
    text-decoration: none;
}

.theme-btn.btn-one:hover {
    border-color: var(--thm-black) !important;
    color: #fff;
}

.theme-btn:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    transform: scaleX(0);
    transform-origin: left center;
    z-index: -1;
    background: var(--thm-black);
    transition: all 500ms ease;
}

.theme-btn:hover:before {
    transform: scaleX(1);
}

/* Image hover effects */
.image-hov-one {
    position: relative;
    display: block;
    overflow: hidden;
}

.image-hov-one::before {
    background: rgba(255, 255, 255, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.image-hov-one:hover::before {
    width: 100%;
    opacity: 0;
    transition: all 400ms linear;
}

.image-hov-two {
    position: relative;
    display: block;
    overflow: hidden;
}

.image-hov-two::before {
    background: rgba(255, 255, 255, 0.5);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1000%;
    height: 0%;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.image-hov-two:hover::before {
    height: 100%;
    opacity: 0;
    transition: all 400ms linear;
}

/* Utility classes for spacing */
.pt_120 {
    padding-top: 120px;
}

.pb_120 {
    padding-bottom: 120px;
}

.pt_100 {
    padding-top: 100px;
}

.pb_100 {
    padding-bottom: 100px;
}

.mb_50 {
    margin-bottom: 50px;
}

.mb_30 {
    margin-bottom: 30px;
}

.mb_20 {
    margin-bottom: 20px;
}

.mb_12 {
    margin-bottom: 12px;
}

.pl_110 {
    padding-left: 110px;
}

.pb_50 {
    padding-bottom: 50px;
}

.centred {
    text-align: center;
}
/* COMMON SECTION STYLES SECTION ENDS */

/* SERVICES SECTION STYLES STARTS */
.service-section {
    position: relative;
    background-color: #fff;
}

.service-section .tab-btns {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.08);
    max-width: 1070px;
    width: 100%;
    margin: 0 auto 80px auto;
    z-index: 1;
}

.service-section .tab-btns .tab-btn {
    position: relative;
    display: inline-block;
    float: left;
    width: 25%;
    text-align: center;
    padding: 45px 15px;
    cursor: pointer;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: var(--thm-black);
    transition: all 500ms ease;
    background: transparent;
    border: none;
    font-family: var(--thm-font);
}

.service-section .tab-btns .tab-btn:first-child {
    border-radius: 20px 0px 0px 20px;
}

.service-section .tab-btns .tab-btn:last-child {
    border-radius: 0px 20px 20px 0px;
}

.service-section .tab-btns .tab-btn.active-btn {
    color: #fff;
    background: var(--thm-base);
}

.service-section .tab-btns .tab-btn:before {
    position: absolute;
    content: '';
    background: #E5E5E5;
    width: 1px;
    height: 60px;
    top: 30px;
    right: 0px;
    transition: all 500ms ease;
}

.service-section .tab-btns .tab-btn:last-child:before {
    display: none;
}

.service-section .tab-btns .tab-btn.active-btn:before {
    opacity: 0;
}

.service-section .tab-btns .tab-btn:after {
    position: absolute;
    content: '';
    width: 21px;
    height: 9px;
    left: 50%;
    margin-left: -10px;
    bottom: -9px;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
    opacity: 0;
    transition: all 500ms ease;
}

.service-section .tab-btns .tab-btn.active-btn:after {
    opacity: 1;
    background: var(--thm-base);
}

.service-section .tabs-content {
    position: relative;
    display: inline-block;
    width: 100%;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    padding: 80px;
    background: #fff;
}

.service-section .tabs-content .shape {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    opacity: 0.1;
}

.service-section .image-box {
    position: relative;
    display: block;
    padding-left: 110px;
}

.service-section .image-box .image {
    border-radius: 8px;
    overflow: hidden;
}

.service-section .image-box .image img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.service-section .image-box .image:hover img {
    transform: scale(1.05);
}

.service-section .image-box .image-2 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    border: 10px solid #F5F6F7;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
    width: 250px;
}

.service-section .image-box .image-2 img {
    width: 100%;
    height: auto;
}

.service-section .content-box {
    position: relative;
    display: block;
}

.service-section .content-box h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    margin-bottom: 26px;
    color: var(--thm-black);
    font-family: var(--heading-font);
}

.service-section .content-box p {
    margin-bottom: 25px;
    color: var(--thm-color);
    line-height: 1.875;
}

.service-section .content-box .list-style-one {
    margin-bottom: 33px;
    list-style: none;
    padding: 0;
}

.service-section .content-box .list-style-one li {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--thm-black);
    padding-left: 28px;
    margin-bottom: 11px;
    float: none;
    width: 100%;
}

.service-section .content-box .list-style-one li:before {
    position: absolute;
    content: '✓';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 10px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    left: 0px;
    top: 4px;
    background: var(--thm-base);
}

/* Tab animations */
.tabs-box .tab {
    position: relative;
    display: none;
    transition: all 900ms ease;
}

.tabs-box .tab.active-tab {
    display: block;
    animation: fadeIn 0.8s ease forwards;
}

.tab-btn-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.tab-buttons {
    display: flex;
}

.content-column, .image-column {
    position: relative;
}

/* Responsive styles for service section */
@media only screen and (max-width: 991px) {
    .service-section .tab-btns .tab-btn {
        width: 50%;
        border-radius: 0px !important;
        padding: 30px 15px;
        font-size: 16px;
    }

    .service-section .tab-btns {
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 60px;
    }

    .service-section .tab-btns .tab-btn:after,
    .service-section .tab-btns .tab-btn:before {
        display: none;
    }

    .service-section .tabs-content {
        padding: 60px 40px;
    }

    .service-section .image-box {
        padding-left: 0;
        margin-bottom: 40px;
    }
    
    .service-section .image-box .image-2 {
        position: relative;
        margin-top: 30px;
        left: auto;
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .service-section .tabs-content {
        padding: 40px 30px;
    }
    
    .service-section .content-box h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 599px) {
    .service-section .tab-btns .tab-btn {
        width: 100%;
        padding: 25px 15px;
        font-size: 15px;
    }
    
    .service-section .content-box h2 {
        font-size: 28px;
        line-height: 38px;
    }
    
    .service-section .tabs-content {
        padding: 30px 20px;
    }
}
/* SERVICES SECTION STYLES ENDS */

/* ABOUT SECTION STYLES STARTS */
.about-section {
    background-color: #fff;
    background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
}

/* Add overlay for better text readability */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

/* Ensure the content stays above the overlay */
.about-section .container,
.about-section .about-grid {
    position: relative;
    z-index: 2;
}

/* About Grid Layout - LEFT IMAGE, RIGHT TEXT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-grid {
        gap: 30px;
    }
}

/* Image Column (Left Side) */
.about-image-column {
    position: relative;
}

.image_block_one .image-box {
    position: relative;
    display: block;
}

.image_block_one .image-box .image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.image_block_one .image-box .image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.image_block_one .image-box .image:hover img {
    transform: scale(1.05);
}

.image_block_one .image-box .rotate-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    right: 0;
    margin-top: -93px;
    width: 186px;
    height: 186px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 10px 70px 0px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.image_block_one .image-box .rotate-box .curved-circle {
    position: absolute;
    left: 93px;
    top: 7px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: #222222;
}

.image_block_one .image-box .rotate-box .icon-box img {
    display: inline-block;
    width: auto;
}

.image_block_one .image-box .rotate-box .icon-box i {
    font-size: 40px;
    color: #e91e63;
}

/* Text Column (Right Side) */
.about-text-column {
    padding-left: 20px;
}

@media (max-width: 992px) {
    .about-text-column {
        padding-left: 0;
    }
}

.content_block_one .content-box {
    position: relative;
    display: block;
}

.content_block_one .content-box .tabs-box .tab-btn-box {
    position: relative;
    max-width: 510px;
    margin-bottom: 33px;
}

.content_block_one .content-box .tabs-box .tab-btns {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #E4E4E4;
    border-radius: 10px;
}

.content_block_one .content-box .tabs-box .tab-btns .tab-btn {
    position: relative;
    display: inline-block;
    width: 170px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px;
    cursor: pointer;
    color: #222222;
    border-radius: 10px;
    z-index: 1;
    transition: all 500ms ease;
    background: transparent;
    border: none;
}

.content_block_one .content-box .tabs-box .tab-btns .tab-btn.active-btn {
    color: #fff;
}

.content_block_one .content-box .tabs-box .tab-btns .tab-btn:before {
    position: absolute;
    content: '';
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    left: 0;
    top: 0;
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: all 500ms ease;
    background: #e91e63;
}

.content_block_one .content-box .tabs-box .tab-btns .tab-btn.active-btn:before {
    opacity: 1;
}

.content_block_one .content-box .tabs-content .inner-box p {
    margin-bottom: 32px;
    color: #666666;
    font-size: 16px;
    line-height: 26px;
}

.content_block_one .content-box .tabs-content .list-style-one {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content_block_one .content-box .tabs-content .list-style-one li {
    float: left;
    width: 50%;
    position: relative;
    padding-left: 28px;
    margin-bottom: 11px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #222222;
}

.content_block_one .content-box .tabs-content .list-style-one li:before {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 10px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    left: 0;
    top: 4px;
    background: #e91e63;
}

.tabs-content .tab {
    display: none;
}

.tabs-content .tab.active-tab {
    display: block;
}

/* About section tab styles */
.content_block_one .content-box .sec-title {
    text-align: left;
}

.content_block_one .content-box .sec-title .sub-title {
    display: block;
    font-size: 12px;
    color: #e91e63;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.content_block_one .content-box .sec-title h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #222222;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 20px;
    text-align: left;
}

@media (max-width: 767px) {
    .content_block_one .content-box .tabs-content .list-style-one li {
        width: 100%;
    }
    
    .content_block_one .content-box .tabs-box .tab-btns {
        flex-direction: column;
    }
    
    .content_block_one .content-box .tabs-box .tab-btns .tab-btn {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .content_block_one .content-box .sec-title h2 {
        font-size: 28px;
    }
}

/* Rotating Text Animation */
.curved-circle span {
    position: absolute;
    left: 50%;
    margin-left: -0.321429em;
    transform-origin: center 6.14286em;
}

@keyframes rotateText {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.rotate-box {
    animation: rotateText 20s linear infinite;
}
/* ABOUT SECTION STYLES ENDS */

/* GALLERY SECTION STYLES STARTS */
.gallery-section {
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .gallery-item {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        height: 250px;
    }
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}
/* GALLERY SECTION STYLES ENDS */

/* DEALER SECTION STYLES STARTS */
.dealer-section {
    background-color: #f9f0f5;
}

.dealer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .dealer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .dealer-content {
        gap: 30px;
    }
}

.dealer-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--thm-black);
    font-family: var(--heading-font);
}

@media (max-width: 768px) {
    .dealer-text h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }
}

.dealer-text h3 {
    font-size: 24px;
    margin: 20px 0 15px;
    color: var(--thm-black);
    font-family: var(--heading-font);
}

@media (max-width: 768px) {
    .dealer-text h3 {
        font-size: 22px;
        margin: 15px 0 12px;
    }
}

.dealer-text p {
    margin-bottom: 20px;
    color: var(--thm-color);
    line-height: 1.8;
}

.dealer-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.15);
    transition: transform 0.3s ease;
    height: 500px;
}

@media (max-width: 992px) {
    .dealer-image {
        order: -1;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .dealer-image {
        height: 350px;
    }
}

.dealer-image:hover {
    transform: translateY(-10px);
}

.dealer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dealer-image:hover img {
    transform: scale(1.05);
}

.dealer-benefits {
    margin: 30px 0;
}

@media (max-width: 768px) {
    .dealer-benefits {
        margin: 20px 0;
    }
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .benefit-item {
        margin-bottom: 12px;
    }
}

.benefit-item i {
    color: var(--thm-base);
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}
/* DEALER SECTION STYLES ENDS */

/* QUALITY SECTION STYLES STARTS */
.quality-section {
    background-color: #ffffff;
    background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
}

@media (max-width: 768px) {
    .quality-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
}

/* Add a light overlay for better text readability */
.quality-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

/* Ensure the content stays above the overlay */
.quality-section .container,
.quality-section .quality-content {
    position: relative;
    z-index: 2;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .quality-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .quality-content {
        gap: 30px;
    }
}

.quality-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--thm-black);
    font-family: var(--heading-font);
}

@media (max-width: 768px) {
    .quality-text h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }
}

.quality-text p {
    margin-bottom: 20px;
    color: var(--thm-color);
    line-height: 1.8;
}

.quality-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 992px) {
    .quality-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .quality-image {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.quality-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .quality-image img {
        height: 200px;
    }
}

.quality-image img:hover {
    transform: scale(1.03);
}
/* QUALITY SECTION STYLES ENDS */

/* AMBULANCE CATEGORY SECTION STYLES STARTS */
.category-section {
    position: relative;
    background: #fff;
}

.category-section .inner-container {
    position: relative;
    padding: 80px 0;
}

.category-block-one .inner-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 30px;
    min-height: 350px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.1);
}

.category-block-one .inner-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.category-block-one .inner-box .bg-layer {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
}

.category-block-one .inner-box:hover .bg-layer {
    transform: scale(1.1);
}

.category-block-one .inner-box .bg-layer:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: linear-gradient(270deg, rgba(169, 7, 0, 0) 23.97%, rgba(233, 30, 99, 0.8) 60.46%, var(--thm-base) 100%);
    z-index: 2;
}

.category-block:nth-child(2) .category-block-one .inner-box .bg-layer:before {
    background: linear-gradient(270deg, rgba(0, 57, 168, 0) 24.13%, rgba(28, 28, 39, 0.8) 60.55%, var(--thm-black) 100%);
}

.category-block:nth-child(3) .category-block-one .inner-box .bg-layer:before {
    background: linear-gradient(270deg, rgba(3, 161, 0, 0) 23.97%, rgba(233, 30, 99, 0.8) 60.46%, var(--thm-base) 100%);
}

.category-block:nth-child(4) .category-block-one .inner-box .bg-layer:before {
    background: linear-gradient(270deg, rgba(176, 137, 0, 0) 24.13%, rgba(28, 28, 39, 0.8) 60.55%, var(--thm-black) 100%);
}

.category-block-one .inner-box .icon-box {
    position: absolute;
    left: 30px;
    top: 30px;
    opacity: 0.3;
    z-index: 3;
}

.category-block-one .inner-box .icon-box img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.category-block-one .inner-box .big-text {
    position: absolute;
    left: 0px;
    bottom: 0px;
    font-size: 60px;
    line-height: 50px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.10);
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    z-index: 3;
    padding: 20px 5px;
}

.category-block-one .inner-box h2 {
    display: block;
    font-size: 28px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 3;
}

.category-block-one .inner-box p {
    max-width: 310px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
    font-size: 15px;
    line-height: 1.6;
}

.category-block-one .inner-box .btn-box a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 24px;
    color: var(--thm-black);
    font-weight: 600;
    background: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    z-index: 3;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-block-one .inner-box .btn-box a:hover {
    color: #fff;
    background: var(--thm-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for category section */
@media (max-width: 992px) {
    .category-block-one .inner-box {
        min-height: 320px;
    }
    
    .category-block-one .inner-box h2 {
        font-size: 24px;
    }
    
    .category-block-one .inner-box .big-text {
        font-size: 50px;
        line-height: 40px;
    }
}

@media (max-width: 768px) {
    .category-section .inner-container {
        padding: 60px 0;
    }
    
    .category-block-one .inner-box {
        min-height: 300px;
        padding: 30px 25px;
    }
    
    .category-block-one .inner-box h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .category-block-one .inner-box p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .category-block-one .inner-box .big-text {
        font-size: 40px;
        line-height: 35px;
    }
}

@media (max-width: 576px) {
    .category-block-one .inner-box {
        padding: 25px 20px;
        min-height: 280px;
    }
    
    .category-block-one .inner-box h2 {
        font-size: 20px;
    }
    
    .category-block-one .inner-box .big-text {
        font-size: 35px;
        line-height: 30px;
        padding: 15px 3px;
    }
    
    .category-block-one .inner-box .btn-box a {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* AMBULANCE CATEGORY SECTION STYLES ENDS */

/* FOOTER STYLES SECTION STARTS */
footer {
    background-color: var(--thm-black2);
    color: white;
    padding: 80px 0 20px;
}

@media (max-width: 768px) {
    footer {
        padding: 60px 0 20px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo .logo-text {
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.1;
}

.footer-logo .logo-subtext {
    font-size: 14px;
    color: #aaa;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .footer-logo .logo-text {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .footer-logo .logo-text {
        font-size: 28px;
    }
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    font-family: var(--heading-font);
}

@media (max-width: 768px) {
    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    display: block;
    color: #aaa;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-size: 15px;
}

@media (max-width: 768px) {
    .footer-links a {
        margin-bottom: 8px;
        font-size: 14px;
    }
}

.footer-links a:hover {
    color: var(--thm-base);
    padding-left: 5px;
}

.footer-contact {
    color: #aaa;
    font-size: 15px;
    line-height: 1.8;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    color: var(--thm-base);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact strong {
    color: #fff;
    font-weight: 600;
    margin-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-bottom {
        padding-top: 15px;
        font-size: 13px;
    }
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .social-icons {
        gap: 12px;
        margin-top: 15px;
    }
}

.social-icons a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .social-icons a {
        width: 36px;
        height: 36px;
    }
}

.social-icons a:hover {
    background: var(--thm-base);
    transform: translateY(-3px);
}
/* FOOTER STYLES SECTION ENDS */




/* WHY CHOOSE US SECTION STYLES */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,50 Q25,40 50,50 T100,50" stroke="%233f51b5" stroke-width="0.5" fill="none" opacity="0.1"/></svg>');
    opacity: 0.05;
}

.why-choose-content {
    border: 2px solid #e91e63;
    border-radius: 15px;
    padding: 40px;
    background: white;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.why-choose-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #e91e63, #3f51b5);
}

.why-choose-text {
    position: relative;
}

.why-choose-text p {
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.why-choose-text strong {
    color: #e91e63;
    font-weight: 600;
}

.why-choose-text p:first-child {
    font-size: 18px;
    color: #333;
}

.why-choose-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .why-choose-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-content {
        padding: 25px;
        border-width: 1px;
    }
    
    .why-choose-text p {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .why-choose-content {
        padding: 20px 15px;
        border-radius: 10px;
    }
    
    .why-choose-content::before {
        width: 3px;
    }
    
    .why-choose-text p {
        font-size: 15px;
        line-height: 1.6;
    }
}


/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT & ABOUT CSS STARTS !!!AAAAAAAAAAAAAAAAAAA*/

/* Contact & About Section Styles */
.contact-about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.company-details h2,
.contact-form-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
}

.company-details > p,
.contact-form-section > p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

/* Company Info Styles */
.company-info {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    background: #3498db;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.info-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Company Stats */
.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    color: #3498db;
    font-size: 36px;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* Contact Form Styles */
.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.checkbox-group label {
    color: #666;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
}

.submit-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1c5a7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.submit-btn i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-about-section {
        padding: 60px 0;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .info-item i {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 20px;
    }
    
    .company-details h2,
    .contact-form-section h2 {
        font-size: 26px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT & ABOUT CSS ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/*AAAAAAAAAAAAAAAAAAAAAAA!!! LOGO STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.main-menu__logo {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
}

.logo-image-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

/* Main logo - larger for desktop */
.main-menu__logo .logo-img {
    max-height: 65px;
    width: auto;
    object-fit: contain;
}

/* Sticky header logo - slightly smaller */
.stricky-header .main-menu__logo .logo-img {
    max-height: 55px;
}

/* Logo hover effects */
.logo-img:hover {
    transform: scale(1.03);
}

/* Remove old text logo styles */
.text-logo {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .main-menu__logo .logo-img {
        max-height: 60px;
    }
    .stricky-header .main-menu__logo .logo-img {
        max-height: 50px;
    }
}

@media (max-width: 992px) {
    .main-menu__logo .logo-img {
        max-height: 55px;
    }
    .stricky-header .main-menu__logo .logo-img {
        max-height: 45px;
    }
}

@media (max-width: 768px) {
    .main-menu__logo .logo-img {
        max-height: 50px;
    }
    .stricky-header .main-menu__logo .logo-img {
        max-height: 40px;
    }
}

@media (max-width: 576px) {
    .main-menu__logo .logo-img {
        max-height: 45px;
    }
    .stricky-header .main-menu__logo .logo-img {
        max-height: 35px;
    }
}

@media (max-width: 400px) {
    .main-menu__logo .logo-img {
        max-height: 40px;
    }
    .stricky-header .main-menu__logo .logo-img {
        max-height: 32px;
    }
}

/* Footer logo styling */
.footer-logo-img {
    max-height: 50px;
    width: auto;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .footer-logo-img {
        max-height: 40px;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! LOGO STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/* LOGO FIX CSS - Add this at the end of style.css */

.main-menu__logo {
    position: absolute !important;
    top: -40px !important;
    left: 0 !important;
    width: 260px !important;
    height: 120px !important;
    background-color: #fff !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
}

.main-menu__logo .logo-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.main-menu__logo .logo-img {
    max-height: 65px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.stricky-header .main-menu__logo {
    top: 0 !important;
    height: 80px !important;
}

.stricky-header .main-menu__logo .logo-img {
    max-height: 55px !important;
}

@media (max-width: 1199px) {
    .main-menu__logo {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        height: 80px !important;
        width: auto !important;
        margin-left: -20px !important;
        background: transparent !important;
        box-shadow: none !important;
    }
}



/*AAAAAAAAAAAAAAAAAAAAAAA!!! FAQ STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
/* FAQ SECTION STYLES */
.faq-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.location-selector {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 40px;
}

.selector-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 22px;
}

.location-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.loc-btn {
    padding: 12px 25px;
    background: #333;
    color: #ddd;
    border: 1px solid #444;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.loc-btn.active, .loc-btn:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-location {
    display: none;
    animation: fadeIn 0.5s ease;
}

.faq-location.active {
    display: block;
}

.location-faq-title {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-question i {
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #aaa;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-contact {
    margin-top: 30px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.faq-contact h4 {
    color: #d4af37;
    margin-bottom: 15px;
}

.faq-call-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #d4af37;
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-call-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

.dual-faq-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .location-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .loc-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 15px;
    }
    
    .dual-faq-buttons {
        flex-direction: column;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FAQ STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/