/* ========================================= */
/* ===== BASE RESET & VARIABLES ===== */
/* ========================================= */
/*AAAAAAAAAAAAAAAAAAAAAAA!!! BASE RESET & VARIABLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
:root {
    --theme-color: 212, 175, 55;  /* GOLD - #D4AF37 */
    --title-color: #1a2a4a;       /* DARK BLUE */
    --body-color: #5a6a7a;
    --white-color: #ffffff;
    --smoke-color: #f0f4f8;
    --light-color: #afafaf;
    --border-color: rgba(0,0,0,0.10);
    --title-font: 'Quicksand', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --subtitle-font: 'Dancing Script', cursive;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
img {
    max-width: 100%;
    height: auto;
}
.container {
    width: 100%;
    max-width: 1220px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.custom-container {
    max-width: 1620px;
}
.text-theme {
    color: rgb(var(--theme-color)) !important;
}
.text-title {
    color: var(--title-color) !important;
}
.text-white {
    color: var(--white-color) !important;
}
.text-white-light {
    color: rgba(255,255,255,0.8) !important;
}
.bg-title {
    background-color: var(--title-color) !important;
}
.bg-smoke {
    background-color: var(--smoke-color) !important;
}
.bg-theme {
    background-color: rgb(var(--theme-color)) !important;
}
.fs-xs {
    font-size: 14px;
}
.fs-20 {
    font-size: 20px;
}
.d-none {
    display: none !important;
}
.d-block {
    display: block !important;
}
.d-flex {
    display: flex !important;
}
.align-items-center {
    align-items: center !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.justify-content-center {
    justify-content: center !important;
}
.text-center {
    text-align: center !important;
}
.text-end {
    text-align: right !important;
}
.position-relative {
    position: relative !important;
}
.position-absolute {
    position: absolute !important;
}
.w-100 {
    width: 100% !important;
}
.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-1 {
    margin-bottom: 0.25rem !important;
}
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.mb-25 {
    margin-bottom: 25px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mt-2 {
    margin-top: 0.5rem !important;
}
.mt-3 {
    margin-top: 1rem !important;
}
.mt-n2 {
    margin-top: -0.5rem !important;
}
.me-2 {
    margin-right: 0.5rem !important;
}
.ms-2 {
    margin-left: 0.5rem !important;
}
.mr-20 {
    margin-right: 20px !important;
}
.lh-1 {
    line-height: 1 !important;
}
.fw-bold {
    font-weight: 700 !important;
}
.fw-medium {
    font-weight: 500 !important;
}
.fw-semibold {
    font-weight: 600 !important;
}
.h1 {
    font-size: 48px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}
.h2 {
    font-size: 36px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}
.h3 {
    font-size: 30px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}
.h4 {
    font-size: 24px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}
.h5 {
    font-size: 18px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}
.sec-subtitle {
    font-family: var(--subtitle-font);
    font-weight: 400;
    display: block;
}
.section-title {
    margin-bottom: 75px;
}
.section-title .h1 {
    margin-top: -0.3em;
}
.section-title .sec-subtitle {
    margin-top: -0.20em;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! BASE RESET & VARIABLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/* ========================================= */
/* ===== HEADER STYLES ===== */
/* ========================================= */
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.header-wrapper {
    position: relative;
    z-index: 41;
}
.header-top {
    background-color: var(--title-color);
    padding: 8px 0;
}
.header-top-info li {
    display: inline-block;
    font-size: 14px;
    color: var(--white-color);
    margin-right: 38px;
}
.header-top-info li:last-child {
    margin-right: 0;
}
.header-top-info li i {
    color: rgb(var(--theme-color));
    margin-right: 10px;
}
.head-top-links {
    display: flex;
    align-items: center;
    gap: 15px;
}
.head-top-links a {
    color: var(--white-color);
    font-size: 13px;
}
.head-top-links a:hover {
    color: rgb(var(--theme-color));
}
.head-top-links .dropdown {
    position: relative;
}
.head-top-links .dropdown-menu {
    background: var(--white-color);
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 120px;
    display: none;
    z-index: 10;
}
.head-top-links .dropdown:hover .dropdown-menu {
    display: block;
}
.head-top-links .dropdown-menu a {
    color: var(--title-color);
    display: block;
    padding: 5px 0;
    font-size: 13px;
}
.head-top-links .dropdown-menu a:hover {
    color: rgb(var(--theme-color));
}
.header-social {
    display: flex;
    gap: 15px;
}
.header-social a {
    color: var(--white-color);
    font-size: 14px;
}
.header-social a:hover {
    color: rgb(var(--theme-color));
}
.header-search-btn {
    background: transparent;
    border: none;
    color: rgb(var(--theme-color));
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.header-search-btn i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background: rgb(var(--theme-color));
    color: var(--white-color);
    border-radius: 50%;
    font-size: 12px;
}
.header-search-btn:hover {
    background: rgb(var(--theme-color));
    color: var(--white-color);
}
.header-search-btn:hover i {
    background: var(--white-color);
    color: rgb(var(--theme-color));
}

/* Main Header */
.sticky-wrap {
    background: var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-main {
    padding: 10px 0;
}
.header1-logo a {
    display: block;
}
.header1-logo img {
    max-height: 50px;
}
.phone-box .box-icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: rgb(var(--theme-color));
    color: var(--white-color);
    border-radius: 50%;
    margin-right: 15px;
    font-size: 18px;
    flex-shrink: 0;
}
.phone-box .media-body span {
    font-size: 12px;
    color: var(--body-color);
}
.phone-box .media-body a {
    color: var(--title-color);
    font-size: 18px;
    font-weight: 700;
}
.phone-box .media-body a:hover {
    color: rgb(var(--theme-color));
}

/* Navigation */
.main-menu > ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
.main-menu > ul > li {
    position: relative;
}
.main-menu > ul > li > a {
    font-weight: 700;
    color: var(--title-color);
    padding: 20px 0;
    display: block;
    font-size: 15px;
}
.main-menu > ul > li > a:hover {
    color: rgb(var(--theme-color));
}
.main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white-color);
    min-width: 200px;
    padding: 15px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99;
    border-top: 3px solid rgb(var(--theme-color));
}
.main-menu > ul > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-menu .sub-menu li {
    padding: 5px 0;
}
.main-menu .sub-menu li a {
    color: var(--body-color);
    font-size: 14px;
    display: block;
    padding: 3px 0;
}
.main-menu .sub-menu li a:hover {
    color: rgb(var(--theme-color));
    padding-left: 10px;
}

/* Header Button */
.header-btn {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-btn .icon-btn {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: var(--white-color);
    color: var(--title-color);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}
.header-btn .icon-btn:hover {
    background: rgb(var(--theme-color));
    color: var(--white-color);
}
.header-btn .icon-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: rgb(var(--theme-color));
    color: var(--white-color);
    font-size: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
}
.vs-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgb(var(--theme-color));
    color: var(--white-color);
}
.vs-btn:hover {
    background: var(--title-color);
    color: var(--white-color);
}
.vs-btn i {
    margin-left: 8px;
}
.vs-btn.style2 {
    background: var(--title-color);
}
.vs-btn.style2:hover {
    background: rgb(var(--theme-color));
}

/* Header Notice */
.header-notice {
    background: var(--title-color);
    padding: 12px 0;
    position: relative;
    z-index: 1;
    display: block !important;
    overflow: hidden;
}
.header-notice .shape {
    position: absolute;
    height: 50px;
    width: 100%;
    max-width: 950px;
    z-index: -1;
    right: 0;
    top: 0;
    background: rgba(var(--theme-color), 0.15);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%);
}
.header-notice .notice-text {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}
.header-notice .notice-text p {
    color: var(--white-color);
    margin: 0;
}
.header-notice .notice-text a {
    color: rgb(var(--theme-color));
    text-decoration: underline;
}
.header-notice .notice-text a:hover {
    color: var(--white-color);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/* ========================================= */
/* ===== HERO SLIDER STYLES ===== */
/* ========================================= */
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.vs-hero-wrapper {
    position: relative;
    overflow: hidden;
}
.vs-hero-carousel {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
}
.vs-hero-carousel .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}
.vs-hero-carousel .slide.active {
    opacity: 1;
    z-index: 2;
}
.vs-hero-carousel .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    text-align: left;
    z-index: 3;
    padding: 20px;
}
.vs-hero-carousel .slide-content .subtitle {
    font-family: var(--subtitle-font);
    font-size: 32px;
    color: rgb(var(--theme-color));
    margin-bottom: 10px;
}
.vs-hero-carousel .slide-content h1 {
    font-size: 52px;
    color: var(--title-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}
.vs-hero-carousel .slide-content h1 .text-theme {
    color: rgb(var(--theme-color));
}
.vs-hero-carousel .slide-content p {
    font-size: 18px;
    color: var(--body-color);
    margin-bottom: 25px;
    max-width: 550px;
}
.vs-hero-carousel .slide-content .vs-btn {
    padding: 15px 40px;
    font-size: 16px;
}
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.slider-dots button.active {
    background: rgb(var(--theme-color));
    width: 30px;
    border-radius: 6px;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/* ========================================= */
/* ===== ABOUT SECTION STYLES ===== */
/* ========================================= */
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.vs-about-wrapper {
    padding: 100px 0;
}
.space {
    padding-top: 100px;
    padding-bottom: 100px;
}
.about-img1 {
    position: relative;
}
.about-img1 .play-btn {
    position: absolute;
    left: 160px;
    bottom: 160px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: rgb(var(--theme-color));
    color: var(--white-color);
    border-radius: 50%;
    font-size: 24px;
    z-index: 2;
}
.about-img1 .play-btn:hover {
    background: var(--title-color);
}
.about-content .h1 {
    margin-top: -0.3em;
}
.about-rating {
    display: flex;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 18px;
    padding: 18px 0 35px 34px;
    position: relative;
}
.about-rating .shape {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.about-rating .total {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--title-font);
    margin-right: 20px;
}
.about-rating .rating-text {
    margin-bottom: 0;
}
.about-rating .rating-text .fw-bold {
    color: var(--title-color);
}
.about-call-text a {
    color: rgb(var(--theme-color));
}
.about-call-text a:hover {
    color: var(--title-color);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/* ===== FOOTER STYLES ===== */
/* ========================================= */
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.footer-wrapper {
    background-color: var(--title-color);
    padding-top: 80px;
    position: relative;
}
.footer-wrapper[data-bg-src] {
    background-size: cover;
    background-position: center;
}
.footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 30px;
    margin-bottom: 60px;
}
.footer1-logo {
    position: relative;
    z-index: 1;
    display: inline-block;
}
.footer1-logo img {
    background-color: var(--white-color);
    padding: 10px 20px;
    border-radius: 5px;
    max-height: 50px;
}
.footer-social a {
    display: inline-block;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    margin-right: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: rgb(var(--theme-color));
    color: var(--white-color);
}
.footer-social a:last-child {
    margin-right: 0;
}

.widget-area {
    padding: 0 0 25px;
}
.widget {
    margin-bottom: 30px;
}
.footer-widget {
    padding: 0;
    border: none;
    background-color: transparent;
}
.footer-widget .widget_title {
    color: var(--white-color);
    font-size: 22px;
    font-family: var(--title-font);
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: -0.1em;
}
.footer-widget p {
    color: rgba(255,255,255,0.7);
}
.vs-widget-about h4 a {
    color: rgb(var(--theme-color));
    font-size: 20px;
}
.vs-widget-about h4 a:hover {
    color: var(--white-color);
}
.vs-widget-about .avater-small {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}
.vs-widget-about .avater-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vs-widget-about .media-body h5 {
    color: var(--white-color);
    margin-bottom: 0;
}
.vs-widget-about .media-body span {
    font-size: 12px;
}

.footer-widget ul li {
    margin-bottom: 12px;
}
.footer-widget ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: all 0.3s ease;
}
.footer-widget ul li a:hover {
    color: rgb(var(--theme-color));
    padding-left: 5px;
}
.footer-widget ul li a:before {
    content: '\f30b';
    font-family: 'Font Awesome 5 Pro';
    margin-right: 10px;
    color: rgb(var(--theme-color));
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}
.footer-gallery .gal-item {
    overflow: hidden;
    border-radius: 5px;
}
.footer-gallery .gal-item img {
    transition: all 0.3s ease;
    width: 100%;
    height: 70px;
    object-fit: cover;
}
.footer-gallery .gal-item:hover img {
    transform: scale(1.2);
}

.footer-table td {
    padding: 10px 0;
    border: none;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}
.footer-table td+td {
    text-align: right;
}
.footer-table tr:first-child td {
    padding-top: 0;
}

.address-line {
    padding-left: 30px;
    position: relative;
    margin-top: 15px;
}
.address-line i {
    position: absolute;
    left: 0;
    top: 6px;
    color: rgb(var(--theme-color));
}
.address-line a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}
.address-line a:hover {
    color: rgb(var(--theme-color));
}

