/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 40%, #f093fb 70%, #f5576c 90%, #4facfe 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 60px; /* Reduced from 80px */
}

/* Animated Background Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    will-change: transform; /* Smooth animation */
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 6s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 7s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; animation-duration: 5s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; animation-duration: 9s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 6s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; animation-duration: 8s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; animation-duration: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; animation-duration: 5s; }
.particle:nth-child(10) { left: 95%; animation-delay: 9s; animation-duration: 6s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatIcon 8s ease-in-out infinite;
    will-change: transform; /* Smooth animation */
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 30%; right: 15%; animation-delay: 2s; }
.floating-icon:nth-child(3) { top: 60%; left: 5%; animation-delay: 4s; }
.floating-icon:nth-child(4) { top: 70%; right: 10%; animation-delay: 6s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Hero Content */
.hero .container {
    position: relative;
    z-index: 10;
    margin-top: 150px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: var(--white);
    position: relative;
    margin-bottom: 10rem;
}

/* Hero Badge */
.hero-badge {
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease 0.5s both;
    will-change: transform, opacity; /* Smooth animation */
}

.badge-text {
    background: linear-gradient(45deg, #FF6F61, #FF8E53);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.3);
    animation: pulse 2s infinite;
    will-change: transform; /* Smooth animation */
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease 0.7s both;
    will-change: transform, opacity; /* Smooth animation */
}

.title-line {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.title-highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
    will-change: text-shadow; /* Smooth animation */
}

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.3); }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    animation: slideInLeft 1s ease 0.9s both;
    will-change: transform, opacity; /* Smooth animation */
}

.highlight {
    color: #FFD700;
    font-weight: 600;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: slideInLeft 1s ease 1.1s both;
    will-change: transform, opacity; /* Smooth animation */
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 0.5rem;
    will-change: transform; /* Smooth animation */
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 1s ease 1.3s both;
    will-change: transform, opacity; /* Smooth animation */
}

.btn-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #FF6F61, #FF8E53);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 111, 97, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
    will-change: transform, box-shadow; /* Smooth animation */
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(253, 123, 111, 0.6);
}

.btn-outline-glow {
    background: transparent;
    border: 2px solid rgba(128, 124, 124, 0.3);
    color: rgb(255, 243, 243);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
    will-change: transform, box-shadow, background; /* Smooth animation */
}

.btn-outline-glow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-glow i, .btn-outline-glow i {
    margin-left: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
    will-change: transform; /* Smooth animation */
}

