:root {
    --primary-color: #182f43;
    --primary-dark: #0e1c29;
    --accent-color: #c79538;
    --accent-color-dark: #9f7323;
    --secondary-color: #42474c;
    --dark-bg: #182536;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-color: #2c3e50;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-alt: 'Inter', sans-serif;
    --section-spacing: 60px;
    --container-width: 1320px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 15px 30px rgba(48, 97, 169, 0.15);
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-pill: 25px;
}

html {
    font-size: 16px;
}

/* =========================================
   3. Reset & Base Styles
   ========================================= */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.py-100 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* =========================================
   4. Component: Buttons
   ========================================= */
.odic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.odic-btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(48, 97, 169, 0.3);
}

.odic-btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(48, 97, 169, 0.4);
}

.odic-btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(48, 97, 169, 0.3);
}

.odic-btn-secondary:hover {
    background-color: var(--accent-color-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(48, 97, 169, 0.4);
}

.odic-btn--icon i {
    margin-left: 8px;
    font-size: 1.1em;
}

/* =========================================
   5. Header & Navigation
   ========================================= */
.site-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.site-header.sticky {
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar {
    padding: 5px 0 !important;
}

.navbar-brand .logo-img {
    max-width: 195px;
    /* Refined size */
    transition: var(--transition);
}

.site-header.sticky .logo-img {
    max-width: 145px;
}

.site-navigations .nav-link, .site-navigations .navigation > li > a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--secondary-color);
    padding: 10px 18px;
    /* text-transform: uppercase; */
    position: relative;
    letter-spacing: 0.040rem;
    display: inline-block;
}

/* Navigation Underline Animation */
.site-navigations .navigation > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.site-navigations .navigation > li:hover > a::after, .site-navigations .navigation > li.active > a::after {
    width: calc(100% - 36px);
}

.site-navigations .navigation > li:hover > a, .site-navigations .navigation > li.active > a {
    color: var(--accent-color);
}

/* Dropdown Menu - Modern */
.main-menu .navigation > li.dropdown {
    position: relative;
}

.main-menu .navigation > li > ul {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--white);
    min-width: 260px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 15px 0;
    border-top: 3px solid var(--primary-color);
    z-index: 999;
}

.main-menu .navigation > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.main-menu .navigation > li > ul > li > a {
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-color);
    padding: 10px 25px;
    display: block;
    transition: var(--transition);
}

.main-menu .navigation > li > ul > li > a:hover {
    color: var(--primary-color);
    background-color: var(--light-bg);
    padding-left: 30px;
    /* Slight slide right */
}

/* Header Enquiry Button */
.header-button .odic-btn {
    padding: 13px 45px;
    font-size: 13px;
}

/* =========================================
   6. Hero / Banner Section
   ========================================= */
.banner-section {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.banner-section .swiper-container, .banner-section .swiper-wrapper, .banner-section .swiper-slide {
    height: 100%;
}

.banner-section .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Modern Gradient Overlay */
.banner-section .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(24, 37, 54, 0.85) 0%, rgb(199 161 94 / 36%) 100%);
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.banner-content .inner {
    max-width: 900px;
    padding: 0 20px;
}

.banner-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 3vw,3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Simulate animation ready state if needed */
}

.banner-content .text-primary {
    color: var(--accent-color) !important;
    /* Gold on dark bg */
}

.banner-content h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Slider Controls */
.banner-slider-nav .banner-slider-control {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
    background: rgba(0,0,0,0.1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.banner-slider-nav .banner-slider-control:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-bg);
}

.banner-slider-button-prev {
    left: 40px;
}

.banner-slider-button-next {
    right: 40px;
}

/* =========================================
   7. About Section - Modernized
   ========================================= */
.section-about {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle background element */
.section-about::before {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(48, 97, 169, 0.05) 0%, transparent 70%);
    z-index: 0;
    display: none;
}

.about-seven-imgbox {
    position: relative;
    z-index: 2;
    aspect-ratio: 4/3;
}