.copyright {
    background: rgb(var(--theme-color));
    padding: 20px 0;
}
.copyright p {
    color: var(--white-color);
    margin: 0;
}
.copyright a {
    color: var(--white-color);
}
.copyright a:hover {
    color: var(--title-color);
}
.footer-bottom-menu {
    display: flex;
    gap: 20px;
}
.footer-bottom-menu a {
    color: var(--white-color);
    font-size: 14px;
}
.footer-bottom-menu a:hover {
    color: var(--title-color);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/* ========================================= */
/* ===== RESPONSIVE STYLES ===== */
/* ========================================= */
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
@media (max-width: 1199px) {
    .main-menu > ul {
        gap: 20px;
    }
    .main-menu > ul > li > a {
        font-size: 14px;
    }
    .vs-hero-carousel .slide-content h1 {
        font-size: 40px;
    }
    .about-img1 .play-btn {
        left: 100px;
        bottom: 100px;
    }
}
@media (max-width: 991px) {
    .d-none-xxxl {
        display: none !important;
    }
    .header-btn .vs-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    .vs-hero-carousel .slide-content h1 {
        font-size: 34px;
    }
    .vs-hero-carousel .slide-content .subtitle {
        font-size: 26px;
    }
    .header-top .col-auto:last-child {
        display: none !important;
    }
    .header-notice .notice-text {
        justify-content: center;
        text-align: center;
    }
    .header-notice .shape {
        max-width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .about-content {
        margin-top: 40px;
    }
    .about-img1 .play-btn {
        left: 190px;
        bottom: 180px;
    }
    .section-title {
        margin-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .header-top-info li {
        margin-right: 15px;
        font-size: 12px;
    }
    .header1-logo img {
        max-height: 40px;
    }
    .vs-hero-carousel {
        height: 480px;
    }
    .vs-hero-carousel .slide-content h1 {
        font-size: 28px;
    }
    .vs-hero-carousel .slide-content .subtitle {
        font-size: 22px;
    }
    .vs-hero-carousel .slide-content p {
        font-size: 15px;
    }
    .header-btn .vs-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    .header-btn .icon-btn {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 14px;
    }
    .main-menu > ul {
        gap: 12px;
    }
    .main-menu > ul > li > a {
        font-size: 13px;
        padding: 15px 0;
    }
    .about-img1 .play-btn {
        left: 120px;
        bottom: 130px;
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 18px;
    }
    .service-card .sr-icon {
        --size: 100px;
    }
    .service-card .sr-icon i {
        font-size: 36px;
    }
    .service-card .sr-img {
        margin-top: -60px;
    }
    .footer-top {
        text-align: center;
    }
    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }
    .footer-bottom-menu {
        justify-content: center;
        margin-top: 10px;
    }
    .copyright .col-auto {
        width: 100%;
        text-align: center !important;
    }
}
@media (max-width: 576px) {
    .header-top-info li {
        display: block;
        margin-right: 0;
        margin-bottom: 3px;
    }
    .vs-hero-carousel {
        height: 400px;
    }
    .vs-hero-carousel .slide-content {
        text-align: center;
    }
    .vs-hero-carousel .slide-content h1 {
        font-size: 24px;
    }
    .vs-hero-carousel .slide-content p {
        font-size: 14px;
        max-width: 100%;
    }
    .vs-hero-carousel .slide-content .vs-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    .header-notice .notice-text {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .header-notice .shape {
        height: 100%;
        max-width: 100%;
        clip-path: none;
    }
    .about-img1 .play-btn {
        left: 30px;
        bottom: 30px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }
    .about-rating {
        padding-left: 10px;
    }
    .about-rating .total {
        font-size: 36px;
    }
    .h1 {
        font-size: 28px;
    }
    .h2 {
        font-size: 24px;
    }
    .footer-gallery .gal-item img {
        height: 55px;
    }
    .footer1-logo img {
        max-height: 40px;
        padding: 8px 15px;
    }
}
/* Row & Column helpers */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col-auto {
    flex: 0 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}
.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-xl-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}
.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-md-auto {
    flex: 0 0 auto;
    width: auto;
}
.align-self-center {
    align-self: center;
}
.mb-lg-0 {
    margin-bottom: 0 !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.ps-xl-5 {
    padding-left: 48px !important;
}
.ms-xl-2 {
    margin-left: 16px !important;
}
.pe-xl-5 {
    padding-right: 48px !important;
}
.pt-30 {
    padding-top: 30px !important;
}
.no-pt-sm {
    padding-top: 0 !important;
}
@media (max-width: 991px) {
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .col-xl-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .ps-xl-5 {
        padding-left: 15px !important;
    }
    .ms-xl-2 {
        margin-left: 0 !important;
    }
    .pe-xl-5 {
        padding-right: 15px !important;
    }
}
@media (max-width: 767px) {
    .col-xl-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (max-width: 991px) {
    .section-title {
        margin-bottom: 40px;
    }
    .vs-about-wrapper {
        padding: 60px 0;
    }
    .vs-service-wrapper {
        padding: 60px 0 30px;
    }
    .footer-wrapper {
        padding-top: 60px;
    }
    .footer-top {
        margin-bottom: 40px;
    }
}
/* Footer widgets in one line on large screens */
@media (min-width: 992px) {
    .footer-widgets-row {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }
    .footer-widgets-row .widget {
        flex: 1;
        min-width: 200px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/* ========================================
   SERVICES SECTION - 3 COLUMNS GRID
   ======================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    --theme-color: 212, 175, 55;  /* GOLD - #D4AF37 */
    --title-color: #1a2a4a;       /* DARK BLUE */
    --body-color: #5a6a7a;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--body-color);
    line-height: 26px;
    overflow-x: hidden;
}

a {
    color: rgba(var(--theme-color), 1);
    text-decoration: none;
    transition: all ease 0.4s;
}

a:hover {
    color: var(--title-color);
}

img {
    max-width: 100%;
    height: auto;
}

p {
    margin: 0 0 15px 0;
    color: var(--body-color);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    color: var(--title-color);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px 0;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }

/* ===== UTILITY CLASSES ===== */
.text-theme { color: rgba(var(--theme-color), 1) !important; }
.text-title { color: var(--title-color) !important; }
.text-white { color: #ffffff !important; }
.text-white-light { color: rgba(255,255,255,0.8) !important; }
.text-body { color: var(--body-color) !important; }
.bg-theme { background-color: rgba(var(--theme-color), 1) !important; }
.bg-white { background-color: #ffffff !important; }

.fs-xs { font-size: 14px; }
.fs-md { font-size: 18px; }
.fs-12 { font-size: 12px; }
.fs-20 { font-size: 20px; }

.fw-medium { font-weight: 500; }
.fw-bold { font-weight: 700; }
.lh-1 { line-height: 1; }

.font-body { font-family: 'Roboto', sans-serif; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.start-0 { left: 0; }
.end-0 { right: 0; }
.top-0 { top: 0; }

.text-center { text-align: center; }
.text-start { text-align: left; }
.text-end { text-align: right; }

.w-100 { width: 100%; }
.mb-0 { margin-bottom: 0; }
.mb-30 { margin-bottom: 30px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 24px; }
.mb-30 { margin-bottom: 30px; }
.mt-n2 { margin-top: -0.5rem; }
.me-2 { margin-right: 8px; }
.mr-20 { margin-right: 20px; }
.ms-2 { margin-left: 8px; }
.ms-xl-2 { margin-left: 8px; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 16px; padding-bottom: 16px; }
.pt-3 { padding-top: 16px; }
.pt-20 { padding-top: 20px; }
.pt-30 { padding-top: 30px; }
.pb-1 { padding-bottom: 4px; }
.pb-20 { padding-bottom: 20px; }
.pe-xl-5 { padding-right: 48px; }
.ps-xl-5 { padding-left: 48px; }

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

/* ===== GRID SYSTEM - 3 COLUMNS ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-auto { flex: 0 0 auto; width: auto; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* 3 columns on large screens */
.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
}

/* 2 columns on medium screens */
.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

/* 1 column on small screens */
.col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-xl-6 { flex: 0 0 50%; max-width: 50%; }

/* ===== SECTION SPACING ===== */
.space { padding-top: 150px; padding-bottom: 150px; }

@media (max-width: 992px) {
    .space { padding-top: 60px; padding-bottom: 60px; }
}

/* ===== BUTTONS ===== */
.vs-btn {
    position: relative;
    display: inline-block;
    border: none;
    text-align: center;
    background-color: rgba(var(--theme-color), 1);
    color: #ffffff;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    padding: 19.5px 48px;
    border-radius: 9999px;
    --icon-shape: 40px;
    --icon-size: 30px;
    transition: all ease 0.4s;
    cursor: pointer;
}

.vs-btn i { display: inline-block; }
.vs-btn:hover { background-color: var(--title-color); color: #ffffff; }

.vs-btn.style2 { margin-left: calc(var(--icon-shape) / 2); }

.vs-btn.style2:before {
    content: '';
    position: absolute;
    left: calc(var(--icon-shape) / -2);
    top: 50%;
    width: var(--icon-shape);
    height: var(--icon-shape);
    margin-top: calc(var(--icon-shape) / -2);
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: inset 0px 5px 5px 0px rgba(var(--theme-color), 0.3);
    transition: inherit;
}

.vs-btn.style2 i {
    position: absolute;
    left: calc(var(--icon-size) / -2);
    top: 50%;
    width: var(--icon-size);
    height: var(--icon-size);
    line-height: var(--icon-size);
    margin-top: calc(var(--icon-size) / -2);
    border-radius: 50%;
    background-color: rgba(var(--theme-color), 1);
    font-size: 14px;
    transition: inherit;
}

.vs-btn.style2:hover {
    background-color: var(--title-color);
}

.vs-btn.style2:hover:before {
    box-shadow: inset 0px 5px 5px 0px rgba(26,42,74,0.3);
}

.vs-btn.style2:hover i {
    background-color: var(--title-color);
}

/* ===== ICON BUTTON ===== */
.icon-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: 0s;
}

.icon-btn i {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: #ffffff;
    color: var(--title-color);
    text-align: center;
    border-radius: 50%;
    transition: all ease 0.4s;
    z-index: 2;
    box-shadow: 0px 5px 10px 0px rgba(26,42,74,0.1);
}

.icon-btn.has-badge { margin-right: 7px; }

.icon-btn .badge {
    position: absolute;
    right: 0;
    width: fit-content;
    display: inline-block;
    text-align: center;
    background-color: rgba(var(--theme-color), 1);
    color: #ffffff;
    padding: .35em .55em;
    border-radius: 50%;
    transition: all ease 0.4s;
}

.icon-btn:hover i {
    background-color: rgba(var(--theme-color), 1);
    box-shadow: none;
    color: #ffffff;
}

.icon-btn.style2 i {
    background-color: rgba(var(--theme-color), 1);
    color: #ffffff;
    box-shadow: none;
}

.icon-btn.style2 i:hover {
    background-color: var(--title-color);
}

/* ===== SECTION TITLE ===== */
.section-title { margin-bottom: 75px; }
.section-title .h1 { margin-top: -0.3em; }
.section-title .sec-subtitle { margin-top: -0.20em; }

.sec-subtitle {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
}

@media (max-width: 992px) {
    .section-title { margin-bottom: 35px; }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.bg-box1 { --shape-size: 545px; }

.bg-box-shape1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: var(--shape-size);
    z-index: -1;
}

.bg-box-shape2 {
    z-index: -1;
    bottom: 0;
    right: 0;
    left: 0;
    background-size: 100% 100%;
    background-position: left bottom;
    height: calc(100% - var(--shape-size));
}

[data-overlay] { position: relative; }

[data-overlay]:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

[data-overlay="title"]:before { background-color: var(--title-color); }

[data-opacity="7"]:before { opacity: .7; }

.vs-service-wrapper .container { position: relative; z-index: 2; }

/* ===== SERVICE CARD ===== */
.service-card {
    box-shadow: 0px 6px 13px 0px rgba(26,42,74,0.1);
    background-color: #ffffff;
    text-align: center;
    padding-top: 63px;
    overflow: hidden;
    border-radius: 10px;
    transition: all ease 0.4s;
    height: 100%;
}

.service-card .sr-icon {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    --size: 130px;
    --extra: -8px;
    --radius: 50%;
    z-index: 2;
}

.service-card .sr-icon:before {
    content: '';
    position: absolute;
    z-index: -1;
    background-color: #ffffff;
    left: var(--extra);
    right: var(--extra);
    top: var(--extra);
    bottom: var(--extra);
    border-radius: var(--radius);
}

.service-card .sr-icon i {
    display: inline-block;
    background-color: rgba(var(--theme-color), 1);
    color: #ffffff;
    width: var(--size);
    height: var(--size);
    line-height: var(--size);
    border-radius: var(--radius);
    transition: all ease 0.4s;
}

.service-card .icon-btn {
    position: relative;
    margin-bottom: -17px;
    z-index: 4;
    transition: ease 0.4s;
}

.service-card .icon-btn i { background-color: var(--title-color); }

.service-card .sr-text {
    width: 100%;
    max-width: 345px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto 25px auto;
}

.service-card .sr-img {
    position: relative;
    overflow: hidden;
    margin-top: -90px;
}

.service-card .sr-img > div { z-index: 1; }

.service-card .sr-img img {
    transform: scale(1);
    transition: all ease 0.4s;
}

.service-card .sr-img:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(var(--theme-color), 1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.6;
    transition: all ease 0.4s;
    z-index: 1;
}

.service-card:hover .icon-btn i { background-color: rgba(var(--theme-color), 1); }
.service-card:hover .sr-icon i { background-color: var(--title-color); }
.service-card:hover .sr-img > img { transform: scale(1.1); }
.service-card:hover .sr-img:before { height: 100%; }

/* ===== NOTICE BAR ===== */
.notice-bar {
    padding: 13.5px 30px;
    display: inline-block;
    box-shadow: 0px 3px 40px 0px rgba(26,42,74,0.12);
    border-radius: 9999px;
}

.notice-bar p { margin-bottom: 0; }

/* ========================================
   RESPONSIVE - 3 COLUMNS GRID
   ======================================== */

/* Large screens: 3 columns */
@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Medium screens: 2 columns */
@media (max-width: 991px) and (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Small screens: 1 column */
@media (max-width: 767px) {
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .service-card { padding-top: 33px; }
    .service-card .sr-img { margin-top: -50px; }
    .service-card .sr-icon { --size: 100px; --extra: -5px; }
    
    .notice-bar { 
        border-radius: 10px; 
        padding: 13.5px 15px; 
        width: 100%;
    }
    
    .section-title { margin-bottom: 35px; }
    .space { padding-top: 60px; padding-bottom: 60px; }
    
    .vs-btn { 
        padding: 15px 30px; 
        font-size: 14px; 
    }
    
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
    
    .container { 
        padding-right: 10px; 
        padding-left: 10px; 
    }
}

/* Extra small screens */
@media (max-width: 576px) {
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ========================================
   FLATICON FONT (Using Font Awesome as fallback)
   ======================================== */
.fa-4x { font-size: 4em; }
.fa-3x { font-size: 3em; }

/* Flaticon classes using Font Awesome icons */
.flaticon-medical-symbol:before { content: "\f0f1"; font-family: "Font Awesome 5 Free"; font-weight: 900; }
.flaticon-healthcare:before { content: "\f0f1"; font-family: "Font Awesome 5 Free"; font-weight: 900; }
.flaticon-group:before { content: "\f0c0"; font-family: "Font Awesome 5 Free"; font-weight: 900; }
.flaticon-discuss:before { content: "\f0e6"; font-family: "Font Awesome 5 Free"; font-weight: 900; }

/* Corn icon - custom */
.fa-corn:before { content: "\f6c3"; font-family: "Font Awesome 5 Free"; font-weight: 900; }

/* ========================================
   ADDITIONAL FIXES FOR 3 COLUMN LAYOUT
   ======================================== */

/* Ensure cards in 3-column layout have equal height */
.row .col-lg-4,
.row .col-md-6,
.row .col-sm-12 {
    display: flex;
}

.service-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.service-card .sr-body {
    flex: 1;
}

/* Fix for icon spacing in 3-column layout */
.service-card .sr-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

/* Bottom bar responsive */
@media (max-width: 992px) {
    .row.justify-content-lg-between {
        justify-content: center !important;
    }
    
    .notice-bar {
        width: 100%;
        text-align: center;
    }
}



/* ========================================= */
/* ===== PRODUCTS GALLERY SECTION ===== */
/* ========================================= */

.products-gallery-wrapper {
    background-color: var(--smoke-color, #f0f4f8);
    padding-top: 100px;
    padding-bottom: 100px;
}

.products-gallery-wrapper .section-title .h1 {
    color: var(--title-color);
}

/* Gallery Grid */
.gallery-grid {
    margin-top: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 42, 74, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 12px;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-overlay span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Lightbox Popup */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: lightboxFade 0.4s ease;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: lightboxZoom 0.4s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    display: block;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(212, 175, 55, 0.8);
    transform: rotate(90deg);
}

/* Animations */
@keyframes lightboxFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes lightboxZoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-item img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .products-gallery-wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-overlay i {
        font-size: 30px;
    }
    
    .gallery-overlay span {
        font-size: 16px;
    }
    
    .lightbox-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .gallery-item img {
        height: 180px;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-content img {
        max-height: 70vh;
    }
}

/* ========================================= */
/* ===== GET IN TOUCH SECTION ===== */
/* ========================================= */

.get-in-touch-wrapper {
    background-color: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.get-in-touch-wrapper .section-title .h1 {
    color: var(--title-color);
}

/* Contact Info Cards */
.contact-info-wrapper {
    padding-right: 30px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 20px;
    margin-bottom: 15px;
    background: var(--smoke-color, #f0f4f8);
    border-radius: 12px;
    transition: all 0.4s ease;
    border-left: 4px solid rgba(var(--theme-color), 0.3);
}

.contact-info-card:hover {
    background: #ffffff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transform: translateX(8px);
    border-left-color: rgb(var(--theme-color));
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(var(--theme-color), 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgb(var(--theme-color));
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon {
    background: rgb(var(--theme-color));
    color: #ffffff;
    transform: rotate(360deg);
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--title-color);
}

.contact-details p {
    margin-bottom: 2px;
    color: var(--body-color);
    font-size: 15px;
}

.contact-details a {
    color: var(--body-color);
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: rgb(var(--theme-color));
}

.contact-link {
    display: inline-block;
    margin-top: 5px;
    font-weight: 500;
    color: rgb(var(--theme-color)) !important;
    font-size: 14px;
}

.contact-link i {
    transition: all 0.3s ease;
    margin-left: 5px;
}

.contact-link:hover i {
    transform: translateX(5px);
}

/* Contact Social */
.contact-social h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--title-color);
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--smoke-color, #f0f4f8);
    color: var(--title-color);
    font-size: 18px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgb(var(--theme-color));
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(var(--theme-color), 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--smoke-color, #f0f4f8);
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.contact-form-wrapper h3 {
    color: var(--title-color);
}

.contact-form-wrapper p {
    color: var(--body-color);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e8ecf0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
    color: var(--title-color);
}

.form-control:focus {
    outline: none;
    border-color: rgb(var(--theme-color));
    box-shadow: 0 0 0 4px rgba(var(--theme-color), 0.1);
}

.form-control::placeholder {
    color: #b0b5bb;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .vs-btn {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.contact-form .vs-btn i {
    margin-left: 0;
    transition: all 0.4s ease;
}

.contact-form .vs-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .get-in-touch-wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .contact-info-wrapper {
        padding-right: 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 22px;
    }
    
    .form-control {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .contact-form .vs-btn {
        font-size: 15px;
        padding: 14px 25px;
    }
}


/* ========================================= */
/* ===== FIX: BIGGER LOGO & CALL ANYTIME SPACING ===== */
/* ========================================= */
/* AAAAAAAAAAAAAAAAAAAAAAA!!! FIX STARTS !!!AAAAAAAAAAAAAAAAAAAAA*/

/* --- Make Logo MUCH Bigger --- */
.header1-logo a {
    display: block;
}

.header1-logo img {
    max-height: 120px !important;  /* Increased from 75px to 120px - MUCH BIGGER */
    width: auto;
    transition: all 0.3s ease;
    padding: 5px 0;
}

/* --- Fix "Call Anytime" Spacing --- */
.phone-box {
    margin-left: 40px !important;  /* More space between logo and phone */
    padding-left: 25px !important;
    border-left: 3px solid rgba(212, 175, 55, 0.4);  /* Thicker gold separator */
}

.phone-box .box-icon {
    width: 55px !important;
    height: 55px !important;
    line-height: 55px !important;
    font-size: 22px !important;
    background: rgb(var(--theme-color)) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    margin-right: 18px !important;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.phone-box .media-body span {
    font-size: 13px;
    color: var(--body-color);
    display: block;
    margin-bottom: 2px;
    font-weight: 500;
}

.phone-box .media-body a {
    color: var(--title-color);
    font-size: 22px !important;  /* Bigger phone number */
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.phone-box .media-body a:hover {
    color: rgb(var(--theme-color));
}

/* --- Header Main Layout Fix --- */
.header-main .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-main .col-auto:first-child {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- Sticky Header Adjustment --- */
.sticky-wrap {
    padding: 5px 0;
}

/* --- Responsive Fixes --- */
@media (max-width: 1199px) {
    .header1-logo img {
        max-height: 100px !important;
    }
    
    .phone-box .media-body a {
        font-size: 20px !important;
    }
}

@media (max-width: 991px) {
    .header1-logo img {
        max-height: 80px !important;
    }
    
    .phone-box {
        margin-left: 20px !important;
        padding-left: 15px !important;
    }
    
    .phone-box .box-icon {
        width: 45px !important;
        height: 45px !important;
        line-height: 45px !important;
        font-size: 18px !important;
        margin-right: 12px !important;
    }
    
    .phone-box .media-body a {
        font-size: 18px !important;
    }
    
    .phone-box .media-body span {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .header1-logo img {
        max-height: 65px !important;
    }
    
    .phone-box {
        margin-left: 15px !important;
        padding-left: 12px !important;
        border-left: 2px solid rgba(212, 175, 55, 0.3) !important;
    }
    
    .phone-box .box-icon {
        width: 38px !important;
        height: 38px !important;
        line-height: 38px !important;
        font-size: 15px !important;
        margin-right: 10px !important;
    }
    
    .phone-box .media-body a {
        font-size: 16px !important;
    }
    
    .phone-box .media-body span {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .header1-logo img {
        max-height: 50px !important;
    }
    
    .phone-box {
        margin-left: 10px !important;
        padding-left: 8px !important;
        border-left: none !important;
    }
    
    .phone-box .box-icon {
        width: 32px !important;
        height: 32px !important;
        line-height: 32px !important;
        font-size: 12px !important;
        margin-right: 8px !important;
        box-shadow: none !important;
    }
    
    .phone-box .media-body a {
        font-size: 13px !important;
    }
    
    .phone-box .media-body span {
        display: none !important;  /* Hide "Call Anytime" text on mobile */
    }
}

/* AAAAAAAAAAAAAAAAAAAAAAA!!! FIX ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/* ===== ABOUT READ MORE BUTTON ===== */
.about-btn .vs-btn {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    background: var(--title-color);
    color: #ffffff;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-btn .vs-btn:hover {
    background: rgb(var(--theme-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.about-btn .vs-btn i {
    transition: all 0.3s ease;
}

.about-btn .vs-btn:hover i {
    transform: translateX(8px);
}


/* ===== MOBILE RESPONSIVE ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
}
.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--title-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 8px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -8px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: var(--title-color);
    padding: 30px 25px;
    overflow-y: auto;
    transition: all 0.4s ease;
    z-index: 10000;
}
.mobile-menu-overlay.active .mobile-menu-container {
    right: 0;
}
.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}
.mobile-menu-close:hover {
    background: rgb(var(--theme-color));
}
.mobile-menu-logo {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 10px;
}
.mobile-menu-logo img {
    max-height: 60px;
    background: #fff;
    padding: 8px 15px;
    border-radius: 5px;
}
.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu-nav ul li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-nav ul li a {
    display: block;
    padding: 14px 0;
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}
.mobile-menu-nav ul li a:hover {
    color: rgb(var(--theme-color));
    padding-left: 10px;
}
.mobile-menu-nav ul li .sub-menu {
    padding-left: 20px;
    display: none;
}
.mobile-menu-nav ul li .sub-menu.open {
    display: block;
}
.mobile-menu-nav ul li .sub-menu li {
    border-bottom: none;
}
.mobile-menu-nav ul li .sub-menu li a {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
}
.mobile-menu-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-contact p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.mobile-menu-contact p i {
    color: rgb(var(--theme-color));
    width: 25px;
}
.mobile-menu-contact p a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}
.mobile-menu-contact p a:hover {
    color: rgb(var(--theme-color));
}
.mobile-menu-social {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}
.mobile-menu-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}
.mobile-menu-social a:hover {
    background: rgb(var(--theme-color));
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    .header-btn .vs-btn {
        display: none;
    }
    .header-top .col-auto:last-child {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .header-top-info li {
        display: block;
        margin-right: 0;
        margin-bottom: 3px;
        font-size: 11px;
    }
    .header1-logo img {
        max-height: 50px !important;
    }
    .phone-box {
        margin-left: 10px !important;
        padding-left: 8px !important;
        border-left: none !important;
    }
    .phone-box .box-icon {
        width: 32px !important;
        height: 32px !important;
        line-height: 32px !important;
        font-size: 12px !important;
        margin-right: 8px !important;
    }
    .phone-box .media-body a {
        font-size: 13px !important;
    }
    .phone-box .media-body span {
        display: none !important;
    }
    .header-notice .notice-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }
    .vs-hero-carousel {
        height: 400px;
    }
    .vs-hero-carousel .slide-content {
        text-align: center;
        padding: 15px;
    }
    .vs-hero-carousel .slide-content h1 {
        font-size: 24px;
    }
    .vs-hero-carousel .slide-content .subtitle {
        font-size: 20px;
    }
    .vs-hero-carousel .slide-content .vs-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    .about-content .h1 {
        font-size: 28px;
    }
    .service-card {
        padding-top: 33px;
    }
    .service-card .sr-img {
        margin-top: -50px;
    }
    .service-card .sr-icon {
        --size: 100px;
        --extra: -5px;
    }
    .service-card .sr-icon i {
        font-size: 36px;
    }
    .gallery-item img {
        height: 180px;
    }
    .contact-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
    }
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    /* Footer Center */
    .footer-widgets-row .widget {
        text-align: center;
    }
    .footer-gallery {
        justify-content: center;
    }
    .footer-contact-info {
        text-align: center;
    }
    .footer-widget ul {
        text-align: center;
    }
    .footer-widget ul li a:before {
        display: none;
    }
    .vs-widget-about .d-flex {
        justify-content: center;
    }
    .copyright .col-auto {
        width: 100%;
        text-align: center !important;
    }
    .footer-bottom-menu {
        justify-content: center;
        margin-top: 10px;
        flex-wrap: wrap;
        gap: 15px;
    }
    .h1 {
        font-size: 28px;
    }
    .section-title {
        margin-bottom: 35px;
    }
    .space {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .vs-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .header1-logo img {
        max-height: 40px !important;
    }
    .vs-hero-carousel {
        height: 350px;
    }
    .vs-hero-carousel .slide-content h1 {
        font-size: 20px;
    }
    .gallery-item img {
        height: 160px;
    }
}






/* ============================================================
   SERVICES SPECIFICATIONS – CSS START
   ============================================================ */

.services-spec-section {
  padding: 80px 0;
  background: #f4f7fc;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.services-spec-container {
  display: flex;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: flex-start;
}

/* ===== LEFT NAVIGATION (28%) ===== */
.services-nav {
  width: 28%;
  flex-shrink: 0;
  position: sticky;
  top: 2rem;
  align-self: flex-start;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

.services-nav::-webkit-scrollbar {
  width: 4px;
}

.services-nav::-webkit-scrollbar-thumb {
  background: #f5a623;
  border-radius: 10px;
}

.services-nav-inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0b1a2f;
  padding: 0 0.5rem 1rem 0.5rem;
  border-bottom: 2px solid #eef2f6;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-heading i {
  color: #f5a623;
  font-size: 1.2rem;
}

.services-btn-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1rem;
}

.services-btn-list li {
  width: 100%;
}

.service-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border: none;
  background: transparent;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2c3e50;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  font-family: inherit;
  line-height: 1.3;
}

.service-nav-btn i {
  width: 1.4rem;
  font-size: 1rem;
  color: #7a8a9e;
  transition: color 0.2s;
  flex-shrink: 0;
}

.service-nav-btn:hover {
  background: #f0f5fe;
  color: #0b1a2f;
}

.service-nav-btn:hover i {
  color: #f5a623;
}

.service-nav-btn.active {
  background: #f5a623;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.35);
}

.service-nav-btn.active i {
  color: #ffffff;
}

/* ===== RIGHT CONTENT (72%) ===== */
.services-content {
  width: 72%;
  flex-shrink: 0;
}

.service-detail-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem 2.2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  animation: fadeSlide 0.35s ease forwards;
}

@keyframes fadeSlide {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.service-detail-img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #eef2f6;
}

.service-detail-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 380px;
}

.service-detail-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0b1a2f;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.service-detail-desc {
  font-size: 1rem;
  color: #3d5166;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.spec-grid .spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.spec-grid .spec-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8a9aa8;
}

.spec-grid .spec-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0b1a2f;
}

.spec-section-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0b1a2f;
  margin: 1.5rem 0 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spec-section-heading i {
  color: #f5a623;
  font-size: 1rem;
}

.service-features-list,
.service-benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin: 0.5rem 0 1rem 0;
}

.service-features-list li,
.service-benefits-list li {
  padding: 0.3rem 0;
  font-size: 0.95rem;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-features-list li i,
.service-benefits-list li i {
  color: #f5a623;
  font-size: 0.8rem;
  width: 1.2rem;
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #f5a623;
  color: #ffffff;
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 1.2rem;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.3);
}

.cta-btn:hover {
  background: #d48e1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media screen and (max-width: 1024px) {
  .services-spec-container {
    gap: 1.5rem;
  }
  .services-nav {
    width: 30%;
  }
  .services-content {
    width: 70%;
  }
  .service-detail-card {
    padding: 1.5rem;
  }
  .spec-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .services-spec-section {
    padding: 40px 0;
  }

  .services-spec-container {
    flex-direction: column;
    gap: 0;
    padding: 0 0.75rem;
  }

  /* NAV becomes horizontal sticky */
  .services-nav {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 50;
    background: #f4f7fc;
    padding: 0.5rem 0 0.75rem 0;
    max-height: none;
    overflow-y: visible;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  }

  .services-nav-inner {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0.2rem;
    border-radius: 0;
  }

  .nav-heading {
    display: none;
  }

  .services-btn-list {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.25rem 0.2rem 0.5rem 0.2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 0;
  }

  .services-btn-list::-webkit-scrollbar {
    display: none;
  }

  .services-btn-list li {
    flex-shrink: 0;
    width: auto;
  }

  .service-nav-btn {
    white-space: nowrap;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 40px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  }

  .service-nav-btn i {
    font-size: 0.85rem;
    width: 1.2rem;
  }

  .service-nav-btn.active {
    background: #f5a623;
    color: #fff;
    border-color: #f5a623;
  }

  .service-nav-btn.active i {
    color: #fff;
  }

  /* CONTENT full width */
  .services-content {
    width: 100%;
    padding-top: 1rem;
  }

  .service-detail-card {
    padding: 1.2rem 1rem;
    border-radius: 18px;
  }

  .service-detail-title {
    font-size: 1.5rem;
  }

  .spec-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1rem;
  }

  .service-features-list,
  .service-benefits-list {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .service-detail-img img {
    max-height: 220px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
  }
}

/* Small phones */
@media screen and (max-width: 420px) {
  .services-spec-section {
    padding: 20px 0;
  }
  .service-detail-card {
    padding: 1rem 0.8rem;
  }
  .service-nav-btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
  .spec-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .service-detail-title {
    font-size: 1.3rem;
  }
}

/* ============================================================
   SERVICES SPECIFICATIONS – CSS END
   ============================================================ */