/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --accent-color: #FF5733;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --section-padding: 5rem 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 400;
}

/* Apply Poppins to all text elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

p, span, div, a, button, input, textarea, select {
    font-family: 'Poppins', sans-serif;
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.navbar-brand, .nav-link {
    font-family: 'Poppins', sans-serif;
}

/* Header Styles */
.navbar {
    transition: all 0.3s ease;
    padding: 1.2rem 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.98) 30%, rgba(200, 230, 201, 0.98));
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.98), rgba(200, 230, 201, 0.98));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    transition: all 0.3s ease;
    height: 55px;
    /* filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)); */
}

.navbar.scrolled .navbar-brand img {
    height: 45px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    margin: 0 0.3rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(76, 175, 80, 0.1);
}

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

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

/* Hero Section */
.hero {
    padding: var(--section-padding);
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(200, 230, 201, 0.95)); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(../images/hero-bg.jpg);
    background-size: cover;
}

/* Modern Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(76, 175, 80, 0.05) 0%,
        rgba(255, 87, 51, 0.03) 50%,
        rgba(59, 130, 246, 0.05) 100%);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.hero-content:hover {
    transform: translateY(-5px);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-content:hover::before {
    opacity: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
    }
}

/* Hero Title Enhancement */
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    animation: underlineGrow 2s ease-out;
}

@keyframes underlineGrow {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 2.5rem;
    position: relative;
}

.hero-description::before {
    content: '"';
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 120px;
}

.hero-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-btn-primary {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
    color: white;
}

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

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

/* Play Button */
.hero-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin-left: 1rem;
}

.hero-play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.3);
}

