/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
/*XXXXXXXXXXXXXXX GLOBAL STYLES START XXXXXXXXXXXXXXX*/
/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f8f9fa;
    color: #333;
    overflow-x: hidden;
    padding-top: 142px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

/* Premium Border Variables */
:root {
    --premium-border: 1.5px solid rgba(45, 194, 107, 0.15);
    --premium-border-hover: 2px solid rgba(45, 194, 107, 0.3);
    --premium-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --premium-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.18);
    --premium-glow: 0 0 20px rgba(45, 194, 107, 0.1);
}

/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
/*XXXXXXXXXXXXXXX GLOBAL STYLES END XXXXXXXXXXXXXXXXX*/
/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! TOP HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.top-header {
    display: flex;
    width: 100%;
    height: 52px;
    position: fixed;
    top: 0;
    background: linear-gradient(90deg, #2DC26B 0%, #2DC26B 25%, #023f30 25%, #023f30 100%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 1030;
}

@media (max-width: 768px) {
    .top-header {
        display: none !important;
    }
}

.top-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 52px 30px 0 0;
    border-color: #2DC26B transparent transparent transparent;
    z-index: 2;
}

.top-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(25% - 30px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 52px 0;
    border-color: transparent #023f30 transparent transparent;
    z-index: 3;
}

.top-header-left {
    width: 25%;
    display: flex;
    align-items: center;
    padding-left: 45px;
    position: relative;
    z-index: 4;
}

.top-header-right {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 45px;
    position: relative;
    z-index: 4;
}

.top-header-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .top-header-menu {
        display: none !important;
    }
}

.top-header-menu li {
    position: relative;
}

