/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    min-height: 100vh;
    background-color: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --green-50: #f0fdf4;
    --green-300: #86efac;
    --green-600: #16a34a;
    --green-700: #15803d;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --yellow-400: #facc15;
    --white: #ffffff;
    --black: #000000;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    overflow-x: hidden;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Top Bar */
.top-bar {
    background-color: var(--emerald-800);
    color: var(--white);
    padding: 0.5rem 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.top-bar-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    width: 100%;
    overflow-x: hidden;
}

@media (min-width: 640px) {
    .top-bar-content {
        flex-direction: row;
    }
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-links a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.top-bar-links a:hover {
    color: var(--emerald-200);
}

.top-bar-text {
    text-align: center;
}

@media (min-width: 640px) {
    .top-bar-text {
        text-align: right;
    }
}

.hidden-sm {
    display: none;
}

@media (min-width: 640px) {
    .hidden-sm {
        display: inline;
    }
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 99998;
    background-color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

@media (min-width: 768px) {
    header {
        overflow-x: hidden;
        overflow-y: hidden;
    }
}

@media (max-width: 767px) {
    header {
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    z-index: 99998;
}

@media (min-width: 768px) {
    nav {
        overflow-x: hidden;
        overflow-y: hidden;
    }
}

@media (max-width: 767px) {
    nav {
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        position: relative !important;
    }
    
    nav.section-container {
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
}

@media (min-width: 640px) {
    nav {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    nav {
        padding: 0 2rem;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6.5rem;
    position: relative;
    overflow: hidden;
    z-index: 99998;
}

@media (min-width: 768px) {
    .nav-container {
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .nav-container {
        position: relative !important;
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
    
    .nav-container .nav-menu.mobile-menu-active {
        position: absolute;
        left: 0;
        right: 0;
        width: 100vw;
        margin-left: calc(-1rem);
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-box {
    width: 3rem;
    height: 3rem;
    background-color: var(--emerald-600);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.logo-img {
    width: 150px;
   
    object-fit: contain;
    display: block;
}

@media (max-width: 767px) {
    .logo-img {
        width: 100px;
    }
}

.brand-text h1 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.brand-text p {
    font-size: 1rem;
    color: var(--gray-600);
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

/* WordPress Menu Item Styles */
.nav-item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item .nav-link {
    display: block;
    padding: 0.5rem 0;
}

@media (min-width: 768px) {
    .nav-item .nav-link {
        padding: 0;
    }
}

/* Active Menu Item */
.nav-item.active .nav-link,
.nav-link.active {
    color: var(--emerald-600);
    font-weight: 600;
}

/* Mobile Menu Active State */
@media (max-width: 767px) {
    .nav-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    .nav-menu.mobile-menu-active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important;
        flex-direction: column;
        position: absolute !important;
        top: 6.5rem !important;
        left: 0 !important;
        right: 0 !important;
        background-color: #ffffff !important;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 1rem !important;
        gap: 0;
        z-index: 99999 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        border-top: 1px solid var(--gray-200);
        margin: 0 !important;
        margin-left: calc(-1rem) !important;
        max-height: none !important;
        min-height: auto !important;
    }
    
    .nav-menu.mobile-menu-active .nav-item {
        width: 100% !important;
        border-bottom: 1px solid var(--gray-100);
        display: block !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .nav-menu.mobile-menu-active .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-menu.mobile-menu-active .nav-link {
        padding: 0.75rem 0 !important;
        width: 100% !important;
        text-align: left !important;
        display: block !important;
        color: var(--gray-700) !important;
    }
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    position: relative;
}

.nav-link:hover {
    color: var(--emerald-600);
}

/* WordPress Menu Item Type Classes (for compatibility) */
.menu-item {
    position: relative;
}

.current-menu-item .nav-link,
.current_page_item .nav-link {
    color: var(--emerald-600);
    font-weight: 600;
}

.nav-btn {
    background-color: var(--emerald-600);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.nav-btn:hover {
    background-color: var(--emerald-700);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn {
    display: block;
    color: var(--gray-700);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 99999;
    position: relative;
}

.mobile-menu-btn:hover {
    color: var(--emerald-600);
}

.mobile-menu-btn:focus {
    outline: 2px solid var(--emerald-600);
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Main Slider Section */
.main-slider-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.main-carousel {
    width: 100%;
}

.main-slide {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.main-slide-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

.main-slide-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.main-slide-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.main-slide-content .btn-primary {
    background-color: var(--white);
    color: var(--emerald-600);
    font-weight: 600;
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.main-slide-content .btn-primary:hover {
    background-color: var(--emerald-700);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 20;
}

.main-carousel .owl-nav button {
    pointer-events: all;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: var(--emerald-600) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    font-size: 1.5rem;
}

.main-carousel .owl-nav button:hover {
    background-color: var(--emerald-600) !important;
    color: var(--white) !important;
    transform: scale(1.1);
}

.main-carousel .owl-dots {
    display: none !important;
}

.main-carousel .owl-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: none;
    transition: all 0.3s ease;
}

.main-carousel .owl-dots button.active {
    background-color: var(--white) !important;
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .main-slide {
        height: 400px;
    }
    
    .main-carousel .owl-nav {
        display: none;
    }
    
    .main-slide-title {
        font-size: 2rem;
    }
    
    .main-slide-text {
        font-size: 1rem;
    }
    
    .main-slide-content {
        padding: 1.5rem;
    }
    
    .main-slide-content .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(to bottom right, var(--emerald-50), var(--white), var(--green-50));
    overflow: hidden;
    overflow-x: hidden;
    padding: 0 0 5rem 0;
    width: 100%;
    max-width: 100%;
}

.hero-top-text {
    background-color: var(--emerald-800);
    color: var(--white);
    padding: 1rem 0;
    width: 100%;
    position: relative;
    z-index: 15;
    display: block;
    margin: 0;
}

.hero-top-text .section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-top-text-content {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.05em;
    color: var(--white) !important;
    display: block;
}

@media (min-width: 768px) {
    .hero-top-text-content {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 0 0 8rem 0;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    z-index: 1;
}

.hero-bg-circle-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background-color: var(--emerald-300);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-bg-circle-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: var(--green-300);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
    width: 100%;
    
}

@media (min-width: 640px) {
    .hero-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 0 2rem;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 50% 50%;
        gap: 4rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rating-badge {
    display: inline-block;
    background-color: var(--emerald-100);
    color: var(--emerald-800);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

.hero-title span {
    color: var(--emerald-600);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

.hero-feature-item i {
    color: var(--emerald-600);
    font-size: 1rem;
}

.hero-feature-item span {
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background-color: var(--emerald-600);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
}

.btn-primary:hover {
    background-color: var(--emerald-700);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--emerald-600);
    border: 2px solid var(--emerald-600);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background-color: var(--emerald-50);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 3rem 2rem;
    box-sizing: border-box;
    min-height: 500px;
    overflow: visible;
}

@media (max-width: 640px) {
    .hero-image-wrapper {
        min-height: 400px;
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-image-wrapper {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-image-wrapper {
        margin: 2rem 0;
    }
}

.hero-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-container img {
    width: 100%;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

@media (max-width: 640px) {
    .hero-image-container img {
        height: 400px;
    }
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
}

.hero-badge-bottom {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    z-index: 25;
}

@media (max-width: 640px) {
    .hero-badge-bottom {
        bottom: 0.5rem;
        left: 0.5rem;
        padding: 1rem;
    }
}

.hero-badge-bottom-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-badge-circle {
    width: 4rem;
    height: 4rem;
    background-color: var(--emerald-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-circle span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--emerald-600);
}

.hero-badge-text p:first-child {
    font-size: 1rem;
    color: var(--gray-600);
}

.hero-badge-text p:last-child {
    font-weight: 700;
    color: var(--gray-900);
}

.hero-badge-top {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--emerald-600);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 25;
    text-align: center;
}

@media (max-width: 640px) {
    .hero-badge-top {
        top: 0.5rem;
        right: 0.5rem;
        padding: 1rem;
    }
}

.hero-badge-top p:first-child {
    font-size: 2rem;
    font-weight: 700;
}

.hero-badge-top p:last-child {
    font-size: 1rem;
}

/* Owl Carousel Hero Image Styles */
.hero-image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
}

.hero-image-carousel .owl-stage {
    display: flex;
}

.hero-image-carousel .owl-item {
    position: relative;
}

.hero-image-slide {
    width: 100%;
    position: relative;
    height: 100%;
    overflow: visible;
}

.hero-image-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 4rem);
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 30;
}

@media (max-width: 640px) {
    .hero-image-carousel .owl-nav {
        width: calc(100% - 2rem);
        left: 1rem;
        right: 1rem;
    }
}

.hero-image-carousel .owl-nav button {
    pointer-events: all;
    width: 3rem;
    height: 3rem;
    background-color: var(--white) !important;
    color: var(--emerald-600) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    font-size: 1.25rem;
}

.hero-image-carousel .owl-nav button:hover {
    background-color: var(--emerald-600) !important;
    color: var(--white) !important;
    transform: scale(1.1);
}

.hero-image-carousel .owl-dots {
    display: none !important;
}

@media (max-width: 640px) {
    .hero-image-carousel .owl-dots {
        bottom: -2.5rem;
    }
}

.hero-image-carousel .owl-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-300) !important;
    border: none;
    transition: all 0.3s ease;
}

.hero-image-carousel .owl-dots button.active {
    background-color: var(--emerald-600) !important;
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .hero-image-carousel .owl-nav {
        display: none;
    }
}

/* Section Styles */
.section {
    padding: 5rem 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .section-container {
        overflow: visible;
        position: relative;
    }
}

@media (min-width: 640px) {
    .section-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-container {
        padding: 0 2rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--emerald-600);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background-color: var(--white);
}

/* Services Brand Images Grid */
.services-brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .services-brand-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .services-brand-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
}

.brand-image-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.brand-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.brand-image-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 640px) {
    .brand-image-item img {
        height: 200px;
    }
}

/* Service Accordion */
.service-accordion {
    max-width: 100%;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.accordion-item.active {
    border-color: var(--emerald-600);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background-color: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--gray-50);
}

.accordion-item.active .accordion-header {
    background-color: var(--emerald-50);
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.accordion-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--emerald-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.accordion-icon.blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.accordion-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.accordion-arrow {
    color: var(--gray-600);
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    color: var(--emerald-600);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: var(--white);
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    transition: max-height 0.5s ease-in, padding 0.5s ease-in;
    padding: 1.5rem;
}

.accordion-content p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-category-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--emerald-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-category-icon i {
    color: var(--emerald-600);
    font-size: 1rem;
}

.service-category-icon.blue {
    background-color: var(--blue-100);
}

.service-category-icon.blue i {
    color: var(--blue-600);
}

.service-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.service-grid {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--emerald-500);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-card.blue:hover {
    border-color: var(--blue-500);
}

.service-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--emerald-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1rem;
}

.service-icon.blue {
    background-color: var(--blue-100);
    color: var(--blue-600);
}

.service-text {
    flex: 1;
}

.service-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-text p {
    color: var(--gray-600);
}

.cta-banner {
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(to right, #e6f7e6, #e6f2f7);
    border-radius: 1rem;
    padding: 3rem 2rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: #475569;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-banner .btn-primary {
    background-color: var(--emerald-600);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.cta-banner .btn-primary:hover {
    background-color: var(--emerald-700);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* New Service Accordion Styles */
.service-category-wrapper {
    margin-bottom: 4rem;
}

.service-category-header-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-category-icon-new {
    width: 3rem;
    height: 3rem;
    background-color: var(--emerald-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    font-size: 1.5rem;
}

.service-category-icon-new.blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.service-category-title-new {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.service-grid-new {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .service-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card-accordion {
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card-accordion:hover {
    border-color: var(--emerald-500);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-card-accordion.active {
    border-color: var(--emerald-500);
}

.service-card-accordion .service-icon-new.blue ~ .service-text-new ~ .service-chevron,
.service-card-accordion:has(.service-icon-new.blue):hover {
    border-color: #3b82f6;
}
.service-icon-new img{
    width:50px;
}
.service-card-button {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    background: none;
    border: none;

    transition: all 0.3s;
 
}

.service-icon-new {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--emerald-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    font-size: 2rem;
    flex-shrink: 0;
}

.service-icon-new.blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.service-text-new {
    flex: 1;
}

.service-text-new h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-text-new p {
    color: var(--gray-600);
    font-size: 1rem;
    margin: 0;
    line-height:25px;
}
.service-text-new h4 a {
    color: var(--emerald-600);   /* theme primary color */
    text-decoration: none;
}

.service-text-new h4 a:hover {
    color: var(--emerald-700);   /* hover এ একটু গাঢ় সবুজ */
    text-decoration: underline;
}
.service-chevron {
    display: none;
}

.service-chevron.rotated {
    transform: rotate(180deg);
}

.service-card-content-expanded {
    max-height: none !important;
    overflow: visible;
    padding: 1.5rem !important;
    border-top: 1px solid var(--gray-200);
    display: block;
}

.service-card-accordion.active .service-card-content-expanded {
    max-height: none !important;
    padding: 1.5rem !important;
    border-top: 1px solid var(--gray-200);
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-feature-dot {
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--emerald-600);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.service-feature-dot.blue {
    background-color: #2563eb;
}

.service-feature-item span {
    color: var(--gray-700);
    font-size: 1rem;
}

.cta-banner-new {
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(to right, #ecfdf5, #eff6ff);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-new h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.cta-banner-new p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .cta-banner {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .cta-banner h3 {
        font-size: 1rem;
    }
    
    .cta-banner p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-banner .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom right, var(--gray-50), var(--emerald-50));
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-text {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.75;
}

.about-images {
    position: relative;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-image-grid img {
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    height: 12rem;
    object-fit: cover;
}

.about-image-grid img:nth-child(2),
.about-image-grid img:nth-child(4) {
    margin-top: 2rem;
}

.value-cards {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .value-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .value-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.value-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--emerald-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    margin-bottom: 1rem;
}

.value-icon i {
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.75;
}

/* Service Areas Section */
.areas-section {
    background-color: var(--white);
}

.areas-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.areas-box {
    background: linear-gradient(to bottom right, var(--emerald-600), var(--green-700));
    border-radius: 1rem;
    padding: 2rem;
    color: var(--white);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.areas-box-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.areas-box-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.areas-box-icon i {
    font-size: 1rem;
}

.areas-box-title {
    font-size: 1rem;
    font-weight: 700;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.areas-list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.areas-list-item i {
    flex-shrink: 0;
}

.areas-list-item span {
    font-weight: 500;
}

.areas-box-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.areas-box-footer p:first-child {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.areas-box-footer p:nth-child(2) {
    color: rgba(255, 255, 255, 0.9);
}

.areas-box-footer a {
    display: inline-block;
    margin-top: 1.5rem;
    background-color: var(--white);
    color: var(--emerald-600);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.areas-box-footer a:hover {
    background-color: var(--gray-100);
}

.areas-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.areas-info-card {
    background-color: var(--gray-50);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border-left: 4px solid var(--emerald-600);
}

.areas-info-card.blue {
    border-left-color: var(--blue-600);
}

.areas-info-card.green {
    border-left-color: var(--green-600);
}

.areas-info-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.areas-info-card p {
    color: var(--gray-600);
    line-height: 1.75;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(to bottom right, var(--gray-50), var(--white));
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.gallery-item img {
    width: 100%;
    max-width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.gallery-caption h3 {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
}

.testimonials-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonials-stars i {
    color: var(--yellow-400);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: linear-gradient(to bottom right, var(--gray-50), var(--white));
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    color: var(--emerald-200);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonial-stars-small {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars-small i {
    color: var(--yellow-400);
    font-size: 1rem;
}

.testimonial-text {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.testimonial-author p:first-child {
    font-weight: 700;
    color: var(--gray-900);
}

.testimonial-author p:last-child {
    font-size: 1rem;
    color: var(--gray-600);
}

.testimonials-cta {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(to right, var(--emerald-600), var(--green-700));
    border-radius: 1rem;
    padding: 3rem;
    color: var(--white);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonials-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-cta p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--emerald-50);
}

.testimonials-cta a {
    display: inline-block;
    background-color: var(--white);
    color: var(--emerald-600);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: background-color 0.3s;
}

.testimonials-cta a:hover {
    background-color: var(--gray-100);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom right, var(--gray-50), var(--emerald-50));
}

.contact-grid {
    display: grid;
    gap: 3rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-card {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-form-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--emerald-500);
}

.form-group textarea {
    resize: none;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-card {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-item.group:hover .contact-icon {
    background-color: var(--emerald-600);
    color: var(--white);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--emerald-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-icon i {
    font-size: 1rem;
}

.contact-info-text p:first-child {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.contact-info-text p:last-child {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.contact-info-item.group:hover .contact-info-text p:last-child {
    color: var(--emerald-600);
}

.contact-info-item a {
    text-decoration: none;
    color: inherit;
}

.why-choose-box {
    background: linear-gradient(to bottom right, var(--emerald-600), var(--green-700));
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    color: var(--white);
}

.why-choose-box h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-choose-box ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.why-choose-box li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.why-choose-box li span:first-child {
    color: var(--emerald-200);
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Google Review Section */
.google-review-section {
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
    padding: 4rem 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.google-review-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.google-logo-text {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -1px;
    display: inline-flex;
    align-items: center;
}

.google-logo-text span {
    display: inline-block;
}

.google-reviews-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-left: 0.25rem;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.google-rating-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
}

.google-stars {
    display: flex;
    gap: 0.125rem;
}

.google-stars i {
    color: #FFB800;
    font-size: 1.25rem;
}

.google-review-content h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.google-review-content p {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--white);
    color: var(--emerald-600);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.google-review-btn:hover {
    background-color: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: var(--emerald-700);
}

.google-review-btn i {
    font-size: 1.5rem;
}

@media (max-width: 640px) {
    .google-review-section {
        padding: 3rem 0;
    }
    
    .google-review-badge {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .google-logo-text {
        font-size: 1.5rem;
    }
    
    .google-reviews-text {
        font-size: 1.125rem;
        margin-left: 0;
    }
    
    .google-rating {
        margin-left: 0;
    }
    
    .google-review-content h2 {
        font-size: 1.5rem;
    }
    
    .google-review-content p {
        font-size: 1rem;
    }
    
    .google-review-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
    width: 100%;
    overflow-x: hidden;
}

@media (min-width: 640px) {
    .footer-container {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        padding: 3rem 2rem;
    }
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 2fr 1.5fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--emerald-600);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.footer-logo-img {
    width: 130px;
   
    object-fit: contain;
    display: block;
}

.footer-brand h3 {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--gray-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s;
}

.footer-social a:hover {
    background-color: var(--emerald-600);
}

.footer-column h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--emerald-400);
}

.footer-links li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-links li i {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--emerald-400);
}

/* Footer Brand Images */
.footer-brand-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .footer-brand-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .footer-brand-images {
        grid-template-columns: repeat(5, 1fr);
    }
}

.footer-brand-image-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 1;
}

.footer-brand-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.footer-brand-image-item:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    font-size: 1rem;
}

.footer-bottom-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--emerald-400);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-sm {
    font-size: 1rem;
}

.text-lg {
    font-size: 1rem;
}

.text-xl {
    font-size: 1rem;
}

.text-2xl {
    font-size: 1rem;
}

.text-3xl {
    font-size: 2rem;
}

.text-4xl {
    font-size: 2rem;
}

.text-5xl {
    font-size: 2.5rem;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.leading-relaxed {
    line-height: 1.75;
}

.leading-tight {
    line-height: 1.25;
}

.italic {
    font-style: italic;
}

/* Responsive Utilities */
@media (max-width: 767px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hidden-md {
        display: block;
    }
}

/* Additional Styles */
.break-all {
    word-break: break-all;
}

.inline-block {
    display: inline-block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.overflow-hidden {
    overflow: hidden;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.object-cover {
    object-fit: cover;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.group {
    position: relative;
}
.menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.menu a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s;
}

.menu a:hover {
    color: var(--emerald-400);
}

.menu li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.menu li i {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--emerald-400);
}
.page-header {
    background: linear-gradient(rgba(1, 10, 53, .8), rgba(1, 10, 53, .8)), url(../img/about.jpeg) center center no-repeat;
    background-size: cover;
    height: 350px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}
.services-left-img img{
    width:200px;
}