.btn-glow:hover i, .btn-outline-glow:hover i {
    transform: translateX(5px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease 0.5s both;
    will-change: transform, opacity; /* Smooth animation */
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatImage 6s ease-in-out infinite;
    will-change: transform; /* Smooth animation */
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 1;
    will-change: transform, opacity; /* Smooth animation */
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: floatCard 8s ease-in-out infinite;
    will-change: transform; /* Smooth animation */
}

.floating-card i {
    color: #FFD700;
    font-size: 1.2rem;
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 3;
    animation: fadeInUp 1s ease 1.5s both;
    will-change: transform, opacity; /* Smooth animation */
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.scroll-arrow {
    animation: bounce 2s infinite;
    will-change: transform; /* Smooth animation */
}

.scroll-arrow i {
    font-size: 1.5rem;
    color: #FFD700;
}

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

/* Animation Keyframes */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Services Preview Section */
.services-preview {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.15"/><circle cx="75" cy="75" r="2" fill="white" opacity="0.15"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.15"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.15"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.15"/><circle cx="30" cy="90" r="1.5" fill="white" opacity="0.15"/><circle cx="70" cy="30" r="1.5" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23services-pattern)"/></svg>');
    opacity: 0.4;
    animation: servicesPatternMove 25s linear infinite;
    z-index: 1;
}

@keyframes servicesPatternMove {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    33% { transform: translateX(-15px) translateY(-8px) rotate(120deg); }
    66% { transform: translateX(-8px) translateY(-15px) rotate(240deg); }
    100% { transform: translateX(0) translateY(0) rotate(360deg); }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.service-card {
    position: relative;
    transition: all 0.4s ease;
}

.service-card-inner {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover .service-card-inner {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-card.featured .service-card-inner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.service-card.featured:hover .service-card-inner {
    transform: scale(1.05) translateY(-15px);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

.featured-badge i {
    color: var(--white);
}

/* Service Icon */
.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 20px;
    animation: glowPulse 3s ease-in-out infinite;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Service Content */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.service-card.featured .service-content h3 {
    color: var(--white);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-card.featured .service-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Service Features */
.service-features {
    margin-bottom: 2rem;
    flex: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features i {
    color: var(--accent);
    margin-right: 0.8rem;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-features i {
    transform: scale(1.2);
}

/* Service Stats */
.service-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.service-card.featured .service-stats {
    background: rgba(255, 255, 255, 0.1);
}

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

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.service-card.featured .stat-value {
    color: #FFD700;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.service-card.featured .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1) 0%, rgba(255, 111, 97, 0.1) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 1.5rem;    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-glow {
    background: linear-gradient(45deg, #FF6F61, #FF8E53);
    border: none;
    box-shadow: 0 8px 25px rgba(255, 111, 97, 0.4);
}

.cta-buttons .btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 111, 97, 0.6);
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}



/* Floating Elements CTA */
.floating-elements-cta {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatElement 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

/* Responsive Design for Services */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .service-card.featured .service-card-inner {
        transform: none;
    }
    
    .service-card.featured:hover .service-card-inner {
        transform: translateY(-15px);
    }
    
    .services-cta {
        padding: 2.5rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-inner {
        padding: 2rem;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .floating-elements-cta {
        display: none;
    }
}

@media (max-width: 576px) {
    .service-card-inner {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .services-cta {
        padding: 2rem;
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonials-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><rect x="10" y="10" width="8" height="8" fill="white" opacity="0.08" rx="2"/><rect x="80" y="80" width="8" height="8" fill="white" opacity="0.08" rx="2"/><rect x="50" y="20" width="6" height="6" fill="white" opacity="0.08" rx="1"/><rect x="20" y="70" width="6" height="6" fill="white" opacity="0.08" rx="1"/><rect x="85" y="30" width="4" height="4" fill="white" opacity="0.08" rx="1"/><rect x="30" y="85" width="4" height="4" fill="white" opacity="0.08" rx="1"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonials-pattern)"/></svg>');
    opacity: 0.3;
    animation: testimonialsPatternMove 30s linear infinite;
    z-index: 1;
}

@keyframes testimonialsPatternMove {
    0% { transform: translateX(0) translateY(0) scale(1); }
    25% { transform: translateX(-10px) translateY(-5px) scale(1.05); }
    50% { transform: translateX(-5px) translateY(-10px) scale(1.1); }
    75% { transform: translateX(-15px) translateY(-3px) scale(1.05); }
    100% { transform: translateX(0) translateY(0) scale(1); }
}

.testimonials .section-header {
    position: relative;
    z-index: 3;
    margin-bottom: 4rem;
}

.testimonials .section-title {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    flex: 0 0 100%;
    padding: 0 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.testimonial.active {
    opacity: 1;
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stars {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.client-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.company-logo {
    margin-left: auto;
    width: 100px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
}

.company-logo img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.dots {
    display: flex;
    margin: 0 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 3;
}

.testimonial-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
    transition: transform 0.3s ease;
}

.testimonial-stat:hover {
    transform: translateY(-5px);
}

.testimonial-stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.testimonial-stat .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Floating Elements for Testimonials */
.testimonial-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonial-floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: testimonialFloatElement 8s ease-in-out infinite;
}

.testimonial-floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.testimonial-floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.testimonial-floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes testimonialFloatElement {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Testimonials */
@media (max-width: 992px) {
    .testimonials .section-title {
        font-size: 2.3rem;
    }
    
    .testimonial-content {
        padding: 2.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-stats {
        gap: 2rem;
    }
    
    .testimonial-stat {
        min-width: 130px;
        padding: 1.2rem;
    }
    
    .testimonial-stat .number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials .section-title {
        font-size: 2rem;
    }
    
    .testimonials .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .testimonial-content::before {
        font-size: 4rem;
    }
    
    .quote-icon {
        top: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stars {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .company-logo {
        margin: 0 auto;
    }
    
    .testimonial-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .testimonial-stat {
        min-width: calc(50% - 1.5rem);
    }
    
    .slider-controls button {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .testimonials .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-content::before {
        top: 0.5rem;
        left: 1rem;
        font-size: 3rem;
    }
    
    .quote-icon {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-stat {
        min-width: 100%;
    }
    
    .slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .dots {
        margin: 0 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        margin: 0 0.3rem;
    }
}

/* About Preview Section */
.about-preview {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-preview-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><polygon points="50,10 60,30 80,30 65,45 70,65 50,55 30,65 35,45 20,30 40,30" fill="white" opacity="0.06"/><polygon points="20,20 25,30 35,30 28,37 30,47 20,42 10,47 12,37 5,30 15,30" fill="white" opacity="0.06"/><polygon points="80,80 85,90 95,90 88,97 90,107 80,102 70,107 72,97 65,90 75,90" fill="white" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23about-preview-pattern)"/></svg>');
    opacity: 0.4;
    animation: aboutPreviewPatternMove 35s linear infinite;
    z-index: 1;
}

@keyframes aboutPreviewPatternMove {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    20% { transform: translateX(-12px) translateY(-6px) rotate(72deg); }
    40% { transform: translateX(-6px) translateY(-12px) rotate(144deg); }
    60% { transform: translateX(-18px) translateY(-4px) rotate(216deg); }
    80% { transform: translateX(-4px) translateY(-18px) rotate(288deg); }
    100% { transform: translateX(0) translateY(0) rotate(360deg); }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    text-align: left;
}

.about-text h2::after {
    margin: 1rem 0;
}

.about-features {
    margin: 2rem 0;
}

.about-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.about-features i {
    color: var(--accent);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="3" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="2" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="2" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="2" fill="white" opacity="0.1"/><circle cx="30" cy="90" r="2.5" fill="white" opacity="0.1"/><circle cx="70" cy="30" r="2.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
    animation: ctaPatternMove 40s linear infinite;
    z-index: 1;
}

@keyframes ctaPatternMove {
    0% { transform: translateX(0) translateY(0) scale(1); }
    16% { transform: translateX(-8px) translateY(-4px) scale(1.02); }
    32% { transform: translateX(-4px) translateY(-8px) scale(1.04); }
    48% { transform: translateX(-12px) translateY(-2px) scale(1.02); }
    64% { transform: translateX(-2px) translateY(-12px) scale(1.06); }
    80% { transform: translateX(-10px) translateY(-6px) scale(1.03); }
    100% { transform: translateX(0) translateY(0) scale(1); }
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

/* Blog Preview Section */
.blog-preview {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    position: relative;
    overflow: hidden;
}

.blog-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="blog-preview-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><rect x="15" y="15" width="10" height="10" fill="white" opacity="0.08" rx="2"/><rect x="75" y="75" width="10" height="10" fill="white" opacity="0.08" rx="2"/><rect x="45" y="25" width="8" height="8" fill="white" opacity="0.08" rx="1"/><rect x="25" y="65" width="8" height="8" fill="white" opacity="0.08" rx="1"/><rect x="85" y="35" width="6" height="6" fill="white" opacity="0.08" rx="1"/><rect x="35" y="85" width="6" height="6" fill="white" opacity="0.08" rx="1"/></pattern></defs><rect width="100" height="100" fill="url(%23blog-preview-pattern)"/></svg>');
    opacity: 0.4;
    animation: blogPreviewPatternMove 45s linear infinite;
    z-index: 1;
}

@keyframes blogPreviewPatternMove {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    14% { transform: translateX(-6px) translateY(-3px) rotate(50deg); }
    28% { transform: translateX(-3px) translateY(-6px) rotate(100deg); }
    42% { transform: translateX(-9px) translateY(-1px) rotate(150deg); }
    56% { transform: translateX(-1px) translateY(-9px) rotate(200deg); }
    70% { transform: translateX(-7px) translateY(-4px) rotate(250deg); }
    84% { transform: translateX(-4px) translateY(-7px) rotate(300deg); }
    100% { transform: translateX(0) translateY(0) rotate(360deg); }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M10,10 L20,10 L20,20 L10,20 Z" fill="white" opacity="0.05"/><path d="M80,80 L90,80 L90,90 L80,90 Z" fill="white" opacity="0.05"/><path d="M45,25 L55,25 L55,35 L45,35 Z" fill="white" opacity="0.05"/><path d="M25,65 L35,65 L35,75 L25,75 Z" fill="white" opacity="0.05"/><path d="M85,35 L95,35 L95,45 L85,45 Z" fill="white" opacity="0.05"/><path d="M35,85 L45,85 L45,95 L35,95 Z" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.3;
    animation: contactPatternMove 50s linear infinite;
    z-index: 1;
}

@keyframes contactPatternMove {
    0% { transform: translateX(0) translateY(0) scale(1); }
    12% { transform: translateX(-5px) translateY(-2px) scale(1.01); }
    24% { transform: translateX(-2px) translateY(-5px) scale(1.02); }
    36% { transform: translateX(-8px) translateY(-1px) scale(1.01); }
    48% { transform: translateX(-1px) translateY(-8px) scale(1.03); }
    60% { transform: translateX(-6px) translateY(-3px) scale(1.02); }
    72% { transform: translateX(-3px) translateY(-6px) scale(1.01); }
    84% { transform: translateX(-9px) translateY(-2px) scale(1.03); }
    100% { transform: translateX(0) translateY(0) scale(1); }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-form {
    background-color: var(--bg-accent);
    padding: 2rem;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    padding: 1rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.contact-social {
    margin-top: 3rem;
}

.contact-social h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--white);
}

/* Live Chat */
.live-chat {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.chat-btn {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    border: none;
    padding: 15px 18px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s ease-in-out;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-btn:hover {
    transform: scale(1.1);
    background-color: #20b954;
}
.chat-btn i {
    margin: 0;
    padding: 0;
    font-size: 24px;}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .title-highlight {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image img {
        width: 300px;
    }
    
    .image-glow {
        width: 350px;
        height: 350px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .floating-cards {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .navbar-toggle {
        display: block;
    }
    
    .hero {
        min-height: 600px;
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .title-highlight {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-glow, .btn-outline-glow {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-image img {
        width: 250px;
    }
    
    .image-glow {
        width: 280px;
        height: 280px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .title-highlight {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-stats {
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-image img {
        width: 200px;
    }
    
    .image-glow {
        width: 220px;
        height: 220px;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-bottom ul {
        margin-top: 1rem;
    }
}
.packages-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* === Package Grid === */
.packages-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}


/* Tablet (2 columns) */
@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (1 column) */
@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* === Package Card === */
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.package-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.package-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.plan-discount {
  background: #f9f9f9;
  border: 1px dashed var(--accent);
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1.5rem;
  color: #444;
}


.plan-discount strong {
  color: var(--accent);
}

.package-card.popular {
  border: 2px solid var(--accent);
  transform: scale(1.05);
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}



.features {
  margin-bottom: 2rem;
  text-align: left;
}

.features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.features li i {
  color: var(--accent);
  margin-right: 0.6rem;
}

.package-card a {
  display: inline-block;
  margin-top: auto;
  width: 100%;
  max-width: 200px;
}
.package-card a.btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}

.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.benefit-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.why-details h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.why-details p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.services-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-accent);
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-accent);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}
/* Hero Button Styling */
.page-hero .btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
    transition: all 0.3s ease;
}

.page-hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 8rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,15 15,25 5,15" fill="white" opacity="0.08"/><circle cx="15" cy="15" r="2" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    animation: aboutPatternMove 25s linear infinite;
}

@keyframes aboutPatternMove {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    100% { transform: translateX(-30px) translateY(-30px) rotate(360deg); }
}

.about-hero .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.about-hero .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #FFD700, #FF6B6B, #4ECDC4);
    border-radius: 50%;
    animation: aboutFloat 10s ease-in-out infinite;
    will-change: transform;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.about-hero .particle:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 12s; }
.about-hero .particle:nth-child(2) { left: 15%; animation-delay: 1.5s; animation-duration: 8s; }
.about-hero .particle:nth-child(3) { left: 25%; animation-delay: 3s; animation-duration: 10s; }
.about-hero .particle:nth-child(4) { left: 35%; animation-delay: 4.5s; animation-duration: 9s; }
.about-hero .particle:nth-child(5) { left: 45%; animation-delay: 6s; animation-duration: 11s; }
.about-hero .particle:nth-child(6) { left: 55%; animation-delay: 7.5s; animation-duration: 7s; }
.about-hero .particle:nth-child(7) { left: 65%; animation-delay: 9s; animation-duration: 13s; }
.about-hero .particle:nth-child(8) { left: 75%; animation-delay: 10.5s; animation-duration: 8s; }
.about-hero .particle:nth-child(9) { left: 85%; animation-delay: 12s; animation-duration: 10s; }
.about-hero .particle:nth-child(10) { left: 95%; animation-delay: 13.5s; animation-duration: 9s; }

@keyframes aboutFloat {
    0%, 100% { transform: translateY(100vh) rotate(0deg) scale(1); opacity: 0; }
    15% { opacity: 1; }
    50% { transform: translateY(40vh) rotate(180deg) scale(2); opacity: 0.9; }
    85% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg) scale(1); opacity: 0; }
}

.about-hero .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.about-hero .floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #4ECDC4;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(78, 205, 196, 0.4);
    animation: aboutFloatIcon 15s ease-in-out infinite;
    will-change: transform;
    box-shadow: 0 12px 40px rgba(78, 205, 196, 0.3);
}

.about-hero .floating-icon:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.about-hero .floating-icon:nth-child(2) { top: 25%; right: 12%; animation-delay: 3s; }
.about-hero .floating-icon:nth-child(3) { top: 55%; left: 3%; animation-delay: 6s; }
.about-hero .floating-icon:nth-child(4) { top: 65%; right: 8%; animation-delay: 9s; }

@keyframes aboutFloatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    20% { transform: translateY(-30px) rotate(45deg) scale(1.2); }
    40% { transform: translateY(-20px) rotate(90deg) scale(0.8); }
    60% { transform: translateY(-35px) rotate(135deg) scale(1.3); }
    80% { transform: translateY(-10px) rotate(270deg) scale(0.9); }
}

.about-hero .title-highlight {
    background: linear-gradient(45deg, #FFD700, #4ECDC4, #FF6B6B, #A8E6CF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: aboutGlow 4s ease-in-out infinite alternate;
    will-change: text-shadow;
}

@keyframes aboutGlow {
    from { text-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 60px rgba(255, 215, 0, 0.8), 0 0 80px rgba(78, 205, 196, 0.5), 0 0 100px rgba(255, 107, 107, 0.3); }
}

.about-hero .floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(78, 205, 196, 0.4);
    border-radius: 25px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    animation: aboutFloatCard 18s ease-in-out infinite;
    will-change: transform;
}

@keyframes aboutFloatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-25px) rotate(5deg) scale(1.1); }
    50% { transform: translateY(-15px) rotate(-3deg) scale(0.9); }
    75% { transform: translateY(-30px) rotate(8deg) scale(1.15); }
}

.about-hero .container {
    position: relative;
    z-index: 3;
}

.about-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: var(--white);
}

.about-hero .hero-badge {
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease 0.5s both;
    will-change: transform, opacity;
}

.about-hero .badge-text {
    background: linear-gradient(45deg, #FF6F61, #FF8E53);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.3);
    animation: pulse 2s infinite;
    will-change: transform;
}

.about-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease 0.7s both;
    will-change: transform, opacity;
}

.about-hero .title-line {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    animation: slideInLeft 1s ease 0.9s both;
    will-change: transform, opacity;
}

.about-hero .highlight {
    color: #4ECDC4;
    font-weight: 600;
}

.about-hero .typing-text::after {
    content: '|';
    animation: blink 1s infinite;
}

.about-hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: slideInLeft 1s ease 1.1s both;
    will-change: transform, opacity;
}

.about-hero .stat-item {
    text-align: center;
}

.about-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #4ECDC4;
    margin-bottom: 0.5rem;
    will-change: transform;
}

.about-hero .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.about-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 1s ease 1.3s both;
    will-change: transform, opacity;
}

.about-hero .btn-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

.about-hero .btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-hero .btn-glow:hover::before {
    left: 100%;
}

.about-hero .btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.6);
}

.about-hero .btn-outline-glow {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow, background;
}

.about-hero .btn-outline-glow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.about-hero .btn-glow i, .about-hero .btn-outline-glow i {
    margin-left: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.about-hero .btn-glow:hover i, .about-hero .btn-outline-glow:hover i {
    transform: translateX(5px);
}

.about-hero .hero-visual {
    position: relative;
    animation: slideInRight 1s ease 0.5s both;
    will-change: transform, opacity;
}

.about-hero .hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero .hero-image {
    position: relative;
    z-index: 2;
}

.about-hero .hero-image img {
    width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatImage 6s ease-in-out infinite;
    will-change: transform;
}

.about-hero .image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 1;
    will-change: transform, opacity;
}

.about-hero .floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.about-hero .floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: floatCard 8s ease-in-out infinite;
    will-change: transform;
}

.about-hero .floating-card i {
    color: #4ECDC4;
    font-size: 1.2rem;
}

.about-hero .card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.about-hero .card-2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.about-hero .card-3 {
    bottom: 20%;
    right: 5%;
    animation-delay: 4s;
}

.about-hero .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 3;
    animation: fadeInUp 1s ease 1.5s both;
    will-change: transform, opacity;
}

.about-hero .scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.about-hero .scroll-arrow {
    animation: bounce 2s infinite;
    will-change: transform;
}

.about-hero .scroll-arrow i {
    font-size: 1.5rem;
    color: #4ECDC4;
}

/* History Section */
.history-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.history-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.history-image {
    position: relative;
}

.history-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.milestones {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.milestone {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.milestone:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.milestone .year {
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1rem;
    min-width: 60px;
    text-align: center;
}

.milestone .event {
    color: var(--text);
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background-color: var(--bg-accent);
}

.mission-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.mission-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.team-section .subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--secondary);
}

.team-member .position {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-member .bio {
    color: var(--text-light);
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
}

.team-member .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.team-member .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.team-member .social-links a:hover {
    background: var(--accent);
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 4rem 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-button .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-button .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 3rem;
    }
    
    .history-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .milestones {
        position: static;
        transform: none;
        margin-top: 2rem;
        right: auto;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 4rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .history-text h2,
    .mission-section h2,
    .team-section h2,
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .history-text p,
    .mission-content p {
        font-size: 1rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .team-member .bio {
        padding: 0 1rem 1rem;
    }
    
    .team-member .social-links {
        padding: 0 1rem 1rem;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
}


/* About Page Hero Section - Unique Design */
.about-hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 60%, #f5576c 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,15 15,25 5,15" fill="white" opacity="0.08"/><circle cx="15" cy="15" r="2" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    animation: aboutPatternMove 25s linear infinite;
}

@keyframes aboutPatternMove {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    100% { transform: translateX(-30px) translateY(-30px) rotate(360deg); }
}

.about-hero .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.about-hero .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #FFD700, #FF6B6B, #4ECDC4);
    border-radius: 50%;
    animation: aboutFloat 10s ease-in-out infinite;
    will-change: transform;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.about-hero .particle:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 12s; }
.about-hero .particle:nth-child(2) { left: 15%; animation-delay: 1.5s; animation-duration: 8s; }
.about-hero .particle:nth-child(3) { left: 25%; animation-delay: 3s; animation-duration: 10s; }
.about-hero .particle:nth-child(4) { left: 35%; animation-delay: 4.5s; animation-duration: 9s; }
.about-hero .particle:nth-child(5) { left: 45%; animation-delay: 6s; animation-duration: 11s; }
.about-hero .particle:nth-child(6) { left: 55%; animation-delay: 7.5s; animation-duration: 7s; }
.about-hero .particle:nth-child(7) { left: 65%; animation-delay: 9s; animation-duration: 13s; }
.about-hero .particle:nth-child(8) { left: 75%; animation-delay: 10.5s; animation-duration: 8s; }
.about-hero .particle:nth-child(9) { left: 85%; animation-delay: 12s; animation-duration: 10s; }
.about-hero .particle:nth-child(10) { left: 95%; animation-delay: 13.5s; animation-duration: 9s; }

@keyframes aboutFloat {
    0%, 100% { transform: translateY(100vh) rotate(0deg) scale(1); opacity: 0; }
    15% { opacity: 1; }
    50% { transform: translateY(40vh) rotate(180deg) scale(2); opacity: 0.9; }
    85% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg) scale(1); opacity: 0; }
}

.about-hero .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.about-hero .floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #4ECDC4;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(78, 205, 196, 0.4);
    animation: aboutFloatIcon 15s ease-in-out infinite;
    will-change: transform;
    box-shadow: 0 12px 40px rgba(78, 205, 196, 0.3);
}

.about-hero .floating-icon:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.about-hero .floating-icon:nth-child(2) { top: 25%; right: 12%; animation-delay: 3s; }
.about-hero .floating-icon:nth-child(3) { top: 55%; left: 3%; animation-delay: 6s; }
.about-hero .floating-icon:nth-child(4) { top: 65%; right: 8%; animation-delay: 9s; }

@keyframes aboutFloatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    20% { transform: translateY(-30px) rotate(45deg) scale(1.2); }
    40% { transform: translateY(-20px) rotate(90deg) scale(0.8); }
    60% { transform: translateY(-35px) rotate(135deg) scale(1.3); }
    80% { transform: translateY(-10px) rotate(270deg) scale(0.9); }
}

.about-hero .title-highlight {
    background: linear-gradient(45deg, #FFD700, #4ECDC4, #FF6B6B, #A8E6CF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: aboutGlow 4s ease-in-out infinite alternate;
    will-change: text-shadow;
}

@keyframes aboutGlow {
    from { text-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 60px rgba(255, 215, 0, 0.8), 0 0 80px rgba(78, 205, 196, 0.5), 0 0 100px rgba(255, 107, 107, 0.3); }
}

.about-hero .floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(78, 205, 196, 0.4);
    border-radius: 25px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    animation: aboutFloatCard 18s ease-in-out infinite;
    will-change: transform;
}

@keyframes aboutFloatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-25px) rotate(5deg) scale(1.1); }
    50% { transform: translateY(-15px) rotate(-3deg) scale(0.9); }
    75% { transform: translateY(-30px) rotate(8deg) scale(1.15); }
}

