/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Description: Hello Elementor Child theme.
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
*/



:root {
    --primary: #1C1C1C;
    --white: #FFFFFF;
    --gray-text: #6b7280;
    --light-bg: #F9FAFB;

    --card-yellow: #fde09e;
    --card-purple: #e3ccfc;
    --card-blue: #d0e7fb;
    --card-green: #d1e4c9;

    --font-main: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: #ffffff;
    min-height: 100vh;
    color: var(--primary);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Main Container */
.main-container {
    width: 100%;
    overflow: hidden;
    border-radius: 24px !important;
    padding: 20px;
    margin-bottom: 0;
}

/* Injected Sections from Section Manager */
.injected-section {
    width: 100%;
    clear: both;
    display: block;
    margin: 60px 0;
    padding: 0;
    position: relative;
    z-index: 1;
    background: transparent !important;
    /* Reset parent background */
    border-radius: 0 !important;
    /* Reset parent border-radius */
}

/* Break out of parent container styling */
.injected-section {
    margin-left: -20px !important;
    /* Compensate for main-container padding */
    margin-right: -20px !important;
    width: calc(100% + 40px) !important;
    /* Full width */
    max-width: none !important;
}

.injected-section>* {
    width: 100%;
}

/* Ensure Elementor content displays properly */
.injected-section .elementor {
    width: 100%;
    background: transparent;
}

.injected-section .elementor-section {
    width: 100%;
}

/* Reset any inherited styles */
.injected-section .elementor-section-wrap {
    width: 100%;
}

/* Specific position styling if needed */
.injected-after_faq {
    margin-top: 60px;
    margin-bottom: 60px;
}

.injected-after_hero,
.injected-after_about,
.injected-after_services {
    margin-top: 60px;
    margin-bottom: 60px;
}


/* --- HERO SECTION --- */
.hero {
    position: relative;
    width: 100%;
    height: 800px;
    border-radius: 32px !important;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1606811841689-23dfddce3e95?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 60px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 60%);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 800px;
    border-radius: 32px !important;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 800px;
    background-size: cover;
    background-position: center;
    padding: 0;
}

.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

/* Hero with Header - Add top padding to account for fixed header */
.hero-with-header {
    margin-top: 0;
}

/* Hero Main Layout - Flex container for left content and right video/form */
.hero-main-layout {
    position: absolute !important;
    top: 50% !important;
    left: 60px !important;
    right: 60px !important;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    color: white;
    max-width: 600px;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-right-content {
    width: 50%;
    /* max-width: 500px; */
    display: flex;
    justify-content: flex-end;
}

.hero-video-wrapper {
    width: 100%;
}

.hero-video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-form-wrapper {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

/* Hero Team Slider */
.hero-team-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-height: 560px;
    border-radius: 14px;
}

.hero-slide {
    display: flex;
    align-items: center;
}

.hero-team-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    max-height: 560px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* 🔥 change */

    min-height: auto;
    /* remove fixed height */
}

.hero-team-photo {
    width: 100%;
    /* max-width: 260px; */
    aspect-ratio: 1 / 1;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
}

.hero-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-team-name {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.hero-team-designation {
    font-size: 14px;
    color: #6a1a46;
    font-weight: 500;
    margin-bottom: 8px;
}

.hero-team-qualification {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.hero-team-exp {
    font-size: 12px;
    color: #3A7B6E;
    font-weight: 600;
}

/* Hero team slider navigation */
.hero-team-slider .swiper-button-next,
.hero-team-slider .swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #111 !important;
}

.hero-team-slider .swiper-button-next:after,
.hero-team-slider .swiper-button-prev:after {
    font-size: 14px !important;
}

.hero-team-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6) !important;
}

.hero-team-slider .swiper-pagination-bullet-active {
    background: #fff !important;
}

.hero-title {
    font-size: 60px;
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 420px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #111;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-primary.dark {
    background: #111;
    color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 34px;
    border: 2px solid white;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: white;
    color: #111;
}

/* Specific styling for btn-secondary in hero context to enforce white border */
.hero-content .btn-secondary {
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
}

.hero-content .btn-secondary:hover {
    background: white;
    color: #111;
}

/* Hero Header (Inside Hero Slider) */
.hero-header {
    position: relative;
    z-index: 10;
    padding: 15px 30px;
    width: 100%;
}

.hero-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-logo a {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.hero-logo img {
    max-height: 50px;
    width: auto;
}

.hero-nav {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.hero-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.2s;
}

.hero-nav a:hover,
.hero-nav a.active {
    opacity: 0.7;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #111;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s;
}

.hero-cta:hover {
    transform: scale(1.05);
}

.hero-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.2);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

/* --- INTRO SECTION --- */
.section-intro {
    background: #ffefee;
    padding: 80px 40px;
border-radius:32px;
}

.intro-title {
    text-align: center;
    font-size: 36px;
    color: #8c255e;
    font-weight: 500;
    margin-bottom: 40px;
}

