/* Base Styles & Variables */
:root {
    --primary-color: #800020; /* Burgundy */
    --secondary-color: #D4AF37; /* Gold */
    --accent-color: #F5F5DC; /* Cream */
    --dark-color: #333;
    --light-color: #fff;
    --gray-color: #F5F5DC;
    --text-color: #444;
    --text-light: #777;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --section-padding: 80px 0;
    --container-width: 1800px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: #800020;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--gray-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: #6a001b;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: #c9a227;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    margin-top: 30px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.btn-link:hover {
    color: #6a001b;
}

.btn-link i {
    margin-left: 5px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}


.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 400;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 75px;
    width: auto;
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    margin: 0 15px;
    position: relative;
}

.nav-list a {
    font-weight: 500;
    color: var(--dark-color);
    padding: 10px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
}

.dropdown-btn i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--light-color);
    width: 200px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--gray-color);
    color: var(--primary-color);
    padding-left: 25px;
}


/* Header Mobile Actions */
.header-mobile-actions {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-cta {
    display: none;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.desktop-cta {
    display: inline-block;
}

/* Mobile Header Layout */
@media (max-width: 768px) {
    .header .container {
        justify-content: space-between;
    }
    
    .header-mobile-actions {
        display: flex;
    }
    
    .mobile-cta {
        display: inline-block;
    }
    
    .desktop-cta {
        display: none;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--light-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav.show {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-list li {
        margin: 0 0 20px;
        width: 100%;
    }
    
    .nav-list a {
        padding: 10px 0;
        display: block;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 10px 0 0 20px;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .logo img {
        height: 66px;
    }
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background-color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
    animation: fadeInUp 1s ease;
}

.hero-image {
    flex: 1;
    animation: fadeIn 1.5s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

/* About Preview Section */
.about-preview {
    position: relative;
}

.about-preview .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-preview-image {
    flex: 1;
}

.about-preview-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-preview-content {
    flex: 1;
}

/* Services Preview Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Why Choose Us Section */
.why-choose .container {
    display: flex;
    gap: 50px;
}

.why-choose-content {
    flex: 1;
}

.features-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Gallery Preview Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* Testimonials Section */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonial {
    display: none;
    animation: fadeIn 1s ease;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--secondary-color);
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.3;
}

.stars {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-info h4 {
    margin-bottom: 5px;
}

.client-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-style: normal;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.slider-prev, .slider-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px 15px;
    transition: var(--transition);
}

.slider-prev:hover, .slider-next:hover {
    color: #6a001b;
}

.slider-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 2px;
}

.footer p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.footer-col h3 {
    color: var(--light-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 0px;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-info1 i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}


.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

/* Page Hero (for inner pages) */
.page-hero {
    padding: 180px 0 80px;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
    position: relative;
}

.page-hero h1 {
    color: var(--light-color);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Full Page */
.about-full .container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

blockquote {
    font-style: italic;
    padding: 20px 30px;
    border-left: 4px solid var(--secondary-color);
    background-color: var(--gray-color);
    margin: 30px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 500;
    color: var(--primary-color);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
}

.position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.bio {
    padding: 0 20px 30px;
    color: var(--text-light);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background-color: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-year {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: var(--font-heading);
}

.timeline-content {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Services Full Page */
.service {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.service-content {
    flex: 1;
}

.service h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service ul {
    margin: 20px 0 30px;
}

.service ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
}

/* FAQ Section */
.accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-btn {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: var(--light-color);
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.accordion-btn i {
    transition: var(--transition);
}

.accordion-btn.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.accordion-btn.active i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--light-color);
}

.accordion-content.show {
    padding: 20px;
    max-height: 500px;
}

/* Gallery Full Page */
.gallery-filters {
    text-align: center;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--light-color);
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-weight: 500;
}

.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    grid-auto-rows: 200px;
}

.masonry-grid .gallery-item {
    grid-row: span 1;
}

.masonry-grid .gallery-item:nth-child(3n) {
    grid-row: span 2;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.form-success h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info {
    position: sticky;
    top: 100px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 3px;
}

.info-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.map-container {
    margin-top: 40px;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--gray-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    text-align: center;
}

.cta h2 {
    margin-bottom: 15px;
    color: var(--light-color);
}

.cta p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-height: 80vh;
    max-width: 90vw;
    border-radius: var(--border-radius);
    display: block;
}

.lightbox-caption {
    color: var(--light-color);
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--light-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background-color: var(--primary-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .about-preview .container,
    .why-choose .container,
    .about-full .container {
        flex-direction: column;
    }
    
    .hero-content,
    .about-preview-content,
    .why-choose-content,
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .service {
        flex-direction: column;
    }
    
    .service:nth-child(even) {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        position: static;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--light-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-list.show {
        right: 0;
    }
    
    .nav-list li {
        margin: 0 0 20px;
        width: 100%;
    }
    
    .nav-list a {
        padding: 10px 0;
        display: block;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 10px 0 0 20px;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .hamburger {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--dark-color);
        position: relative;
        transition: var(--transition);
    }
    
    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--dark-color);
        transition: var(--transition);
    }
    
    .hamburger::before {
        top: -8px;
    }
    
    .hamburger::after {
        top: 8px;
    }
    
    .nav-toggle.active .hamburger {
        background-color: transparent;
    }
    
    .nav-toggle.active .hamburger::before {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .hamburger::after {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .testimonials-slider {
        padding: 0;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-content::before {
        font-size: 3rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .nav-toggle, .btn {
        display: none !important;
    }
    
    body {
        padding: 20px;
        font-size: 12pt;
        color: #000;
    }
    
    a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }
    
    .page-hero, .cta {
        page-break-after: avoid;
    }
    
    .section-padding {
        padding: 20px 0 !important;
    }
}


/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 20%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: #6a001b;
  transform: scale(1.1);
}

/* Loading animation */
.scroll-top-btn.loading::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid transparent;
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .scroll-top-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    bottom: 20px;
    right: 20px;
  }
}




/* Hero Highlight Subtitle */
.hero-highlight {
    display: inline-block;
    background-color: var(--secondary-color); /* Gold */
    color: #ffffff;
    padding: 8px 20px;
    font-size: 1.0rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: fadeInDown 0.8s ease both;
}

/* Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-highlight {
        font-size: 0.9rem;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
}




button.wh-ap-btn {
	outline: none;
    width:  50px;
    height:  50px;
    border:  0;
    background-color: #2ecc71;
    padding:  0;
    border-radius:  20%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    cursor:  pointer;
    transition:  opacity 0.3s, background 0.3s, box-shadow 0.3s;
}

button.wh-ap-btn::after {
    content: '';
    background-image: url('//chefbychoice.com/aman-whatsapp.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 48%;
    width:  100%;
    height:  100%;
    display:  block;
    opacity: 1;
}

button.wh-ap-btn:hover {
    opacity:  1;
    background-color: #20bf6b;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.wh-api {
    position:  fixed;
    bottom:  0;
    left:  0;
}

.wh-fixed {
    margin-left:  15px;
    margin-bottom:  15px;
}

.wh-fixed>a {
    display:  block;
    text-decoration:  none;
}
button.wh-ap-btn::before {
    display:  block;
    position:  absolute;
    margin-left: 70px;
    margin-top: 16px;
    height: 25px;
    background-color:  #333;
    color:  #fff;
    border-radius:  3px;
    width:  0;
    opacity:  0;
    padding:  0;
    transition: opacity 0.4s, width 0.4s, padding 0.5s;
    padding-top:  7px;
}

.wh-fixed>a:hover button.wh-ap-btn::before {
    opacity:  1;
    width:  auto;
    padding-top: 7px;
    padding-left: 10px;
    padding-right: 10px;
    width:  80px;
}



button.call-aman-btn {
	outline: none;
    width:  50px;
    height:  50px;
    border:  0;
    background-color: #bd2020;
    padding:  0;
    border-radius:  20%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    cursor:  pointer;
    transition:  opacity 0.3s, background 0.3s, box-shadow 0.3s;
}

button.call-aman-btn::after {
    content: '';
    background-image: url('//chefbychoice.com/aman-call.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 48%;
    width:  100%;
    height:  100%;
    display:  block;
    opacity: 1;
}

button.call-aman-btn:hover {
    opacity:  1;
    background-color: #871015;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.call-aman {
    position:  fixed;
    bottom:  0;
    left:  0;
}

.call-aman-fixed {
    margin-left:  15px;
    margin-bottom:  75px;
}

.call-aman-fixed>a {
    display:  block;
    text-decoration:  none;
}
button.call-aman-btn::before {
    display:  block;
    position:  absolute;
    margin-left: 70px;
    margin-top: 16px;
    height: 25px;
    background-color:  #333;
    color:  #fff;
    border-radius:  3px;
    width:  0;
    opacity:  0;
    padding:  0;
    transition: opacity 0.4s, width 0.4s, padding 0.5s;
    padding-top:  7px;
}

.call-aman-fixed>a:hover button.wh-ap-btn::before {
    opacity:  1;
    width:  auto;
    padding-top: 7px;
    padding-left: 10px;
    padding-right: 10px;
    width:  80px;
}







.section-title.text-center {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title.text-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}



.section-header1 {
    display: flex;
    justify-content: center;
    width: 100%;
}






/* Service Image Styles */
.service-image {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Remove icon styles if they exist */
.service-icon {
    display: none;
}

/* Responsive Adjustments - LARGER on mobile */
@media (max-width: 1200px) {
    .service-image {
        height: 240px; /* Larger on medium screens */
    }
}

@media (max-width: 992px) {
    .service-image {
        height: 260px; /* Even larger on tablets */
    }
}

@media (max-width: 768px) {
    .service-image {
        height: 220px; /* Larger on small tablets */
    }
}

@media (max-width: 576px) {
    .service-image {
        height: 220px; /* Largest on mobile phones */
    }
    
    /* Optional: Make single column on mobile for larger appearance */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .service-image {
        height: 280px; /* Slightly smaller on very small phones */
    }
}



.menu-carousel {
    background-color: var(--accent-color);
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-color);
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    .carousel-slide img {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 0 50px;
    }
    
    .carousel-slide img {
        height: 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .carousel-wrapper {
        padding: 0 40px;
    }
    
    .carousel-slide img {
        height: 100%;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}




/* Button group styles */
.cust-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.cust-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: sans-serif;
}

/* Primary button */
.cust-btn-primary {
    background-color: #2c3e50;
    color: #fff;
    border: 2px solid #2c3e50;
}

.cust-btn-primary:hover {
    background-color: #1a252f;
    border-color: #1a252f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Call button */
.cust-btn-call {
    background-color: #800020;
    color: #fff;
    border: 2px solid #800020;
}

.cust-btn-call:hover {
    background-color: #800020;
    border-color: #800020;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* WhatsApp button */
.cust-btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border: 2px solid #25D366;
}

.cust-btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .cust-btn-group {
        flex-direction: column;
    }
    
    .cust-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}



/* New media queries for 2K and above (32”+) */
@media (min-width: 1440px) {
    :root {
        --container-width: 2000px;
    }
    .section-padding {
        padding: 120px 0;
    }
    .hero-title,
    .section-title {
        font-size: clamp(2.2rem, 3vw, 4.5rem);
    }
}
@media (min-width: 1920px) {
    :root {
        --container-width: 2400px;
    }
    .hero .container,
    .about-preview .container,
    .why-choose .container,
    .about-full .container {
        gap: 120px;
    }
    .services-grid,
    .gallery-grid,
    .team-grid {
        gap: 40px;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    }
    .section-padding {
        padding: 140px 0;
    }
}
/* Optional ultra-wide support */
@media (min-width: 2560px) {
    :root {
        --container-width: 3000px;
    }
    .section-title {
        font-size: 5vw;
    }
    .section-padding {
        padding: 180px 0;
    }
    .container {
        max-width: 90vw;
    }
}

/* Updated grid for extra large screens */
@media (min-width: 1600px) {
    .services-grid, .gallery-grid, .team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 48px;
    }
}






/* Mobile Responsive Fixes for Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 1; /* Changed from 2 to 1 - shows FIRST on mobile */
        margin-top: 0;
        margin-bottom: 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: static !important;
    }
    
    .contact-form {
        order: 2; /* Changed from 1 to 2 - shows SECOND on mobile */
    }
    
    .map-container {
        height: 250px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 20px;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .info-card i {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 2rem;
        color: var(--secondary-color);
        flex-shrink: 0;
    }
    
    .info-card h3 {
        margin-bottom: 8px;
        color: var(--primary-color);
        flex-shrink: 0;
    }
    
    .info-card div {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 25px;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
        text-align: center;
        width: 100%;
    }
    
    .social-links {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    
    .social-links h3 {
        text-align: center;
        margin-bottom: 15px;
        color: var(--primary-color);
    }
    
    .social-icons {
        justify-content: center;
        gap: 15px;
    }
    
    .map-container {
        height: 200px;
    }
    
    .info-card {
        max-width: 100%;
        min-height: 160px;
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 20px 15px;
    }
    
    .info-card {
        padding: 18px 12px;
        min-height: 150px;
    }
    
    .info-card i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
}

/* Contact info centering styles */
.contact-info h2 {
    width: 100%;
    margin-bottom: 10px;
}

.info-card p {
    line-height: 1.6;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Form button responsiveness */
.contact-form .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 1.1rem;
}

/* Ensure iframe is responsive */
.map-container iframe {
    border-radius: var(--border-radius);
}

/* Desktop styles for equal card sizes */
@media (min-width: 993px) {
    .info-card {
        min-height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        box-sizing: border-box;
    }
    
    .info-card i {
        margin-bottom: 12px;
        font-size: 1.8rem;
        color: var(--secondary-color);
        flex-shrink: 0;
    }
    
    .info-card div {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .info-card h3 {
        margin-bottom: 8px;
        color: var(--primary-color);
        flex-shrink: 0;
    }
    
    .info-card p {
        line-height: 1.5;
        margin: 0;
    }
}





.orange-ticker {
  --orange-primary: #800020; /* Vibrant orange */
  --orange-dark: #800020;
  display: flex;
  width: 100%;
  height: 70px;
  background: var(--orange-primary);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ticker-track {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  align-items: center;
  animation: tickerScroll 25s linear infinite;
  white-space: nowrap;
}

.orange-fade {
  width: 120px;
  height: 100%;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.left-orange {
  left: 0;
  background: linear-gradient(90deg, var(--orange-primary), rgba(255, 140, 0, 0));
}

.right-orange {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 140, 0, 0), var(--orange-primary));
}

.ticker-item {
  font-family: 'Segoe UI', Roboto, sans-serif;
  font-size: 22px;
  font-weight: 600; /* Semi-bold */
  color: white;
  padding: 0 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.ticker-divider {
  color: white;
  font-size: 26px;
  font-weight: 600;
  opacity: 0.8;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .orange-ticker {
    height: 50px;
  }
  .ticker-item {
    font-size: 18px;
    padding: 0 15px;
  }
  .ticker-divider {
    font-size: 20px;
  }
  .orange-fade {
    width: 60px;
  }
}




/* Gallery & Testimonials Combined Section Styles */
.gallery-testimonials {
    background-color: #ffffff;
}

.gt-grid {
    display: flex;
    gap: 40px;
    align-items: stretch; /* This makes columns equal height */
}

.gt-column {
    flex: 1;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.gt-gallery .section-title,
.gt-testimonials .section-title {
    text-align: center;
    margin-bottom: 10px;
}

.gt-gallery .section-subtitle,
.gt-testimonials .section-subtitle {
    text-align: center;
    margin-bottom: 30px;
}

/* Gallery Carousel Styles */
.gt-carousel-wrapper {
    position: relative;
    margin-bottom: 20px;
    flex-grow: 1; /* This makes the carousel take available space */
    display: flex;
    flex-direction: column;
}

.gt-carousel-container {
    overflow: hidden;
    border-radius: var(--border-radius);
    flex-grow: 1;
}

.gt-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.gt-carousel-slide {
    flex: 0 0 100%;
    padding: 0 5px;
    display: flex;
}

.gt-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-grow: 1;
    cursor: pointer;
}

.gt-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gt-image-container:hover img {
    transform: scale(1.05);
}

.gt-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gt-image-container:hover .gt-image-caption {
    opacity: 1;
}

.gt-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--light-color);
    border: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gt-carousel-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-50%) scale(1.1);
}

.gt-carousel-prev {
    left: 15px;
}

.gt-carousel-next {
    right: 15px;
}

.gt-carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.gt-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gt-carousel-dot.active {
    background-color: var(--primary-color);
}

/* Testimonials Styles */
.gt-testimonials-container {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gt-testimonial {
    display: none;
    animation: fadeIn 0.5s ease;
    flex-grow: 1;
}

.gt-testimonial.active {
    display: flex;
    flex-direction: column;
}

.gt-testimonial-content {
    padding: 25px;
    background-color: var(--gray-color);
    border-radius: var(--border-radius);
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gt-testimonial-content::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    top: 15px;
    left: 15px;
    opacity: 0.3;
}

.gt-testimonial-content p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
    flex-grow: 1;
}

.gt-client-info {
    display: flex;
    align-items: center;
}

.gt-client-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.gt-client-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.gt-client-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-style: normal;
}

.gt-testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.gt-testimonial-prev,
.gt-testimonial-next {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px 15px;
    transition: var(--transition);
}

.gt-testimonial-prev:hover,
.gt-testimonial-next:hover {
    color: #6a001b;
}

.gt-testimonial-dots {
    display: flex;
    margin: 0 15px;
    gap: 8px;
}

.gt-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.gt-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Lightbox Styles */
.gt-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.gt-lightbox.show {
    opacity: 1;
    visibility: visible;
}

.gt-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gt-lightbox-image {
    max-height: 80vh;
    max-width: 90vw;
    border-radius: var(--border-radius);
    display: block;
}

.gt-lightbox-caption {
    color: var(--light-color);
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
}

.gt-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    z-index: 2001;
}

.gt-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--light-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2001;
}

.gt-lightbox-nav:hover {
    background-color: var(--primary-color);
}

.gt-lightbox-prev {
    left: 20px;
}

.gt-lightbox-next {
    right: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .gt-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .gt-grid {
        flex-direction: column;
    }
    
    .gt-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .gt-column {
        padding: 20px;
    }
    
    .gt-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gt-testimonial-content {
        padding: 20px;
    }
    
    .gt-testimonial-content::before {
        font-size: 3rem;
    }
    
    .gt-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .gt-carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .gt-carousel-prev {
        left: 10px;
    }
    
    .gt-carousel-next {
        right: 10px;
    }
    
    .gt-testimonial-content {
        padding: 20px 15px;
    }
    
    .gt-client-info {
        flex-direction: column;
        text-align: center;
    }
    
    .gt-client-info img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .gt-testimonial-controls {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .gt-lightbox-content {
        max-width: 95%;
    }
    
    .gt-lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .gt-lightbox-prev {
        left: 10px;
    }
    
    .gt-lightbox-next {
        right: 10px;
    }
}










 /* Modern CTA Section Styles */
        .modern-cta {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://apkiwebsite.com/test/garg-website-1/images/garg-carterers-cta-section.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        
        .modern-cta-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .modern-cta h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .modern-cta p {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .cta-button-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 35px;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            min-width: 200px;
        }
        
        .cta-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .cta-btn.call {
            background-color: #800020; /* Burgundy */
            color: white;
            border: 2px solid #800020;
        }
        
        .cta-btn.call:hover {
            background-color: #6a001b;
            border-color: #6a001b;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        .cta-btn.whatsapp {
            background-color: #25D366; /* WhatsApp green */
            color: white;
            border: 2px solid #25D366;
        }
        
        .cta-btn.whatsapp:hover {
            background-color: #128C7E;
            border-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }
        
        /* Decorative elements */
        .cta-decoration {
            position: absolute;
            z-index: 1;
            opacity: 0.1;
        }
        
        .cta-decoration.circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 4px solid #D4AF37;
            top: 50px;
            left: 10%;
        }
        
        .cta-decoration.square {
            width: 150px;
            height: 150px;
            border: 4px solid #D4AF37;
            bottom: 50px;
            right: 10%;
            transform: rotate(45deg);
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .modern-cta {
                padding: 80px 0;
                background-attachment: scroll;
            }
            
            .modern-cta h2 {
                font-size: 2.5rem;
            }
            
            .modern-cta p {
                font-size: 1.1rem;
            }
            
            .cta-button-group {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-btn {
                width: 100%;
                max-width: 300px;
            }
            
            .cta-decoration {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .modern-cta h2 {
                font-size: 2rem;
            }
            
            .modern-cta p {
                font-size: 1rem;
            }
            
            .cta-btn {
                padding: 15px 25px;
                font-size: 1rem;
            }
        }












  /* Mission & Vision Section Styles */
        .mission-vision {
            padding: 100px 0;
            background-color: #F5F5DC; /* Cream background */
            position: relative;
        }
        
        .mv-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .mv-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .mv-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: #800020; /* Burgundy */
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .mv-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #D4AF37; /* Gold */
        }
        
        .mv-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            color: #777;
            max-width: 600px;
            margin: 20px auto 0;
            line-height: 1.6;
        }
        
        .mv-grid {
            display: flex;
            gap: 40px;
            align-items: stretch;
        }
        
        .mv-column {
            flex: 1;
            padding: 40px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .mv-column:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .mv-icon {
            width: 70px;
            height: 70px;
            background-color: #800020; /* Burgundy */
            color: #D4AF37; /* Gold */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 25px;
        }
        
        .mv-heading {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: #800020; /* Burgundy */
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .mv-heading:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #D4AF37; /* Gold */
        }
        
        .mv-content {
            font-family: 'Montserrat', sans-serif;
            color: #444;
            line-height: 1.8;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .mv-highlight {
            background-color: rgba(212, 175, 55, 0.1); /* Light gold background */
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid #D4AF37; /* Gold border */
            font-style: italic;
            margin-top: 20px;
        }
        
        /* Decorative elements */
        .mv-decoration {
            position: absolute;
            z-index: 0;
            opacity: 0.03;
            font-size: 220px;
            color: #800020; /* Burgundy */
        }
        
        .mission-column .mv-decoration {
            bottom: -40px;
            right: -20px;
            font-family: 'Playfair Display', serif;
        }
        
        .vision-column .mv-decoration {
            bottom: -40px;
            left: -20px;
            font-family: 'Playfair Display', serif;
        }
        
        /* Responsive design */
        @media (max-width: 992px) {
            .mv-grid {
                flex-direction: column;
                gap: 30px;
            }
            
            .mv-column {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .mission-vision {
                padding: 80px 0;
            }
            
            .mv-title {
                font-size: 2.2rem;
            }
            
            .mv-subtitle {
                font-size: 1.1rem;
            }
            
            .mv-heading {
                font-size: 1.6rem;
            }
            
            .mv-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
        }
        
        @media (max-width: 480px) {
            .mv-container {
                padding: 0 15px;
            }
            
            .mv-column {
                padding: 25px 20px;
            }
            
            .mv-title {
                font-size: 1.8rem;
            }
            
            .mv-heading {
                font-size: 1.4rem;
            }
            
            .mv-decoration {
                font-size: 150px;
            }
        }
        
        
        
        
        
        
        .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.accordion-item.active .accordion-content {
    max-height: 500px; /* adjust based on content length */
    padding: 15px;
}