.about-hero .container {
    position: relative;
    z-index: 3;
}

.about-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: var(--white);
}

.about-hero .hero-badge {
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease 0.5s both;
    will-change: transform, opacity;
}

.about-hero .badge-text {
    background: linear-gradient(45deg, #FF6F61, #FF8E53);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.3);
    animation: pulse 2s infinite;
    will-change: transform;
}

.about-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease 0.7s both;
    will-change: transform, opacity;
}

.about-hero .title-line {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    animation: slideInLeft 1s ease 0.9s both;
    will-change: transform, opacity;
}

.about-hero .highlight {
    color: #4ECDC4;
    font-weight: 600;
}

.about-hero .typing-text::after {
    content: '|';
    animation: blink 1s infinite;
}

.about-hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: slideInLeft 1s ease 1.1s both;
    will-change: transform, opacity;
}

.about-hero .stat-item {
    text-align: center;
}

.about-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #4ECDC4;
    margin-bottom: 0.5rem;
    will-change: transform;
}

.about-hero .stat-label {
    font-size: 0.9rem;
    color: rgba(10, 10, 10, 0.8);
    font-weight: 500;
}

.about-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 1s ease 1.3s both;
    will-change: transform, opacity;
}

.about-hero .btn-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

.about-hero .btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-hero .btn-glow:hover::before {
    left: 100%;
}