.intro-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-image {
    width: 50%;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-content {
    width: 50%;
    background: #e28e82;
    padding: 60px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-ghost {
    display: inline-block;
    border: 2px solid white;
    color: white;
    padding: 12px 24px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: 0.3s;
}

.btn-ghost:hover {
    background: white;
    color: #e28e82;
}

/* --- ABOUT SECTION --- */
.section-about {
    padding: 100px 40px;
    background: #ebf5ff;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
	border-radius: 32px;
}

.about-center {
    text-align: center;
    flex: 1;
    max-width: 500px;
}

.badge-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #d8a05e;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.badge-line::before,
.badge-line::after {
    content: '';
    height: 1px;
    width: 40px;
    background: #d8a05e;
}

.about-title {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.about-desc {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.about-img-left,
.about-img-right {
    width: 320px;
    height: 380px;
    border-radius: 24px;
    object-fit: cover;
}

.about-right-wrapper {
    position: relative;
}

.stats-block {
    margin-top: 24px;
}

.stats-block h3 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -1px;
}

.stats-block p {
    color: var(--gray-text);
    font-size: 13px;
}

/* --- CLASSIC SERVICES GRID --- */
.section-classic-services {
    padding: 80px 40px;
    background: #f9edf5;
border-radius:32px;
}

.classic-services-title {
    text-align: center;
    font-size: 42px;
    color: #8c255e;
    font-weight: 500;
    margin-bottom: 16px;
}

.classic-services-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(140, 37, 94, 0.7);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.classic-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.classic-service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
    transition: transform 0.3s ease;
}

.classic-service-card:hover {
    transform: translateY(-5px);
}

.swiper-slide:nth-child(4n+1) .classic-service-card {
    background: var(--card-yellow);
}

.swiper-slide:nth-child(4n+2) .classic-service-card {
    background: var(--card-green);
}

.swiper-slide:nth-child(4n+3) .classic-service-card {
    background: var(--card-blue);
}

.swiper-slide:nth-child(4n+4) .classic-service-card {
    background: var(--card-purple);
}

.classic-service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.classic-card-title {
    font-size: 22px;
    font-weight: 500;
    color: #4a5568;
    margin: 24px 16px 12px;
    text-align: center;
    letter-spacing: -0.5px;
}

.classic-card-desc {
    font-size: 14px;
    color: #8c255e;
    text-align: center;
    margin: 0 16px 32px;
    line-height: 1.5;
    font-weight: 500;
}

/* --- SERVICES BENTO SECTION --- */
.section-services {
    padding: 40px 60px 100px;
    background: #eef5f2;
    display: grid;
    grid-template-columns: 1fr auto 1fr 1fr;
    gap: 24px;
    align-items: stretch;
	border-radius:32px;
    position: relative;
}

.services-header {
    max-width: 350px;
}

.services-title {
    font-size: 45px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -1.5px;
    position: sticky;
    top: 40px;
}

.services-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 16px;
    font-weight: 400;
}

.divider-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #a0a0a0;
    font-size: 13px;
    text-transform: lowercase;
    letter-spacing: 2px;
    padding: 0 20px;
}

.divider-vertical::before,
.divider-vertical::after {
    content: '';
    width: 1px;
    height: 150px;
    background: #e0e0e0;
}

.divider-vertical span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.bento-card {
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    position: relative;
}

.bento-yellow {
    background: var(--card-yellow);
}

.bento-blue {
    background: var(--card-blue);
}

.bento-purple {
    background: var(--card-purple);
}

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.bento-star {
    position: absolute;
    top: 32px;
    right: 32px;
    color: rgba(0, 0, 0, 0.1);
    font-size: 24px;
}

.bento-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.bento-content p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 24px;
}

.link-readmore {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
}

.bento-img {
    border-radius: 24px;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.services-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* --- OUR WORKS (LIGHT GREEN) --- */
.section-works {
    background: var(--card-green);
    border-radius: 32px;
    padding: 60px;
    margin: 0 16px 40px;
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.works-left {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.badge-left {
    font-size: 13px;
    font-weight: 600;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--primary);
}

.badge-left::after {
    content: '';
    height: 1px;
    width: 60px;
    background: rgba(0, 0, 0, 0.2);
}

.works-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(0, 0, 0, 0.8);
}

.member-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.avatars {
    display: flex;
}

.avatars img,
.avatars .avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--card-green);
    margin-left: -12px;
    object-fit: cover;
    background: transparent;
}

.avatars .avatar-circle {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.avatars img:first-child,
.avatars .avatar-circle:first-child {
    margin-left: 0;
}

.member-text {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
}

.works-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}

.works-title {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -1px;
    max-width: 350px;
}

.works-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
    max-width: 350px;
    margin-top: -30px;
    font-weight: 400;
}

.works-images {
    display: flex;
    gap: 24px;
}

.works-slider-wrapper {
    position: relative;
}

.works-custom-slider {
    overflow: hidden;
}

.works-slide {
    display: none;
}

.works-slide:first-child {
    display: block;
}

.works-slider-nav {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}

.works-prev,
.works-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid #3A7B6E;
    color: #3A7B6E;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.works-prev:hover,
.works-next:hover {
    background: #3A7B6E;
    color: white;
    transform: scale(1.1);
}

.works-client-avatar {
    transition: opacity 0.3s ease;
}

.work-card {
    width: 260px;
}

.work-card img {
    width: 100%;
    height: 280px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 16px;
}

.work-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.work-card p {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

/* --- TESTIMONIALS (LIGHT PURPLE) --- */
.section-testimonials {
    background: #e9dbfb;
    border-radius: 32px;
    padding: 80px 60px;
    margin: 0 16px 20px;
}

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.testi-title {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.testi-desc {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    max-width: 400px;
    line-height: 1.6;
}

.testi-nav {
    display: flex;
    gap: 16px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.2s;
}

.nav-btn.dark {
    background: var(--primary);
    color: white;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
}

.review-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.review-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.review-author-name {
    font-weight: 600;
    font-size: 14px;
}

.stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
}

/* --- LATEST INSIGHTS --- */
.section-insights {
    padding: 40px 60px 80px;
    background: #edf2f7;
}

.insights-title {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -1.5px;
    margin-bottom: 40px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.insight-card {
    background: #f7ede3;
    border-radius: 24px;
    padding: 40px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--primary);
}

.insight-card.dark-bg {
    background: url('https://images.unsplash.com/photo-1598256989800-fea5f68b323c?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80') center/cover;
    color: white;
}

.insight-card.dark-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 45, 80, 0.7);
    /* Deep blue/navy overlay */
    z-index: 1;
}

.insight-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.insight-date {
    font-size: 13px;
    padding: 6px 20px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    margin-bottom: auto;
    /* Push to very top */
    position: absolute;
    top: 0;
}

.dark-bg .insight-date {
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.insight-heading {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-top: auto;
    margin-bottom: 24px;
    max-width: 250px;
}

.insight-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    max-width: 300px;
    margin-bottom: 20px;
}

