* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Colors */
    --primary-color: #818cf8;
    --secondary-color: #a78bfa;
    --accent-color: #fbbf24;
    --text-dark: #f3f4f6;
    --text-light: #d1d5db;
    --bg-light: #111827;
    --bg-secondary: #1f2937;
    --bg-primary: #111827;
    --card-bg: #374151;
    --border-color: #4b5563;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    --gradient: linear-gradient(135deg, #818cf8 0%, #764ba2 100%);
}

.light-theme {
    /* Light Theme Colors */
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #ffffff;
    --bg-secondary: #faf8fc;
    --bg-primary: #ffffff;
    --card-bg: #ffffff;
    --border-color: #b2bce7;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Font Families */
:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-special: 'Poiret One', cursive;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.dark-theme .navbar {
    background: rgba(17, 24, 39, 0.95);
    border-bottom-color: var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Theme-specific logo display */
.logo-img-light {
    display: block;
}

.logo-img-dark {
    display: none;
}

.dark-theme .logo-img-light {
    display: none;
}

.dark-theme .logo-img-dark {
    display: block;
}

/* SMALL Box Style Navigation Links */
.box-link {
    background: var(--card-bg);
    padding: 8px 16px !important;
    border-radius: 25px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    margin: 0 3px;
    color: var(--text-dark);
}

.box-link:hover {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.box-link::after {
    display: none !important;
}

/* SMALL Box Style Theme Toggle */
.box-theme {
    background: var(--card-bg) !important;
    border: 2px solid var(--border-color) !important;
    padding: 8px !important;
    border-radius: 25px !important;
    width: 40px !important;
    height: 40px !important;
    box-shadow: var(--shadow) !important;
    margin-left: 0.5rem !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.box-theme:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px) rotate(30deg) !important;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3) !important;
}

.box-theme:hover i {
    color: white !important;
}

.box-theme i {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

/* Navigation Menu with SMALL Box Buttons */
.nav-menu {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

/* Active Nav Link */
.nav-link.active {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.bar {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Responsive for SMALL Box Links */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--card-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 1.5rem 0;
        gap: 0.8rem;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .box-link {
        padding: 12px 20px !important;
        margin: 5px 20px;
        width: auto;
        text-align: center;
        font-size: 0.9rem;
    }

    .box-theme {
        margin: 0.8rem auto !important;
        width: 45px !important;
        height: 45px !important;
    }

    .logo-img {
        height: 35px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)), 
                url('https://images.unsplash.com/photo-1597157639073-69284dc0fdaf?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=2074') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-family: var(--font-body);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Sections Common */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-body);
    font-weight: 300;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.portfolio-images {
    margin-bottom: 4rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    aspect-ratio: 3/4;
    opacity: 0;
    transform: scale(0.9);
    background: var(--card-bg);
    cursor: pointer;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

/* Videos Section */
.portfolio-videos {
    margin-top: 4rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    aspect-ratio: 16/9;
    background: var(--card-bg);
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-play-icon:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.video-item:hover .video-overlay {
    transform: translateY(0);
}

.video-item:hover {
    transform: translateY(-8px) scale(1.02);
}

.video-item:hover .video-thumbnail {
    transform: scale(1.1);
}

/* Portfolio CTA */
.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
}

.portfolio-cta .btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.portfolio-cta .btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

/* ===== IMAGE FULL VIEW MODAL ===== */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    border-radius: 15px;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 1);
    transform: scale(1.1);
}

.modal-info {
    padding: 1.5rem;
    background: var(--card-bg);
    color: var(--text-dark);
}

.modal-info h3 {
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.modal-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.modal-info small {
    color: var(--primary-color);
    font-weight: 600;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { 
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Loading State */
.loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
    .portfolio {
        padding: 60px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .portfolio-item, .video-item {
        margin: 0.2rem 0;
        border-radius: 12px;
    }
    
    .portfolio-overlay, .video-overlay {
        padding: 1rem;
    }
    
    .portfolio-overlay h3, .video-overlay h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .portfolio-overlay p, .video-overlay p {
        font-size: 0.75rem;
        display: none;
    }
    
    .portfolio-overlay small, .video-overlay small {
        font-size: 0.7rem;
    }
    
    .portfolio-images, .portfolio-videos {
        margin-bottom: 3rem;
    }
    
    .video-play-icon {
        width: 45px;
        height: 45px;
    }
    
    .video-play-icon i {
        font-size: 1.2rem;
    }
    
    .video-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
        top: 10px;
        right: 10px;
    }
    
    .portfolio-cta {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .portfolio-cta .btn-large {
        padding: 14px 35px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .modal-content {
        max-width: 98%;
        max-height: 98%;
        border-radius: 10px;
    }
    
    .modal-image {
        max-height: 70vh;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }
    
    .modal-info {
        padding: 1rem;
    }
    
    .modal-info h3 {
        font-size: 1.1rem;
    }
    
    .modal-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid, .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .portfolio-overlay, .video-overlay {
        padding: 0.8rem;
    }
    
    .portfolio-overlay h3, .video-overlay h3 {
        font-size: 0.85rem;
    }
    
    .portfolio-overlay small, .video-overlay small {
        font-size: 0.65rem;
    }
    
    .portfolio-cta .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Tablet View - 3 Columns */
@media (min-width: 769px) {
    .portfolio-grid, .videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .portfolio-item:hover, .video-item:hover {
        transform: none;
    }
    
    .portfolio-item:hover .portfolio-img, .video-item:hover .video-thumbnail {
        transform: none;
    }
    
    .portfolio-item:active, .video-item:active {
        transform: scale(0.98);
    }
    
    .modal-close:hover {
        transform: none;
    }
    
    .video-play-icon:hover {
        transform: translate(-50%, -50%);
    }
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-category {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.category-title i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-secondary);
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    color: white;
    font-size: 1.5rem;
}

.service-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    color: var(--text-dark);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-service-book {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: var(--font-body);
}

.btn-service-book:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.services-cta {
    background: var(--gradient);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.cta-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== PERFECT ABOUT SECTION LAYOUT ===== */
.about {
    background: var(--bg-light);
    padding: 80px 0;
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

/* Left Side - About Text */
.about-left {
    padding-right: 2rem;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Right Side - Features & Stats */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.features-box,
.stats-box {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.features-box:hover,
.stats-box:hover {
    transform: translateY(-5px);
}

.features-box h4,
.stats-box h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.feature-item:hover i,
.feature-item:hover span {
    color: white;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 20px;
    text-align: center;
    transition: color 0.3s ease;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Founders Section */
.founders-section {
    background: var(--bg-secondary);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.founders-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.founders-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.founder-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.1);
}

.founder-info h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.founder-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.founder-bio {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.founder-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.founder-social .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    background: var(--bg-light);
}

.founder-social .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.founder-social .social-link:nth-child(1):hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border-color: transparent;
}

.founder-social .social-link:nth-child(2):hover {
    background: #ea4335;
    color: white;
    border-color: transparent;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-main-grid {
        gap: 3rem;
    }
    
    .about-left {
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .about-left {
        padding-right: 0;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .about-text p {
        text-align: center;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .founders-section {
        padding: 2.5rem 1.5rem;
    }
    
    .founders-title {
        font-size: 1.8rem;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-card {
        padding: 2rem;
    }
    
    .founder-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .features-box,
    .stats-box {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .founders-section {
        padding: 2rem 1rem;
    }
    
    .founder-card {
        padding: 1.5rem;
    }
    
    .founder-info h4 {
        font-size: 1.3rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
}

/* Animation for sections */
.about-main-grid,
.founders-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-main-grid.visible,
.founders-grid.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Booking Section */
.booking {
    background: var(--bg-secondary);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.booking-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.booking-feature i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.booking-feature h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.booking-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.quick-contact {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.quick-contact h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    width: 100%;
    margin-bottom: 1rem;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.phone-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.phone-link i {
    color: var(--primary-color);
}

.phone-link:hover i {
    color: white;
}

/* Booking Form */
.booking-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group optgroup {
    font-weight: bold;
    color: var(--primary-color);
}

.form-group optgroup option {
    font-weight: normal;
    color: var(--text-dark);
    padding-left: 10px;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-link {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    transform: translateX(5px);
}

.contact-text {
    color: var(--text-light);
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    margin-bottom: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    color: var(--text-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo h3 {
    font-family: var(--font-special);
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-light);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-link {
    color: var(--text-dark);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    background: var(--card-bg);
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    text-decoration: none;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Specific social media colors */
.social-link:nth-child(1):hover {
    color: #E4405F;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white !important;
}

.social-link:nth-child(2):hover {
    color: #1877F2;
    background: #1877F2;
    color: white !important;
}

.social-link:nth-child(3):hover {
    color: #25D366;
    background: #25D366;
    color: white !important;
}

.social-link:nth-child(4):hover {
    color: #FF0000;
    background: #FF0000;
    color: white !important;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Item WhatsApp Icon Color */
.contact-item .fa-whatsapp {
    color: #25D366 !important;
}

/* Animation Classes for JavaScript */
.service-card,
.portfolio-item {
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

/* Ensure smooth theme transitions */
.navbar,
.service-card,
.portfolio-item,
.contact-item,
.social-link {
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Focus outlines for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading state for buttons */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10000;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Additional Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero {
        height: 80vh;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 280px;
        max-width: 100%;
        padding: 14px 25px;
        font-size: 1rem;
        justify-content: center;
        margin: 5px 0;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        width: 250px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-category {
        padding: 1rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .booking-form,
    .contact-form {
        padding: 1.2rem;
    }
    
    .btn-service-book,
    .btn-whatsapp,
    .booking-form .btn-primary,
    .contact-form .btn-primary {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* Button Focus States for Mobile */
@media (max-width: 768px) {
    .btn:active {
        transform: scale(0.98);
    }
    
    .btn:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    .portfolio-item:active {
        transform: scale(0.98);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .booking-form,
    .social-links,
    .footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black !important;
        background: white !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
}

/* Add this to your style.css */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-number.animated {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pulse animation for stats */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.stat-item.animate {
    animation: pulse 0.6s ease;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float {
    position: relative;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    position: relative;
    z-index: 10;
}

.whatsapp-icon i {
    color: white;
    font-size: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    color: var(--text-dark);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip .tooltip-arrow {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--card-bg);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Pulse Animation */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Options Menu */
.whatsapp-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    padding: 1rem;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9;
}

.whatsapp-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.option-header span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.close-options {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-options:hover {
    background: var(--bg-secondary);
    color: var(--text-dark);
}

.option-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.option-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    text-align: left;
    font-weight: 500;
}

.option-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.btn-custom {
    background: var(--gradient);
    color: white;
    border: none;
    font-weight: 600;
}

.btn-custom:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon i {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile */
    }
    
    .whatsapp-options {
        min-width: 220px;
        right: -10px;
    }
    
    .option-btn {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
}

/* Hide on print */
@media print {
    .floating-whatsapp {
        display: none !important;
    }
}

/* Animation for new message indicator */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.has-new-message .whatsapp-icon {
    animation: bounce 2s infinite, pulse-whatsapp 2s infinite;
}

/* New message indicator */
.new-message-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: #ff4444;
    border: 2px solid white;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--bg-secondary);
    padding: 80px 0;
    position: relative;
}

.testimonials-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--card-bg);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    margin-bottom: 2rem;
}

.testimonial-slide {
    min-width: 100%;
    padding: 1rem;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.author-rating {
    display: flex;
    gap: 2px;
    margin-top: 0.3rem;
}

.author-rating i {
    color: #FFD700;
    font-size: 0.8rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.slider-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.slider-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Reviews Badge */
.reviews-badge {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 200px;
}

.google-rating {
    margin-bottom: 1.5rem;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.rating-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-review {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.trust-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-slider {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-item {
        padding: 1rem;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .slider-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-slider {
        padding: 1rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
}

/* Animation for new testimonials */
@keyframes slideInTestimonial {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-slide {
    animation: slideInTestimonial 0.6s ease;
}