.about-hero .btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.6);
}

.about-hero .btn-outline-glow {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow, background;
}

.about-hero .btn-outline-glow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.about-hero .btn-glow i, .about-hero .btn-outline-glow i {
    margin-left: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.about-hero .btn-glow:hover i, .about-hero .btn-outline-glow:hover i {
    transform: translateX(5px);
}

.about-hero .hero-visual {
    position: relative;
    animation: slideInRight 1s ease 0.5s both;
    will-change: transform, opacity;
}

.about-hero .hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero .hero-image {
    position: relative;
    z-index: 2;
}

.about-hero .hero-image img {
    width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatImage 6s ease-in-out infinite;
    will-change: transform;
}

.about-hero .image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 1;
    will-change: transform, opacity;
}

.about-hero .floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.about-hero .floating-card i {
    color: #4ECDC4;
    font-size: 1.2rem;
}

.about-hero .card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.about-hero .card-2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.about-hero .card-3 {
    bottom: 20%;
    right: 5%;
    animation-delay: 4s;
}

.about-hero .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 3;
    animation: fadeInUp 1s ease 1.5s both;
    will-change: transform, opacity;
}

.about-hero .scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.about-hero .scroll-arrow {
    animation: bounce 2s infinite;
    will-change: transform;
}

.about-hero .scroll-arrow i {
    font-size: 1.5rem;
    color: #4ECDC4;
}