/* Theme Variables */
:root {
    /* Light Theme (Default) */
    --primary-color: #8E39CE;
    --secondary-color: #6407A4;
    --text-color: #0F172A;
    --bg-color: #F8F9FF;
    --text-gray: #666666;
    --card-bg: white;
    --nav-bg: white;
    --footer-bg: #0F172A;
    --border-color: #e5e5e5;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --section-bg: #ffffff;
    --card-border: #eaeaea;
    --section-border: #f0f0f0;
    --pricing-card-bg: white;
    --testimonial-text: #666666;
    --footer-text: white;
    --stats-bg: #0F172A;
    --stats-text: white;
    --campaign-bg: #0F172A;
    --campaign-text: white;
}

/* Dark Theme */
[data-theme="dark"] {
    --primary-color: #A64FE6;
    --secondary-color: #8E39CE;
    --text-color: #F8F9FF;
    --bg-color: #0F172A;
    --text-gray: #C4C4C4;
    --card-bg: #1A2234;
    --nav-bg: #1A2234;
    --footer-bg: #0D1526;
    --border-color: #2A3344;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --section-bg: #1A2234;
    --pricing-card-bg: rgba(255, 255, 255, 0.05);
    --testimonial-text: #C4C4C4;
    --footer-text: #F8F9FF;
    --stats-bg: #1A2234;
    --stats-text: #F8F9FF;
    --campaign-bg: #1A2234;
    --campaign-text: #F8F9FF;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 2px 10px var(--shadow-color);
    z-index: 1000;
    transition: transform 0.5s ease;
}

.theme-toggle:hover {
    transform: rotate(180deg);
    background: var(--secondary-color);
}

.theme-toggle i {
    transition: transform 0.5s ease;
}

.theme-toggle:hover i {
    transform: rotate(360deg);
}

/* Update existing styles with new variables */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: var(--nav-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.logo h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo span {
    color: var(--primary-color);
}

.menu-btn {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1100;
    gap: 5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.login-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.login-btn:hover {
    background-color: var(--secondary-color);
}

/* Mobile Navigation */
@media screen and (max-width: 950px) {
    .menu-btn {
        display: flex !important;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100vw;
        background-color: var(--nav-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
        z-index: 99;
        padding: 0;
        opacity: 0;
        transform: translateX(80px);
        pointer-events: none;
    }
    .nav-links.active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }
    .nav-links a {
        font-size: 1.2rem;
    }
    .login-btn {
        background-color: white;
        color: var(--primary-color) !important;
        border: 2px solid var(--primary-color) !important;
        width: 200px;
    }
    .login-btn:hover {
        background: var(--primary-color) !important;
        color: white !important;
    }
}
@media screen and (min-width: 951px) {
    .menu-btn {
        display: none !important;
    }
    .nav-links {
        position: static !important;
        height: auto !important;
        width: auto !important;
        background: none !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        gap: 2rem !important;
        transition: none !important;
        padding: 0 !important;
    }
    .nav-links a {
        font-size: 1rem !important;
    }
    .login-btn {
        width: auto !important;
        background: var(--primary-color) !important;
        color: white !important;
        border: none !important;
    }
}

@media screen and (max-width: 984px) and (min-width: 769px) {
    .footer-content {
        display: flex;
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
        justify-content: space-between;
    }
    .footer-left {
        max-width: 350px;
        margin-bottom: 0;
        text-align: left;
    }
    .footer-links {
        flex-direction: row;
        gap: 2.5rem;
        margin-bottom: 0;
    }
    .footer-column h3 {
        font-size: 1.15rem;
    }
    .footer-column ul li a {
        font-size: 1rem;
    }
}

.pricing-card {
    background: var(--pricing-card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
}

/* Add transition to all color changes */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
}
a{
    text-decoration: none;
}
/* Hero Section Styles */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 2rem 4rem;
    position: relative;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeIn 1s ease-out;
}

.hero-content h2,
.hero-content h1,
.hero-content p {
    text-align: left;
    width: 100%;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    width: 100%;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    animation: slideIn 1s ease-out;
}

.hero-svg {
    width: 100%;
    height: auto;
    max-width: 450px;
    animation: float 6s ease-in-out infinite;
}

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

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
    animation: bounce 2s infinite;
}