.about-seven-imgbox img {
    border-radius: var(--radius-pill);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.about-seven-imgbox:hover img {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-5px);
}

.about-seven-content {
    position: relative;
    z-index: 2;
    padding-right: 50px;
}

.odic-sectitle p {
    max-width: min(99%, 890px);
    margin: 0 auto 1px;
    font-size: 1.2rem;
}

.odic-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0px;
    line-height: 1.1;
    font-family: var(--font-alt);
}

.about-title .c {
    color: var(--primary-color);
}

.about-titlesub {
    font-size: clamp(1rem, 3vw,1.3rem);
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 20px;
    margin-top: 15px;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.about-content p {
    color: #434343;
    margin-bottom: 7px;
    font-size: 1.02rem;
    text-align: justify;
}

/* =========================================
   8. Services Section - Modernized
   ========================================= */
.section-services {
    background-color: var(--light-bg);
    padding: var(--section-spacing) 0;
    position: relative;
}

.service-home-sec {
    margin-bottom: 60px;
}

.service-home-sec .odic-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-pill);
    overflow: hidden;
    position: relative;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-card__img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card__img img {
    transform: scale(1.1);
}

/* Initial state of overlay content */
.service-card__overlay {
    width: 100%;
    padding: 30px 25px;
    z-index: 2;
    transition: var(--transition);
}

.service-card__overlay-content {
    color: var(--white);
}

.service-card__overlay-content svg {
    color: var(--accent-color);
    margin-bottom: 15px;
    width: 40px;
    height: 40px;
    display: none;
}

.service-card__overlay-content h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.4;
    color: var(--text-color);
    text-align: center;
}

.service-card__overlay-content h2 span {
    display: block;
    font-weight: 400;
    font-size: 0.9em;
    opacity: 0.9;
    margin-top: 5px;
    display: none;
}

/* =========================================
   9. Footer - Premium Dark
   ========================================= */
/* =========================================
   9. Footer - Premium Dark
   ========================================= */
.site-footer {
    background-color: #121c29;
    /* Darker tone */
    color: #b0b8c1;
    font-size: 15px;
    border-top: 5px solid var(--accent-color);
}

.odic-footer-widget-area {
    padding: 80px 0 50px;
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.odic-footer-text {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #9aa5b1;
}

.footer-about__title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Social Icons */
.footer-social li {
    display: inline-block;
    margin-right: 10px;
}

.footer-social li a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social li a:hover {
    background: var(--primary-color);
    transform: rotate(360deg);
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}

.footer-contact li:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.footer-contact li span {
    color: var(--accent-color);
    margin-right: 15px;
    min-width: 25px;
    /* Alignment */
}

.footer-contact li a {
    color: #d5d8db;
    font-size: 1rem;
}

.footer-contact li a:hover {
    color: var(--white);
}

/* Footer Links */
.odic-footermenu-wrapper ul li {
    margin-bottom: 12px;
}

.odic-footermenu-wrapper ul li a {
    color: #d5d8db;
    position: relative;
    padding-left: 0;
    transition: var(--transition);
    line-height: 1.7;
    display: block;
    padding: 4px 0;
}

.odic-footermenu-wrapper ul li a:hover {
    color: var(--accent-color);
    padding-left: 19px;
}

.odic-footermenu-wrapper ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: var(--transition);
    height: 2px;
    width: 10px;
    display: block;
    background-color: var(--accent-color);
    top: 50%;
    transform: translateY(-50%);
}

.odic-footermenu-wrapper ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.odic-footer-bottom {
    background-color: #121c29;
    /* Slightly darker */
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.odic-footer-text-inner {
    color: #888;
    font-size: 14px;
}

/* WhatsApp Float */
.float-whatsapp__wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1050;
    transition: var(--transition);
}

.float-whatsapp__wrap:hover {
    transform: scale(1.1) rotate(10deg);
    color: #fff;
}

/* =========================================
   11. News Section - Modernized
   ========================================= */
.news-section {
    background-color: #eae6e3;
    position: relative;
}