.hero-play-btn i {
    font-size: 1.2rem;
    margin-left: 2px;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Responsive Design */
@media (max-width: 1199.98px) {
    .hero-content {
        padding: 2.5rem 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero-content {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .hero-content {
        padding: 1.5rem 1rem;
        text-align: center;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .hero-stat {
        min-width: 100px;
        padding: 0.75rem;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .hero-play-btn {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

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

.hero-image img {
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: translateY(-10px);
}

.image-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20px;
    right: -20px;
    z-index: 1;
    opacity: 0.1;
}

/* Modern Services Section */
#services {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
    z-index: 0;
}

#services .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
#services .text-center h6 {
    color: rgba(76, 175, 80, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

#services .text-center h2 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#services .text-center .lead {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Modern Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    cursor: pointer;
    min-height: 450px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(76, 175, 80, 0.1) 0%,
        rgba(59, 130, 246, 0.05) 50%,
        rgba(168, 85, 247, 0.03) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6, #a855f7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 15px 40px rgba(76, 175, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.service-card:hover::after {
    transform: scaleX(1);
}

/* Service Icons */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow:
        0 10px 30px rgba(76, 175, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6, #a855f7);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 15px 40px rgba(76, 175, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

/* Service Content */
.service-content {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: rgba(36, 36, 36, 0.8);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.service-card:hover .service-features li {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
}

.service-card:hover .service-features li::before {
    color: #3b82f6;
    transform: scale(1.2);
}

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

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(59, 130, 246, 0.05));
    animation: floatShape 15s ease-in-out infinite;
}

.floating-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
}

.floating-shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Particle Effects */
.services-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(76, 175, 80, 0.6);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.particle:nth-child(2n) {
    background: rgba(59, 130, 246, 0.6);
    animation-duration: 25s;
}

.particle:nth-child(3n) {
    background: rgba(168, 85, 247, 0.6);
    animation-duration: 30s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Responsive Design for Services */
@media (max-width: 1199.98px) {
    .service-card {
        padding: 2.5rem 2rem;
        min-height: 420px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 991.98px) {
    #services {
        padding: 4rem 0;
    }

    .service-card {
        margin-bottom: 2rem;
        min-height: 400px;
    }

    .floating-shape-1,
    .floating-shape-2,
    .floating-shape-3 {
        display: none;
    }

    .services-particles {
        display: none;
    }
}

@media (max-width: 767.98px) {
    #services {
        padding: 3rem 0;
    }

    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        min-height: auto;
    }

    .service-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }

    .service-icon i {
        font-size: 1.3rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 87, 51, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
}

.breadcrumb-item {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
}

.page-title {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.content-section {
    background: #f8fafc;
    min-height: 60vh;
}

.content-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.welcome-text h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #2d3748;
}

.welcome-text .lead {
    font-family: 'Poppins', sans-serif;
    color: #718096;
    font-size: 1.2rem;
    line-height: 1.7;
}

.terms-section {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin-left: 1rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2d3748;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.terms-section p {
    font-family: 'Poppins', sans-serif;
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.policy-list {
    list-style: none;
    padding-left: 0;
}

.policy-list li {
    font-family: 'Poppins', sans-serif;
    color: #4a5568;
    line-height: 1.7;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.policy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive Design for Content Pages */
@media (max-width: 991.98px) {
    .page-title {
        font-size: 2.5rem;
    }

    .content-wrapper {
        padding: 2rem;
    }

    .breadcrumb-section {
        padding: 5rem 0 3rem;
    }
}

@media (max-width: 767.98px) {
    .page-title {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 1.5rem;
    }

    .breadcrumb-section {
        padding: 4rem 0 2rem;
    }

    .terms-section {
        margin-left: 0;
        padding-left: 1rem;
    }
}

.icon-float:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.icon-float:nth-child(2) { top: 25%; right: 15%; animation-delay: -3s; }
.icon-float:nth-child(3) { bottom: 20%; left: 15%; animation-delay: -6s; }
.icon-float:nth-child(4) { bottom: 30%; right: 10%; animation-delay: -9s; }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes floatIcon {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(10px, 10px) rotate(90deg) scale(1.2);
    }
    50% {
        transform: translate(0, 20px) rotate(180deg) scale(1);
    }
    75% {
        transform: translate(-10px, 10px) rotate(270deg) scale(1.2);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

.service-card {
    background: var(--bs-white);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.service-card:hover *,
.service-card.active * {
    color: var(--bs-white) !important;
    border-color: var(--bs-white) !important;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--bs-success) 0%, rgba(var(--bs-success-rgb), 0.7) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.service-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.service-features {
    text-align: left;
}

.service-card h3,
.service-card p,
.service-features .feature-item {
    color: #fff;
}

.service-features .feature-item {
    margin-bottom: 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

.service-features .feature-item i {
    color: var(--bs-success);
}

.service-card .btn-outline-success {
    color: var(--bs-success);
    border-color: var(--bs-success);
    transition: all 0.3s ease;
}

.service-card .btn-outline-success:hover {
    background: var(--bs-success);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--bs-success-rgb), 0.3);
}

.service-cta {
    background: linear-gradient(135deg, rgba(var(--bs-success-rgb), 0.95) 0%, rgba(var(--bs-success-rgb), 0.8) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.service-cta::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"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
}

@media (max-width: 991.98px) {
    .icon-float {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .icon-float {
        font-size: 1.25rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .hero {
        text-align: center;
    }

    .hero img {
        margin-top: 2rem;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Modern About Section - Agency Style */
#about {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 87, 51, 0.03) 0%, transparent 50%);
    z-index: 0;
}

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

.about-floating-shape {
    position: absolute;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 50%;
    animation: gentleFloat 8s ease-in-out infinite;
}

.about-floating-shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.about-floating-shape-2 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.about-floating-shape-3 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px);
        opacity: 0.6;
    }
}

/* Agency Style Image Wrapper */
.about-image-wrapper {
    position: relative;
    z-index: 2;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

/* Video Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 87, 51, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(255, 87, 51, 0.3);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 87, 51, 1);
    box-shadow: 0 15px 40px rgba(255, 87, 51, 0.4);
}

.video-play-btn i {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}

/* Trendy Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    z-index: 4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.experience-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(76, 175, 80, 0.2),
        rgba(59, 130, 246, 0.2),
        rgba(168, 85, 247, 0.2));
    border-radius: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.experience-badge:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 15px 40px rgba(76, 175, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.experience-badge:hover::before {
    opacity: 1;
}

.experience-badge .h2 {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.experience-badge .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trendy About Content */
.about-content {
    position: relative;
    z-index: 3;
    padding: 2rem 0;
}

.about-content h6 {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    font-size: 0.9rem;
    display: inline-block;
}

.about-content h2 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-size: 2.8rem;
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content p {
    color: #718096;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: left;
}

/* Agency Feature Cards */
.feature-cards {
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    margin-bottom: 2rem;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #2d3748, #4a5568);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
}

.feature-card h5 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Stats Container */
.stats-container {
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(76, 175, 80, 0.1),
        rgba(59, 130, 246, 0.1),
        rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6, #a855f7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 15px 40px rgba(76, 175, 80, 0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover::after {
    transform: scaleX(1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow:
        0 15px 40px rgba(76, 175, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6, #a855f7);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow:
        0 20px 50px rgba(76, 175, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-card:hover .stat-icon::before {
    opacity: 1;
}

.stat-icon i {
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-icon i {
    transform: scale(1.1);
}

.stat-card h3 {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-card:hover h3 {
    transform: translateY(-2px);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.stat-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-card:hover p {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Trendy About Section Responsive Design */
@media (max-width: 1199.98px) {
    .about-image-wrapper img {
        height: 450px;
    }

    .experience-badge {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 1.5rem 1.25rem;
        min-width: 120px;
    }

    .experience-badge .h2 {
        font-size: 2.5rem;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
    }

    .stat-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 991.98px) {
    #about {
        padding: 5rem 0;
    }

    .about-image-wrapper {
        margin-bottom: 4rem;
    }

    .about-image-wrapper img {
        height: 400px;
    }

    .experience-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 1.25rem 1rem;
    }

    .experience-badge .h2 {
        font-size: 2rem;
    }

    .about-floating-shape-1,
    .about-floating-shape-2,
    .about-floating-shape-3 {
        display: none;
    }

    .stats-container {
        margin-top: 3rem;
    }

    .stat-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    #about {
        padding: 4rem 0;
    }

    .about-image-wrapper {
        margin-bottom: 3rem;
    }

    .about-image-wrapper img {
        height: 350px;
    }

    .experience-badge {
        position: static;
        margin: 2rem auto 0;
        display: inline-block;
    }

    .about-content {
        text-align: center;
        padding: 1rem 0;
    }

    .about-content h6::before {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .about-content h6::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.25rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 1.5rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    #about {
        padding: 3rem 0;
    }

    .about-image-wrapper img {
        height: 280px;
    }

    .experience-badge {
        padding: 1rem 0.75rem;
        min-width: 100px;
    }

    .experience-badge .h2 {
        font-size: 1.75rem;
    }

    .experience-badge .text-muted {
        font-size: 0.8rem;
    }

    .about-content h2 {
        font-size: 1.75rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .stat-card {
        padding: 1.75rem 1.25rem;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
    }

    .stat-icon i {
        font-size: 1.3rem;
    }

    .stat-card h3 {
        font-size: 1.75rem;
    }

    .stat-card p {
        font-size: 0.9rem;
    }
}

/* How It Works Section - Modern Redesign */
#how-it-works {
    position: relative;
    background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 100%);
    padding: 5rem 0;
    overflow: hidden;
}

#how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(76, 175, 80, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(76, 175, 80, 0.03) 0%, transparent 40%);
    z-index: 0;
}

/* Modern Process Connection Line */
.process-line {
    position: absolute;
    top: 50%;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        rgba(76, 175, 80, 0.6) 50%,
        rgba(76, 175, 80, 0.3) 100%);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 1px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    display: none;
}

.process-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

/* Modern Process Cards */
.process-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), rgba(76, 175, 80, 0.6));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.process-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.2);
}

.process-card:hover::before {
    transform: scaleX(1);
}

/* Modern Process Icons */
.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #45a049 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 25px rgba(76, 175, 80, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.process-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 20px;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-card:hover .process-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 12px 35px rgba(76, 175, 80, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.process-card:hover .process-icon::before {
    opacity: 1;
}

.process-card:hover .process-icon i {
    transform: scale(1.1);
}

/* Modern Process Numbers */
.process-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
    z-index: 3;
}

.process-card:hover .process-number {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
    border-color: white;
    box-shadow:
        0 6px 20px rgba(76, 175, 80, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Modern Typography */
.process-card h3 {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    transition: all 0.3s ease;
}

.process-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.process-card:hover h3 {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.process-card:hover p {
    color: #4b5563;
}

/* Subtle Connection Indicators */
.process-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.3), transparent);
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
}

.process-card:nth-child(4)::after {
    display: none;
}

.process-card:hover::after {
    opacity: 1;
    right: -25px;
    width: 50px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    #how-it-works {
        padding: 4rem 0;
    }

    .process-line {
        display: none;
    }

    .process-card::after {
        display: none;
    }

    .process-card {
        margin-bottom: 2rem;
    }

    .process-icon {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }

    .process-icon i {
        font-size: 1.75rem;
    }

    .process-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        top: -10px;
        right: -10px;
    }
}

@media (max-width: 767.98px) {
    #how-it-works {
        padding: 3rem 0;
    }

    .process-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }

    .process-icon {
        width: 64px;
        height: 64px;
        border-radius: 14px;
        margin-bottom: 1.25rem;
    }

    .process-icon i {
        font-size: 1.5rem;
    }

    .process-number {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
        top: -8px;
        right: -8px;
    }

    .process-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .process-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .process-card {
        padding: 1.75rem 1.25rem;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }

    .process-icon i {
        font-size: 1.4rem;
    }

    .process-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
        top: -6px;
        right: -6px;
    }
}

.experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
}

.stat-card {
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
}

@media (max-width: 991.98px) {
    .about-shape {
        width: 50%;
    }
    
    .experience-badge {
        bottom: -1rem;
        right: -1rem;
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .about-shape {
        display: none;
    }
    
    .stats-container {
        margin-top: 3rem;
    }
}

/* Services Section Styles */
.services-shape-1,
.services-shape-2 {
    position: absolute;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.services-shape-1 {
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    animation: morphShape 15s linear infinite alternate;
}

.services-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    animation: morphShape 20s linear infinite alternate;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.service-card:hover,
.service-card.active {
    transform: translateY(-10px);
}

.service-card:hover::before,
.service-card.active::before {
    opacity: 1;
}

.service-card:hover *,
.service-card.active * {
    color: var(--bs-white) !important;
    border-color: var(--bs-white) !important;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--bs-success);
    transition: all 0.3s ease;
}

.service-cta {
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    position: relative;
    overflow: hidden;
}

.service-cta::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"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
}

@media (max-width: 991.98px) {
    .services-shape-1,
    .services-shape-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .services-shape-1,
    .services-shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .hero {
        text-align: center;
    }

    .hero img {
        margin-top: 2rem;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* About Section Styles */
.about-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0.05;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.about-image-wrapper {
    position: relative;
    padding: 1rem;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--bs-success);
    border-radius: 1rem;
    z-index: 0;
}

.about-image-wrapper img {
    position: relative;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
}

.stat-card {
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
}

@media (max-width: 991.98px) {
    .about-shape {
        width: 50%;
    }
    
    .experience-badge {
        bottom: -1rem;
        right: -1rem;
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .about-shape {
        display: none;
    }
    
    .stats-container {
        margin-top: 3rem;
    }
}

/* Services Section Styles */
.services-shape-1,
.services-shape-2 {
    position: absolute;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.services-shape-1 {
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    animation: morphShape 15s linear infinite alternate;
}

.services-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    animation: morphShape 20s linear infinite alternate;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--bs-success-rgb), 0.1) 0%, transparent 100%);
    z-index: 0;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(var(--bs-success-rgb), 0.3);
}

