/* ========================================
   ZEE Consulting - Luxury Corporate Styles
   ======================================== */

/* CSS Variables */
:root {
    --primary: #33796e;
    --primary-dark: #2a655a;
    --primary-light: #3d8b80;
    --secondary: #5ab8a8;
    --secondary-light: #7bc9b8;
    --dark: #1a1a1a;
    --light: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --overlay-gradient: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));

    /* Typography */
    --font-playfair: 'Playfair Display', Georgia, serif;
    --font-cormorant: 'Cormorant Garamond', Georgia, serif;
    --font-poppins: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --section-padding-sm: 80px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-poppins);
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

/* Typography */
/* h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-playfair);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
} */

p {
    margin-bottom: 1rem;
}

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

/* ========================================
   Navigation
   ======================================== */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--primary);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: var(--font-playfair);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--light) !important;
    transition: var(--transition-smooth);
}

.navbar.scrolled .navbar-brand {
    color: var(--light) !important;
}

.nav-link {
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light) !important;
    padding: 0.5rem 1.5rem !important;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 2px;
    background-color: var(--light);
    position: relative;
    transition: var(--transition-smooth);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--light);
    left: 0;
    transition: var(--transition-smooth);
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

#heroCarousel {
    height: 100%;
}

#heroCarousel .carousel-inner {
    height: 100%;
}

#heroCarousel .carousel-item {
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease-out;
}

#heroCarousel .carousel-item.active .hero-image {
    transform: scale(1.1);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-gradient);
    z-index: 1;
}

#heroCarousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 0 1rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: var(--font-cormorant);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    color: var(--light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: var(--font-poppins);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.carousel-indicators {
    z-index: 2;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--light);
    background-color: transparent;
    opacity: 0.6;
    margin: 0 6px;
}

.carousel-indicators button.active {
    background-color: var(--secondary);
    border-color: var(--secondary);
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 2;
    width: 5%;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    content: '';
    border: solid var(--light);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 8px;
}

.carousel-control-prev-icon::before {
    transform: rotate(135deg);
}

.carousel-control-next-icon::before {
    transform: rotate(-45deg);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: var(--section-padding) 0;
    background-color: var(--light-gray);
}

.about-title {
    font-family: var(--font-playfair);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.about-text {
    font-family: var(--font-poppins);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: var(--section-padding) 0;
    /* background-color: var(--light-gray); */
}

.section-title {
    font-family: var(--font-playfair);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary), var(--primary));
}

.services-section .section-title::after {
    left: 0;
    transform: none;
}

/* New Alternating Service Row Styles */
.service-row {
    margin-bottom: 80px;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-image-wrapper:hover .service-main-image {
    transform: scale(1.05);
}

.service-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    opacity: 0.3;
    z-index: -1;
}

.service-content-wrapper {
    padding: 2rem;
}

.service-number {
    display: inline-block;
    font-family: var(--font-playfair);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.service-content-wrapper .service-title {
    font-family: var(--font-playfair);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.service-content-wrapper .service-description {
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 400;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--secondary);
    font-size: 1rem;
}

.service-content-wrapper .service-link {
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.service-content-wrapper .service-link:hover {
    color: var(--secondary);
    gap: 15px;
}

.service-content-wrapper .service-link i {
    transition: var(--transition-smooth);
}

/* Content alignment for alternating layout */
.service-content-right {
    padding-left: 2rem;
}

.service-content-left {
    padding-right: 2rem;
}

/* ========================================
   Subsidiary Section
   ======================================== */
.subsidiary-section {
    padding: var(--section-padding) 0;
    background-color: var(--light);
}

.subsidiary-text {
    font-family: var(--font-poppins);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-luxury {
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
    padding: 1rem 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-luxury:hover {
    color: var(--light);
}

.btn-luxury:hover::before {
    left: 0;
}

.subsidiary-para {
    font-size: 25px;
}

/* ========================================
   Global Presence Section
   ======================================== */
.presence-section {
    padding: var(--section-padding) 0;
    background-color: var(--light-gray);
}

.presence-card {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.presence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(90, 184, 168, 0.15);
}

.presence-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.presence-card:hover i {
    color: var(--secondary);
    transform: scale(1.1);
}

.presence-card span {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.presence-card .flag-size {
    font-size: 25px;
}

/* ========================================
   Footer
   ======================================== */
.footer-section {
    padding: 80px 0 0;
    background-color: var(--primary);
    color: var(--light);
}

.footer-brand {
    font-family: var(--font-playfair);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 0.5rem;
}

.footer-description {
    font-family: var(--font-poppins);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 1rem;
}

.footer-heading {
    font-family: var(--font-playfair);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--light);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

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

.footer-contact li {
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 4px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-poppins);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 991px) {
    .navbar {
        background-color: var(--primary);
        padding: 1rem 0;
    }

    .navbar-collapse {
        background-color: var(--primary);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 8px;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
    }

    .nav-link::after {
        display: none;
    }

    .hero-title {
        letter-spacing: 2px;
    }

    .about-section,
    .services-section,
    .subsidiary-section,
    .presence-section {
        padding: var(--section-padding-sm) 0;
    }

    .service-card {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding: 60px 0 0;
    }

    .footer-brand {
        font-size: 2rem;
    }

    .footer-heading {
        margin-top: 1.5rem;
    }

    .presence-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card {
        height: 380px;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .btn-luxury {
        padding: 0.875rem 2rem;
    }
}


.logo {
    height: 45px;   /* adjust as needed */
    width: auto;
}


/* ========================================
   TESTIMONIAL SECTION
======================================== */

.testimonial-section {
    padding: 70px 0;
    background: var(--light-gray);
}

/* ===== CARD ===== */
.testimonial-card {
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 24px 26px;
    height: auto;              /* FIXED → auto */
    min-height: 295px;         /* keeps same visual size */
    display: flex;
    flex-direction: column;
}

/* ===== STARS ===== */
.stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* ===== TEXT (BIGGEST FIX) ===== */
.testimonial-text {
    font-size: 16px;          /* ← THIS was your main issue */
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #2b2b2b;
}

/* ===== USER AREA ===== */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;          /* pushes user to bottom */
}

/* IMAGE FIX */
.testimonial-user img {
    width: 50px !important;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* NAME */
.testimonial-user h5 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    color: #1d1d1d;
}

/* LOCATION */
.testimonial-user span {
    display: block;
    font-size: 14px;
    color: #555;
    margin-top: 2px;
}