.news-block {
    margin-bottom: 30px;
    border-radius: var(--radius-pill);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.news-block .inner-box {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.news-block .inner-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(199, 149, 56, 0.3);
}

.news-block .image-box {
    position: relative;
    overflow: hidden;
}

.news-block .image-box figure {
    aspect-ratio: 3/2;
    background-color: #f3f3f3;
    display: flex;
    margin: 0;
}

.news-block .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-block .inner-box:hover .image-box img {
    transform: scale(1.1);
}

.news-block .image-box .date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
    text-decoration: none;
}

.news-block .lower-content {
    padding: 24px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-block .lower-content .text-muted {
    font-size: 0.85rem;
    color: #888 !important;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-block .lower-content h4 {
    font-size: 1.15rem;
    font-weight: 590;
    margin-bottom: 1px;
    line-height: 1.4;
    letter-spacing: 0.012rem;
}

.news-block .lower-content h4 a {
    color: var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
}

.news-block .lower-content h4 a:hover {
    color: var(--accent-color);
}

.news-block .lower-content .text {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    /* Pushes button to bottom */
}

/* Truncate text if too long */
.news-block .lower-content .text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-block .news-btn a {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.news-block .news-btn a:hover {
    color: var(--primary-color);
}

.news-block .news-btn a::after {
    content: '→';
    margin-left: 8px;
    transition: var(--transition);
}

.news-block .news-btn a:hover::after {
    margin-left: 12px;
}

/* =========================================
   10. Responsive Styles
   ========================================= */
@media (max-width: 1199px) {
    .site-navigations {
        text-align: left;
        /* overflow-y: scroll; */
        /* height: 100%; */
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        z-index: 1000;
        border-top: 1px solid #f0f0f0;
        /* overflow-y: scroll; */
        /* height: auto; */
        transition: all 0.2s ease;
    }

    .main-menu .navigation > li > ul {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        /* JS Toggle required in real formatting */
        border-top: none;
        border-left: 2px solid var(--primary-color);
    }

    .main-menu .navigation > li:hover > ul {
        display: block;
        transform: none;
    }

    .main-menu .navigation > li a {
        margin-bottom: 0px;
        padding: 7px 18px;
    }

    .about-seven-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

/* =========================================
   12. Quick Contact Section (Dark Mode)
   ========================================= */
.section-quickcontact {
    background-color: var(--dark-bg);
    padding: 100px 0;
    color: var(--white);
    position: relative;
}

.quickcontact-content svg {
    fill: var(--accent-color);
    transition: var(--transition);
}

.quickcontact-content:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(199, 149, 56, 0.5));
}

.section-quickcontact h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
}

.st0 {
    fill: var(--accent-color) !important;
}

.odic-title-bar-wrapper {
    padding: 70px 0px;
    text-align: center;
    background-image: url(../images/bg/bg-inner.webp);
    background-color: #1f1f1f7a;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    background-blend-mode: overlay;
}

.odic-breadcrumb {
    display: none
}

.odic-tbar-title {
    color: #fff;
}