.top-header-menu a {
    color: white;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.top-header-menu a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.top-header-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.top-header-menu a:hover::after {
    width: 100%;
}

.contact-info {
    display: flex;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: white;
    padding: 5px 0;
}

.contact-item:hover {
    color: rgba(255, 255, 255, 0.9);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! TOP HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MAIN NAVIGATION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 90px;
    background: white;
    padding: 0 45px;
    border-bottom: 2px solid #f0f0f0;
    position: fixed;
    top: 52px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(45, 194, 107, 0.1);
    border-right: 1px solid rgba(45, 194, 107, 0.1);
    z-index: 1020;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .main-header {
        height: 70px;
        top: 0 !important;
        padding: 0 15px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-header .container-fluid {
        padding: 0 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

.main-header.scrolled {
    height: 70px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    padding: 10px 20px;
    border-radius: 15px;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.02);
    border: 2px solid rgba(45, 194, 107, 0.2);
    box-shadow: 0 5px 15px rgba(45, 194, 107, 0.1);
}

.logo-icon {
    width: 180px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 5px;
}

.logo-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@media (max-width: 768px) {
    .logo-icon {
        width: 140px !important;
        padding: 0 !important;
    }
    
    .logo {
        padding: 5px 10px !important;
        margin-right: 0 !important;
    }
    
    .logo-icon img {
        max-height: 40px;
        object-fit: contain;
    }
}

.mobile-phone-number {
    display: none;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2DC26B;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1.5px solid rgba(45, 194, 107, 0.2);
    background: rgba(45, 194, 107, 0.05);
    white-space: nowrap;
    margin: 0 10px;
    flex-shrink: 0;
    order: 2;
}

@media (max-width: 768px) {
    .mobile-phone-number {
        display: flex !important;
        margin: 0 10px !important;
        font-size: 13px !important;
        padding: 6px 10px !important;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 15px 0 !important;
        margin-top: 10px !important;
    }
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 15.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    position: relative;
    border-radius: 25px;
    border: 1.5px solid transparent;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2DC26B, #25a85a);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.nav-menu a:hover {
    color: #2DC26B;
    background: rgba(45, 194, 107, 0.05);
    border: 1.5px solid rgba(45, 194, 107, 0.1);
}

.nav-menu a.active {
    color: #2DC26B;
    background: rgba(45, 194, 107, 0.08);
    border: 1.5px solid rgba(45, 194, 107, 0.15);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: var(--premium-shadow);
    border-radius: 15px;
    padding: 15px 0;
    border: var(--premium-border);
    z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static !important;
        display: none !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(45, 194, 107, 0.03) !important;
        margin-top: 10px !important;
        border-radius: 10px !important;
        width: 100% !important;
        padding: 10px 0 !important;
    }
    
    .dropdown-menu.show {
        display: block !important;
    }
    
    .dropdown-menu a {
        padding-left: 40px !important;
        padding-right: 20px !important;
        font-size: 14.5px !important;
    }
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 12px 25px;
    border-radius: 0;
    border: none;
    font-size: 14px;
    font-weight: 500;
    display: block;
    width: 100%;
}

.dropdown-menu a:hover {
    background: rgba(45, 194, 107, 0.05);
    color: #2DC26B;
}

.dropdown-menu a::after {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .header-right {
        display: none !important;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 20px;
    border-right: 2px solid #f0f0f0;
}

.help-text {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    margin-bottom: 2px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #222;
    font-size: 15.5px;
    padding: 8px 15px;
    border-radius: 20px;
    border: 1.5px solid rgba(45, 194, 107, 0.1);
    background: rgba(45, 194, 107, 0.05);
    transition: all 0.3s ease;
}

.phone-number:hover {
    border: 1.5px solid rgba(45, 194, 107, 0.2);
    background: rgba(45, 194, 107, 0.08);
    transform: translateY(-2px);
}

.phone-icon {
    color: #2DC26B;
    font-size: 13px;
}

.desktop-cta-button {
    background: linear-gradient(135deg, #2DC26B, #25a85a);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 194, 107, 0.3);
    letter-spacing: 0.5px;
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.desktop-cta-button:hover::before {
    left: 100%;
}

.desktop-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 194, 107, 0.4);
    border: 2px solid rgba(255,255,255,0.5);
}

.navbar-toggler {
    border: 1.5px solid rgba(45, 194, 107, 0.2);
    border-radius: 10px;
    padding: 8px 12px;
    background: rgba(45, 194, 107, 0.05);
    flex-shrink: 0;
    order: 3;
    margin-left: 0 !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(45, 194, 107, 0.2);
}

@media (max-width: 768px) {
    .navbar-toggler {
        padding: 6px 10px !important;
        margin-left: 0 !important;
    }
    
    .navbar-toggler-icon {
        width: 1.2em !important;
        height: 1.2em !important;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! MAIN NAVIGATION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    border-bottom: 3px solid rgba(45, 194, 107, 0.1);
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
        margin-top: 10px;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background-image: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%), 
                      url('https://img.freepik.com/free-photo/young-woman-opens-plastic-window-fresh-air-smiling-home_231208-11270.jpg?semt=ais_hybrid&w=740&q=80');
}

.slide-2 {
    background-image: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%), 
                      url('https://img.freepik.com/premium-photo/many-mosquitoes-flying-house-while-insect-net-was-opened_1045533-1844.jpg?semt=ais_hybrid&w=740&q=80');
}

.slide-3 {
    background-image: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%), 
                      url('https://img.freepik.com/free-photo/full-shot-woman-decorating-front-door-outside_23-2150562169.jpg?semt=ais_hybrid&w=740&q=80');
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ADDITIONAL CONTENT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.additional-content-section {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 3px solid rgba(45, 194, 107, 0.1);
    border-bottom: 3px solid rgba(45, 194, 107, 0.1);
    width: 100%;
}

@media (max-width: 768px) {
    .additional-content-section {
        padding: 40px 0;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ADDITIONAL CONTENT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICES SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9f3 0%, #e6f4ea 100%);
    border-top: 3px solid rgba(2, 63, 48, 0.2);
    border-bottom: 3px solid rgba(2, 63, 48, 0.2);
    width: 100%;
    position: relative;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(2, 63, 48, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(45, 194, 107, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-header {
    position: relative;
    z-index: 1;
}

.services-main-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #023f30;
    margin-bottom: 15px;
    padding: 12px 35px;
    border-radius: 30px;
    background: rgba(2, 63, 48, 0.15);
    border: 2px solid rgba(2, 63, 48, 0.25);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(2, 63, 48, 0.1);
}

.service-card {
    background: #023f30;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(2, 63, 48, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(2, 63, 48, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 40px 30px 30px;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    background: #023f30;
    color: white;
}

@media (max-width: 768px) {
    .service-content {
        padding: 30px 20px 20px;
    }
}

.service-title {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

@media (max-width: 576px) {
    .service-title {
        font-size: 20px;
    }
}

.service-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.read-more:hover {
    color: #023f30;
    background: white;
    gap: 12px;
    border: 2px solid white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(2, 63, 48, 0.3), transparent);
    z-index: 1;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICES SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.about-section {
    padding: 100px 0;
    background: white;
    border-top: 3px solid rgba(45, 194, 107, 0.1);
    border-bottom: 3px solid rgba(45, 194, 107, 0.1);
    width: 100%;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
}

.main-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    border: var(--premium-border);
    position: relative;
}

@media (max-width: 768px) {
    .main-image {
        height: 300px;
    }
}

.main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(45, 194, 107, 0.1);
    border-radius: 20px;
    pointer-events: none;
    z-index: 2;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image:hover {
    border: var(--premium-border-hover);
    box-shadow: var(--premium-shadow-hover);
}

.main-image:hover img {
    transform: scale(1.05);
}

.decoration-shape {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2DC26B, #25a85a);
    border-radius: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    box-shadow: 0 15px 30px rgba(45, 194, 107, 0.3);
    border: 3px solid rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .decoration-shape {
        width: 60px;
        height: 60px;
        font-size: 20px;
        bottom: -10px;
        right: -10px;
    }
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--premium-shadow);
    text-align: center;
    border: var(--premium-border);
    z-index: 3;
}

@media (max-width: 768px) {
    .experience-badge {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }
}

.experience-badge:hover {
    border: var(--premium-border-hover);
    box-shadow: var(--premium-shadow-hover);
}

.years {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #2DC26B, #25a85a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.experience-text {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-top: 5px;
}

.text-column {
    padding: 40px;
    border-radius: 20px;
    background: white;
    border: var(--premium-border);
    box-shadow: var(--premium-shadow);
    width: 100%;
}

@media (max-width: 768px) {
    .text-column {
        padding: 20px;
        margin-top: 20px;
    }
}

.text-column:hover {
    border: var(--premium-border-hover);
    box-shadow: var(--premium-shadow-hover);
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2DC26B;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: rgba(45, 194, 107, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(45, 194, 107, 0.2);
}

.about-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .about-heading {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .about-heading {
        font-size: 24px;
    }
}

.about-description {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
    text-align: justify;
}

@media (max-width: 768px) {
    .about-description {
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    border: var(--premium-border);
    background: rgba(45, 194, 107, 0.02);
    transition: all 0.3s ease;
    width: 100%;
}

.feature-item:hover {
    border: var(--premium-border-hover);
    background: rgba(45, 194, 107, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--premium-shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(45, 194, 107, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2DC26B;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(45, 194, 107, 0.2);
}

.feature-item:hover .feature-icon {
    background: #2DC26B;
    color: white;
    transform: translateY(-3px);
    border: 1.5px solid rgba(45, 194, 107, 0.4);
    box-shadow: 0 5px 15px rgba(45, 194, 107, 0.3);
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

.primary-button {
    background: linear-gradient(135deg, #023f30, #F8C332);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    letter-spacing: 1px;
    border: 2px solid rgba(255,255,255,0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    border: 2px solid rgba(255,255,255,0.5);
}

.secondary-button {
    background: transparent;
    color: #2DC26B;
    border: 2px solid #2DC26B;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #2DC26B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 194, 107, 0.3);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.gallery-section {
    padding: 100px 0;
    background: white;
    border-top: 3px solid rgba(45, 194, 107, 0.1);
    border-bottom: 3px solid rgba(45, 194, 107, 0.1);
    width: 100%;
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2DC26B;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: rgba(45, 194, 107, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(45, 194, 107, 0.2);
}

.gallery-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 28px;
    }
}

.gallery-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .gallery-slider-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .gallery-slider-container {
        padding: 0 30px;
    }
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide-group {
    min-width: 100%;
    display: flex;
    gap: 15px;
    padding: 10px;
    justify-content: space-between;
}

.gallery-box {
    flex: 0 0 calc(25% - 12px);
    min-width: 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #023f30;
    position: relative;
    transition: all 0.3s ease;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1200px) {
    .gallery-box {
        height: 280px;
    }
}

@media (max-width: 992px) {
    .gallery-box {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .gallery-slide-group {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .gallery-box {
        flex: 0 0 calc(50% - 8px) !important;
        height: 200px;
        min-width: calc(50% - 8px) !important;
    }
}

@media (max-width: 576px) {
    .gallery-box {
        flex: 0 0 100% !important;
        height: 220px;
        min-width: 100% !important;
    }
}

.gallery-box-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 10px;
}

.gallery-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.gallery-box:hover {
    border: 3px solid #2DC26B;
    box-shadow: 0 15px 40px rgba(45, 194, 107, 0.2);
    transform: translateY(-5px);
}

.gallery-box:hover .gallery-box-image img {
    transform: scale(1.05);
}

.placeholder-box {
    background: #f0f9f3;
    border: 2px dashed rgba(2, 63, 48, 0.3);
}

.placeholder-content {
    text-align: center;
    color: rgba(2, 63, 48, 0.5);
    padding: 20px;
}

.placeholder-content i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.placeholder-content p {
    font-size: 14px;
    margin: 0;
}

.gallery-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.gallery-slider-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(45, 194, 107, 0.1);
    color: #2DC26B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(45, 194, 107, 0.2);
    font-size: 20px;
}

.gallery-slider-arrow:hover {
    background: #2DC26B;
    color: white;
    transform: scale(1.1);
    border: 2px solid rgba(45, 194, 107, 0.4);
}

.gallery-slider-indicators {
    display: flex;
    gap: 15px;
}

.gallery-slider-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(45, 194, 107, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(45, 194, 107, 0.2);
}

.gallery-slider-indicator.active {
    background: #2DC26B;
    transform: scale(1.2);
    border: 2px solid rgba(45, 194, 107, 0.4);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FEEDBACK SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.feedback-section {
    padding: 100px 0;
    background: white;
    border-top: 3px solid rgba(45, 194, 107, 0.1);
    border-bottom: 3px solid rgba(45, 194, 107, 0.1);
    width: 100%;
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 60px 0;
    }
}

.feedback-static-content {
    height: 100%;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .feedback-static-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.feedback-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2DC26B;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: rgba(45, 194, 107, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(45, 194, 107, 0.2);
}

.feedback-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
    margin-bottom: 20px;
}

.feedback-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.feedback-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.satisfaction-rate {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 25px;
    background: rgba(45, 194, 107, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(45, 194, 107, 0.15);
}

.rate-number {
    font-size: 48px;
    font-weight: 800;
    color: #2DC26B;
    line-height: 1;
}

.rate-text {
    font-size: 16px;
    color: #555;
    font-weight: 600;
}

.rate-text span {
    display: block;
    color: #777;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
}

.feedback-slider-container {
    position: relative;
    height: 100%;
}

.feedback-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--premium-shadow);
    border: var(--premium-border);
    background: white;
    height: 500px;
}

@media (max-width: 768px) {
    .feedback-slider {
        height: 450px;
    }
}

.feedback-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.feedback-slide {
    min-width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .feedback-slide {
        padding: 30px 25px;
    }
}

.feedback-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(45, 194, 107, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feedback-card:hover {
    border: var(--premium-border-hover);
    box-shadow: var(--premium-shadow-hover);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 40px;
    color: #2DC26B;
    margin-bottom: 20px;
    opacity: 0.7;
}

.feedback-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(45, 194, 107, 0.2);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.client-details p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.rating {
    color: #023f30;
    margin-top: 5px;
}

.feedback-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.feedback-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(45, 194, 107, 0.1);
    color: #2DC26B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(45, 194, 107, 0.2);
}

.feedback-arrow:hover {
    background: #2DC26B;
    color: white;
    transform: scale(1.1);
    border: 2px solid rgba(45, 194, 107, 0.4);
}

.feedback-indicators {
    display: flex;
    gap: 10px;
}

.feedback-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(45, 194, 107, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 194, 107, 0.2);
}

.feedback-indicator.active {
    background: #2DC26B;
    transform: scale(1.2);
    border: 1px solid rgba(45, 194, 107, 0.4);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FEEDBACK SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! REQUEST SERVICE SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.request-service-section {
    padding: 100px 0;
    background: #def3e6;
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .request-service-section {
        padding: 60px 0;
    }
}

.request-content {
    color: white;
}

.request-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #023f30;
}

.request-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
    color: #023f30;
}

.what-we-do-section {
    margin-top: 40px;
    padding: 30px;
    background: #023f30;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.what-we-do-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.what-we-do-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.what-we-do-description {
    font-size: 16px;
    line-height: 1.7;
    color: white;
    opacity: 0.9;
}

.features-list {
    list-style: none;
    margin-top: 40px;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: 18px;
    padding: 20px 25px;
    background: #023f30;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: white;
}

.features-list li:hover {
    background: rgba(2, 63, 48, 0.9);
    transform: translateX(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-text {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.feature-percentage {
    font-size: 32px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.call-info {
    margin-top: 40px;
    padding: 25px;
    background: #023f30;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: white;
}

.call-info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.call-info p {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 0;
    color: white;
}

.request-form-box {
    background: #023f30;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 150px;
    color: white;
    animation: slideInUp 0.6s ease-out;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(2, 63, 48, 0.3);
    border-radius: 10px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2DC26B;
    background: white;
    box-shadow: 0 0 0 3px rgba(45, 194, 107, 0.2);
}

.form-select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(2, 63, 48, 0.3);
    border-radius: 10px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-select:focus {
    outline: none;
    border-color: #2DC26B;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(45, 194, 107, 0.2);
}

.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(2, 63, 48, 0.3);
    border-radius: 10px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-textarea:focus {
    outline: none;
    border-color: #2DC26B;
    background: white;
    box-shadow: 0 0 0 3px rgba(45, 194, 107, 0.2);
}

.submit-button {
    width: 100%;
    background: #2DC26B;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    background: #25a85a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 194, 107, 0.4);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! REQUEST SERVICE SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.footer-section {
    background: #0D0D0D;
    color: white;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 20px;
    }
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
                      linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
                      linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.02) 75%),
                      linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.02) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.3;
    pointer-events: none;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    text-decoration: none;
}

.footer-logo-icon {
    width: 180px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer-logo-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@media (max-width: 768px) {
    .footer-logo-icon {
        width: 140px;
    }
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #AFAFAF;
    margin-bottom: 25px;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item-footer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #AFAFAF;
}

.contact-item-footer i {
    color: #2DC26B;
    margin-top: 2px;
    font-size: 16px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-transform: capitalize;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #2DC26B;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.footer-links li a {
    color: #AFAFAF;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-links li a:hover {
    color: #2DC26B;
    transform: translateX(5px);
}

.newsletter-text {
    font-size: 14px;
    line-height: 1.6;
    color: #AFAFAF;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 350px;
    margin-bottom: 30px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 0 0 8px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(45, 194, 107, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
    color: #777;
}

.newsletter-button {
    background: rgba(45, 194, 107, 0.9);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-button:hover {
    background: #2DC26B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 194, 107, 0.3);
}

.social-icons-footer {
    display: flex;
    gap: 15px;
}

.social-icon-footer {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AFAFAF;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-footer:hover {
    background: #2DC26B;
    color: white;
    transform: translateY(-3px);
    border-color: rgba(45, 194, 107, 0.3);
    box-shadow: 0 5px 15px rgba(45, 194, 107, 0.3);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #777;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .footer-bottom {
        margin-top: 40px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MOBILE RESPONSIVE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
@media (max-width: 768px) {
    #navbarNav {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: white !important;
        padding: 20px !important;
        border-radius: 15px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
        margin-top: 15px !important;
        border: 2px solid rgba(45, 194, 107, 0.1) !important;
        z-index: 1000 !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
    }
    
    .navbar-collapse {
        position: relative !important;
        flex-basis: 100% !important;
        flex-grow: 1 !important;
        align-items: center !important;
    }
    
    .navbar > .container-fluid {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 15px !important;
    }
    
    .nav-menu {
        width: 100% !important;
        margin: 0 !important;
        padding: 10px 0 !important;
    }
    
    .nav-menu a {
        padding: 12px 15px !important;
        border-radius: 10px !important;
        background: rgba(45, 194, 107, 0.05) !important;
        border: 1px solid rgba(45, 194, 107, 0.1) !important;
        width: 100% !important;
        margin-bottom: 5px !important;
    }
    
    .dropdown-menu.show {
        display: block !important;
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 5px !important;
        background: rgba(45, 194, 107, 0.03) !important;
        border: 1px solid rgba(45, 194, 107, 0.1) !important;
    }
    
    .dropdown-menu a {
        padding-left: 40px !important;
        padding-right: 20px !important;
        font-size: 14.5px !important;
        border-bottom: 1px solid rgba(45, 194, 107, 0.1) !important;
    }
    
    .logo {
        order: 1 !important;
        margin-right: auto !important;
    }
    
    .mobile-phone-number {
        order: 2 !important;
        margin-left: auto !important;
        margin-right: 10px !important;
    }
    
    .navbar-toggler {
        order: 3 !important;
        margin-left: 0 !important;
    }
    
    .mobile-header-buttons {
        display: flex !important;
        margin-top: 20px !important;
        padding: 15px !important;
        background: rgba(45, 194, 107, 0.05) !important;
        border-radius: 10px !important;
        border: 1px solid rgba(45, 194, 107, 0.1) !important;
    }
    
    .mobile-header-button {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        text-decoration: none !important;
        color: #2DC26B !important;
        font-size: 14.5px !important;
        font-weight: 600 !important;
        padding: 12px 15px !important;
        border-radius: 8px !important;
        background: white !important;
        border: 1px solid rgba(45, 194, 107, 0.2) !important;
        transition: all 0.3s ease !important;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! MOBILE RESPONSIVE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAA*/


/* FIX: Mobile menu and slider ke beech ka gap */
@media (max-width: 768px) {
    .main-header {
        position: relative;
        top: 0;
    }
    
    body {
        padding-top: 0 !important;
    }
    
    .hero-slider {
        margin-top: 0;
        top: 0;
    }
    
    .navbar-collapse.show {
        margin-bottom: 15px;
    }
}




/* SINGLE BANNER SECTION STYLES */
.single-banner-section {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    padding: 120px 0;
    position: relative;
}

.single-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(196, 154, 108, 0.1) 0%, transparent 50%);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.banner-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.banner-divider {
    width: 80px;
    height: 3px;
    background: #c49a6c;
    margin: 0 auto 30px auto;
}

.banner-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #c49a6c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 2px solid #c49a6c;
}

.banner-btn:hover {
    background: transparent;
    color: #c49a6c;
    text-decoration: none;
}

/* SIMPLIFIED ABOUT US SECTION STYLES */
.about-simple-section {
    padding: 80px 0;
    background: #fff;
}

.about-simple-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-icon-wrapper {
    display: inline-block;
    background: #c49a6c;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    border-radius: 50%;
}

.about-icon-wrapper i {
    font-size: 55px;
    color: #fff;
}

.about-label {
    color: #c49a6c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-simple-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 20px;
}

.about-simple-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.about-simple-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.simple-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.simple-feature i {
    color: #c49a6c;
    font-size: 18px;
}

.simple-feature span {
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .single-banner-section {
        padding: 80px 0;
    }
    .banner-title {
        font-size: 2rem;
    }
    .banner-subtitle {
        font-size: 1rem;
    }
    .about-simple-section {
        padding: 50px 0;
    }
    .about-simple-title {
        font-size: 1.8rem;
    }
    .about-icon-wrapper {
        width: 90px;
        height: 90px;
        line-height: 90px;
    }
    .about-icon-wrapper i {
        font-size: 40px;
    }
}