.scroll-down span {
    font-size: 0.9rem;
    color: var(--text-color);
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .stats-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    @media screen and (min-width: 500px) {
        .stats-container {
            grid-template-columns: 1fr 1fr;
        }
    }
    .stat-card {
        flex: unset;
        width: 100%;
        min-width: 0;
    }
}

.cta-buttons button {
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
}

.shop-now {
    background-color: var(--primary-color);
    color: white;
}

.shop-now:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-us {
    background-color: transparent;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color);
}

.contact-us:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Stats Section */
.stats-section {
    background-color: var(--stats-bg);
    padding: 3rem 0;
    margin-top: 2rem;
    color: var(--stats-text);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: scaleIn 0.5s ease-out;
    animation-fill-mode: both;
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.stat-info {
    color: var(--stats-text);
}

.stat-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.stat-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Campaign Section */
.campaign-section {
    background-color: var(--campaign-bg);
    padding: 4rem 0;
    color: var(--campaign-text);
    border-bottom: 1px solid var(--section-border);
}

.campaign-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: left;
    gap: 4rem;
    padding: 0 2rem;
}

.campaign-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.campaign-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.campaign-content {
    flex: 1;
    max-width: 600px;
}

.campaign-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.campaign-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.campaign-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: #fff;
}

.campaign-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.campaign-btn {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.campaign-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.campaign-btn i {
    transition: transform 0.3s ease;
}

.campaign-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .stats-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    @media screen and (min-width: 500px) {
        .stats-container {
            grid-template-columns: 1fr 1fr;
        }
    }
    .stat-card {
        flex: unset;
        width: 100%;
        min-width: 0;
    }
}

