/* Base Styles */
:root {
    --primary-color: #006838;
    --secondary-color: #FFECDD;
    --text-color: #333333;
    --light-text: #777777;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    opacity: 0.9;
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    opacity: 0.9;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
}


/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    display: flex;
    gap: 10px;
}

.loader-inner {
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out;
}

.loader-inner:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-inner:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
    opacity: 0.9;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.main-nav ul li a.active::after,
.main-nav ul li a:hover::after {
    width: 100%;
}

.main-nav ul li .btn {
    margin-left: 10px;
}

.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Modern Hero */
.modern-hero {
    position: relative;
    padding: 100px 0;
    background-color: var(--light-bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
}

.image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.03);
}

.experience-badge {
    display: none!important;
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 30px rgba(255, 154, 118, 0.3);
    z-index: 2;
}

.experience-badge span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge span:last-child {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.3;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23ffffff" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

/* Logo Cloud */
.logo-cloud {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.logo-cloud p {
    margin-bottom: 30px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logos img:hover {
    opacity: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.benefit-card p {
    margin-bottom: 0;
}

.card-ornament {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background-color: var(--white);
}

.video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 5px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.video-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.services-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-image {
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-details {
    padding: 40px;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.service-features {
    margin: 30px 0;
}

.service-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
}

.service-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', serif;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    display: none;
    background-color: var(--light-bg);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card.active {
    display: block;
}

.client-rating {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -15px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -15px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--primary-color);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.client-details span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.cta-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.cta-action {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--primary-dark);
}

.cta-link i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .video-container {
        grid-template-columns: 1fr;
    }
    
    .video-content {
        text-align: center;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }
    
    .cta-action {
        align-items: center;
    }
    
    .tab-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .experience-badge span:first-child {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 30px;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #2a9d8f;
    --secondary-color: #f4a261;
    --accent-color: #e76f51;
    --text-color: #264653;
    --light-color: #ffffff;
    --background-color: #f9f9f9;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Header Styles */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Top Bar Styles */
.top-bar {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 80px;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-content span:first-child {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.info-content span:last-child {
    font-size: 14px;
}

/* Navigation Styles */
.main-nav {
    padding: 15px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-color);
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.book-btn {
    background-color: var(--accent-color);
    color: var(--light-color);
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.book-btn:hover {
    background-color: #e15a3d; /* Darker shade of accent color */
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .info-content span:last-child {
        font-size: 12px;
    }
    
    .nav-menu {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .contact-info {
        display: none;
    }
    
    .top-bar .container {
        justify-content: center;
    }
    
    .main-nav .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 15px;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-icons {
        order: 2;
    }
}

@media (max-width: 576px) {
    .logo img {
        max-height: 60px;
    }
    
    .nav-menu li a {
        font-size: 14px;
    }
    
    .book-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

a:hover {
    color: #ffffff;
    opacity: 0.8;
}
.book-btn:hover {
    background-color: #2a9d8f;
}
.main-nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem
14.4px
;
    color: #2a9d8f;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}
.logo img
 {
    max-height: 250px;
    padding-top: 17px;
    margin: -54px -30px;
}

/* Footer Styles */
.footer {
    background-color: #00685b;
    color: #ffffff;
    position: relative;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #FFECDD, #006838);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-col {
    padding: 0 15px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    display: flex;
    flex-direction: column;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 28px;
    color: #FFECDD;
    text-decoration: none;
}

.footer-logo .logo-icon {
    font-size: 40px;
    line-height: 1;
}

.footer-logo .logo-sub {
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
}

.footer-about {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 236, 221, 0.1);
    color: #FFECDD;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #FFECDD;
    color: #006838;
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #FFECDD;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #FFECDD;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #FFECDD;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 12px;
    font-size: 16px;
    margin-top: 3px;
    color: #FFECDD;
    opacity: 0.8;
}

.footer-contact a {
    color: #FFECDD;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-contact a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact span {
    opacity: 0.9;
    line-height: 1.5;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 15px;
}

.footer-legal a {
    color: #FFECDD;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #006838;
    color: #FFECDD;
    border: 2px solid #FFECDD;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #FFECDD;
    color: #006838;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-top {
        padding: 50px 0 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
    }
    
    .footer-legal {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        padding: 40px 0 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}



.footer-white-logo {
    max-width: 60%;
    height: 60%;
}

.timeline-image img {
    height: 274px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

/* Services Hero */
.services-hero {
    position: relative;
    height: 50vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: url('../images/services-hero.jpg') no-repeat center center/cover;
    color: var(--white);
    padding-top: 100px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.services-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Services Navigation */
.services-nav {
    position: sticky;
    top: 80px;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-link {
    padding: 20px 0;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    transition: var(--transition);
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

/* Service Sections */
.service-section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.service-header p {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.service-image:hover img {
    transform: scale(1.03);
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.service-features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.service-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-box h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Workshops Modalities */
.workshop-modalities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.modality {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    transition: var(--transition);
}

.modality:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.modality i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.modality span {
    font-size: 0.9rem;
    text-align: center;
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(255, 154, 118, 0.3);
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.package-features {
    margin-bottom: 30px;
}

.package-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.package-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 104, 56, 0.9), rgba(0, 104, 56, 0.9)), url('../images/cta-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .service-content.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        gap: 15px;
        justify-content: space-between;
    }
    
    .service-header h2 {
        font-size: 2.2rem;
    }
    
    .package-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .services-hero {
        min-height: 400px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        padding: 15px;
        text-align: center;
    }
    
    .service-info {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

.services-nav {
    position: sticky;
    top: 0px !important; 
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}
.footer::before {
    content: '';
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #FFECDD, #006838);
}
.hero-stats {
    display: none !important;
    display: flex
;
    gap: 40px;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #ffffff;
}


.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    border: none;
    text-align: center;
    cursor: pointer;
}
.philosophy-content {
    max-width: 1400px !important;
    margin: 0 auto;
    text-align: center;
}

.fa-graduation-cap:before, .fa-mortar-board:before {
    content: "\f19d";
    color: white;
}
.book-btn:hover {
    color: #e15a3d;
    background-color: #ffffff;
}
.social-icons {
    display: none !important;
    display: flex
;
    gap: 15px;
}
.main-nav ul li a.active, .main-nav ul li a:hover {
    color: white;
    opacity: 0.9;
}
.main-nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem 14.4px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}
.main-nav {
    background: #2a9d8f;
    padding: 15px 0;
}


.categories-section {
    margin-bottom: 80px;
    display: none;
}
.related-posts {
    display: none;
}

/* Featured Logos Section */
.featured-logos {
    padding: 80px 0;
    background-color: #f9f9f7;
    position: relative;
    overflow: hidden;
}

.featured-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none" stroke="%23006838" stroke-width="0.5" stroke-opacity="0.05"><circle cx="50" cy="50" r="40"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.featured-logos .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #006838;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.section-title {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 104, 56, 0.1);
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 104, 56, 0.1);
}

.logo-item img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: grayscale(100%) contrast(60%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0) contrast(100%);
    opacity: 1;
}

.logo-caption {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    font-style: italic;
}

.testimonial-note {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 30px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-note p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: rgba(0, 104, 56, 0.1);
    z-index: 0;
}

.attribution {
    font-size: 0.9rem;
    color: #006838;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-note {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-item {
        padding: 25px 15px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}
/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #006838;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #006838, #4CAF50);
}

.section-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.services-tabs {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
    background: white;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.tab-btn i {
    font-size: 1.5rem;
    color: #006838;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #006838;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #006838, #4CAF50);
}

.tab-btn.active i {
    opacity: 1;
    transform: translateY(-3px);
}

.tab-btn:hover:not(.active) {
    color: #006838;
    background-color: rgba(0, 104, 56, 0.05);
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.03);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #006838;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-details {
    padding: 20px 0;
}

.service-details h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #006838, #4CAF50);
}

.service-details p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #444;
    line-height: 1.6;
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #006838;
    font-size: 1.1rem;
}

.service-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.price-box {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 104, 56, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-box.highlight {
    background: linear-gradient(135deg, rgba(0, 104, 56, 0.1), white);
    border: 1px solid rgba(0, 104, 56, 0.3);
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #006838;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.price-details {
    display: flex;
    flex-direction: column;
}

.price-details span {
    font-size: 0.9rem;
    color: #666;
}

.price-details .save-note {
    color: #006838;
    font-weight: 500;
    font-size: 0.8rem;
    margin-top: 5px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #006838, #4CAF50);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 104, 56, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 104, 56, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid #006838;
    color: #006838;
}

.btn-outline:hover {
    background: rgba(0, 104, 56, 0.05);
}

.package-cta {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.package-cta h4 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.package-cta p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        min-height: 300px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: 15px;
        flex-direction: row;
        justify-content: center;
    }
    
    .tab-content {
        padding: 30px 20px;
    }
    
    .service-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-box {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-details h3 {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
}


.cta-link {
    display: inline;
    background: #e76f51;
    align-items: center;
    margin-left: 11px;
    padding: 16px;
    gap: 10px;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    border-radius: 11px;
}
.cta-action {
    /* display: inline; */
    flex-direction: column;
    gap: 15px;
}   

.cta-card {
    /* background-image: url(images\transformation.jpg); */
    border-radius: 20px;
    padding: 60px;
    display: grid
;
    grid-template-columns: 2fr;
    gap: 6px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #006838;
    font-family: montserrat !important;
    line-height: 1;
}
.cta-section p {
    color: rgb(0 104 91) !important;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section h2 {
    color: #00685b !important;
    font-size: 2.5rem;
    margin-bottom: 20px;
} 

.btn-primary {
    background: linear-gradient(135deg, #00685b, #00685b);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 104, 56, 0.2);
}

.cta-section {
    padding: 100px 0;
    background: #ffd9cc !important;
    color: var(--white);
    text-align: center;
}

.logo-item img {
    object-fit: cover;
    height: 170px;
    border-radius: 5px;
    width: auto;
    margin-bottom: 20px;
    filter: grayscale(0%)  !important;
    opacity: 1;
    transition: all 0.3s ease;
}
.logo-item {
    display: flex
;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    padding: 18px 14px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 104, 56, 0.1);
}
.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: rgb(231 111 81) !important   ;
    z-index: 0;
}
.video-section {
    padding: 100px 0;
    background-color: #ffd9cc !important;
}




.approach-section {
    padding: 100px 0;
    background-color: #ffd9cc;
}
.featured-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff3ee !important;
    opacity: 1;
    z-index: 0;
}

.video-section {
    padding: 100px 0;
    background-color: #fff3ee !important;
}
.approach-section {
    padding: 100px 0;
    background-color: #fff3ee !important;
}
.cta-section {
    padding: 100px 0;
    background: #e8a082 !important;
    color: var(--white);
    text-align: center;
}
.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: none !important;
}
.testimonial-text::before, .testimonial-text::after

 {
  display: none !important;
}
.testimonial-card {
    display: none;
    background-color: var(--light-bg);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 16%) !important;
}
.testimonial-section {
    padding: 100px 0;
    background-color: #f8f8f8 !important;
} 


.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgb(8 108 62 / 40%), hsl(11deg 86.43% 83.76% / 50%)), url(../images/transformation.jpg) no-repeat center center / cover !important;
    color: var(--white);
    text-align: center;
}
btn-outline:hover {
    color: #00685b;
    background: rgba(0, 104, 56, 0.05) !important;
}
.image-container img {
    object-fit: cover !important;
    width: 100%;
    height: 500px !important;
    display: block;
    transition: transform 0.5s ease;
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f4a261;
    color: #FFECDD;
    border: 2px solid #FFECDD;
    display: flex
;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}
.newsletter-section {
    background: #ffd6c7 !important;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 80px;
}

.blog-hero {
 background: linear-gradient(rgb(8 108 62 / 40%), hsl(11deg 86.43% 83.76% / 50%)), url(../images/transformation.jpg) no-repeat center center / cover !important;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.blog-single-hero {
    background: linear-gradient(rgb(8 108 62 / 40%), hsl(11deg 86.43% 83.76% / 50%)), url(../images/transformation.jpg) no-repeat center center / cover !important;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}
.footer-col.links-col {
    padding-left: 41px !important;


}
.footer-grid {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
    gap: 30px;
}

.experience-badge {
    display: none !important;

}





@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 30px !important;
    }


    .footer-col.links-col {
    padding-left: 18px !important;
}
.cta-card {
    /* background-image: url(imagestransformation.jpg); */
    border-radius: 20px;
    padding: 22px !important; 
    display: grid
;
    grid-template-columns: 2fr;
    gap: 6px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modern-hero {
    position: relative;
    padding: 37px 23px !important;
    background-color: var(--light-bg);
}
.hero-wave {
    display: none !important;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
   
    background-size: cover;
    background-repeat: no-repeat;
}

}
/* Hamburger Menu Styles */
.hamburger-menu {
    display: none; /* Hidden by default on larger screens */
    background: none;
    border: none;
    font-size: 24px; /* Size of the hamburger icon */
    color: #333;
    cursor: pointer;
    padding: 5px;
}

/* --- Responsive Styles --- */



/* Small screens (Mobile) - Main breakpoint for hamburger menu */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column; /* Stack logo and contact info */
        align-items: center; /* Center items when stacked */
        gap: 15px;
    }

    .logo {
        text-align: center; /* Center the logo */
    }

    .contact-info {
        justify-content: center; /* Center contact items */
        width: 100%;
    }

}

/* Glimpse Section */
.glimpse-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

/* Gallery Grid */
.glimpse-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Class to hide items initially */
.gallery-item.hidden {
    display: none;
}

/* Animation for when items are revealed */
.gallery-item.revealed {
    animation: fadeInAnimate 0.6s ease-in-out;
}

@keyframes fadeInAnimate {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #c5a47e;
    transition: background-color 0.3s ease, color 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .play-icon {
    background-color: #fff;
    color: #b38b60;
}

/* Load More Button Styling */
.load-more-container {
    text-align: center;
    margin-top: 40px;
}

/* Re-using your site's button style. You can customize it if needed. */
#loadMoreBtn i {
    margin-right: 8px;
}

/* Lightbox Styling (No changes from before) */
.lightbox { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.9); animation: fadeIn 0.4s ease; }
.lightbox.show { display: flex; justify-content: center; align-items: center; }
.lightbox-content { display: flex; align-items: center; justify-content: space-between; width: 95%; max-width: 1200px; position: relative; }
.lightbox-media-container { max-width: calc(100% - 100px); max-height: 90vh; display: flex; justify-content: center; align-items: center; }
.lightbox-media-container img, .lightbox-media-container video { max-width: 100%; max-height: 90vh; display: block; border-radius: 4px; animation: zoomIn 0.5s ease; }
.lightbox-close { position: absolute; top: -30px; right: 0; color: #fff; font-size: 40px; font-weight: bold; cursor: pointer; transition: color 0.3s ease; }
.lightbox-close:hover { color: #bbb; }
.lightbox-prev, .lightbox-next { cursor: pointer; background: transparent; border: none; color: white; font-size: 3rem; padding: 1rem; transition: background-color 0.3s ease; border-radius: 50%; }
.lightbox-prev:hover, .lightbox-next:hover { background-color: rgba(255, 255, 255, 0.1); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { transform: scale(0.8); } to { transform: scale(1); } }