.service-card:hover::before {
    background: linear-gradient(135deg, rgba(var(--bs-success-rgb), 0.2) 0%, transparent 100%);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    color: var(--bs-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--bs-success);
    border-radius: 2px;
}

.service-card p {
    color: var(--bs-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features .feature-item {
    color: var(--bs-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.service-features .feature-item i {
    color: var(--bs-success);
    margin-right: 0.75rem;
    font-size: 1rem;
    background: rgba(var(--bs-success-rgb), 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--bs-success);
    transition: all 0.3s ease;
}

.service-cta {
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    position: relative;
    overflow: hidden;
}

.service-cta::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"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
}

@media (max-width: 991.98px) {
    .services-shape-1,
    .services-shape-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .services-shape-1,
    .services-shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .hero {
        text-align: center;
    }

    .hero img {
        margin-top: 2rem;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* About Section Styles */
.about-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0.05;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.about-image-wrapper {
    position: relative;
    padding: 1rem;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--bs-success);
    border-radius: 1rem;
    z-index: 0;
}

.about-image-wrapper img {
    position: relative;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
}

.stat-card {
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
}

@media (max-width: 991.98px) {
    .about-shape {
        width: 50%;
    }
    
    .experience-badge {
        bottom: -1rem;
        right: -1rem;
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .about-shape {
        display: none;
    }
    
    .stats-container {
        margin-top: 3rem;
    }
}

/* Services Section Styles */
.services-shape-1,
.services-shape-2 {
    position: absolute;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.services-shape-1 {
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    animation: morphShape 15s linear infinite alternate;
}

.services-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    animation: morphShape 20s linear infinite alternate;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.service-card {
    background: var(--bs-white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.service-card:hover,
.service-card.active {
    transform: translateY(-10px);
}

.service-card:hover::before,
.service-card.active::before {
    opacity: 1;
}

.service-card:hover *,
.service-card.active * {
    color: var(--bs-white) !important;
    border-color: var(--bs-white) !important;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--bs-success);
    transition: all 0.3s ease;
}

.service-cta {
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    position: relative;
    overflow: hidden;
}

.service-cta::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"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
}

@media (max-width: 991.98px) {
    .services-shape-1,
    .services-shape-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .services-shape-1,
    .services-shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .hero {
        text-align: center;
    }

    .hero img {
        margin-top: 2rem;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* About Section Styles */
.about-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0.05;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.about-image-wrapper {
    position: relative;
    padding: 1rem;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--bs-success);
    border-radius: 1rem;
    z-index: 0;
}

.about-image-wrapper img {
    position: relative;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
}

.stat-card {
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
}

@media (max-width: 991.98px) {
    .about-shape {
        width: 50%;
    }
    
    .experience-badge {
        bottom: -1rem;
        right: -1rem;
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .about-shape {
        display: none;
    }
    
    .stats-container {
        margin-top: 3rem;
    }
}

/* Services Section Styles */
.services-shape-1,
.services-shape-2 {
    position: absolute;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.services-shape-1 {
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    animation: morphShape 15s linear infinite alternate;
}

.services-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    animation: morphShape 20s linear infinite alternate;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.service-card {
    background: var(--bs-white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.service-card:hover,
.service-card.active {
    transform: translateY(-10px);
}

.service-card:hover::before,
.service-card.active::before {
    opacity: 1;
}

.service-card:hover *,
.service-card.active * {
    color: var(--bs-white) !important;
    border-color: var(--bs-white) !important;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--bs-success);
    transition: all 0.3s ease;
}

.service-cta {
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    position: relative;
    overflow: hidden;
}

.service-cta::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"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
}

@media (max-width: 991.98px) {
    .services-shape-1,
    .services-shape-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .services-shape-1,
    .services-shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .hero {
        text-align: center;
    }

    .hero img {
        margin-top: 2rem;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* About Section Styles */
.about-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0.05;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.about-image-wrapper {
    position: relative;
    padding: 1rem;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--bs-success);
    border-radius: 1rem;
    z-index: 0;
}

.about-image-wrapper img {
    position: relative;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
}

.stat-card {
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
}

@media (max-width: 991.98px) {
    .about-shape {
        width: 50%;
    }
    
    .experience-badge {
        bottom: -1rem;
        right: -1rem;
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .about-shape {
        display: none;
    }
    
    .stats-container {
        margin-top: 3rem;
    }
}

/* Services Section Styles */
.services-shape-1,
.services-shape-2 {
    position: absolute;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.services-shape-1 {
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    animation: morphShape 15s linear infinite alternate;
}

.services-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    animation: morphShape 20s linear infinite alternate;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.service-card {
    background: var(--bs-white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.service-card:hover,
.service-card.active {
    transform: translateY(-10px);
}

.service-card:hover::before,
.service-card.active::before {
    opacity: 1;
}

.service-card:hover *,
.service-card.active * {
    color: var(--bs-white) !important;
    border-color: var(--bs-white) !important;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--bs-success);
    transition: all 0.3s ease;
}

.service-cta {
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    position: relative;
    overflow: hidden;
}

.service-cta::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"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
}

@media (max-width: 991.98px) {
    .services-shape-1,
    .services-shape-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .services-shape-1,
    .services-shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .hero {
        text-align: center;
    }

    .hero img {
        margin-top: 2rem;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* About Section Styles */
.about-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0.05;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.about-image-wrapper {
    position: relative;
    padding: 1rem;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--bs-success);
    border-radius: 1rem;
    z-index: 0;
}

.about-image-wrapper img {
    position: relative;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
}

.stat-card {
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
}

@media (max-width: 991.98px) {
    .about-shape {
        width: 50%;
    }
    
    .experience-badge {
        bottom: -1rem;
        right: -1rem;
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .about-shape {
        display: none;
    }
    
    .stats-container {
        margin-top: 3rem;
    }
}

/* Services Section Styles */
.services-shape-1,
.services-shape-2 {
    position: absolute;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.services-shape-1 {
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    animation: morphShape 15s linear infinite alternate;
}

.services-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    animation: morphShape 20s linear infinite alternate;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.service-card {
    background: var(--bs-white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.service-card:hover,
.service-card.active {
    transform: translateY(-10px);
}

.service-card:hover::before,
.service-card.active::before {
    opacity: 1;
}

.service-card:hover *,
.service-card.active * {
    color: var(--bs-white) !important;
    border-color: var(--bs-white) !important;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--bs-success);
    transition: all 0.3s ease;
}

.service-cta {
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    position: relative;
    overflow: hidden;
}

.service-cta::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"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
}

@media (max-width: 991.98px) {
    .services-shape-1,
    .services-shape-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .services-shape-1,
    .services-shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .hero {
        text-align: center;
    }

    .hero img {
        margin-top: 2rem;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* About Section Styles */
.about-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0.05;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.about-image-wrapper {
    position: relative;
    padding: 1rem;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--bs-success);
    border-radius: 1rem;
    z-index: 0;
}

.about-image-wrapper img {
    position: relative;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
}

.stat-card {
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
}

@media (max-width: 991.98px) {
    .about-shape {
        width: 50%;
    }
    
    .experience-badge {
        bottom: -1rem;
        right: -1rem;
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .about-shape {
        display: none;
    }
    
    .stats-container {
        margin-top: 3rem;
    }
}

/* Services Section Styles */
.services-shape-1,
.services-shape-2 {
    position: absolute;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.services-shape-1 {
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    animation: morphShape 15s linear infinite alternate;
}

.services-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    animation: morphShape 20s linear infinite alternate;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.service-card {
    background: var(--bs-white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.service-card:hover,
.service-card.active {
    transform: translateY(-10px);
}

.service-card:hover::before,
.service-card.active::before {
    opacity: 1;
}

.service-card:hover *,
.service-card.active * {
    color: var(--bs-white) !important;
    border-color: var(--bs-white) !important;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--bs-success-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--bs-success);
    transition: all 0.3s ease;
}

.service-cta {
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    position: relative;
    overflow: hidden;
}

.service-cta::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"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
}

@media (max-width: 991.98px) {
    .services-shape-1,
    .services-shape-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .services-shape-1,
    .services-shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .hero {
        text-align: center;
    }

    .hero img {
        margin-top: 2rem;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* About Section Styles */
.about-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(135deg, var(--bs-success) 0%, var(--bs-success-rgb) 100%);
    opacity: 0.05;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.about-image-wrapper {
    position: relative;
    padding: 1rem;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 4px solid #ff9d20;
    border-radius: 1rem;
    z-index: 0;
}

.about-image-wrapper img {
    position: relative;
    z-index: 1;
    height: 700px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.stat-card {
    background: var(--bs-white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    font-size: 1.5rem;
    color: var(--bs-success);
    margin-bottom: 0rem;
}

.stat-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-success);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.2rem;
    color: var(--bs-gray);
    margin-bottom: 0;
}

/* Additional How It Works Enhancements */
.how-it-works-container {
    position: relative;
    z-index: 1;
}

/* Modern Section Header */
#how-it-works .text-center h6 {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(76, 175, 80, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.15);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    color: var(--primary-color);
    text-transform: uppercase;
}

#how-it-works .text-center h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

#how-it-works .text-center .lead {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Process Row Enhancements */
.process-row {
    position: relative;
    z-index: 2;
}

/* Mobile Process Flow - Simplified */
@media (max-width: 991.98px) {
    .process-card:not(:last-child) {
        margin-bottom: 2.5rem;
        position: relative;
    }

    .process-card:not(:last-child)::before {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg,
            rgba(76, 175, 80, 0.4) 0%,
            rgba(76, 175, 80, 0.2) 100%);
        border-radius: 1px;
        z-index: 1;
    }
}

/* Modern CTA Button */
#how-it-works .btn-success {
    background: linear-gradient(135deg, var(--primary-color) 0%, #45a049 100%);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.025em;
    border-radius: 12px;
    box-shadow:
        0 4px 14px rgba(76, 175, 80, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#how-it-works .btn-success:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(76, 175, 80, 0.35),
        0 3px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #45a049 0%, var(--primary-color) 100%);
}

#how-it-works .btn-success:active {
    transform: translateY(0);
    box-shadow:
        0 2px 8px rgba(76, 175, 80, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* App Screens Section - Redesigned */
#app-screens {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    position: relative;
    padding: 6rem 0;
}

.app-screens-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(76, 175, 80, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.06) 0%, transparent 50%);
    z-index: 0;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.feature-icon-small i {
    color: white;
    font-size: 1.2rem;
}

.feature-text h6 {
    font-weight: 600;
    color: #1a1a1a;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    min-width: 180px;
}

.apple-btn {
    background: #000;
    color: white;
}

.google-btn {
    background: var(--primary-color);
    color: white;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.small-text {
    font-size: 0.75rem;
    opacity: 0.8;
}

.main-text {
    font-size: 1rem;
    font-weight: 600;
}

/* App Showcase with Swiper */
.app-showcase {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 100%;
    z-index: 2;
}

.app-screens-swiper {
    width: 100%;
    height: 100%;
    padding: 2rem 0;
}

.app-screens-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 230px;
    height: 500px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 25px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.swiper-slide-active .phone-frame {
    transform: scale(1.05);
    border-color: rgba(76, 175, 80, 0.3);
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #000;
    border-radius: 0 0 15px 15px;
    z-index: 3;
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.swiper-slide-active .screen-img {
    transform: scale(1.02);
}

.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    z-index: 3;
}

.screen-info {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.swiper-slide-active .screen-info {
    opacity: 1;
    transform: translateY(0);
}

.screen-info h5 {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.screen-info p {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Custom Swiper Navigation */
.swiper-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 4;
    pointer-events: none;
}

.custom-prev,
.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.custom-prev {
    left: -60px;
}

.custom-next {
    right: -60px;
}

.custom-prev:hover,
.custom-next:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    border-color: var(--primary-color);
}

.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.swiper-button-disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1);
    border-color: rgba(76, 175, 80, 0.2);
}

/* Custom Swiper Pagination */
.custom-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 4;
}

.custom-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.custom-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.custom-pagination .swiper-pagination-bullet:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

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

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    animation: floatIcon 8s ease-in-out infinite;
}

.icon-1 {
    top: 0%;
    left: 20%;
    animation-delay: 0s;
}

.icon-2 {
    top: 5%;
    right: 5%;
    animation-delay: 2s;
}

.icon-3 {
    bottom: 0%;
    left: 15%;
    animation-delay: 4s;
}

.icon-4 {
    bottom: 2%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-10px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
        opacity: 1;
    }
}

/* Responsive Design for App Screens */
@media (max-width: 1199.98px) {
    .app-slider-container {
        max-width: 700px;
    }

    .phone-frame {
        width: 180px;
        height: 360px;
    }

    .custom-prev {
        left: -50px;
    }

    .custom-next {
        right: -50px;
    }
}

@media (max-width: 991.98px) {
    #app-screens {
        padding: 4rem 0;
    }

    .app-showcase {
        height: 500px;
        margin-top: 3rem;
    }

    .app-slider-container {
        max-width: 500px;
    }

    .phone-frame {
        width: 160px;
        height: 320px;
    }

    .custom-prev {
        left: -40px;
    }

    .custom-next {
        right: -40px;
    }

    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    #app-screens {
        padding: 3rem 0;
    }

    .app-showcase {
        height: 450px;
    }

    .app-slider-container {
        max-width: 400px;
    }

    .phone-frame {
        width: 140px;
        height: 280px;
        border-radius: 20px;
        padding: 6px;
    }

    .phone-notch {
        width: 60px;
        height: 15px;
        border-radius: 0 0 12px 12px;
    }

    .phone-notch::before {
        width: 30px;
        height: 2px;
        top: 4px;
    }

    .phone-screen {
        border-radius: 16px;
    }

    .phone-home-indicator {
        width: 45px;
        height: 3px;
        bottom: 6px;
    }

    .custom-prev,
    .custom-next {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .custom-prev {
        left: -30px;
    }

    .custom-next {
        right: -30px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .download-btn {
        justify-content: center;
        min-width: auto;
    }

    .app-features {
        gap: 1rem;
    }

    .feature-icon-small {
        width: 45px;
        height: 45px;
    }

    .floating-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .screen-info h5 {
        font-size: 1rem;
    }

    .screen-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .app-showcase {
        height: 400px;
    }

    .app-slider-container {
        max-width: 300px;
    }

    .phone-frame {
        width: 120px;
        height: 240px;
        padding: 5px;
    }

    .phone-notch {
        width: 50px;
        height: 12px;
        border-radius: 0 0 10px 10px;
    }

    .phone-notch::before {
        width: 25px;
        height: 2px;
        top: 3px;
    }

    .phone-screen {
        border-radius: 12px;
    }

    .phone-home-indicator {
        width: 35px;
        height: 2px;
        bottom: 5px;
    }

    .custom-prev,
    .custom-next {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .custom-prev {
        left: -20px;
    }

    .custom-next {
        right: -20px;
    }

    .floating-elements {
        display: none;
    }

    .screen-info {
        margin-top: 1rem;
    }

    .screen-info h5 {
        font-size: 0.9rem;
    }

    .screen-info p {
        font-size: 0.8rem;
    }
}

/* Why Choose Pure O Fresh Section */
#why-choose {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    padding: 5rem 0;
    min-height: 100vh;
}

#why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(76, 175, 80, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.sticky-image-container {
    position: sticky;
    top: 100px;
    z-index: 1;
    margin-top: 32px;
}

.feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 30px rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.feature-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 12px 40px rgba(76, 175, 80, 0.15);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(76, 175, 80, 0.1) 0%,
        rgba(76, 175, 80, 0.05) 50%,
        transparent 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.features-scroll-container {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 100px);
    padding: 2rem 0;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), rgba(76, 175, 80, 0.6));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) translateX(8px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.2);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 25px rgba(76, 175, 80, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 12px 35px rgba(76, 175, 80, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-content h4 {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    transition: all 0.3s ease;
}

.feature-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-content h4 {
    color: var(--primary-color);
    transform: translateX(4px);
}

.feature-card:hover .feature-content p {
    color: #4b5563;
    transform: translateX(4px);
}

/* Responsive Design for Why Choose Section */
@media (max-width: 991.98px) {
    #why-choose {
        padding: 4rem 0;
        min-height: auto;
    }

    .sticky-image-container {
        position: static;
        height: auto;
        margin-bottom: 3rem;
        display: block;
    }

    .feature-image-wrapper {
        height: 400px;
    }

    .feature-image {
        height: 100%;
    }

    .features-scroll-container {
        min-height: auto;
        padding: 0;
    }

    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }

    .feature-icon i {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    #why-choose {
        padding: 3rem 0;
    }

    .feature-image-wrapper {
        height: 300px;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .feature-card:hover {
        transform: translateY(-4px);
    }

    .feature-card:hover .feature-content h4,
    .feature-card:hover .feature-content p {
        transform: translateX(0);
    }
}

/* Clean Responsive Adjustments */
@media (max-width: 991.98px) {
    .process-card:hover {
        transform: translateY(-6px) scale(1.01);
    }
}

@media (max-width: 767.98px) {
    .process-card:hover {
        transform: translateY(-4px);
    }

    .process-card:hover .process-icon {
        transform: translateY(-2px) scale(1.03);
    }
}

/* Modern Footer Design */
.modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 4rem 0 2rem;
}

/* Brand Section */
.footer-brand {
    margin-bottom: 2rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-right: 1rem;
    object-fit: cover;
}

.brand-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    border-color: var(--primary-color);
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer Sections */
.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), rgba(76, 175, 80, 0.5));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Contact Info */
.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.contact-icon i {
    color: #ffffff;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    color: #888888;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
}

/* Newsletter */
.newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.newsletter-text {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form .input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.875rem 1rem;
    border-radius: 12px 0 0 12px;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: #b0b0b0;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: none;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    border: none;
    color: #ffffff;
    padding: 0.875rem 1.25rem;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #45a049, var(--primary-color));
    transform: translateX(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.copyright p {
    color: #888888;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Decorative Elements */
.footer-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-1,
.decoration-2,
.decoration-3 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    animation: float 8s ease-in-out infinite;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.decoration-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

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

/* Footer Responsive Design */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }

    .brand-logo {
        justify-content: center;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 3rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .decoration-1,
    .decoration-2,
    .decoration-3 {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 2.5rem 0 1rem;
    }

    .footer-logo {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }

    .newsletter {
        padding: 1.25rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }

    .newsletter-btn {
        border-radius: 12px;
        width: 100%;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }

    .brand-description {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .contact-value {
        font-size: 0.9rem;
    }

    .newsletter-title {
        font-size: 1rem;
    }

    .newsletter-text {
        font-size: 0.85rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 6rem 0;
    position: relative;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(76, 175, 80, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(76, 175, 80, 0.02) 0%, transparent 50%);
    z-index: 0;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    position: relative;
    z-index: 2;
}

.contact-header h3 {
    color: #1a1a1a;
    font-weight: 700;
}

.contact-header p {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Detail Items */
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(76, 175, 80, 0.2);
}

.contact-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.contact-detail-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-detail-item:hover .contact-detail-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.contact-detail-content h5 {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-detail-content p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Contact Social Links */
.contact-social h5 {
    color: #1a1a1a;
    font-weight: 600;
}

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

.social-link-contact {
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.social-link-contact:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    border-color: var(--primary-color);
}

.social-link-contact i {
    font-size: 1.2rem;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.contact-form-header h3 {
    color: #1a1a1a;
    font-weight: 700;
}

.contact-form-header p {
    color: #6b7280;
}

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-input {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.contact-input::placeholder {
    color: #9ca3af;
}

/* Input Focus Line */
.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #45a049);
    border-radius: 2px;
    transition: all 0.3s ease;
    z-index: 2;
}

.contact-input:focus + .input-focus-line {
    width: 100%;
}

/* Select Styling */
select.contact-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Textarea Styling */
textarea.contact-input {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Styling */
.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background-color: transparent;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: #6b7280;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    border: none;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    min-width: 180px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049, var(--primary-color));
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.btn-text,
.btn-icon {
    transition: all 0.3s ease;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-submit-btn.loading .btn-text,
.contact-submit-btn.loading .btn-icon {
    opacity: 0;
}

.contact-submit-btn.loading .btn-loading {
    opacity: 1;
}

.btn-icon {
    margin-left: 0.5rem;
}

/* Success Message */
.contact-success-message {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    margin-top: 2rem;
}

.contact-success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.success-icon i {
    color: white;
    font-size: 2rem;
}

.contact-success-message h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-success-message p {
    color: #6b7280;
    margin: 0;
}

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

/* Contact Decorations */
.contact-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-decoration-1,
.contact-decoration-2,
.contact-decoration-3 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.04));
    animation: float 10s ease-in-out infinite;
}

.contact-decoration-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.contact-decoration-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 10%;
    animation-delay: 3s;
}

.contact-decoration-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 6s;
}

/* Contact Section Responsive Design */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-info-wrapper {
        margin-bottom: 3rem;
    }

    .contact-detail-item {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .contact-detail-icon {
        width: 55px;
        height: 55px;
        margin-right: 1.25rem;
    }

    .contact-detail-icon i {
        font-size: 1.3rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .social-links-contact {
        justify-content: center;
    }

    .contact-decoration-1,
    .contact-decoration-2,
    .contact-decoration-3 {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-detail-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .contact-detail-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .contact-input {
        padding: 0.75rem;
    }

    .contact-submit-btn {
        width: 100%;
        padding: 1rem;
    }

    .social-link-contact {
        width: 45px;
        height: 45px;
    }

    .social-link-contact i {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .contact-detail-item {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .contact-detail-icon {
        width: 50px;
        height: 50px;
    }

    .contact-detail-icon i {
        font-size: 1.2rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }

    .success-icon i {
        font-size: 1.5rem;
    }
}


/* Small Image Overlay */
.small-image-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 250px !important;
    height: 350px !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid white;
    z-index: 4;
}

.small-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}