.dark-bg .insight-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* --- GALLERY SECTION --- */
.section-gallery {
    background: #ebeaf5 !important;
    padding: 80px 0;
    text-align: center;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.gallery-title {
    font-size: 36px;
    color: #8c255e;
    font-weight: 500;
    margin-bottom: 12px;
}

.gallery-subtitle {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 40px;
    font-weight: 400;
}

.gallery-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 40px;
    scrollbar-width: none;
    /* Firefox */
    margin-bottom: 40px;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.gallery-scroll img {
    height: 250px;
    width: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

/* --- GALLERY LIGHTBOX --- */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-content h3 {
    color: white;
    margin-top: 16px;
    font-size: 20px;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
}

.gallery-item {
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* --- FOOTER --- */
.site-footer {
    background: linear-gradient(135deg, #0A2B3E 0%, #1a1a2e 100%) !important;
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    border-top: 3px solid #3A7B6E;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 40px;
}

.footer-logo {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3A7B6E, #5fb8a7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3A7B6E, transparent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
}

.footer-links a:hover {
    color: #3A7B6E;
    transform: translateX(4px);
}

.footer-contact p {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    color: #3A7B6E;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 123, 110, 0.15);
    border: 1px solid rgba(58, 123, 110, 0.3);
    border-radius: 50%;
    color: #3A7B6E;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3A7B6E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(58, 123, 110, 0.4);
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */
.about-page-wrapper {
    background: #ffffff !important;
    min-height: 100vh;
}

.about-page-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.hero-about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background: #fdf2e9;
}

.about-page-wrapper .hero-content {
    flex: 1;
    background: transparent;
    position: relative;
    z-index: 2;
}

.about-page-wrapper .hero-badge {
    background: #e0f2e9;
    color: #3A7B6E;
    display: inline-block;
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-page-wrapper .hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0A2B3E;
}

.about-page-wrapper .hero-content p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 28px;
}

.hero-image {
    flex: 1;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.stats-mini {
    display: flex;
    gap: 28px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 1.7rem;
    color: #3A7B6E;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Story Section */
.story-section {
    background: #eaf4f4;
    border-radius: 48px;
    margin: 60px 0;
    padding: 56px 40px;
}

.two-col {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.col {
    flex: 1;
    min-width: 280px;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #d8a05e;
    margin-bottom: 16px;
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0A2B3E;
}

.usp-list {
    list-style: none;
    margin-top: 24px;
    padding: 0;
}

.usp-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.usp-list li i {
    color: #3A7B6E;
    font-size: 1.3rem;
    width: 28px;
}

/* Mission & Vision */
.mission-vision-section {
    margin: 60px 0;
    background: #f4f0f9;
    padding: 60px 40px;
    border-radius: 48px;
}

.mv-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
}

.mission-card,
.vision-card {
    flex: 1;
    min-width: 300px;
    border-radius: 32px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.mission-card {
    background: linear-gradient(135deg, #e0f2e9 0%, #ffffff 100%);
    border: 1px solid #cde8df;
}

.vision-card {
    background: linear-gradient(135deg, #f3e1c8 0%, #ffffff 100%);
    border: 1px solid #e8d4b8;
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.mission-card .mv-icon {
    color: #3A7B6E;
}

.vision-card .mv-icon {
    color: #d8a05e;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0A2B3E;
}

.mission-card p,
.vision-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.mv-values {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.mv-values li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-values li i {
    color: #3A7B6E;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    margin: 60px 0;
    background: #fff0f5;
    padding: 60px 40px;
    border-radius: 48px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin: 48px 0;
}

.team-card {
    background: white;
    border-radius: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    border: 1px solid #edf2f7;
    transition: 0.2s;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    margin: 0;
    border: none;
}

.team-card h3 {
    font-size: 1.5rem;
    margin: 20px 24px 4px;
    color: #0A2B3E;
}

.title {
    color: #3A7B6E;
    font-weight: 600;
    margin: 0 24px 12px;
    font-size: 0.95rem;
}

.bio {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 12px 24px;
    line-height: 1.5;
}

.personal-fact {
    background: #f0f7f4;
    padding: 8px 12px;
    border-radius: 40px;
    font-size: 0.8rem;
    display: inline-block;
    margin: 8px 24px 24px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(120deg, #0A2B3E, #3A7B6E);
    border-radius: 48px;
    padding: 56px 40px;
    text-align: center;
    color: white;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-white {
    background: white;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 700;
    color: #0A2B3E;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    transition: 0.2s;
}

.btn-white:hover {
    background: #F8F7F4;
    transform: scale(0.98);
}

/* About Page Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-about {
        flex-direction: column;
    }

    .story-section,
    .cta-section {
        padding: 32px 20px;
    }

    .team-card {
        min-width: 100%;
    }
}

/* Override any parent theme background on about page */
.page-template-page-about body,
.page-template-page-about .site-main,
.page-template-page-about main {
    background: #ffffff !important;
    background-image: none !important;
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

.services-page-wrapper {
    background: #ffffff !important;
    padding-top: 80px;
}

.container-services {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Page Header */
.page-header-services {
    background: #eef2fb;
    padding: 40px 0 40px;
    text-align: center;
}

.page-header-services h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #0A2B3E;
    margin-bottom: 16px;
}

.page-header-services p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services-section-detail {
    padding: 60px 0;
    background: #fdf5e6;
}

.service-detail {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f4f4f4;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #F8F7F4;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0f2e9, #c8e6df);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: #3A7B6E;
}

.service-title h2 {
    font-size: 2rem;
    color: #0A2B3E;
    margin-bottom: 8px;
}

.service-title p {
    color: #6b7280;
    font-size: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 24px;
}

.info-box {
    background: #e8f5e9;
    border-radius: 16px;
    padding: 24px;
}

.info-box h4 {
    font-size: 1.1rem;
    color: #0A2B3E;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box h4 i {
    color: #3A7B6E;
}

.info-box p,
.info-box ul {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box ul li {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.info-box ul li i {
    color: #3A7B6E;
    margin-top: 4px;
}

.price-tag {
    background: linear-gradient(135deg, #3A7B6E, #0A2B3E);
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-block;
    margin-top: 16px;
}

/* CTA Section Services */
.cta-section-services {
    background: linear-gradient(120deg, #0A2B3E, #3A7B6E);
    border-radius: 48px;
    padding: 56px 40px;
    text-align: center;
    color: white;
    margin: 60px 0;
}

.cta-section-services h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: white;
}

.btn-white-services {
    background: white;
    border: none;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    color: #0A2B3E;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.2s;
    display: inline-block;
    text-decoration: none;
}

.btn-white-services:hover {
    background: #F8F7F4;
    transform: scale(0.98);
}

/* Services Page Responsive */
@media (max-width: 768px) {
    .services-page-wrapper {
        padding-top: 70px;
    }

    .page-header-services {
        padding: 30px 0 30px;
    }

    .page-header-services h1 {
        font-size: 2rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   DUAL HEADER SYSTEM
   ======================================== */

/* ===== STICKY HEADER (Appears on Scroll) ===== */
.sticky-header {
    position: fixed;
    top: -200px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: white;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.scrolled .sticky-header {
    top: 0;
}

/* Force sticky header to show on non-home pages */
body:not(.home):not(.page-template-front-page) .sticky-header,
body.page-template-page-services .sticky-header,
body.page .sticky-header {
    top: 0 !important;
    transition: none;
}

/* Adjust for WordPress admin bar when logged in */
body.admin-bar:not(.home):not(.page-template-front-page) .sticky-header,
body.admin-bar.page-template-page-services .sticky-header,
body.admin-bar.page .sticky-header {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar:not(.home):not(.page-template-front-page) .sticky-header,
    body.admin-bar.page-template-page-services .sticky-header,
    body.admin-bar.page .sticky-header {
        top: 46px !important;
    }
}

/* Topbar */
.topbar {
    background: #0A2B3E;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 13px;
    /* Topbar visibility controlled by customizer setting */
}

.topbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.topbar-left,
.topbar-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topbar-left {
    justify-self: start;
}

.topbar-center {
    justify-self: center;
}

.topbar-right {
    justify-self: end;
}

.topbar-promo {
    font-weight: 600;
    font-size: 14px;
    color: #ffd700;
    text-align: center;
    letter-spacing: 0.3px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-item svg {
    opacity: 0.8;
}

/* Sticky Navbar */
.sticky-navbar {
    background: white;
    padding: 12px 0;
}

.sticky-navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.sticky-logo {
    font-size: 26px;
    font-weight: 700;
    color: #0A2B3E;
    text-decoration: none;
    letter-spacing: -0.5px;
    justify-self: start;
}

.sticky-logo a {
    color: inherit;
    text-decoration: none;
}

.sticky-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(10, 43, 62, 0.05);
    backdrop-filter: blur(20px);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(10, 43, 62, 0.1);
    justify-self: center;
    list-style: none;
}

.sticky-nav ul {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sticky-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sticky-nav a {
    color: #0A2B3E;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: block;
}

.sticky-nav a:hover,
.sticky-nav a.active,
.sticky-nav li.current-menu-item a {
    background: rgba(10, 43, 62, 0.1);
}

.sticky-cta {
    background: #3A7B6E;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(58, 123, 110, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    justify-self: end;
    white-space: nowrap;
}

.sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 123, 110, 0.3);
}

/* ===== HERO HEADER (Inside Hero Section) ===== */
.hero-header {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    z-index: 100;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

body.scrolled .hero-header {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.hero-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.hero-logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
    justify-self: start;
}

.hero-logo a {
    color: inherit;
    text-decoration: none;
}

.hero-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    justify-self: center;
    list-style: none;
}

.hero-nav ul {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: block;
}

.hero-nav a:hover,
.hero-nav a.active,
.hero-nav li.current-menu-item a {
    background: rgba(255, 255, 255, 0.25);
}

.hero-cta {
    background: white;
    color: #0A2B3E;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    justify-self: end;
    white-space: nowrap;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 999;
    transition: all 0.3s ease;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle svg {
    display: block;
    width: 28px;
    height: 28px;
    stroke: white;
    transition: stroke 0.3s ease;
}

.sticky-navbar .mobile-menu-toggle svg {
    stroke: #0A2B3E;
}

/* ===== HERO SECTION ADJUSTMENT ===== */
.hero-with-header {
    position: relative;
    margin-top: 0;
    padding-top: 0;
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

body {
    padding-top: 0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    /* Topbar Mobile - Hide on mobile for space */
    .topbar {
        display: none;
    }

    /* Sticky Header Mobile */
    .sticky-navbar-container,
    .hero-header-container {
        padding: 0 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sticky-logo,
    .hero-logo {
        font-size: 24px;
    }

    .mobile-menu-toggle {
        display: block;
        position: static;
        transform: none;
    }

    /* Hide call buttons on mobile, show in menu */
    .sticky-cta,
    .hero-cta {
        display: none !important;
    }

    /* Sticky Nav Mobile */
    .sticky-nav,
    .hero-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 998;
        align-items: stretch;
        gap: 0;
        border-radius: 0;
        border: none;
        backdrop-filter: none;
        justify-self: auto;
        list-style: none;
    }

    .sticky-nav ul,
    .hero-nav ul {
        flex-direction: column;
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .sticky-nav li,
    .hero-nav li {
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .sticky-nav.active,
    .hero-nav.active {
        right: 0;
    }

    .sticky-nav a,
    .hero-nav a {
        color: #0A2B3E;
        font-size: 18px;
        padding: 16px 20px;
        width: 100%;
        text-align: left;
        border-radius: 12px;
        margin-bottom: 8px;
        display: block;
    }

    .sticky-nav a:hover,
    .hero-nav a:hover {
        background: rgba(10, 43, 62, 0.08);
    }

    /* Show call button in mobile menu */
    .sticky-nav .sticky-cta,
    .hero-nav .hero-cta {
        display: flex !important;
        margin-top: 16px;
        justify-content: center;
        background: #3A7B6E !important;
        color: white !important;
    }

    /* Mobile Menu Overlay */
    .sticky-nav.active::before,
    .hero-nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 300px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .hero-header {
        top: 20px;
    }
}

@media (max-width: 480px) {

    .sticky-nav,
    .hero-nav {
        width: 280px;
    }

    .sticky-navbar-container,
    .hero-header-container {
        padding: 0 20px;
    }
  .footer-bottom{
  flex-direction:column;
  }
}


/* ========================================
   SWIPER SLIDERS CUSTOM STYLES
   ======================================== */

/* General Swiper Overrides */
.swiper {
    border-radius: 24px;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
    width: 24px;
    border-radius: 5px;
}

/* Hero Slider Specific */
.hero-slider {
    position: relative;
    width: 100%;
    height: 800px;
    border-radius: 32px;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.hero-slider .hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 600px;
    padding: 0 60px 80px;
}

.hero-slider .swiper-pagination {
    bottom: 40px;
    z-index: 10;
}

/* About Images Slider */
.about-images-slider {
    width: 320px;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
}

.about-images-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-images-slider .swiper-pagination {
    bottom: 15px;
}

/* About Section - Fixed Layout with Animated Content */
.section-about {
    padding: 100px 40px;
    background: #ebf5ff;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.about-left-image {
    width: 320px;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.about-left-slider,
.about-right-slider {
    width: 100%;
    height: 100%;
}

.about-left-slider .swiper-slide img,
.about-right-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-center {
    text-align: center;
    flex: 1;
}

.about-content-wrapper {
    transition: opacity 0.4s ease-in-out;
}

.about-title {
    font-size: 44px;
    line-height: 1.1;
    margin: 16px 0;
}

.about-desc {
    color: var(--gray-text);
    font-size: 15px;
    margin: 16px 0 24px;
}

.about-right-wrapper {
    position: relative;
    width: 320px;
    height: 380px;
    flex-shrink: 0;
}

.about-right-slider {
    border-radius: 24px;
    overflow: hidden;
}

.about-right-wrapper .stats-block {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px 32px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 20;
    min-width: 200px;
    transition: opacity 0.4s ease-in-out;
}

.about-right-wrapper .stats-block h3 {
    font-size: 48px;
    font-weight: 700;
    color: #8c255e;
    margin: 0 0 4px 0;
    line-height: 1;
}

.about-right-wrapper .stats-block p {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

.about-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.about-navigation .swiper-pagination {
    position: static;
    width: auto;
}

.about-navigation .swiper-pagination-bullet {
    background: #8c255e;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-navigation .swiper-pagination-bullet:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

.about-navigation .swiper-pagination-bullet-active {
    opacity: 1;
    width: 32px;
    border-radius: 6px;
}

/* About Right Slider */
.about-right-slider {
    width: 320px;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.about-right-slider .swiper-slide {
    position: relative;
}

.about-right-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-right-slider .swiper-pagination {
    bottom: 15px;
    z-index: 10;
}

.about-right-wrapper {
    position: relative;
}

.about-right-wrapper .stats-block {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px 32px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 20;
    min-width: 200px;
}

.about-right-wrapper .stats-block h3 {
    font-size: 48px;
    font-weight: 700;
    color: #8c255e;
    margin: 0 0 4px 0;
    line-height: 1;
}

.about-right-wrapper .stats-block p {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

/* Services Slider */
.services-slider {
    padding: 20px 0 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.services-slider .swiper-slide {
    height: auto;
    display: flex;
}

.services-slider .classic-service-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-slider .swiper-pagination {
    bottom: 20px;
}

.services-slider .swiper-pagination-bullet {
    background: #8c255e;
}

.services-slider .swiper-button-next,
.services-slider .swiper-button-prev {
    background: rgba(140, 37, 94, 0.8);
    color: white;
}

.services-slider .swiper-button-next:hover,
.services-slider .swiper-button-prev:hover {
    background: rgba(140, 37, 94, 1);
}

/* Testimonials Slider */
.testimonials-slider {
    padding: 0 0 60px;
}

.testimonials-slider .swiper-slide {
    height: auto;
    display: flex;
}

.testimonials-slider .review-card {
    width: 100%;
    height: 100%;
}

.testimonials-slider .swiper-pagination {
    bottom: 20px;
}

.testimonials-slider .swiper-pagination-bullet {
    background: #0A2B3E;
    opacity: 0.3;
}

.testimonials-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: #0A2B3E;
}

/* Gallery Slider */
.gallery-slider {
    padding: 0 0 60px;
}

.gallery-slider .swiper-slide {
    height: 250px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gallery-slider .swiper-slide-active {
    opacity: 1;
}

.gallery-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-slider .swiper-pagination {
    bottom: 20px;
}

/* Works Slider */
.works-slider {
    padding: 20px 0 60px;
}

.works-slider .swiper-slide {
    height: auto;
}

.works-slider .swiper-pagination {
    bottom: 20px;
}

.works-slider .swiper-button-next,
.works-slider .swiper-button-prev {
    background: rgba(0, 0, 0, 0.6);
}

/* Insights Slider */
.insights-slider {
    padding: 20px 0 60px;
}

.insights-slider .swiper-slide {
    height: 480px;
    display: flex;
}

.insights-slider .insight-card {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

.insights-slider .swiper-pagination {
    bottom: 20px;
}

.insights-slider .swiper-pagination-bullet {
    background: #0A2B3E;
}

.insights-slider .swiper-button-next,
.insights-slider .swiper-button-prev {
    background: rgba(10, 43, 62, 0.8);
}

.insights-slider .swiper-button-next:hover,
.insights-slider .swiper-button-prev:hover {
    background: rgba(10, 43, 62, 1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 600px;
    }

    .hero-slider .hero-content {
        padding: 0 24px 60px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }

    .about-images-slider {
        width: 100%;
        height: 300px;
    }

    .section-about {
        flex-direction: column;
        padding: 60px 20px;
        gap: 30px;
    }

    .about-left-image,
    .about-right-wrapper {
        width: 100%;
        height: 300px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-right-wrapper .stats-block {
        bottom: 20px;
        padding: 16px 24px;
    }

    .about-right-wrapper .stats-block h3 {
        font-size: 36px;
    }

    .about-navigation {
        bottom: 20px;
    }
}

/* Lazy Loading */
.swiper-lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-lazy-loaded {
    opacity: 1;
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    border: 4px solid #3A7B6E;
    border-radius: 50%;
    border-top-color: transparent;
    animation: swiper-preloader-spin 1s infinite linear;
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-page-wrapper {
    background: #ffffff;
}

.about-page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero About Section */
.hero-about {
    display: flex;
    align-items: center;
    gap: 60px;
    padding:100px 40px 60px 40px;
    background: #f9fafb;
    border-radius: 24px;
    margin-bottom: 80px;
}

.hero-about .hero-content {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    flex: 1;
    max-width: 550px;
    order: 1;
    color: inherit !important;
}

.hero-about .hero-image {
    flex: 1;
    /* max-width: 450px; */
    order: 2;
}

.hero-about .hero-image img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-about .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d1fae5;
    color: #065f46;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-about h1 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-about p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 30px;
}

.stats-mini {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 14px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-about {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero-about h1 {
        font-size: 36px;
    }

    .hero-about .hero-image {
        max-width: 100%;
    }

    .stats-mini {
        gap: 20px;
    }
}


/* ========================================
   FLOATING SIDEBAR BUTTONS
   ======================================== */

.floating-actions {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.15);
    border-radius: 12px 0 0 12px;
    overflow: hidden;
}

.fab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 110px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fab-item:first-child {
    background: #2C7A7B;
}

.fab-item:nth-child(2) {
    background: #B8D4D5;
}

.fab-item:last-child {
    background: #B8D4D5;
    border-bottom: none;
}

.fab-item:hover {
    transform: translateX(-8px);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.25);
}

.fab-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.fab-item:hover .fab-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.fab-item:first-child .fab-icon {
    background: #2C7A7B;
}

.fab-item:first-child svg {
    color: white;
}

.fab-item:nth-child(2) .fab-icon,
.fab-item:last-child .fab-icon {
    background: white;
}

.fab-item:nth-child(2) svg,
.fab-item:last-child svg {
    color: #2C7A7B;
}

.fab-label {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    color: #2C7A7B;
    letter-spacing: 0.3px;
}

.fab-item:first-child .fab-label {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-actions {
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
        width: 100%;
        box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.15);
        border-radius: 0;
    }

    .fab-item {
        flex: 1;
        padding: 18px 12px;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .fab-item:last-child {
        border-right: none;
    }

    .fab-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 8px;
    }

    .fab-icon svg {
        width: 26px;
        height: 26px;
    }

    .fab-label {
        font-size: 12px;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */

.section-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 40px;
    margin: 80px 0 0 0;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.cta-content {
    flex: 1;
    color: white;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.cta-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.cta-features {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.cta-feature-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-feature-icon svg {
    color: #667eea;
}

.cta-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.cta-feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .cta-container {
        flex-direction: column;
        gap: 40px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-desc {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .section-cta {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */

.section-faq {
    padding: 100px 40px;
    background: #e3f5f4;
border-radius:32px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Alternating colors for FAQs */
.faq-column:nth-child(1) .faq-item:nth-child(4n+1) {
    background: var(--card-yellow);
}

.faq-column:nth-child(1) .faq-item:nth-child(4n+2) {
    background: var(--card-green);
}

.faq-column:nth-child(1) .faq-item:nth-child(4n+3) {
    background: var(--card-blue);
}

.faq-column:nth-child(1) .faq-item:nth-child(4n+4) {
    background: var(--card-purple);
}

.faq-column:nth-child(2) .faq-item:nth-child(4n+1) {
    background: var(--card-purple);
}

.faq-column:nth-child(2) .faq-item:nth-child(4n+2) {
    background: var(--card-blue);
}

.faq-column:nth-child(2) .faq-item:nth-child(4n+3) {
    background: var(--card-yellow);
}

.faq-column:nth-child(2) .faq-item:nth-child(4n+4) {
    background: var(--card-green);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-item.active {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #667eea;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #667eea;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.faq-cta p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.faq-cta .btn-primary {
    background: white;
    color: #667eea;
}

.faq-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 968px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .section-faq {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        padding: 20px;
        font-size: 15px;
    }

    .faq-cta p {
        font-size: 20px;
    }
}

/* Hero Responsive Layout */
@media (max-width: 991px) {
    .hero-main-layout {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        left: 20px !important;
        right: 20px !important;
        top: 55% !important;
    }

    .hero-content {
        margin: 0 auto !important;
        margin-bottom: 40px !important;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-right-content {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .hero-slider .swiper-slide {
        height: auto;
        min-height: 900px;
        padding-top: 100px;
        padding-bottom: 80px;
    }
}

@media (max-width: 500px) {
    .hero-slider .swiper-slide {
        min-height: 700px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group a {
        width: 100%;
        justify-content: center;
    }
}


/* ========================================
   GALLERY PAGE STYLES
======================================== */
.gallery-page-wrap {
    padding: 80px 20px;
    background: #f8f9fa;
    min-height: 100vh;
}

.gallery-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.gallery-page-title .highlight {
    color: #6a1a46;
}

.gallery-page-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-page-count {
    color: #666;
    font-size: 14px;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-glass:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Layout */
.gal-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

/* Sidebar */
.gal-sidebar {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.gal-sidebar h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #1a1a1a;
}

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

.gal-sidebar li {
    margin-bottom: 8px;
}

.cat-btn {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #666;
    transition: all 0.3s;
}

.cat-btn:hover {
    background: #f5f5f5;
    color: #1a1a1a;
}

.cat-btn.active {
    background: #6a1a46;
    color: #fff;
    font-weight: 600;
}

/* Grid */
.gal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gal-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.gal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gal-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.gal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gal-card:hover .gal-img-wrap img {
    transform: scale(1.05);
}

.gal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(106, 26, 70, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.gal-badge.badge-blue {
    background: rgba(30, 136, 229, 0.9);
}

.gal-badge.badge-teal {
    background: rgba(0, 150, 136, 0.9);
}

.gal-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gal-sub {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.gal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.gal-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
}

.gal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.gal-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gal-meta span {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-view {
    background: #6a1a46;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-view:hover {
    background: #4a0f2e;
    transform: translateX(2px);
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s;
    z-index: 10002;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-counter {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    z-index: 10002;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s;
    z-index: 10002;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-info {
    text-align: center;
    color: #fff;
    max-width: 600px;
}

.lightbox-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.lightbox-desc {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .gal-layout {
        grid-template-columns: 1fr;
    }

    .gal-sidebar {
        position: static;
    }

    .gal-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .gal-sidebar li {
        margin: 0;
    }

    .cat-btn {
        width: auto;
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {
    .gallery-page-wrap {
        padding: 40px 15px;
    }

    .gallery-page-title {
        font-size: 32px;
    }

    .gal-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }
}


/* ========================================
   CTA SECTION WITH CONTACT FORM
======================================== */
.section-cta-with-form {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
border-radius:32px;
}

.section-cta-with-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.8;
}

.cta-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Content */
.cta-left-content {
    color: #fff;
}

.cta-left-content .cta-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #fff;
    line-height: 1.2;
}

.cta-left-content .cta-desc {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 40px 0;
    color: rgba(255, 255, 255, 0.95);
}

.cta-features-list {
    margin-bottom: 40px;
}

.cta-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.cta-feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.cta-feature-item .cta-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-feature-item .cta-feature-icon svg {
    color: #fff;
}

.cta-feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #fff;
}

.cta-feature-item p {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #8b5cf6;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background: #faf5ff;
}

/* Right Form */
.cta-right-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-form-wrapper .form-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1f2937;
    text-align: center;
}

.cta-form-wrapper .form-subtitle {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin: 0 0 30px 0;
}

.cta-contact-form .form-group {
    margin-bottom: 18px;
}

.cta-contact-form input[type="text"],
.cta-contact-form input[type="email"],
.cta-contact-form input[type="tel"],
.cta-contact-form select,
.cta-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: #f9fafb;
}

.cta-contact-form input:focus,
.cta-contact-form select:focus,
.cta-contact-form textarea:focus {
    outline: none;
    border-color: #a78bfa;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.1);
}

.cta-contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg width="12" height="8" xmlns="http://www.w3.org/2000/svg"><path d="M1 1l5 5 5-5" stroke="%23a78bfa" stroke-width="2" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.cta-contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.cta-contact-form .btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.cta-contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

.cta-contact-form .btn-submit svg {
    transition: transform 0.3s;
}

.cta-contact-form .btn-submit:hover svg {
    transform: translateX(3px);
}

/* Form Success/Error Messages */
.form-message {
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Responsive */
@media (max-width: 968px) {
    .cta-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-left-content .cta-title {
        font-size: 36px;
    }

    .cta-right-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .section-cta-with-form {
        padding: 60px 20px;
    }

    .cta-left-content .cta-title {
        font-size: 32px;
    }

    .cta-left-content .cta-desc {
        font-size: 16px;
    }

    .cta-feature-item {
        padding: 16px;
    }

    .cta-feature-item .cta-feature-icon {
        width: 48px;
        height: 48px;
    }

    .cta-right-form {
        padding: 24px;
    }

    .cta-form-wrapper .form-title {
        font-size: 24px;
    }
}

/* .main-container > section + section {
  margin-top: 20px;
} */
.main-container>*+* {
    margin-top: 10px;
}


/* =========================================
   GLOBAL RESPONSIVE SYSTEM
========================================= */

@media (max-width: 1024px) {

    .section-services {
        grid-template-columns: 1fr 1fr;
    }

    .classic-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* MOBILE */
@media (max-width: 768px) {

    /* GLOBAL */
    body {
        overflow-x: hidden;
    }

    section {
        padding: 40px 20px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 26px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    /* HERO */
    .hero-slider,
    .hero-slider .swiper-slide {
        height: auto !important;
        min-height: 500px;
    }

    .hero-main-layout {
        position: static !important;
        transform: none !important;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        gap: 20px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-right-content {
        width: 100%;
    }

    /* INTRO */
    .intro-container {
        flex-direction: column;
    }

    .intro-image,
    .intro-content {
        width: 100%;
    }

    /* ABOUT */
    .section-about {
        flex-direction: column;
    }

    .about-left-image,
    .about-right-wrapper {
        width: 100%;
        height: 250px;
    }

    /* SERVICES */
    .section-services {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .services-col {
        gap: 16px;
    }

    /* CLASSIC SERVICES */
    .classic-services-grid {
        grid-template-columns: 1fr;
    }

    /* WORKS */
    .section-works {
        flex-direction: column;
        padding: 40px 20px;
    }

    .works-images {
        flex-direction: column;
    }

    /* TESTIMONIALS */
    .testi-grid {
        grid-template-columns: 1fr;
    }

    /* INSIGHTS */
    .insights-grid {
        grid-template-columns: 1fr;
    }

    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .section-faq {
        padding: 40px 16px;
    }

    .faq-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .faq-item {
        width: 100%;
        border-radius: 16px;
    }

}

@media (max-width: 768px) {

    .intro-container {
        display: flex;
        flex-direction: column;
    }

    .intro-image,
    .intro-content {
        width: 100% !important;
    }

    .intro-content {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        padding: 30px 20px;
    }

}

@media (max-width: 768px) {

    .intro-container {
        display: flex;
        flex-direction: column;
    }

    .section-intro {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .intro-image,
    .intro-content {
        position: static !important;
        width: 100% !important;
    }

    .intro-image img {
        width: 100%;
        height: auto;
        display: block;
    }

}

@media (max-width: 768px) {

    .about-right-wrapper {
        position: static !important;
        width: 100% !important;
        height: auto !important;
    }

    .about-right-wrapper img {
        width: 100%;
        height: auto !important;
        display: block;
        object-fit: cover;
    }

}

.faq-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.faq-content {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question span {
    flex: 1;
    min-width: 0;
}

/* =====================================================
   SERVICES CARDS GRID — page-services.php
   Layout: Title top → Description → Bottom (Button + 3D Image)
   ===================================================== */

/* Wrapper */
.svc-wrapper {
    width: 100%;
    background: #f5f7fb;
    padding: 0;
    overflow: hidden;
}

.svc-cards-section {
    padding: 80px 40px 100px;
    max-width: 1500px;
    margin: 0 auto;
}

.svc-cards-header {
    text-align: center;
    margin-bottom: 60px;
}

.svc-cards-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e0edff 0%, #dce5ff 100%);
    color: #2d5faa;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 22px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.svc-cards-badge i {
    font-size: 11px;
}

.svc-cards-title {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.15;
}

.svc-cards-subtitle {
    font-size: 17px;
    color: #6b7a90;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Grid: 3 columns */
.svc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ---- Card ---- */
.svc-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid transparent;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(.22,.61,.36,1),
                box-shadow 0.4s cubic-bezier(.22,.61,.36,1),
                border-color 0.3s ease;
    overflow: visible;
    min-height: 340px;
}

/* Alternating card colors */
.svc-card:nth-child(4n+1) {
    background: linear-gradient(135deg, #e3f5f1 0%, #ffffff 100%);
    border-color: rgba(58, 123, 110, 0.1);
}

.svc-card:nth-child(4n+2) {
    background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%);
    border-color: rgba(227, 204, 252, 0.3);
}

.svc-card:nth-child(4n+3) {
    background: linear-gradient(135deg, #fff5ed 0%, #ffffff 100%);
    border-color: rgba(249, 115, 22, 0.1);
}

.svc-card:nth-child(4n+4) {
    background: linear-gradient(135deg, #fce8f3 0%, #ffffff 100%);
    border-color: rgba(140, 37, 94, 0.1);
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.svc-card:nth-child(4n+1):hover {
    border-color: #3A7B6E;
    box-shadow: 0 20px 50px rgba(58, 123, 110, 0.2);
}

.svc-card:nth-child(4n+2):hover {
    border-color: #a78bfa;
    box-shadow: 0 20px 50px rgba(167, 139, 250, 0.2);
}

.svc-card:nth-child(4n+3):hover {
    border-color: #f97316;
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.2);
}

.svc-card:nth-child(4n+4):hover {
    border-color: #8c255e;
    box-shadow: 0 20px 50px rgba(140, 37, 94, 0.2);
}

/* ---- Top Area: Title + Description (full width) ---- */
.svc-card__top {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.svc-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.3px;
    margin: 0;
    line-height: 1.3;
}

.svc-card__desc {
    font-size: 14.5px;
    color: #7a8599;
    line-height: 1.7;
    margin: 0;
}

/* ---- Bottom Area: Button left + Image right ---- */
.svc-card__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 16px;
    gap: 16px;
}

/* Link / Button */
.svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 600;
    color: #3b7ddd;
    text-decoration: none;
    padding: 0;
    background: none;
    border: none;
    white-space: nowrap;
    transition: color 0.3s ease;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: 8px;
}

.svc-card__link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.svc-card:hover .svc-card__link {
    color: #2563eb;
}

.svc-card:hover .svc-card__link i {
    transform: translateX(5px);
}

/* ---- 3D Image (bottom right) ---- */
.svc-card__img {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.svc-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s cubic-bezier(.22,.61,.36,1);
}

.svc-card:hover .svc-card__img img {
    transform: scale(1.08) translateY(-4px);
}

/* ---- Featured Card (middle column) ---- */
.svc-card--featured {
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(59, 125, 221, 0.12);
    border: 1px solid rgba(59, 125, 221, 0.08);
}

.svc-card--featured .svc-card__link {
    background: #3b7ddd;
    color: #ffffff;
    padding: 11px 26px;
    border-radius: 100px;
    font-size: 14px;
    margin-bottom: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.svc-card--featured .svc-card__link:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.svc-card--featured .svc-card__link i {
    color: #ffffff;
}

.svc-card--featured:hover {
    box-shadow: 0 20px 50px rgba(59, 125, 221, 0.18);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .svc-cards-section {
        padding: 60px 24px 80px;
    }
    .svc-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    .svc-cards-title {
        font-size: 36px;
    }
    .svc-card {
        min-height: 280px;
        padding: 30px 26px 24px;
    }
    .svc-card__img {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 640px) {
    .svc-cards-section {
        padding: 48px 16px 64px;
    }
    .svc-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .svc-cards-title {
        font-size: 28px;
    }
    .svc-cards-subtitle {
        font-size: 15px;
    }
    .svc-card {
        padding: 28px 22px 22px;
        min-height: auto;
    }
    .svc-card__img {
        width: 120px;
        height: 120px;
    }
    .svc-card__title {
        font-size: 18px;
    }
}

/* CTA Info Bar */
.cta-info-bar {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-info-icon {
    font-size: 20px;
}

.cta-info-text {
    font-weight: 500;
}

@media (max-width: 768px) {
    .cta-info-bar {
        flex-direction: column;
        gap: 12px;
    }
}

/* Services Section Left Image */
.services-left-image {
    position: absolute;
    left: 30px;
    bottom: 80px;
    width: 450px;
    height: auto;
    z-index: 1;
}

.services-left-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .services-left-image {
        position: static;
        width: 100%;
        margin-bottom: 20px;
        order: -1;
    }
}

@media(max-width: 576px) {
  .divider-vertical{
  display:block;
    margin:auto;
  }
  .divider-vertical span{
  transform: rotate(270deg);
  }
}
