/* ===== ROOT VARIABLES ===== */
:root {
    --primary-bg: #122c24;
    --accent-color: #9fff58;
    --text-color: #fff;
    --text-gray: #a6a6a6;
    --navbar-bg: rgba(10, 15, 12, 0.95);
    --card-bg: #121715;
    --border-color: #1E2421;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.accent-text {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
}

/* ===== UTILITY CLASSES ===== */
.section-padding {
    padding: 100px 0;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(159, 255, 88, 0.3);
}

.btn-outline-accent {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline-accent:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
}

/* ===== NAVBAR ===== */
.custom-navbar {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: transparent;
    border-bottom: 1px solid transparent;
    padding: 0.8rem 0;
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-navbar.visible {
    background: var(--navbar-bg);
    border-bottom: 1px solid rgba(159, 255, 88, 0.1);
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.custom-navbar.visible::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(159, 255, 88, 0.05) 0%,
            rgba(10, 15, 12, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: -1;
    border-bottom: 1px solid rgba(159, 255, 88, 0.1);
}

.navbar-brand {
    color: var(--text-color);
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    padding: 8px 16px;
    border-radius: 12px;
    text-decoration: none;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(159, 255, 88, 0.1), transparent);
    transition: left 0.6s ease;
}

.navbar-brand:hover::before {
    left: 100%;
}

.navbar-brand:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(159, 255, 88, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.05),
        0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 8px 20px;
    position: relative;
    overflow: hidden;
}

.glass-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(159, 255, 88, 0.1), transparent);
    transition: left 0.6s ease;
}

.glass-nav:hover::before {
    left: 100%;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 70%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
    background: rgba(159, 255, 88, 0.08);
    transform: translateY(-2px);
}

.dropdown-menu {
    background: rgba(10, 15, 12, 0.95);
    border: 1px solid rgba(159, 255, 88, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    padding: 12px;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: var(--text-color);
    transition: all 0.3s ease;
    padding: 10px 16px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(159, 255, 88, 0.1), transparent);
    transition: left 0.4s ease;
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    background: rgba(159, 255, 88, 0.1);
    color: var(--accent-color);
    transform: translateX(5px);
}

.navbar-toggler {
    border: none;
    background: transparent;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 24px;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 6px;
}

.navbar-toggler-icon::after {
    bottom: 6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--accent-color);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--accent-color);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 40%, #0f2618, #060d08 70%);
    overflow: hidden;
    text-align: center;
    color: var(--text-color);
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px,
            transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    z-index: 1;
    animation: drift 25s linear infinite;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
            rgba(159, 255, 88, 0.08) 0%,
            transparent 70%);
    z-index: 0;
}

.floating-lights::before,
.floating-lights::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(159, 255, 88, 0.15) 0%,
            rgba(0, 0, 0, 0) 70%);
    filter: blur(100px);
    animation: floatLight 10s ease-in-out infinite alternate;
    z-index: 0;
}

.floating-lights::before {
    top: 10%;
    left: 20%;
}

.floating-lights::after {
    bottom: 10%;
    right: 15%;
    animation-delay: 5s;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 0 20px;
}

.hero-badge {
    font-size: 0.9rem;
    color: var(--accent-color);
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    backdrop-filter: blur(12px);
    background: rgba(159, 255, 88, 0.08);
    border: 1px solid rgba(159, 255, 88, 0.2);
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 0 0 25px rgba(159, 255, 88, 0.1);
}

.hero-title .accent {
    color: var(--accent-color);
}

.hero-subtitle {
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.trusted-section {
    margin-top: 80px;
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 20px rgba(159, 255, 88, 0.05);
}

.trusted-badge {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.trusted-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.carousel-track {
    display: flex;
    gap: 50px;
    animation: scroll 30s linear infinite;
}

.carousel-track span {
    color: var(--text-color);
    opacity: 0.8;
    font-weight: 500;
    font-size: 1.1rem;
    white-space: nowrap;
    transition: 0.3s;
}

.carousel-track span:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-gray);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

/* ===== SERVICES SECTION ===== */
/* 🌟 Services Section */
.services-section {
    background: var(--primary-bg);
    color: var(--text-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(159, 255, 88, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Header Elements */
.badge-accent {
    background: rgba(159, 255, 88, 0.1);
    color: var(--accent-color);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(159, 255, 88, 0.2);
    display: inline-block;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
    text-align: center;
}

/* 🌟 Carousel Wrapper */
.service-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    padding: 0 40px;
}

/* Carousel Layout */
.service-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition: all 0.5s ease;
}

.service-carousel::-webkit-scrollbar {
    display: none;
}

/* 🌟 Service Card */
.service-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    width: 350px;
    flex: 0 0 auto;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(159, 255, 88, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(159, 255, 88, 0.1);
}

/* Icons */
.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(159, 255, 88, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(159, 255, 88, 0.15);
    box-shadow: 0 0 25px rgba(159, 255, 88, 0.3);
}

/* Text */
.service-card h4 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Image */
.service-img {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
    margin-top: 10px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(159, 255, 88, 0.7);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(159, 255, 88, 0.5);
}

/* 🌍 Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .service-card {
        width: 300px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }

    .service-carousel-wrapper {
        padding: 0 20px;
    }

    .service-card {
        width: auto;
        flex: 0 0 85%;
        padding: 30px 20px;
        scroll-snap-align: center;
    }

    .service-carousel {
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .carousel-btn,
    .carousel-indicators {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .service-card {
        flex: 0 0 90%;
        padding: 25px 18px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* ===== ABOUT SECTION ===== */
#about {
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(159, 255, 88, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(159, 255, 88, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.about-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(159, 255, 88, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 500px;
}

.about-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(159, 255, 88, 0.2),
        0 0 30px rgba(159, 255, 88, 0.1);
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(159, 255, 88, 0.1) 0%,
            transparent 30%,
            transparent 70%,
            rgba(159, 255, 88, 0.05) 100%);
    z-index: 2;
    pointer-events: none;
}

.about-img-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(159, 255, 88, 0.15) 0%,
            rgba(10, 15, 12, 0.9) 50%,
            rgba(10, 15, 12, 0.95) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-img-content::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            transparent,
            rgba(159, 255, 88, 0.1),
            transparent,
            transparent,
            rgba(159, 255, 88, 0.05),
            transparent);
    animation: rotate 10s linear infinite;
}

.about-img-content::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg,
            rgba(159, 255, 88, 0.1) 0%,
            rgba(10, 15, 12, 0.9) 100%);
    border-radius: 18px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.floating-element {
    position: absolute;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 70%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 30%;
    animation-delay: 4s;
}

.about-content {
    padding-left: 60px;
    position: relative;
}

.section-title1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.about-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(159, 255, 88, 0.2);
}

.stats-container {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aboutCta {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.aboutCta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(159, 255, 88, 0.2), transparent);
    transition: left 0.6s ease;
}

.aboutCta:hover::before {
    left: 100%;
}

.aboutCta:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow:
        0 10px 25px rgba(159, 255, 88, 0.3),
        0 0 0 2px var(--accent-color);
}

.aboutCta:active {
    transform: translateY(-1px);
}

.aboutCta i {
    transition: transform 0.3s ease;
}

.aboutCta:hover i {
    transform: translateX(5px);
}

/* ===== SCROLLING BANNER ===== */
.scrolling-banner {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    background: rgba(159, 255, 88, 0.05);
}

.scroll-container {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.scroll-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.scroll-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-color);
    margin-right: 40px;
    font-size: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.scroll-content span:hover {
    opacity: 1;
    color: var(--accent-color);
}

.scroll-content i {
    font-size: 0.8rem;
    color: var(--accent-color);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: linear-gradient(135deg, #0b1f18 0%, #0a0f0c 50%, #10271d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(162, 255, 90, 0.06), transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(162, 255, 90, 0.04), transparent 70%);
    pointer-events: none;
}

.process-label {
    display: inline-block;
    background: rgba(159, 255, 88, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    border: 1px solid rgba(159, 255, 88, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.process-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 100px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 100px;
    padding: 40px;
}

.process-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-glow {
    position: absolute;
    inset: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 255, 88, 0.25), transparent 70%);
    filter: blur(40px);
    animation: pulseGlow 5s ease-in-out infinite;
    z-index: 1;
}

.process-img {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(159, 255, 88, 0.4);
    box-shadow: 0 0 40px rgba(159, 255, 88, 0.3);
    transition: all 0.6s ease;
    position: relative;
}

.process-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 60px rgba(159, 255, 88, 0.6);
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(159, 255, 88, 0.1);
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 0 25px rgba(159, 255, 88, 0.3);
}