.service__img-border {
    overflow: hidden;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.service__img-border img {
    width: 100%
}

.service-content__ul {
    margin-bottom: 15px;
}

.service-content__ul li {
    font-weight: 600;
}

.service-content__ul li span {
    font-size: 45px;
    display: inline-block;
    color: #7f99bf;
    line-height: 1;
    vertical-align: sub;
}

.service-content__ul li span:not(.icon) {
    padding-top: 0;
    margin-right: 5px
}

.service-content__ul li span.icon {
    color: var(--accent-color);
    padding-top: -5px;
    margin-right: 8px;
    margin-top: -5px
}

.section-title__sub {
    margin: 0 0 10px!important
}

/* =========================================
   13. About Page Styles
   ========================================= */
.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(199, 149, 56, 0.3);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.about-card:hover::before {
    width: 6px;
}

.about-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(199, 149, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.title-small {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    font-family: var(--font-heading);
}

.about-card__body p {
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.odic-heading-subheading .odic-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.sec-header-hr {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin-top: 15px;
    display: none;
}

.navbar-toggler {
    background-color: var(--accent-color);
    /* --bs-navbar-color: var(--accent-color); */
}

@media (min-width: 992px) {
    .pl-lg-5 {
        padding-left: 3rem !important;
    }
}

@media (max-width: 568px) {
    .navbar-brand .logo-img {
        max-width: 135px;
    }

    .site-header.sticky .logo-img {
        max-width: 125px;
    }
}

/* =========================================
   14. Custom Side Menu
   ========================================= */
.custom-menu-icon {
    width: 30px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.custom-menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.custom-menu-icon:hover span {
    background-color: var(--accent-color);
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    /* High z-index */
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu-container {
    position: fixed;
    top: 0;
    right: -320px;
    /* Hidden default */
    width: 300px;
    height: 100%;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 10001;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.side-menu-overlay.active .side-menu-container {
    right: 0;
}

.side-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.side-menu-logo img {
    max-width: 120px;
}

.close-menu-icon {
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.close-menu-icon:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.side-menu-content {
    padding: 20px;
    flex-grow: 1;
}

.side-navigation {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-navigation li {
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.side-navigation li:last-child {
    border-bottom: none;
}

.side-navigation a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
}

.side-navigation a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.side-navigation .submenu {
    display: none;
    padding-left: 20px;
    background-color: #fafafa;
    border-radius: var(--radius-sm);
}

.side-navigation .submenu a {
    font-size: 14px;
    padding: 8px 0;
    color: var(--secondary-color);
}

/* Rule removed to allow slideToggle to work */
.side-navigation .has-submenu > a i {
    transition: transform 0.3s ease;
}

.side-navigation .has-submenu.open > a i {
    transform: rotate(180deg);
}

.content-side img {
    border-radius: var(--radius-pill);
    overflow: hidden
}

/* Base */
.btn-floating:hover img {
    margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 28px;
    overflow: hidden;
    width: 63px;
    height: 63px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;
    font-size: 25px;
    line-height: 1.5;
    bottom: 105px;
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 16px;
    margin-left: 5px;
    transition: .2s;
    line-height: 0px;
    display: none;
    font-weight: 500;
    line-height: 1.6;
}

.btn-floating:hover span {
    display: inline-block;
}

/* Phone */
.btn-floating.phone {
    background-color: var(--accent-color);
}

.btn-floating.phone i {
    vertical-align: middle;
}

.btn-floating.phone:hover {
    background-color: var(--accent-color);
}

@media (max-width: 1199px) {
    /* Adjust breakpoint if needed */ .custom-menu-icon {
        display: flex;
    }

    .site-navigations.main-menu {
        display: none;
        /* Hide default menu on smaller screens */
    }
}

@media (max-width: 568px) {
    .banner-slider-nav .banner-slider-control {
        display: none
    }

    .odic-footer-widget-area {
        padding: 40px 0 10px;
    }

    .btn-floating {
        right: 10px;
        bottom: 92px;
    }

    .float-whatsapp__wrap {
        bottom: 20px;
        right: 10px;
    }
}

/* =========================================
   15. Contact Page Styles
   ========================================= */
.contact-info-list {
    background: var(--white);
    border-radius: var(--radius-md);
    height: 100%;
    transition: var(--transition);
}

.list-item {
    padding: 40px 30px;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.list-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(199, 149, 56, 0.2);
}

/* Hover Accent Line */
.list-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.list-item:hover::after {
    width: 100%;
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: #f4f7fa;
    color: var(--primary-color);
    font-size: 32px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-info-icon svg {
    transition: var(--transition);
    fill: currentColor;
}

.list-item:hover .contact-info-icon {
    background: var(--accent-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.list-item h5 {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.list-item p, .list-item a {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 5px;
    transition: var(--transition);
}

.list-item a:hover {
    color: var(--accent-color);
}

.contact-map iframe {
    border-radius: var(--radius-md);
    box-shadow: var(--box-shadow);
    display: block;
}