/* Services Section */
.services-section {
    background-color: var(--section-bg);
    padding: 4rem 0;
    color: var(--text-color);
    border-top: 1px solid var(--section-border);
    border-bottom: 1px solid var(--section-border);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.pricing-card {
    background: var(--pricing-card-bg);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    background: rgba(108, 7, 164, 0.1);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.plan-desc {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.price-type {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.try-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.try-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.features-list li.available {
    color: var(--text-color);
}

.features-list li i {
    font-size: 1rem;
}

.features-list li.available i {
    color: var(--primary-color);
}

.features-list li.unavailable i {
    color: #666;
}

.brand-logo {
    text-align: center;
    margin-top: auto;
}

.logo-img {
    height: 30px;
    opacity: 0.7;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .scroll-down {
        display: none;
    }
}

/* Footer */
.footer {
    position: relative;
    padding: 6rem 2rem 2rem;
    color: var(--footer-text);
    overflow: hidden;
}

.footer-content {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    z-index: 2;
}

.footer-left {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

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

.footer-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--footer-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-left p {
    color: var(--footer-text);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h3 {
    color: var(--footer-text);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1.2rem;
}

.footer-column ul li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(5px);
}

.footer-column ul li a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover::before {
    opacity: 1;
    left: -25px;
}

.footer-bottom {
    position: relative;
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.footer-bottom p {
    color: var(--footer-text);
    font-size: 1rem;
    opacity: 0.9;
}

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2.2rem;
        align-items: stretch;
        padding: 0 0.5rem;
    }
    .footer-left {
        text-align: center;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    .footer-btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 1.2rem auto;
        display: block;
        font-size: 1rem;
        padding: 13px 0;
    }
    .footer-links {
        display: block !important;
        width: 100% !important;
        flex-direction: unset !important;
        gap: 0 !important;
        align-items: unset !important;
        text-align: left;
        margin: 0 auto;
    }
    .footer-column {
        display: block !important;
        width: 100% !important;
        margin-bottom: 1.2rem;
        text-align: center;
    }
    .footer-column h3 {
        font-size: 1.08rem;
        margin-bottom: 0.7rem;
    }
    .footer-column ul {
        padding-left: 0;
        margin: 0 auto;
        display: inline-block;
        text-align: left;
    }
    .footer-column ul li {
        margin-bottom: 0.5rem;
    }
    .footer-column ul li a {
        font-size: 0.98rem;
        padding: 0.2rem 0;
    }
    .footer {
        padding: 2.2rem 0.5rem 1.2rem;
        font-size: 0.98rem;
    }
    .footer-bottom {
        text-align: center;
        justify-content: center;
        align-items: center;
        font-size: 0.97rem;
        padding-top: 1.2rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

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

@keyframes slideIn {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

/* Apply Animations to Elements */
.hero-content h1, 
.hero-content h2,
.hero-content p,
.hero-content .cta-buttons {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.hero-content h2 {
    animation-delay: 0.2s;
}

.hero-content h1 {
    animation-delay: 0.4s;
}

.hero-content p {
    animation-delay: 0.6s;
}

.hero-content .cta-buttons {
    animation-delay: 0.8s;
}

.hero-image {
    opacity: 0;
    animation: slideIn 0.8s ease 0.4s forwards;
}

/* Stats Animation */
.stat-card {
    opacity: 0;
    animation: scaleIn 0.5s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Campaign Section Animation */
.campaign-image {
    opacity: 0;
    animation: slideIn 0.8s ease forwards;
}

.campaign-content {
    opacity: 0;
    animation: slideIn 0.8s ease forwards;
}

/* Pricing Cards Animation */
.pricing-card {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }

/* Footer Animations */
.footer-left, 
.footer-column {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.footer-left {
    animation-delay: 0.2s;
}

.footer-column:nth-child(1) {
    animation-delay: 0.4s;
}

.footer-column:nth-mode(2) {
    animation-delay: 0.6s;
}

/* Enhanced Button Animations */
.cta-buttons button,
.campaign-btn,
.try-btn,
.footer-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-buttons button:hover,
.campaign-btn:hover,
.try-btn:hover,
.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons button:active,
.campaign-btn:active,
.try-btn:active,
.footer-btn:active {
    transform: translateY(-1px);
}

/* Enhanced Nav Links Animation */
.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Scroll Down Animation Enhancement */
@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-15px) rotate(45deg);
    }
    60% {
        transform: translateY(-7px) rotate(45deg);
    }
}

.arrow-down {
    animation: bounceArrow 2s infinite;
}

/* Wave Background Animation */
@keyframes wave {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.wave-bg img {
    animation: wave 8s ease-in-out infinite;
}

/* Scroll Animation Classes */
.scroll-hidden {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}

.scroll-show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Reset existing animations that conflict with scroll animations */
.hero-content h1, 
.hero-content h2,
.hero-content p,
.hero-content .cta-buttons,
.hero-image,
.stat-card,
.campaign-image,
.campaign-content,
.pricing-card,
.footer-left, 
.footer-column {
    opacity: 1;
    animation: none;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--section-bg);
    padding: 6rem 0;
    color: var(--text-color);
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50%);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-card.prev {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
}

.testimonial-card.next {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
   
    border: 4px solid var(--primary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.testimonial-content h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.testimonial-content span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

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

.prev-btn,
.next-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--primary-color);
    color: white;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(146, 146, 146, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

@media screen and (max-width: 768px) {
    .testimonials-slider {
        height: 500px;
    }

    .testimonial-card {
        padding: 1rem;
    }

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

    .testimonial-image {
        width: 100px;
        height: 100px;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 6rem 2rem;
    text-align: center;
    color: rgb(0, 0, 0);
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-section {
    padding: 5rem 2rem;
    background-color: var(--bg-color);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(142, 57, 206, 0.1);
    border-radius: 50%;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-item p {
    color: var(--text-secondary);
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: transparent;
}

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

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
}

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

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

.map-section {
    padding: 5rem 2rem;
    background-color: var(--bg-color);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-section {
    padding: 5rem 2rem;
    background-color: white;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.faq-item {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Light Theme Specific Styles */
@media (prefers-color-scheme: light), (data-theme: light) {
    .navbar {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .pricing-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .testimonial-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .contact-form {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .stat-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .form-group input,
    .form-group textarea {
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        box-shadow: 0 0 0 3px rgba(142, 57, 206, 0.1);
    }
}

/* Remove any remaining borders */
.pricing-card,
.testimonial-card,
.contact-form,
.stat-card,
.form-group input,
.form-group textarea {
    border: none !important;
}

.services-section,
.stats-section,
.campaign-section {
    border: none !important;
}

/* Tablet Responsive Styles */
@media screen and (max-width: 1024px) {
    /* Hero Section */
    .hero-section {
        padding: 3rem 2rem;
        gap: 3rem;
        min-height: auto;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        max-width: 600px;
        margin-bottom: 2rem;
    }

    .hero-image {
        max-width: 450px;
        margin: 0 auto;
    }

    /* Stats Section */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .stat-card {
        padding: 2rem;
    }

    .stat-info h3 {
        font-size: 1.4rem;
    }

    /* Campaign Section */
    .campaign-container {
        padding: 3rem 2rem;
        gap: 3rem;
    }

  

    .campaign-content h2 {
        font-size: 2.5rem;
    }

    .campaign-content h3 {
        font-size: 2.2rem;
    }

    .campaign-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* Services Section */
    .pricing-container {
        gap: 2rem;
        padding: 2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    /* Testimonials Section */
    .testimonials-container {
        padding: 3rem 2rem;
    }

    .testimonial-card {
        padding: 2.5rem;
    }

    .testimonial-content p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .testimonial-image {
        width: 120px;
        height: 120px;
        margin-bottom: 2rem;
    }

    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }

    .contact-info p {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 2.5rem;
        max-width: 100%;
    }

    .form-group input,
    .form-group textarea {
        padding: 1.2rem;
        font-size: 1.1rem;
    }

    /* Footer */
    .footer {
        padding: 4rem 2.5rem 2rem;
    }

    .footer-content {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
    }

    .footer-left {
        max-width: 350px;
        margin-bottom: 0;
        text-align: left;
    }

    .footer-links {
        flex-direction: row;
        gap: 2.5rem;
        margin-bottom: 0;
    }

    .footer-column h3 {
        font-size: 1.15rem;
    }

    .footer-column ul li a {
        font-size: 1rem;
    }

    /* Navigation */
    .navbar {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 1.1rem;
        text-align: center;
        text-decoration: none;
    }

    .login-btn {
        padding: 0.8rem 1.8rem;
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background-color: var(--nav-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
        z-index: 99;
        padding: 0;
        opacity: 0;
        transform: translateX(80px);
        pointer-events: none;
    }

    .nav-links.active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    .hero-section {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .stats-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    @media screen and (min-width: 500px) {
        .stats-container {
            grid-template-columns: 1fr 1fr;
        }
    }
    .stat-card {
        flex: unset;
        width: 100%;
        min-width: 0;
    }
}

/* Large Desktop Styles */
@media screen and (min-width: 1400px) {
    .hero-section,
    .stats-container,
    .campaign-container,
    .pricing-container,
    .testimonials-container,
    .contact-container,
    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Medium Tablet Styles (950px - 768px) */
@media screen and (max-width: 950px) and (min-width: 769px) {
    .hero-section {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 500px;
    }

    .hero-image {
        max-width: 380px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card h3 {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .campaign-container {
        padding: 2rem 1.5rem;
        gap: 2rem;
        display: column;
    }

    .campaign-content h2 {
        font-size: 2.2rem;
    }

    .campaign-content h3 {
        font-size: 1.8rem;
    }

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

    .testimonials-container {
        padding: 2rem 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

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

    .contact-container {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
    }

    .footer-content {
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .footer-left h2 {
        font-size: 2rem;
    }

    .footer-left p {
        font-size: 1rem;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .footer-column h3 {
        font-size: 1.2rem;
    }

    .footer-column ul li a {
        font-size: 1rem;
    }

    /* Fix navigation spacing */
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .login-btn {
        padding: 0.7rem 1.5rem;
    }

    /* Adjust section titles */
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

/* Templates Section */
.templates-section {
    background-color: var(--section-bg);
    padding: 6rem 0;
    color: var(--text-color);
}

.templates-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.template-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--text-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.template-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.template-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.template-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

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

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.preview-btn,
.details-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.details-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.preview-btn:hover,
.details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.template-info {
    padding: 1.5rem;
}

.template-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.template-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.template-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.category {
    background: rgba(142, 57, 206, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.load-more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    width: 100%;
}

.load-more-btn {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.load-more-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Templates Section */
@media screen and (max-width: 768px) {
    .templates-section {
        padding: 4rem 0;
    }

    .template-filters {
        padding: 0 1rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .templates-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .template-info h3 {
        font-size: 1.1rem;
    }

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

    .price {
        font-size: 1.1rem;
    }

    .load-more-btn {
        padding: 0.8rem 2rem;
    }
}

/* Full Templates Page Styles */
.full-templates {
    padding-top: 2rem;
}

.full-templates .templates-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.full-templates .template-filters {
    margin: 2rem 0 3rem;
}

@media screen and (max-width: 768px) {
    .full-templates .templates-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

/* Preview Modal Styles */
.preview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    width: 90%;
    height: 50%;
    margin: 2% auto;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    animation: scaleIn 0.3s ease;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.close-modal:hover {
    transform: rotate(90deg);
    color: var(--primary-color);
}

.iframe-container {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleIn {
    from { transform: scale(0.9); }
    to { transform: scale(1); }
}

@media screen and (max-width: 768px) {
    .modal-content {
        width: 100%;
        height: 50%;
        margin: 0;
        border-radius: 0;
    }

    .iframe-container {
        height: 100vh;
        padding-top: 50px; /* Kapatma butonu için üstte boşluk */
    }

    .close-modal {
        top: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Mobil scrollbar stilleri */
    .iframe-container::-webkit-scrollbar {
        width: 5px;
    }

    .iframe-container::-webkit-scrollbar-track {
        background: transparent;
    }

    .iframe-container::-webkit-scrollbar-thumb {
        background: rgba(136, 136, 136, 0.5);
        border-radius: 10px;
    }
}

/* Özel scrollbar stilleri */
.iframe-container::-webkit-scrollbar {
    width: 10px;
}

.iframe-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.iframe-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.iframe-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem;
    text-align: center;
    color: white;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.about-story {
    padding: 6rem 2rem;
    background-color: var(--section-bg);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

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

.about-team {
    padding: 6rem 2rem;
    background-color: var(--bg-color);
}

.team-container {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.team-member span {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.about-values {
    padding: 6rem 2rem;
    background-color: var(--section-bg);
}

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

.value-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

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

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

.value-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design for About Page */
@media screen and (max-width: 768px) {
    .about-hero {
        padding: 6rem 1rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .team-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .member-image {
        width: 150px;
        height: 150px;
    }

    .values-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .about-story,
    .about-team,
    .about-values {
        padding: 4rem 1rem;
    }
}

@media screen and (max-width: 950px) {
    .quote-icon {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
}

@media screen and (max-width: 800px) and (min-width: 769px) {
    .stats-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .stat-card {
        flex: unset;
        width: 100%;
        min-width: 0;
        padding: 1.2rem !important;
    }
    .scroll-down {
        bottom: -1rem !important;
    }
    .cta-buttons button {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.95rem !important;
    }
}
@media screen and (max-width: 800px) {
    .references-grid,
    .templates-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media screen and (max-width: 900px) {
    .logo h1 {
        font-size: 1.1rem !important;
    }
}

@media screen and (max-width: 800px) {
    .logo h1 {
        font-size: 0.95rem !important;
    }
}

@media screen and (max-width: 775px) {
    .campaign-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
        padding: 1.5rem 0.5rem !important;
    }
    .campaign-image {
        order: 0 !important;
        width: 100% !important;
        justify-content: left;
        margin-bottom: 0.5rem !important;
        display: flex !important;
    }
    .campaign-image img {
        max-width: 320px !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }
    .campaign-content {
        order: 1 !important;
        width: 100% !important;
        text-align: left !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media screen and (max-width: 600px) {
    .campaign-content {
        text-align: left;
    }
}

@media screen and (min-width: 991px) {
    .scroll-down {
        display: flex !important;
    }
}

@media screen and (max-width: 980px) {
    .scroll-down {
        display: none !important;
    }
}
@media screen and (min-width: 950px) and (max-width: 980px) {
    .scroll-down {
        display: flex !important;
    }
}

/* Section giriş animasyonu */
.section-title, .section-subtitle {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.7s cubic-bezier(.4,0,.2,1) forwards;
}
.section-title { animation-delay: 0.1s; }
.section-subtitle { animation-delay: 0.2s; }

.stats-section, .campaign-section, .testimonials-section {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeIn 0.8s cubic-bezier(.4,0,.2,1) forwards;
    animation-delay: 0.2s;
}

/* Butonlara parıltı efekti */
.cta-buttons button, .campaign-btn {
    position: relative;
    overflow: hidden;
}
.cta-buttons button::before, .campaign-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.cta-buttons button:hover::before, .campaign-btn:hover::before {
    opacity: 1;
    animation: shine 0.7s linear;
}
@keyframes shine {
    0% { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(100%) skewX(-20deg); }
}

/* Referans kart hover animasyonu */
.reference-card {
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}
.reference-card:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 12px 32px rgba(166,79,230,0.18);
} 

@media screen and (max-width: 768px) {
  .footer-links {
    display: none !important;
  }
}