.process-step .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(159, 255, 88, 0.1);
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.process-step:hover .icon {
    background: var(--accent-color);
    color: var(--primary-bg);
    box-shadow: 0 0 20px rgba(159, 255, 88, 0.5);
}

.process-step h5 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-number {
    display: inline-block;
    background: rgba(159, 255, 88, 0.1);
    border: 1px solid rgba(159, 255, 88, 0.3);
    border-radius: 50px;
    padding: 6px 18px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
}

.process-step::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 60px;
    border: 2px dashed rgba(159, 255, 88, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.step-1::after {
    top: 50%;
    left: 100%;
    transform: translateY(-50%) rotate(10deg);
}

.step-2::after {
    top: 50%;
    right: 100%;
    transform: translateY(-50%) rotate(-10deg);
}

.step-3::after {
    bottom: 50%;
    left: 100%;
    transform: translateY(50%) rotate(-10deg);
}

.step-4::after {
    bottom: 50%;
    right: 100%;
    transform: translateY(50%) rotate(10deg);
}

.process-step:hover::after {
    border-color: var(--accent-color);
    opacity: 1;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 255, 88, 0.1), transparent 70%);
    filter: blur(40px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 15%;
    left: 10%;
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.shape:nth-child(3) {
    width: 180px;
    height: 180px;
    top: 65%;
    left: 20%;
    animation-delay: 1.5s;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, #0e2a23 0%, #0a1f1a 100%);
    padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 60px);
    border-radius: clamp(15px, 3vw, 30px);
    margin: clamp(40px, 6vw, 100px) auto;
    max-width: 1400px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(159, 255, 88, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(159, 255, 88, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(30px, 6vw, 60px);
    position: relative;
    z-index: 1;
}

/* LEFT SIDE */
.contact-left {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-left .tag {
    display: inline-block;
    background: rgba(159, 255, 88, 0.15);
    color: var(--accent-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    font-weight: 600;
    border: 1px solid rgba(159, 255, 88, 0.25);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.contact-left h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height: 1.2;
    color: var(--text-color);
    margin: 20px 0;
    background: linear-gradient(135deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-left p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    max-width: 500px;
}

/* BUTTONS */
.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(159, 255, 88, 0.3);
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-accent:hover::before {
    left: 100%;
}

.btn-accent:hover {
    background: #b7ff7c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(159, 255, 88, 0.5);
}

/* RIGHT SIDE */
.contact-right {
    flex: 1;
    min-width: 320px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(15px, 3vw, 25px);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: clamp(15px, 2.5vw, 25px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(159, 255, 88, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(159, 255, 88, 0.1);
    border-color: rgba(159, 255, 88, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-card .icon {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-radius: 50%;
    width: clamp(40px, 6vw, 55px);
    height: clamp(40px, 6vw, 55px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2vw, 1.3rem);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(159, 255, 88, 0.5);
}

.contact-card p {
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 12, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, var(--card-bg) 0%, #0e1310 100%);
    border-radius: 20px;
    padding: clamp(25px, 5vw, 40px);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(159, 255, 88, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal h3 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

/* FORM */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(159, 255, 88, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* WHATSAPP BUTTON */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* MAP */
.map-container {
    width: 100%;
    height: clamp(250px, 40vw, 350px);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(159, 255, 88, 0.1) 0%, rgba(10, 15, 12, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: clamp(1rem, 2vw, 1.1rem);
}

/* SUCCESS MESSAGE */
.success-message {
    display: none;
    background: rgba(159, 255, 88, 0.1);
    border: 1px solid rgba(159, 255, 88, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    color: var(--accent-color);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

/* RESPONSIVE BEHAVIORS */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-left {
        text-align: center;
    }
}

@media (max-width: 400px) {
    .contact-section {
        padding: 50px 15px;
        margin: 40px 10px;
    }

    .contact-card {
        padding: 12px 18px;
        gap: 10px;
    }

    .contact-card .icon {
        width: 38px;
        height: 38px;
    }

    .btn-accent,
    .whatsapp-link {
        padding: 12px 20px;
    }
}

/* ===== FOOTER ===== */
/* Footer Base */
.footer {
    background: linear-gradient(135deg, #070A08 0%, #0a0f0c 100%);
    padding: 80px 20px 30px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 10%, rgba(159, 255, 88, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 90%, rgba(159, 255, 88, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo .logo-img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.footer-description {
    max-width: 300px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #9fff58;
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 4px 0;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #9fff58;
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(2px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(159, 255, 88, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: #9fff58;
    color: #070A08;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(159, 255, 88, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    display: flex;
    flex-direction: column;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.newsletter-input {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #9fff58;
    background: rgba(159, 255, 88, 0.05);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-subscribe {
    padding: 14px 24px;
    border-radius: 10px;
    background: #9fff58;
    color: #070A08;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(159, 255, 88, 0.4);
    background: #b7ff7c;
}

/* Footer Bottom */
.footer-divider {
    margin: 50px 0 30px;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #9fff58;
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: #9fff58;
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #9fff58;
    color: #070A08;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(159, 255, 88, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(159, 255, 88, 0.4);
}

/* ====== ENHANCED RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 35px;
    }
    
    .newsletter-section {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
    
    .footer-content {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 60px 20px 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .footer-description {
        max-width: 500px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 15px 20px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-logo .logo-img {
        width: 70px;
    }
    
    .footer-description {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .footer-section h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .newsletter-form {
        gap: 10px;
    }
    
    .newsletter-input,
    .btn-subscribe {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .footer-bottom .copyright {
        font-size: 0.85rem;
    }
    
    .footer-legal {
        gap: 15px;
    }
    
    .footer-legal a {
        font-size: 0.85rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .footer {
        padding: 35px 12px 15px;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .footer-links {
        gap: 8px;
    }
    
    .social-links {
        gap: 6px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form {
        width: 100%;
    }
}

/* Animation for footer elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section,
.footer-brand {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section:nth-child(2) { animation-delay: 0.1s; }
.footer-section:nth-child(3) { animation-delay: 0.2s; }
.footer-section:nth-child(4) { animation-delay: 0.3s; }

/* ===== ANIMATIONS ===== */
@keyframes drift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 80px 80px;
    }
}

@keyframes floatLight {
    0% {
        transform: translateY(0px) scale(1);
    }

    100% {
        transform: translateY(-40px) scale(1.1);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}

.delay-5 {
    animation-delay: 1.5s;
}

/* ===== MOBILE RESPONSIVE STYLES ===== */

/* Large devices (desktops, 1200px and up) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .process-wrapper {
        gap: 80px;
    }

    .process-img {
        width: 320px;
        height: 320px;
    }
}

/* Medium devices (tablets, 992px to 1199px) */
@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-accent,
    .btn-outline-accent {
        width: 250px;
        margin: 5px 0;
    }

    /* Navbar mobile styles */
    .custom-navbar .container {
        padding: 0 15px;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 15, 12, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-top: 1px solid rgba(159, 255, 88, 0.1);
        border-bottom: 1px solid rgba(159, 255, 88, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 20px;
        margin: 0 15px;
        border-radius: 0 0 20px 20px;
        z-index: 1000;
    }

    .nav-wrapper {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-top: 0 !important;
    }

    .nav-wrapper .navbar-nav {
        gap: 8px !important;
        width: 100%;
    }

    .nav-link {
        text-align: center;
        padding: 12px 20px;
        border-radius: 12px;
        margin: 2px 0;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(159, 255, 88, 0.1) !important;
        margin-top: 8px !important;
        margin-bottom: 10px;
        box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
        width: 100%;
    }

    .dropdown-toggle::after {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .btn-accent {
        width: 100%;
        margin-top: 15px;
        text-align: center;
        justify-content: center;
    }

    .dropdown .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    .dropdown.show .dropdown-menu {
        max-height: 300px;
    }

    /* About section */
    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .about-img {
        transform: none;
        height: 400px;
    }

    .about-img:hover {
        transform: scale(1.02);
    }

    .section-title1 {
        font-size: 2.5rem;
    }

    .stats-container {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Process section */
    .process-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "step1"
            "step2"
            "center"
            "step3"
            "step4";
        gap: 40px;
        margin-top: 50px;
    }

    .process-center {
        position: static;
        transform: none;
        margin: 20px auto;
        grid-area: center;
    }

    .process-step::after {
        display: none;
    }

    .process-img {
        width: 280px;
        height: 280px;
    }
}

/* Small devices (landscape phones, 768px to 991px) */
@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .trusted-section {
        margin-top: 50px;
        padding: 20px;
    }

    .floating-lights::before,
    .floating-lights::after {
        width: 300px;
        height: 300px;
        filter: blur(80px);
    }

    .floating-lights::before {
        top: 8%;
        left: 5%;
    }

    .floating-lights::after {
        bottom: 8%;
        right: 5%;
    }


    /* About */
    .about-img {
        height: 350px;
    }

    .section-title1 {
        font-size: 2.2rem;
    }

    .about-content p {
        font-size: 1rem;
        padding-left: 15px;
    }

    .stats-container {
        flex-direction: column;
        gap: 25px;
    }

    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 0;
    }

    /* Process */
    .process-section {
        padding: 80px 0;
    }

    .process-img {
        width: 240px;
        height: 240px;
    }

    .process-step {
        padding: 30px 25px;
    }

    .process-step .icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 400px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 7px 18px;
    }

    .btn-accent,
    .btn-outline-accent {
        width: 200px;
        padding: 9px 22px;
        font-size: 0.9rem;
    }

    .trusted-section {
        margin-top: 40px;
        padding: 15px;
    }

    .carousel-track {
        gap: 25px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator .mouse {
        width: 18px;
        height: 30px;
    }

    .scroll-indicator .mouse::before {
        width: 3px;
        height: 6px;
    }

    /* Navbar */
    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar-brand span {
        font-size: 1rem;
    }

    .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .btn-accent {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .navbar-collapse {
        margin: 0 10px;
        padding: 15px;
    }

    /* About */
    .about-img {
        height: 300px;
    }

    .section-title1 {
        font-size: 1.8rem;
    }

    .aboutCta {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .floating-element {
        display: none;
    }

    /* Process */
    .process-section {
        padding: 60px 0;
    }

    .process-wrapper {
        padding: 20px;
        gap: 30px;
    }

    .process-img {
        width: 200px;
        height: 200px;
    }

    .process-step {
        padding: 25px 20px;
    }

    .process-step h5 {
        font-size: 1.1rem;
    }

    .process-step p {
        font-size: 0.9rem;
    }

    .shape {
        display: none;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 0.9rem;
    }
}

/* Very small devices (less than 400px) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        max-width: 350px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .btn-accent,
    .btn-outline-accent {
        width: 180px;
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .trusted-section {
        margin-top: 35px;
        padding: 12px;
    }

    .carousel-track {
        gap: 20px;
    }

    .service-card {
        width: 95%;
    }

    .section-title,
    .section-title1 {
        font-size: 1.6rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .hero-title .accent::after {
        display: none;
    }

    .btn-accent:hover,
    .btn-outline-accent:hover {
        transform: none;
    }

    .btn-accent:active,
    .btn-outline-accent:active {
        transform: translateY(-2px);
    }

    .service-card:hover {
        transform: none;
    }

    .service-card:active {
        transform: translateY(-5px);
    }

    .about-img:hover {
        transform: none;
    }

    .about-img:active {
        transform: scale(1.02);
    }

    .process-step:hover {
        transform: none;
    }

    .process-step:active {
        transform: translateY(-5px);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .fade-up {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero-bg::before {
        animation: none;
    }

    .floating-lights::before,
    .floating-lights::after {
        animation: none;
    }

    .carousel-track {
        animation: none;
    }

    .scroll-indicator .mouse::before {
        animation: none;
    }

    .about-img-content::before {
        animation: none;
    }

    .floating-element {
        animation: none;
    }

    .center-glow {
        animation: none;
    }

    .shape {
        animation: none;
    }

    .scroll-content {
        animation: none;
    }
}

/* Landscape mobile optimizations */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .trusted-section {
        margin-top: 30px;
        padding: 15px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* High-density displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .hero-bg::before {
        background-size: 40px 40px;
    }
}

/* Print styles */
@media print {
    .hero-section {
        height: auto;
        background: white !important;
        color: black !important;
    }

    .hero-bg::before,
    .hero-bg::after,
    .floating-lights::before,
    .floating-lights::after {
        display: none;
    }

    .trusted-section {
        background: #f5f5f5 !important;
        color: #333 !important;
    }

    .btn-accent,
    .btn-outline-accent {
        border: 1px solid #000 !important;
        background: transparent !important;
        color: #000 !important;
    }
}

/* ========Case Study Section ======= */
.case-studies {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(159, 255, 88, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.section-header1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    min-height: 30vh;/
}

.tag {
    display: inline-block;
    background: rgba(159, 255, 88, 0.15);
    color: var(--accent-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(159, 255, 88, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.section-header1 h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-header1 h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.case-studies-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.side-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 0 0 200px;
}

.tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(159, 255, 88, 0.1);
    color: var(--text-color);
    padding: 20px 15px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(159, 255, 88, 0.1), transparent);
    transition: left 0.6s ease;
}

.tab:hover::before {
    left: 100%;
}

.tab:hover {
    transform: translateX(5px);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(159, 255, 88, 0.2);
}

.tab.active {
    background: rgba(159, 255, 88, 0.15);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(159, 255, 88, 0.3);
}

.case-slide {
    position: relative;
    width: 800px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.case-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
}

.case-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease, transform 0.8s ease;
}

.case-image:hover img {
    transform: scale(1.05);
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(10, 15, 12, 0.95) 0%, transparent 100%);
    text-align: left;
}

.case-overlay h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.case-stats {
    display: flex;
    gap: 50px;
}

.case-stats>div {
    position: relative;
}

.case-stats span {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(159, 255, 88, 0.5);
}

.case-stats p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.btn-container {
    text-align: center;
    margin-top: 50px;
}

.contact-btn {
    background: var(--accent-color);
    color: var(--primary-bg);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(159, 255, 88, 0.3);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(159, 255, 88, 0.5);
}

.contact-btn:active {
    transform: translateY(-1px);
}

/* Floating elements */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 255, 88, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 180px;
    height: 180px;
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .case-studies-container {
        gap: 20px;
    }

    .case-slide {
        width: 700px;
        height: 400px;
    }

    .side-tabs {
        flex: 0 0 180px;
    }
}

@media (max-width: 992px) {
    .case-studies-container {
        flex-direction: column;
        gap: 30px;
    }

    .side-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        flex: 0 0 auto;
        width: 100%;
        max-width: 700px;
    }

    .tab {
        flex: 1;
        min-width: 150px;
        padding: 15px 10px;
    }

    .tab:hover,
    .tab.active {
        transform: translateY(-5px);
    }

    .case-slide {
        width: 100%;
        max-width: 700px;
        height: 400px;
        order: -1;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .case-studies {
        padding: 80px 20px;
    }

    .case-slide {
        height: 350px;
    }

    .case-overlay {
        padding: 30px;
    }

    .case-overlay h4 {
        font-size: 1.5rem;
    }

    .case-stats {
        gap: 30px;
    }

    .case-stats span {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .tab {
        font-size: 0.85rem;
        padding: 12px 8px;
    }
}

@media (max-width: 576px) {
    .case-studies {
        padding: 60px 15px;
    }

    .case-slide {
        height: 300px;
    }

    .case-overlay {
        padding: 20px;
    }

    .case-overlay h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .case-stats {
        flex-direction: column;
        gap: 15px;
    }

    .case-stats span {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .tab {
        min-width: 120px;
        font-size: 0.8rem;
    }

    .contact-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .shape {
        display: none;
    }
}

@media (max-width: 400px) {
    .case-slide {
        height: 250px;
    }

    .case-overlay h4 {
        font-size: 1.1rem;
    }

    .case-stats span {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .tab {
        min-width: 100px;
        font-size: 0.75rem;
        padding: 10px 5px;
    }
}

/* ======== about page styling ======= */

/* ===== ABOUT PAGE SECTIONS ===== */
.aboutpage-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.aboutpage-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 40%, #0f2618, #060d08 70%);
    overflow: hidden;
    text-align: center;
    color: var(--text-color);
}

.aboutpage-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px,
            transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    z-index: 1;
    animation: drift 25s linear infinite;
}

.aboutpage-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
            rgba(159, 255, 88, 0.08) 0%,
            transparent 70%);
    z-index: 0;
}

.aboutpage-hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 0 20px;
}

.aboutpage-title {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 0 0 25px rgba(159, 255, 88, 0.1);
}

.aboutpage-title .accent {
    color: var(--accent-color);
}

.aboutpage-subtitle {
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.aboutpage-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.aboutpage-stat-item {
    text-align: center;
}

.aboutpage-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.aboutpage-stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission & Vision Section */
.aboutpage-mission-vision {
    background: linear-gradient(135deg, #0b1f18 0%, #0a0f0c 50%, #10271d 100%);
    position: relative;
}

.aboutpage-mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(162, 255, 90, 0.06), transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(162, 255, 90, 0.04), transparent 70%);
    pointer-events: none;
}

.aboutpage-mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.aboutpage-mission-card,
.aboutpage-vision-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.aboutpage-mission-card::before,
.aboutpage-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(159, 255, 88, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.aboutpage-mission-card:hover,
.aboutpage-vision-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(159, 255, 88, 0.1);
}

.aboutpage-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(159, 255, 88, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.aboutpage-mission-card:hover .aboutpage-card-icon,
.aboutpage-vision-card:hover .aboutpage-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(159, 255, 88, 0.15);
    box-shadow: 0 0 25px rgba(159, 255, 88, 0.3);
}

.aboutpage-card-title {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.aboutpage-card-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.aboutpage-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(159, 255, 88, 0.3);
}

.aboutpage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.aboutpage-button:hover::before {
    left: 100%;
}

.aboutpage-button:hover {
    background: #b7ff7c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(159, 255, 88, 0.5);
}

/* Story Cards Section */
.aboutpage-storycards {
    background: var(--primary-bg);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.badge-accent {
    display: inline-block;
    background: rgba(159, 255, 88, 0.15);
    color: var(--accent-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(159, 255, 88, 0.25);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.aboutpage-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 20px;
}

.aboutpage-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Slider Container ===== */
.story-slider-wrapper {
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutpage-storycards-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
}

.aboutpage-storycards-container::-webkit-scrollbar {
    display: none;
}

/* ===== Story Cards ===== */
.aboutpage-storycard {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: linear-gradient(145deg, var(--card-bg), #0e1310);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.aboutpage-storycard img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.storycard-year {
    display: inline-block;
    background: rgba(159, 255, 88, 0.1);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.aboutpage-storycard h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.aboutpage-storycard p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.aboutpage-storycard:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(159, 255, 88, 0.2);
}

/* ===== Navigation Buttons ===== */
.story-nav {
    background: rgba(159, 255, 88, 0.15);
    border: 1px solid rgba(159, 255, 88, 0.25);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: absolute;
    z-index: 10;
}

.story-nav:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(159, 255, 88, 0.5);
}

.story-nav.prev {
    left: 10px;
}

.story-nav.next {
    right: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .aboutpage-title {
        font-size: 2.2rem;
    }

    .aboutpage-storycard {
        flex: 0 0 320px;
    }
}

@media (max-width: 576px) {
    .aboutpage-storycard {
        flex: 0 0 280px;
    }

    .story-nav {
        width: 40px;
        height: 40px;
    }
}

/* CTA Section */
.aboutpage-cta {
    background: linear-gradient(135deg, #0e2a23 0%, #0a1f1a 100%);
    border-radius: 30px;
    margin: 80px auto;
    max-width: 1400px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.aboutpage-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(159, 255, 88, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(159, 255, 88, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.aboutpage-cta-content {
    padding: 80px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.aboutpage-cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aboutpage-cta-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ANIMATIONS ===== */
@keyframes drift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 80px 80px;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}

.delay-5 {
    animation-delay: 1.5s;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1200px) {
    .aboutpage-title {
        font-size: 3.2rem;
    }

    .aboutpage-mission-vision-content {
        gap: 40px;
    }

    .newsletter-section {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
}

@media (max-width: 992px) {
    .aboutpage-section {
        padding: 80px 0;
    }

    .aboutpage-hero {
        height: auto;
        min-height: 80vh;
        padding: 120px 0 80px;
    }

    .aboutpage-title {
        font-size: 2.8rem;
    }

    .aboutpage-subtitle {
        font-size: 1.05rem;
    }

    .aboutpage-mission-vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aboutpage-cta-content {
        padding: 60px 40px;
    }

    .aboutpage-cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .aboutpage-section {
        padding: 70px 0;
    }

    .aboutpage-title {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .aboutpage-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .aboutpage-stats {
        gap: 40px;
    }

    .aboutpage-stat-number {
        font-size: 2.5rem;
    }

    .aboutpage-mission-card,
    .aboutpage-vision-card {
        padding: 40px 30px;
    }

    .aboutpage-card-title {
        font-size: 1.6rem;
    }

    .aboutpage-cta-content {
        padding: 50px 30px;
    }

    .aboutpage-cta-title {
        font-size: 2.2rem;
    }

    .aboutpage-cta-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .aboutpage-section {
        padding: 60px 0;
    }

    .aboutpage-hero {
        padding: 100px 0 60px;
    }

    .aboutpage-title {
        font-size: 1.9rem;
    }

    .aboutpage-subtitle {
        font-size: 0.95rem;
        max-width: 400px;
    }

    .aboutpage-stats {
        gap: 30px;
    }

    .aboutpage-stat-number {
        font-size: 2rem;
    }

    .aboutpage-mission-card,
    .aboutpage-vision-card {
        padding: 30px 25px;
    }

    .aboutpage-card-title {
        font-size: 1.4rem;
    }

    .aboutpage-card-text {
        font-size: 1rem;
    }

    .aboutpage-button {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .aboutpage-cta-content {
        padding: 40px 20px;
    }

    .aboutpage-cta-title {
        font-size: 1.8rem;
    }

    .aboutpage-cta-subtitle {
        font-size: 1rem;
    }

}


/* ===== END OF ABOUT PAGE STYLES ===== */

/* ======= services page styling ====== */
/* ===== SERVICES PAGE SECTIONS ===== */
.servicespage-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.servicespage-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 40%, #0f2618, #060d08 70%);
    overflow: hidden;
    text-align: center;
    color: var(--text-color);
}

.servicespage-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px,
            transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    z-index: 1;
    animation: drift 25s linear infinite;
}

.servicespage-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
            rgba(159, 255, 88, 0.08) 0%,
            transparent 70%);
    z-index: 0;
}

.servicespage-hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 0 20px;
}

.servicespage-title {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 0 0 25px rgba(159, 255, 88, 0.1);
}

.servicespage-title .accent {
    color: var(--accent-color);
}

.servicespage-subtitle {
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.servicespage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.servicepage-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.servicepage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(159, 255, 88, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.servicepage-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(159, 255, 88, 0.1);
}

.servicepage-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(159, 255, 88, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.servicepage-card:hover .servicepage-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(159, 255, 88, 0.15);
    box-shadow: 0 0 25px rgba(159, 255, 88, 0.3);
}

.servicepage-card-title {
    color: var(--text-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.servicepage-card-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.servicepage-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.servicepage-features li {
    color: var(--text-gray);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.servicepage-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.servicepage-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(159, 255, 88, 0.3);
}

.servicepage-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.servicepage-button:hover::before {
    left: 100%;
}

.servicepage-button:hover {
    background: #b7ff7c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(159, 255, 88, 0.5);
}

/* Why Choose FPS Section */
.servicespage-why {
    background: linear-gradient(135deg, #0b1f18 0%, #0a0f0c 50%, #10271d 100%);
    position: relative;
}

.servicespage-why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(162, 255, 90, 0.06), transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(162, 255, 90, 0.04), transparent 70%);
    pointer-events: none;
}

.servicespage-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.servicespage-comparison-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.servicespage-comparison-card.with-fps {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(159, 255, 88, 0.1);
}

.servicespage-comparison-card:hover {
    transform: translateY(-5px);
}

.servicespage-comparison-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.servicespage-comparison-title.with-fps {
    color: var(--accent-color);
}

.servicespage-comparison-list {
    list-style: none;
    padding: 0;
}

.servicespage-comparison-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.servicespage-comparison-list.with-fps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.servicespage-comparison-list.without-fps li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.1rem;
}

/* FAQ Section */
.servicespage-faq {
    position: relative;
}

.servicespage-faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.servicespage-faq-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.servicespage-faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.servicespage-faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.servicespage-faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.servicespage-faq-answer {
    color: var(--text-gray);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.servicespage-faq-item.active .servicespage-faq-answer {
    max-height: 200px;
}

.servicespage-faq-toggle {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.servicespage-faq-item.active .servicespage-faq-toggle {
    transform: rotate(180deg);
}

.servicespage-faq-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.servicespage-faq-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.servicespage-faq-image:hover img {
    transform: scale(1.05);
}

/* ===== ANIMATIONS ===== */
@keyframes drift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 80px 80px;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}

.delay-5 {
    animation-delay: 1.5s;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1200px) {
    .servicespage-title {
        font-size: 3.2rem;
    }

    .servicespage-faq-content {
        gap: 40px;
    }

    .newsletter-section {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
}

@media (max-width: 992px) {
    .servicespage-section {
        padding: 80px 0;
    }

    .servicespage-hero {
        height: auto;
        min-height: 70vh;
        padding: 120px 0 80px;
    }

    .servicespage-title {
        font-size: 2.8rem;
    }

    .servicespage-subtitle {
        font-size: 1.05rem;
    }

    .servicespage-grid {
        grid-template-columns: 1fr;
    }

    .servicespage-comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .servicespage-faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .servicespage-faq-image {
        order: -1;
    }

}

@media (max-width: 768px) {
    .servicespage-section {
        padding: 70px 0;
    }

    .servicespage-title {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .servicespage-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .servicepage-card {
        padding: 30px 25px;
    }

    .servicepage-card-title {
        font-size: 1.4rem;
    }

    .servicespage-comparison-card {
        padding: 30px 25px;
    }

    .servicespage-faq-card {
        padding: 40px 30px;
    }

    .servicespage-faq-image img {
        height: 400px;
    }

}

@media (max-width: 576px) {
    .servicespage-section {
        padding: 60px 0;
    }

    .servicespage-hero {
        padding: 100px 0 60px;
    }

    .servicespage-title {
        font-size: 1.9rem;
    }

    .servicespage-subtitle {
        font-size: 0.95rem;
        max-width: 400px;
    }

    .servicepage-card {
        padding: 25px 20px;
    }

    .servicepage-card-title {
        font-size: 1.3rem;
    }

    .servicespage-comparison-card {
        padding: 25px 20px;
    }

    .servicespage-faq-card {
        padding: 30px 25px;
    }

    .servicespage-faq-image img {
        height: 300px;
    }

    .servicepage-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }


}

/* ===== END OF SERVICES PAGE STYLES ===== */

/*==========contact page styling ========*/

/* ===== CONTACT PAGE SECTIONS ===== */
.contactpage-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contactpage-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 40%, #0f2618, #060d08 70%);
    overflow: hidden;
    text-align: center;
    color: var(--text-color);
}

.contactpage-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px,
            transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    z-index: 1;
    animation: drift 25s linear infinite;
}

.contactpage-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
            rgba(159, 255, 88, 0.08) 0%,
            transparent 70%);
    z-index: 0;
}

.contactpage-hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 0 20px;
}

.contactpage-title {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 0 0 25px rgba(159, 255, 88, 0.1);
}

.contactpage-title .accent {
    color: var(--accent-color);
}

.contactpage-subtitle {
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Methods Section */
.contactpage-methods {
    background: linear-gradient(135deg, #0b1f18 0%, #0a0f0c 50%, #10271d 100%);
    position: relative;
}

.contactpage-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(162, 255, 90, 0.06), transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(162, 255, 90, 0.04), transparent 70%);
    pointer-events: none;
}

.contactpage-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contactpage-method-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.contactpage-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(159, 255, 88, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.contactpage-method-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(159, 255, 88, 0.1);
}

.contactpage-method-icon {
    width: 80px;
    height: 80px;
    background: rgba(159, 255, 88, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contactpage-method-card:hover .contactpage-method-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(159, 255, 88, 0.15);
    box-shadow: 0 0 25px rgba(159, 255, 88, 0.3);
}

.contactpage-method-title {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.contactpage-method-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contactpage-method-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contactpage-method-cta:hover {
    transform: translateX(5px);
}

/* Interactive Contact Widget */
.contactpage-widget {
    position: relative;
}

.contactpage-widget-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contactpage-interactive {
    background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.contactpage-interactive-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contactpage-interactive-subtitle {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contactpage-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contactpage-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.contactpage-option:hover {
    background: rgba(159, 255, 88, 0.1);
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.contactpage-option.active {
    background: rgba(159, 255, 88, 0.15);
    border-color: var(--accent-color);
}

.contactpage-option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.contactpage-option-icon {
    width: 50px;
    height: 50px;
    background: rgba(159, 255, 88, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.contactpage-option-title {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
}

.contactpage-option-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    padding-left: 65px;
}

.contactpage-visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    height: 500px;
    background: linear-gradient(135deg, rgba(159, 255, 88, 0.1) 0%, rgba(10, 15, 12, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contactpage-visual-content {
    text-align: center;
    padding: 40px;
}

.contactpage-visual-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contactpage-visual-text {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contactpage-visual-subtext {
    color: var(--text-gray);
    font-size: 1rem;
}

/* FAQ Section */
.contactpage-faq {
    background: linear-gradient(135deg, #0e2a23 0%, #0a1f1a 100%);
    border-radius: 30px;
    margin: 80px auto;
    max-width: 1400px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.contactpage-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(159, 255, 88, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(159, 255, 88, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contactpage-faq-content {
    padding: 80px 60px;
    position: relative;
    z-index: 1;
}

.contactpage-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contactpage-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contactpage-faq-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.contactpage-faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contactpage-faq-question i {
    color: var(--accent-color);
}

.contactpage-faq-answer {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes drift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 80px 80px;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}

.delay-5 {
    animation-delay: 1.5s;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1200px) {
    .contactpage-title {
        font-size: 3.2rem;
    }

    .contactpage-widget-content {
        gap: 40px;
    }

    .newsletter-section {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
}

@media (max-width: 992px) {
    .contactpage-section {
        padding: 80px 0;
    }

    .contactpage-hero {
        height: auto;
        min-height: 70vh;
        padding: 120px 0 80px;
    }

    .contactpage-title {
        font-size: 2.8rem;
    }

    .contactpage-subtitle {
        font-size: 1.05rem;
    }

    .contactpage-methods-grid {
        grid-template-columns: 1fr;
    }

    .contactpage-widget-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contactpage-visual {
        order: -1;
        height: 400px;
    }

    .contactpage-faq-content {
        padding: 60px 40px;
    }

    .contactpage-faq-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .contactpage-section {
        padding: 70px 0;
    }

    .contactpage-title {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .contactpage-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .contactpage-method-card {
        padding: 30px 25px;
    }

    .contactpage-interactive {
        padding: 40px 30px;
    }

    .contactpage-interactive-title {
        font-size: 1.6rem;
    }

    .contactpage-visual {
        height: 350px;
    }

    .contactpage-faq-content {
        padding: 50px 30px;
    }

}

@media (max-width: 576px) {
    .contactpage-section {
        padding: 60px 0;
    }

    .contactpage-hero {
        padding: 100px 0 60px;
    }

    .contactpage-title {
        font-size: 1.9rem;
    }

    .contactpage-subtitle {
        font-size: 0.95rem;
        max-width: 400px;
    }

    .contactpage-method-card {
        padding: 25px 20px;
    }

    .contactpage-interactive {
        padding: 30px 25px;
    }

    .contactpage-option-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contactpage-option-desc {
        padding-left: 0;
        text-align: center;
    }

    .contactpage-visual {
        height: 300px;
    }

    .contactpage-faq-content {
        padding: 40px 20px;
    }

}


/* ===== END OF CONTACT PAGE STYLES ===== */

/* ======= navbar logo ====== */
.navbar-logo {
    width: auto;
    height: 66px;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* Responsive scaling */
@media (max-width: 576px) {
    .navbar-logo {
        width: auto;
        height: 35px;
    }
}

/* ===== END OF NAVBAR LOGO STYLES ===== */

/* ===== blog page styling ===== */
/* ===== BLOG PAGE SECTIONS ===== */
.blogpage-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.blogpage-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 40%, #0f2618, #060d08 70%);
    overflow: hidden;
    text-align: center;
    color: var(--text-color);
}

.blogpage-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px,
            transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    z-index: 1;
    animation: drift 25s linear infinite;
}

.blogpage-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
            rgba(159, 255, 88, 0.08) 0%,
            transparent 70%);
    z-index: 0;
}

.blogpage-hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 0 20px;
}

.blogpage-title {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 0 0 25px rgba(159, 255, 88, 0.1);
}

.blogpage-title .accent {
    color: var(--accent-color);
}

.blogpage-subtitle {
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Post Section */
.blogpage-featured {
    background: linear-gradient(135deg, #0b1f18 0%, #0a0f0c 50%, #10271d 100%);
    position: relative;
}

.blogpage-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(162, 255, 90, 0.06), transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(162, 255, 90, 0.04), transparent 70%);
    pointer-events: none;
}

.blogpage-featured-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blogpage-featured-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(159, 255, 88, 0.1);
}

.blogpage-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blogpage-featured-card:hover .blogpage-featured-image {
    transform: scale(1.05);
}

.blogpage-featured-content {
    padding: 40px;
}

.blogpage-featured-badge {
    display: inline-block;
    background: rgba(159, 255, 88, 0.15);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.blogpage-featured-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blogpage-featured-excerpt {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.blogpage-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blogpage-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.blogpage-meta-item i {
    color: var(--accent-color);
}

.blogpage-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blogpage-read-more:hover {
    transform: translateX(5px);
}

/* Blog Grid Section */
.blogpage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blogpage-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.blogpage-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(159, 255, 88, 0.1);
}

.blogpage-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blogpage-card:hover .blogpage-card-image {
    transform: scale(1.05);
}

.blogpage-card-content {
    padding: 30px;
}

.blogpage-card-category {
    display: inline-block;
    background: rgba(159, 255, 88, 0.1);
    color: var(--accent-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.blogpage-card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blogpage-card-excerpt {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blogpage-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.blogpage-card-date {
    color: var(--text-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blogpage-card-date i {
    color: var(--accent-color);
}

/* ===== ANIMATIONS ===== */
@keyframes drift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 80px 80px;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}

.delay-5 {
    animation-delay: 1.5s;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1200px) {
    .blogpage-title {
        font-size: 3.2rem;
    }

    .newsletter-section {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
}

@media (max-width: 992px) {
    .blogpage-section {
        padding: 80px 0;
    }

    .blogpage-hero {
        height: auto;
        min-height: 60vh;
        padding: 120px 0 80px;
    }

    .blogpage-title {
        font-size: 2.8rem;
    }

    .blogpage-subtitle {
        font-size: 1.05rem;
    }

    .blogpage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blogpage-section {
        padding: 70px 0;
    }

    .blogpage-title {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .blogpage-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .blogpage-featured-content {
        padding: 30px 25px;
    }

    .blogpage-featured-title {
        font-size: 1.8rem;
    }

    .blogpage-card-content {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .blogpage-section {
        padding: 60px 0;
    }

    .blogpage-hero {
        padding: 100px 0 60px;
    }

    .blogpage-title {
        font-size: 1.9rem;
    }

    .blogpage-subtitle {
        font-size: 0.95rem;
        max-width: 400px;
    }

    .blogpage-featured-image {
        height: 300px;
    }

    .blogpage-featured-content {
        padding: 25px 20px;
    }

    .blogpage-featured-title {
        font-size: 1.5rem;
    }

    .blogpage-card-image {
        height: 200px;
    }
}

/* ===== END OF BLOG PAGE STYLES ===== */

/* ===============Blog posts========== */
/* ===== BLOG POST PAGE SECTIONS ===== */
.blogpost-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.blogpost-hero {
    position: relative;
    padding: 150px 0 100px;
    background: radial-gradient(circle at 30% 40%, #0f2618, #060d08 70%);
    overflow: hidden;
    color: var(--text-color);
}

.blogpost-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px,
            transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    z-index: 1;
    animation: drift 25s linear infinite;
}

.blogpost-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
            rgba(159, 255, 88, 0.08) 0%,
            transparent 70%);
    z-index: 0;
}

.blogpost-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.blogpost-badge {
    display: inline-block;
    background: rgba(159, 255, 88, 0.15);
    color: var(--accent-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.blogpost-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 0 25px rgba(159, 255, 88, 0.1);
}

.blogpost-title .accent {
    color: var(--accent-color);
}

.blogpost-excerpt {
    color: var(--text-gray);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
}

.blogpost-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blogpost-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 1rem;
}

.blogpost-meta-item i {
    color: var(--accent-color);
}

.blogpost-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Blog Content Section */
.blogpost-content {
    background: var(--primary-bg);
}

.blogpost-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.blogpost-article {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.blogpost-article h2 {
    font-size: 2.2rem;
    margin: 60px 0 25px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
}

.blogpost-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.blogpost-article h3 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: var(--text-color);
}

.blogpost-article p {
    margin-bottom: 25px;
    color: var(--text-gray);
}

.blogpost-article blockquote {
    border-left: 4px solid var(--accent-color);
    padding: 25px 30px;
    margin: 40px 0;
    background: rgba(159, 255, 88, 0.05);
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-color);
}

.blogpost-article ul,
.blogpost-article ol {
    margin: 25px 0;
    padding-left: 30px;
}

.blogpost-article li {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.blogpost-article li::marker {
    color: var(--accent-color);
}

.blogpost-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blogpost-highlight {
    background: linear-gradient(135deg, rgba(159, 255, 88, 0.1) 0%, rgba(10, 15, 12, 0.9) 100%);
    border: 1px solid rgba(159, 255, 88, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.blogpost-highlight-title {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blogpost-highlight-content {
    color: var(--text-color);
    line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
@keyframes drift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 80px 80px;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}

.delay-5 {
    animation-delay: 1.5s;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1200px) {
    .blogpost-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .blogpost-section {
        padding: 80px 0;
    }

    .blogpost-hero {
        padding: 120px 0 80px;
    }

    .blogpost-title {
        font-size: 2.5rem;
    }

    .blogpost-excerpt {
        font-size: 1.1rem;
    }

    .blogpost-hero-image {
        height: 400px;
    }

    .blogpost-article h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .blogpost-section {
        padding: 70px 0;
    }

    .blogpost-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .blogpost-excerpt {
        font-size: 1rem;
    }

    .blogpost-meta {
        gap: 20px;
    }

    .blogpost-hero-image {
        height: 300px;
    }

    .blogpost-article h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .blogpost-section {
        padding: 60px 0;
    }

    .blogpost-hero {
        padding: 100px 0 60px;
    }

    .blogpost-title {
        font-size: 1.8rem;
    }

    .blogpost-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .blogpost-hero-image {
        height: 250px;
    }

    .blogpost-article {
        font-size: 1rem;
    }
}

/* ------------Offline marketing page styles------------- */
  /* ===== OFFLINE MARKETING PAGE SECTIONS ===== */
        .offlinepage-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .offlinepage-hero {
            position: relative;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at 30% 40%, #0f2618, #060d08 70%);
            overflow: hidden;
            text-align: center;
            color: var(--text-color);
        }

        .offlinepage-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px,
                    transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 80px 80px;
            opacity: 0.3;
            z-index: 1;
            animation: drift 25s linear infinite;
        }

        .offlinepage-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 50%,
                    rgba(159, 255, 88, 0.08) 0%,
                    transparent 70%);
            z-index: 0;
        }

        .offlinepage-hero-content {
            position: relative;
            z-index: 3;
            max-width: 850px;
            padding: 0 20px;
        }

        .offlinepage-title {
            font-size: 3.6rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 25px;
            text-shadow: 0 0 25px rgba(159, 255, 88, 0.1);
        }

        .offlinepage-title .accent {
            color: var(--accent-color);
        }

        .offlinepage-subtitle {
            color: var(--text-gray);
            font-size: 1.15rem;
            line-height: 1.6;
            margin-bottom: 45px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Why Offline Marketing Section */
        .offlinepage-why {
            background: linear-gradient(135deg, #0b1f18 0%, #0a0f0c 50%, #10271d 100%);
            position: relative;
        }

        .offlinepage-why::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 40%, rgba(162, 255, 90, 0.06), transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(162, 255, 90, 0.04), transparent 70%);
            pointer-events: none;
        }

        .offlinepage-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .offlinepage-benefit-card {
            background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .offlinepage-benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(159, 255, 88, 0.03) 0%, transparent 50%);
            z-index: 0;
        }

        .offlinepage-benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(159, 255, 88, 0.1);
        }

        .offlinepage-benefit-icon {
            width: 80px;
            height: 80px;
            background: rgba(159, 255, 88, 0.08);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--accent-color);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .offlinepage-benefit-card:hover .offlinepage-benefit-icon {
            transform: scale(1.1) rotate(5deg);
            background: rgba(159, 255, 88, 0.15);
            box-shadow: 0 0 25px rgba(159, 255, 88, 0.3);
        }

        .offlinepage-benefit-title {
            color: var(--text-color);
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .offlinepage-benefit-text {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* Services Grid Section */
        .offlinepage-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .offlinepage-service-card {
            background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .offlinepage-service-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(159, 255, 88, 0.1);
        }

        .offlinepage-service-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .offlinepage-service-card:hover .offlinepage-service-image {
            transform: scale(1.05);
        }

        .offlinepage-service-content {
            padding: 30px;
        }

        .offlinepage-service-icon {
            width: 60px;
            height: 60px;
            background: rgba(159, 255, 88, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .offlinepage-service-card:hover .offlinepage-service-icon {
            background: rgba(159, 255, 88, 0.15);
            transform: scale(1.1);
        }

        .offlinepage-service-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 700;
            color: var(--text-color);
        }

        .offlinepage-service-text {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .offlinepage-service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }

        .offlinepage-service-features li {
            color: var(--text-gray);
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
            font-size: 0.9rem;
        }

        .offlinepage-service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        .offlinepage-service-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-color);
            color: var(--primary-bg);
            font-weight: 600;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .offlinepage-service-button:hover {
            background: #b7ff7c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(159, 255, 88, 0.3);
        }

        /* Process Section */
        .offlinepage-process {
            position: relative;
        }

        .offlinepage-process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .offlinepage-process-step {
            text-align: center;
            position: relative;
        }

        .offlinepage-process-number {
            width: 60px;
            height: 60px;
            background: rgba(159, 255, 88, 0.1);
            border: 2px solid var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .offlinepage-process-step:hover .offlinepage-process-number {
            background: var(--accent-color);
            color: var(--primary-bg);
            transform: scale(1.1);
        }

        .offlinepage-process-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .offlinepage-process-text {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes drift {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 80px 80px;
            }
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease-out forwards;
        }

        .delay-1 {
            animation-delay: 0.3s;
        }

        .delay-2 {
            animation-delay: 0.6s;
        }

        .delay-3 {
            animation-delay: 0.9s;
        }

        .delay-4 {
            animation-delay: 1.2s;
        }

        .delay-5 {
            animation-delay: 1.5s;
        }

        /* ===== MOBILE RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .offlinepage-title {
                font-size: 3.2rem;
            }

            .newsletter-section {
                grid-column: 1 / -1;
                margin-top: 20px;
            }
        }

        @media (max-width: 992px) {
            .offlinepage-section {
                padding: 80px 0;
            }

            .offlinepage-hero {
                height: auto;
                min-height: 80vh;
                padding: 120px 0 80px;
            }

            .offlinepage-title {
                font-size: 2.8rem;
            }

            .offlinepage-subtitle {
                font-size: 1.05rem;
            }

            .offlinepage-services-grid {
                grid-template-columns: 1fr;
            }

            .offlinepage-benefits-grid {
                grid-template-columns: 1fr;
            }

            .offlinepage-process-steps {
                grid-template-columns: 1fr;
            }
           
        }

        @media (max-width: 768px) {
            .offlinepage-section {
                padding: 70px 0;
            }

            .offlinepage-title {
                font-size: 2.3rem;
                line-height: 1.2;
            }

            .offlinepage-subtitle {
                font-size: 1rem;
                line-height: 1.5;
            }

            .offlinepage-service-content {
                padding: 25px 20px;
            }

        }

        @media (max-width: 576px) {
            .offlinepage-section {
                padding: 60px 0;
            }

            .offlinepage-hero {
                padding: 100px 0 60px;
            }

            .offlinepage-title {
                font-size: 1.9rem;
            }

            .offlinepage-subtitle {
                font-size: 0.95rem;
                max-width: 400px;
            }

            .offlinepage-benefit-card {
                padding: 30px 25px;
            }

            .offlinepage-service-card {
                padding: 20px;
            }
        }

/* ===== END OF OFFLINE MARKETING PAGE STYLES ===== *
    
/* brand strategy page styles */

        /* ===== BRAND STRATEGY PAGE SECTIONS ===== */
        .brandpage-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .brandpage-hero {
            position: relative;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at 30% 40%, #0f2618, #060d08 70%);
            overflow: hidden;
            text-align: center;
            color: var(--text-color);
        }

        .brandpage-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px,
                    transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 80px 80px;
            opacity: 0.3;
            z-index: 1;
            animation: drift 25s linear infinite;
        }

        .brandpage-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 50%,
                    rgba(159, 255, 88, 0.08) 0%,
                    transparent 70%);
            z-index: 0;
        }

        .brandpage-hero-content {
            position: relative;
            z-index: 3;
            max-width: 850px;
            padding: 0 20px;
        }

        .brandpage-title {
            font-size: 3.6rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 25px;
            text-shadow: 0 0 25px rgba(159, 255, 88, 0.1);
        }

        .brandpage-title .accent {
            color: var(--accent-color);
        }

        .brandpage-subtitle {
            color: var(--text-gray);
            font-size: 1.15rem;
            line-height: 1.6;
            margin-bottom: 45px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Why Brand Strategy Section */
        .brandpage-why {
            background: linear-gradient(135deg, #0b1f18 0%, #0a0f0c 50%, #10271d 100%);
            position: relative;
        }

        .brandpage-why::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 40%, rgba(162, 255, 90, 0.06), transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(162, 255, 90, 0.04), transparent 70%);
            pointer-events: none;
        }

        .brandpage-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .brandpage-benefit-card {
            background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .brandpage-benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(159, 255, 88, 0.03) 0%, transparent 50%);
            z-index: 0;
        }

        .brandpage-benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(159, 255, 88, 0.1);
        }

        .brandpage-benefit-icon {
            width: 80px;
            height: 80px;
            background: rgba(159, 255, 88, 0.08);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--accent-color);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .brandpage-benefit-card:hover .brandpage-benefit-icon {
            transform: scale(1.1) rotate(5deg);
            background: rgba(159, 255, 88, 0.15);
            box-shadow: 0 0 25px rgba(159, 255, 88, 0.3);
        }

        .brandpage-benefit-title {
            color: var(--text-color);
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .brandpage-benefit-text {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* Services Grid Section */
        .brandpage-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .brandpage-service-card {
            background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .brandpage-service-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(159, 255, 88, 0.1);
        }

        .brandpage-service-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .brandpage-service-card:hover .brandpage-service-image {
            transform: scale(1.05);
        }

        .brandpage-service-content {
            padding: 30px;
        }

        .brandpage-service-icon {
            width: 60px;
            height: 60px;
            background: rgba(159, 255, 88, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .brandpage-service-card:hover .brandpage-service-icon {
            background: rgba(159, 255, 88, 0.15);
            transform: scale(1.1);
        }

        .brandpage-service-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 700;
            color: var(--text-color);
        }

        .brandpage-service-text {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .brandpage-service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }

        .brandpage-service-features li {
            color: var(--text-gray);
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
            font-size: 0.9rem;
        }

        .brandpage-service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        .brandpage-service-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-color);
            color: var(--primary-bg);
            font-weight: 600;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .brandpage-service-button:hover {
            background: #b7ff7c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(159, 255, 88, 0.3);
        }

        /* Process Section */
        .brandpage-process {
            background: linear-gradient(135deg, #0e2a23 0%, #0a1f1a 100%);
            border-radius: 30px;
            margin: 80px auto;
            max-width: 1400px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .brandpage-process::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(159, 255, 88, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(159, 255, 88, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .brandpage-process-content {
            padding: 60px 40px;
            position: relative;
            z-index: 1;
        }

        .brandpage-process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .brandpage-process-step {
            text-align: center;
            position: relative;
        }

        .brandpage-process-number {
            width: 70px;
            height: 70px;
            background: rgba(159, 255, 88, 0.1);
            border: 2px solid var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .brandpage-process-step:hover .brandpage-process-number {
            background: var(--accent-color);
            color: var(--primary-bg);
            transform: scale(1.1);
        }

        .brandpage-process-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .brandpage-process-text {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes drift {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 80px 80px;
            }
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease-out forwards;
        }

        .delay-1 {
            animation-delay: 0.3s;
        }

        .delay-2 {
            animation-delay: 0.6s;
        }

        .delay-3 {
            animation-delay: 0.9s;
        }

        .delay-4 {
            animation-delay: 1.2s;
        }

        .delay-5 {
            animation-delay: 1.5s;
        }

        /* ===== MOBILE RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .brandpage-title {
                font-size: 3.2rem;
            }

            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr;
            }

            .newsletter-section {
                grid-column: 1 / -1;
                margin-top: 20px;
            }
        }

        @media (max-width: 992px) {
            .brandpage-section {
                padding: 80px 0;
            }

            .brandpage-hero {
                height: auto;
                min-height: 80vh;
                padding: 120px 0 80px;
            }

            .brandpage-title {
                font-size: 2.8rem;
            }

            .brandpage-subtitle {
                font-size: 1.05rem;
            }

            .brandpage-services-grid {
                grid-template-columns: 1fr;
            }

            .brandpage-benefits-grid {
                grid-template-columns: 1fr;
            }

            .brandpage-process-steps {
                grid-template-columns: 1fr;
            }

            .brandpage-portfolio-grid {
                grid-template-columns: 1fr;
            }

        }

        @media (max-width: 768px) {
            .brandpage-section {
                padding: 70px 0;
            }

            .brandpage-title {
                font-size: 2.3rem;
                line-height: 1.2;
            }

            .brandpage-subtitle {
                font-size: 1rem;
                line-height: 1.5;
            }

            .brandpage-service-content {
                padding: 25px 20px;
            }

            .brandpage-process-content {
                padding: 50px 30px;
            }

        }

        @media (max-width: 576px) {
            .brandpage-section {
                padding: 60px 0;
            }

            .brandpage-hero {
                padding: 100px 0 60px;
            }

            .brandpage-title {
                font-size: 1.9rem;
            }

            .brandpage-subtitle {
                font-size: 0.95rem;
                max-width: 400px;
            }

            .brandpage-benefit-card {
                padding: 30px 25px;
            }

            .brandpage-service-card {
                padding: 20px;
            }

            .brandpage-process-content {
                padding: 40px 20px;
            }

        }


        /* ===== END OF BRAND STRATEGY PAGE STYLES ===== */

        /* ===== Paid Advertising PAGE STYLES ===== */
                .paidpage-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .paidpage-title {
            font-size: 3.6rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 25px;
            text-shadow: 0 0 25px rgba(159, 255, 88, 0.1);
        }

        .paidpage-title .accent {
            color: var(--accent-color);
        }

        .paidpage-subtitle {
            color: var(--text-gray);
            font-size: 1.15rem;
            line-height: 1.6;
            margin-bottom: 45px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Badge Styles */
        .badge-accent {
            display: inline-block;
            background: rgba(159, 255, 88, 0.1);
            color: var(--accent-color);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            border: 1px solid rgba(159, 255, 88, 0.2);
        }

        /* Why Paid Advertising Section */
        .paidpage-why {
            background: linear-gradient(135deg, #0b1f18 0%, #0a0f0c 50%, #10271d 100%);
            position: relative;
        }

        .paidpage-why::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 40%, rgba(162, 255, 90, 0.06), transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(162, 255, 90, 0.04), transparent 70%);
            pointer-events: none;
        }

        .paidpage-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .paidpage-benefit-card {
            background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .paidpage-benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(159, 255, 88, 0.03) 0%, transparent 50%);
            z-index: 0;
        }

        .paidpage-benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(159, 255, 88, 0.1);
        }

        .paidpage-benefit-icon {
            width: 80px;
            height: 80px;
            background: rgba(159, 255, 88, 0.08);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--accent-color);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .paidpage-benefit-card:hover .paidpage-benefit-icon {
            transform: scale(1.1) rotate(5deg);
            background: rgba(159, 255, 88, 0.15);
            box-shadow: 0 0 25px rgba(159, 255, 88, 0.3);
        }

        .paidpage-benefit-title {
            color: var(--text-color);
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .paidpage-benefit-text {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* Services Grid Section */
        .paidpage-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .paidpage-service-card {
            background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .paidpage-service-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(159, 255, 88, 0.1);
        }

        .paidpage-service-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .paidpage-service-card:hover .paidpage-service-image {
            transform: scale(1.05);
        }

        .paidpage-service-content {
            padding: 30px;
        }

        .paidpage-service-icon {
            width: 60px;
            height: 60px;
            background: rgba(159, 255, 88, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .paidpage-service-card:hover .paidpage-service-icon {
            background: rgba(159, 255, 88, 0.15);
            transform: scale(1.1);
        }

        .paidpage-service-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 700;
            color: var(--text-color);
        }

        .paidpage-service-text {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .paidpage-service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }

        .paidpage-service-features li {
            color: var(--text-gray);
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
            font-size: 0.9rem;
        }

        .paidpage-service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
        }

        .paidpage-service-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-color);
            color: var(--primary-bg);
            font-weight: 600;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .paidpage-service-button:hover {
            background: #b7ff7c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(159, 255, 88, 0.3);
        }

        /* Platform Specialties Section */
        .paidpage-platforms {
            background: linear-gradient(135deg, #0e2a23 0%, #0a1f1a 100%);
            border-radius: 30px;
            margin: 80px auto;
            max-width: 1400px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .paidpage-platforms::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(159, 255, 88, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(159, 255, 88, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .paidpage-platforms-content {
            padding: 60px 40px;
            position: relative;
            z-index: 1;
        }

        .paidpage-platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .paidpage-platform-card {
            background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .paidpage-platform-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(159, 255, 88, 0.1);
        }

        .paidpage-platform-icon {
            width: 80px;
            height: 80px;
            background: rgba(159, 255, 88, 0.08);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            color: var(--accent-color);
            transition: all 0.4s ease;
        }

        .paidpage-platform-card:hover .paidpage-platform-icon {
            transform: scale(1.1);
            background: rgba(159, 255, 88, 0.15);
            box-shadow: 0 0 25px rgba(159, 255, 88, 0.3);
        }

        .paidpage-platform-title {
            color: var(--text-color);
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .paidpage-platform-text {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .paidpage-platform-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
        }

        .paidpage-platform-stat {
            text-align: center;
        }

        .paidpage-platform-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            display: block;
            line-height: 1;
        }

        .paidpage-platform-label {
            font-size: 0.75rem;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Process Section */
        .paidpage-process {
            position: relative;
        }

        .paidpage-process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .paidpage-process-step {
            text-align: center;
            position: relative;
        }

        .paidpage-process-number {
            width: 70px;
            height: 70px;
            background: rgba(159, 255, 88, 0.1);
            border: 2px solid var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .paidpage-process-step:hover .paidpage-process-number {
            background: var(--accent-color);
            color: var(--primary-bg);
            transform: scale(1.1);
        }

        .paidpage-process-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .paidpage-process-text {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Results Section */
        .paidpage-results {
            background: linear-gradient(135deg, #0b1f18 0%, #0a0f0c 50%, #10271d 100%);
            position: relative;
        }

        .paidpage-results::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 40%, rgba(162, 255, 90, 0.06), transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(162, 255, 90, 0.04), transparent 70%);
            pointer-events: none;
        }

        .paidpage-results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .paidpage-result-card {
            background: linear-gradient(145deg, var(--card-bg) 0%, #0e1310 100%);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .paidpage-result-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(159, 255, 88, 0.1);
        }

        .paidpage-result-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 15px;
            display: block;
            line-height: 1;
        }

        .paidpage-result-title {
            color: var(--text-color);
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .paidpage-result-text {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* CTA Section */
        .paidpage-cta {
            background: linear-gradient(135deg, #0b1f18 0%, #0a0f0c 50%, #10271d 100%);
            position: relative;
        }

        .paidpage-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 40%, rgba(162, 255, 90, 0.06), transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(162, 255, 90, 0.04), transparent 70%);
            pointer-events: none;
        }

        .paidpage-cta-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .paidpage-cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--text-color);
        }

        .paidpage-cta-subtitle {
            color: var(--text-gray);
            font-size: 1.1rem;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .paidpage-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        /* ===== ANIMATIONS ===== */
        @keyframes drift {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 80px 80px;
            }
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease-out forwards;
        }

        .delay-1 {
            animation-delay: 0.3s;
        }

        .delay-2 {
            animation-delay: 0.6s;
        }

        .delay-3 {
            animation-delay: 0.9s;
        }

        .delay-4 {
            animation-delay: 1.2s;
        }

        .delay-5 {
            animation-delay: 1.5s;
        }

        /* ===== MOBILE RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .paidpage-title {
                font-size: 3.2rem;
            }

        }

        @media (max-width: 992px) {
            .paidpage-section {
                padding: 80px 0;
            }

            .paidpage-title {
                font-size: 2.8rem;
            }

            .paidpage-subtitle {
                font-size: 1.05rem;
            }

            .paidpage-services-grid {
                grid-template-columns: 1fr;
            }

            .paidpage-benefits-grid {
                grid-template-columns: 1fr;
            }

            .paidpage-platforms-grid {
                grid-template-columns: 1fr;
            }

            .paidpage-process-steps {
                grid-template-columns: 1fr;
            }

            .paidpage-results-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .paidpage-section {
                padding: 70px 0;
            }

            .paidpage-title {
                font-size: 2.3rem;
                line-height: 1.2;
            }

            .paidpage-subtitle {
                font-size: 1rem;
                line-height: 1.5;
            }

            .paidpage-service-content {
                padding: 25px 20px;
            }

            .paidpage-platforms-content {
                padding: 50px 30px;
            }

        }

        @media (max-width: 576px) {
            .paidpage-section {
                padding: 60px 0;
            }

            .paidpage-title {
                font-size: 1.9rem;
            }

            .paidpage-subtitle {
                font-size: 0.95rem;
                max-width: 400px;
            }

            .paidpage-benefit-card {
                padding: 30px 25px;
            }

            .paidpage-service-card {
                padding: 20px;
            }

            .paidpage-platforms-content {
                padding: 40px 20px;
            }

        }
