* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #ecf4fcc7 100%);
}

/* ===== INTRO ANIMATION STYLES ===== */
/* ===== LUXURY INTRO ANIMATION ===== */
#intro-overlay.luxury-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #050810;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeOutIntro 1s ease-out 5.5s forwards;
}

.premium-container {
    position: relative;
    padding: 40px;
}

.premium-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(40px);
    animation: pulseGlow 4s infinite alternate;
}

.draw-path {
    fill: transparent;
    stroke: #D4AF37;
    stroke-width: 1.5;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawLogo 3s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

.gold-fill {
    fill: url(#luxuryGradient);
    opacity: 0;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    animation: fadeInGold 2s ease-out 2s forwards;
}

.text-group {
    opacity: 0;
    animation: textReveal 1.5s ease-out 3s forwards;
}

@keyframes drawLogo {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInGold {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textReveal {
    from {
        opacity: 0;
        filter: blur(10px);
        letter-spacing: 15px;
    }

    to {
        opacity: 1;
        filter: blur(0);
        letter-spacing: -2px;
    }
}

@keyframes pulseGlow {
    from {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes fadeOutIntro {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Hide main content during intro */
#three-background,
#wrapper {
    opacity: 0;
    animation: fadeInContent 1.2s ease-out 6s forwards;
}

@keyframes fadeInContent {
    to {
        opacity: 1;
    }
}

/* Hide main content during intro */
#three-background,
#wrapper {
    opacity: 0;
    animation: fadeInContent 1.2s ease-out 5.5s forwards;
}

@keyframes fadeInContent {
    to {
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .intro-container {
        width: 90%;
    }
}


#three-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: all;
}



.container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--aliceblue);
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
}

.bg-gradient:nth-child(1) {
    background: var(--primary);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.bg-gradient:nth-child(2) {
    background: var(--accent);
    bottom: -200px;
    right: -200px;
    animation-delay: 5s;
}

.bg-gradient:nth-child(3) {
    background: #64b5f6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* Header Styles */
.kt-inside-inner-col {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 12px;
    color: lightsteelblue;
}

.site-header {
    margin-bottom: 22px;
    background: rgba(240, 248, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(100, 149, 237, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 149, 237, 0.2);
}

.header-inner {
    padding: 10px 0;
    margin-left: 148px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 127px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #4169e1;
    margin-left: 12px;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    margin-right: 165px;
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #4169e1;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: #4169e1;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: -10px;
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(65, 105, 225, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px;
    margin-top: 8px;
    border: 1px solid rgba(100, 149, 237, 0.1);
    z-index: 100;
}

/* Fixed: Ensure dropdown shows on hover */
.nav-item:hover .sub-menu,
.has-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    margin: 0;
}

.sub-menu li a {
    display: block;
    padding: 12px 16px;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.sub-menu li a:hover {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    color: #4169e1;
    transform: translateX(5px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    border: none;
    background: transparent;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #4169e1;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
}

.hero-content {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-1);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
}

.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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Section Reveal Animation */
.section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Marketing Services Section */
.marketing-services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(74, 144, 226, 0.4);
    box-shadow: 0 25px 50px rgba(74, 144, 226, 0.2);
}

.service-card:hover::before {
    opacity: 0.1;
}

/* Fixed: Unified image container styling */
.service-icono,
.service-iconoo {
    width: 100%;
    max-width: 120px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: rgba(74, 144, 226, 0.05);
    transition: all 0.4s ease;
}

.service-icono img,
.service-iconoo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.service-card:hover .service-icono,
.service-card:hover .service-iconoo {
    transform: scale(1.1) rotate(5deg);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.75rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-card:hover li {
    padding-left: 2.5rem;
}

/* Process Section */
.process-section {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 100px 0;
    margin: 3rem 0;
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: scale(1.05);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: rotateY(360deg);
}

.process-step p {
    color: var(--text-light);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 144, 226, 0.4);
    box-shadow: 0 25px 50px rgba(74, 144, 226, 0.2);
}

.pricing-card.featured {
    background: var(--gradient-1);
    transform: scale(1.05);
    border-color: transparent;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.5rem 0;
}

.pricing-card.featured .price {
    color: var(--white);
}

.pricing-card.featured h3 {
    color: var(--white);
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card li {
    padding: 1rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(74, 144, 226, 0.15);
}

.pricing-card.featured li {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Results Section */
.results-section {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 100px 0;
    margin: 3rem 0;
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.08);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.result-stat {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-container {
    max-width: 1200px;
    width: 100%;
    background: linear-gradient(135deg, #4a90e2 0%, #5ba3f5 50%, #87ceeb 100%);
    border-radius: 30px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.3);
    margin: 60px auto;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-container::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-heading {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button-primary {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px);
}

.button-icon {
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
}

.cta-features {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 0.95rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Footer */
footer {
    background: #e9e398;
    color: black;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 56PX;
    margin-bottom: 2rem;
    margin-left: 490px;
}

.footer-section h4 {
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: #667eea;
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 42px;
    }

    .apps-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }
}

/* Offer Modal Styles */
.offer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.offer-modal.show {
    opacity: 1;
    visibility: visible;
}

.offer-card {
    background: white;
    border-radius: 30px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    opacity: 0;
    box-shadow: 0 30px 100px rgba(65, 105, 225, 0.5);
}

.offer-card::-webkit-scrollbar {
    display: none;
}

.offer-card {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.offer-card.anim-slide-right {
    transform: translateX(100vw) rotateY(-90deg) scale(0.5);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.offer-modal.show .offer-card.anim-slide-right {
    transform: translateX(0) rotateY(0deg) scale(1);
    opacity: 1;
}

.offer-card.anim-zoom-spin {
    transform: scale(0) rotate(360deg);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.offer-modal.show .offer-card.anim-zoom-spin {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.offer-card-header {
    background: linear-gradient(135deg, #4169e1 0%, #6495ed 50%, #87ceeb 100%);
    padding: 60px 40px;
    text-align: center;
    border-radius: 30px 30px 0 0;
    position: relative;
    overflow: hidden;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.offer-badgeo img {
    width: 45px;
    height: 45px;
    vertical-align: middle;
    margin-right: 8px;
}

.offer-badgeo {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.offer-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.offer-card-title {
    font-size: 42px;
    color: white;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.offer-card-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.offer-card-body {
    padding: 50px 40px;
}

.price-section {
    text-align: center;
    margin-bottom: 40px;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.old-price {
    font-size: 32px;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.new-price {
    font-size: 64px;
    color: #4169e1;
    font-weight: 800;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.close-btn::before,
.close-btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
}

.close-btn::before {
    transform: rotate(45deg);
}

.close-btn::after {
    transform: rotate(-45deg);
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.btn {
    flex: 1;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #4169e1, #6495ed);
    color: white;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.5);
}

/* Header Styles */
.site-header {
    margin-bottom: 22px;
    background: rgba(240, 248, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(100, 149, 237, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}



.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #4169e1;
    margin-left: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4169e1;
}

/* Content Styles */
.content-area {
    position: relative;
    z-index: 1;
}

.services-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #4169e1;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.info-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(65, 105, 225, 0.15);
    transition: transform 0.4s ease;
}

.info-box:hover {
    transform: translateY(-15px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.info-box p {
    color: #5a6c7d;
    text-align: center;
    line-height: 1.7;
}

/* Footer */
footer {
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }
}


.services-section {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.section-header h2 {
    font-size: 42px;
    color: #4169e1;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 0 20px;
    margin-bottom: 16px;
}

.info-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(65, 105, 225, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.info-box:nth-child(1) {
    animation-delay: 0.1s;
}

.info-box:nth-child(2) {
    animation-delay: 0.2s;
}

.info-box:nth-child(3) {
    animation-delay: 0.3s;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C9A227, #dbc479, #efdb9b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.info-box:hover::before {
    transform: scaleX(1);
}

.info-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.05) 0%, #e1dac5 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-box:hover::after {
    opacity: 1;
}

.info-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(243, 241, 96, 0.966);
    border-color: rgb(252, 244, 144);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #efe0af 0%, #fff1c8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}


.info-box:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #f5df99 0%, #f3d574 100%);
}

.icon-wrapper svg {
    width: 40px;
    height: 40px;
    transition: all 0.4s ease;
}

.info-box:hover .icon-wrapper svg {
    filter: brightness(0) invert(1);
}

.info-box h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-box:hover h3 {
    color: #C9A227;
}

.info-box p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.learn-more:hover {
    color: aliceblue;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C9A227;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.info-box:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
    gap: 12px;
}

.learn-more::after {
    content: '→';
    font-size: 16px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-box {
        padding: 35px 25px;
    }
}

.how-it-works {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

/* Decorative Background Elements */
.bg-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.bg-decoration:nth-child(1) {
    background: linear-gradient(135deg, #4169e1, #6495ed);
    top: -200px;
    left: -200px;
}

.bg-decoration:nth-child(2) {
    background: linear-gradient(135deg, #87ceeb, #4169e1);
    bottom: -200px;
    right: -200px;
}

.section-intro {
    text-align: center;
    margin-bottom: 45px;
    animation: fadeInDown 0.8s ease;
    position: relative;
    z-index: 1;
}

.section-tag {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    padding: 12px 28px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(65, 105, 225, 0.15);
    position: relative;
    overflow: hidden;
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(65, 105, 225, 0.1), transparent);
    transition: left 0.5s;
}

.section-tag:hover::before {
    left: 100%;
}

.tag-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(49deg, #eecf6e, #f5e2a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tag-icon::after {
    content: '';
    font-size: 12px;
}

.section-intro h2 {
    font-size: 56px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 800;
    background: linear-gradient(135deg, #dbcd9b 0%, #d8ab1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-intro p {
    font-size: 20px;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(65, 105, 225, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}



.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4169e1, #6495ed, #87ceeb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 25px 70px rgba(65, 105, 225, 0.25);
    border-color: rgba(65, 105, 225, 0.3);
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4169e1 0%, #6495ed 100%);
    color: white;
    border-radius: 20px;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-number {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.4);
}

.feature-card h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #4169e1;
}

.feature-card p {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.6;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(65, 105, 225, 0.08);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:hover {
    transform: translateX(10px);
    color: #2c3e50;
}

.check-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4169e1 0%, #6495ed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-list li:hover .check-icon {
    transform: scale(1.2) rotate(360deg);
}

.check-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.dashboard-showcase {
    position: relative;
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
    padding: 20px;
}

.showcase-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.15) 0%, rgba(100, 149, 237, 0.15) 100%);
    border-radius: 40px;
    filter: blur(40px);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.dashboard-frame {
    position: relative;
    background: white;
    padding: 15px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(65, 105, 225, 0.2);
    transition: all 0.5s ease;
}

.dashboard-frame:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 40px 100px rgba(65, 105, 225, 0.3);
}

.dashboard-image {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #4169e1 0%, #6495ed 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.3);
    opacity: 0;
    transform: translateY(10px);
}

.info-box-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.info-box {
    cursor: pointer;
}

.learn-more {
    opacity: 0;
    /* Hidden by default */
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.info-box:hover .learn-more {
    opacity: 1;
    /* Shows on hover */
    transform: translateY(0);
}

.learn-more-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.learn-more-btn:hover::after {
    transform: translateX(5px);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(65, 105, 225, 0.1);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.stat-card:nth-child(1) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(65, 105, 225, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #4169e1 0%, #6495ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
    font-weight: 600;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

@media (max-width: 1200px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-intro h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 60px 15px;
    }

    .section-intro h2 {
        font-size: 36px;
    }

    .section-intro p {
        font-size: 16px;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


.content-section {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
    animation: fadeInUp 0.8s ease;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(65, 105, 225, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(65, 105, 225, 0.2);
    border-color: rgba(65, 105, 225, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #4169e1 0%, #6495ed 100%);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: #4169e1;
    transition: fill 0.4s ease;
}

.service-card:hover .service-icon svg {
    fill: white;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.7;
}

.feature-section {
    margin-bottom: 100px;
}

.feature-row {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-content {
    animation: fadeInLeft 0.8s ease;
}

.feature-row.reverse .feature-content {
    animation: fadeInRight 0.8s ease;
}

.feature-tag {
    display: inline-block;
    color: #000;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.feature-content h2 {
    font-size: 42px;
    color: #c9af5b;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.feature-content p {
    font-size: 18px;
    color: #d1b55b;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: #5a6c7d;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
    color: #2c3e50;
}

.check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #4169e1 0%, #6495ed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.feature-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.feature-row.reverse .feature-image {
    animation: fadeInLeft 0.8s ease;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(65, 105, 225, 0.2);
    transition: transform 0.4s ease;
}

.image-wrapper:hover {
    transform: scale(1.03) translateY(-10px);
}

.image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.15) 0%, rgba(100, 149, 237, 0.15) 100%);
    border-radius: 30px;
    z-index: -1;
    filter: blur(30px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .feature-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 60px 15px;
    }

    .feature-content h2 {
        font-size: 32px;
    }

    .feature-content p {
        font-size: 16px;
    }
}

.content-section {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
    animation: fadeInUp 0.8s ease;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(65, 105, 225, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(65, 105, 225, 0.2);
    border-color: rgba(65, 105, 225, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #4169e1 0%, #6495ed 100%);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: #4169e1;
    transition: fill 0.4s ease;
}

.service-card:hover .service-icon svg {
    fill: white;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.7;
}

.feature-section {
    margin-bottom: 100px;
}

.feature-row {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-content {
    animation: fadeInLeft 0.8s ease;
}

.feature-row.reverse .feature-content {
    animation: fadeInRight 0.8s ease;
}

.feature-tag {
    display: inline-block;
    color: #000000;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.feature-content h2 {
    font-size: 42px;
    color: #c9af5b;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.feature-content p {
    font-size: 18px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: #5a6c7d;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
    color: #2c3e50;
}

.check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #C9A227 0%, #d8cda9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.feature-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.feature-row.reverse .feature-image {
    animation: fadeInLeft 0.8s ease;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(65, 105, 225, 0.2);
    transition: transform 0.4s ease;
}

.image-wrapper:hover {
    transform: scale(1.03) translateY(-10px);
}

.image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.15) 0%, rgba(100, 149, 237, 0.15) 100%);
    border-radius: 30px;
    z-index: -1;
    filter: blur(30px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .feature-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 60px 15px;
    }

    .feature-content h2 {
        font-size: 32px;
    }

    .feature-content p {
        font-size: 16px;
    }
}



.carousel-section {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.section-header h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.carousel-container {
    background: white;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(65, 105, 225, 0.15);
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 40px;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    width: 250px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8faff;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.logo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.2);
    border-color: rgba(65, 105, 225, 0.3);
    background: white;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 8 - 320px));
    }
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d4e9ff;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.control-dot:hover,
.control-dot.active {
    background: #4169e1;
    transform: scale(1.3);
    border-color: #87ceeb;
}

.trusted-by {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(65, 105, 225, 0.1);
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.trusted-by h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.trusted-by p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8faff;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.15);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #4169e1 0%, #6495ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #5a6c7d;
    font-weight: 500;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    body {
        padding: 60px 15px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .carousel-container {
        padding: 40px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .logo-item {
        width: 200px;
        height: 120px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-200px * 8 - 320px));
        }
    }
}




.testimonials-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    transition: max-height 0.5s ease;
}

.testimonials-grid.collapsed {
    max-height: 800px;
    margin: 33px;
    overflow: hidden;
}

.testimonials-grid.collapsed .testimonial-container:nth-child(n+4) {
    display: none;
}

.testimonial-container {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(176, 196, 222, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(176, 196, 222, 0.4);
}

.testimonial-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4a90e2 0%, #87ceeb 100%);
}

.testimonial-header {
    text-align: center;
    margin-bottom: 40px;
}

.author-image-wrapper img {
    text-align: center;
}

.author-image-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f0f8ff;
    box-shadow: 0 4px 15px rgba(176, 196, 222, 0.4);
    transition: transform 0.3s ease;
}

.author-image-wrapper:hover {
    transform: scale(1.05);
}

.author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.author-title {
    font-size: 0.9rem;
    color: #4a90e2;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spacer {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #000 0%, #dbc682 100%);
    margin: 20px auto;
    border-radius: 2px;
}

.quote-icon {
    font-size: 2.5rem;
    color: #000;
    opacity: 0.3;
    text-align: center;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 1.2rem;
    color: #2c3e50;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
    font-style: italic;
}

.testimonial-intro {
    font-size: 1rem;
    color: #5a6c7d;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-body {
    font-size: 0.95rem;
    color: #6b7c8d;
    text-align: center;
    line-height: 1.8;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

.show-more-btn {
    display: block;

    padding: 15px 40px;
    background: linear-gradient(135deg, #4a90e2 0%, #5ba3f5 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #5ba3f5 0%, #4a90e2 100%);
}

.show-more-btn:active {
    transform: translateY(0);
}

.show-more-btn.hidden {
    display: none;
}

.btn-icon {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.show-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-container {
        padding: 30px 20px;
    }

    .author-name {
        font-size: 1.3rem;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .testimonial-intro,
    .testimonial-body {
        font-size: 0.9rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-container>* {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.testimonial-container:nth-child(1)>* {
    animation-delay: 0.1s;
}

.testimonial-container:nth-child(2)>* {
    animation-delay: 0.2s;
}

.testimonial-container:nth-child(3)>* {
    animation-delay: 0.3s;
}

.testimonial-container:nth-child(4)>* {
    animation-delay: 0.4s;
}

.testimonial-container:nth-child(5)>* {
    animation-delay: 0.5s;
}




.cta-container {
    max-width: 1200px;
    width: 100%;
    background: linear-gradient(135deg, #f5d059 0%, #eac75a 50%, #f9d566 100%);
    border-radius: 30px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.3);

}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-container::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-heading {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button-primary {
    background: white;
    color: #C9A227;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.cta-button-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button-primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
    border-color: white;
    transform: translateY(-3px);
}

.button-icon {
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
}

.cta-features {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 0.95rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .cta-container {
        padding: 50px 30px;
        border-radius: 20px;
    }

    .cta-heading {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 350px;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cta-heading {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

.containers {
    padding: 0 1.5rem;
}

.footer-content {
    margin-left: 183px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

footer {
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--light-bg);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-bg);
}

@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .services,
    .features {
        padding: 3rem 0;
    }
}

.testimonial-container.hidden {
    display: none;
}

.show-more-btn {
    display: block;
    margin: 30px auto;
    padding: 12px 30px;
    background-color: aliceblue;
    border: 2px solid #4682b4;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    color: #4682b4;
    font-weight: bold;
}

.show-more-btn:hover {
    background-color: #4682b4;
    color: white;
}

/* ===== MEDIA QUERIES FOR RESPONSIVE DESIGN ===== */

/* Large Desktop Screens - 1440px and above */
@media (min-width: 1440px) {

    .container,
    .containers {
        max-width: 1400px;
    }

    .header-inner {
        margin: 0 auto;
    }
}

/* Desktop - 1200px to 1439px */
@media (max-width: 1439px) {
    .nav-menu {
        margin-right: 100px;
    }

    .header-inner {
        margin-left: 100px;
    }

    .footer-content {
        margin-left: 100px;
    }
}

/* Large Tablet / Small Desktop - 1024px to 1199px */
@media (max-width: 1199px) {
    .header-inner {
        margin-left: 50px;
        padding: 0 20px;
    }

    .nav-menu {
        margin-right: 50px;
        gap: 20px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-content {
        margin-left: 50px;
    }
}

/* Tablet Portrait - 768px to 1023px */
@media (max-width: 1023px) {

    /* Header */
    .site-header {
        height: auto;
        padding: 15px 0;
    }

    .header-inner {
        margin-left: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .logo img {
        height: 80px;
    }

    .main-nav ul {
        margin-left: 0;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nav-menu {
        margin-right: 0;
        gap: 15px;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 35px 25px;
    }

    /* Features */
    .section-intro h2 {
        font-size: 42px;
    }

    .feature-content h2 {
        font-size: 36px;
    }

    .feature-content p {
        font-size: 16px;
    }

    /* Stats */
    .stats-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Testimonials */
    .section-title h2 {
        font-size: 36px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-container {
        padding: 30px 20px;
    }

    /* CTA */
    .cta-container {
        padding: 60px 40px;
        border-radius: 20px;
    }

    .cta-heading {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 350px;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* Footer */
    .footer-content {
        margin-left: 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Landscape - 640px to 767px */
@media (max-width: 767px) {
    body {
        padding: 60px 15px;
    }

    /* Header */
    .site-header {
        padding: 10px 0;
    }

    .header-inner {
        margin-left: 15px;
        padding: 0 10px;
    }

    .logo img {
        height: 60px;
    }

    .nav-link {
        font-size: 14px;
        padding: 10px 15px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    /* Sections */
    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    /* Info Boxes */
    .container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .info-box {
        padding: 30px 20px;
    }

    /* How It Works */
    .section-intro h2 {
        font-size: 32px;
    }

    .section-intro p {
        font-size: 16px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .feature-card h3 {
        font-size: 24px;
    }

    /* Newsletter Button */
    .info-box-link[href="signup.html"] {
        margin-left: 0 !important;
        display: block;
        text-align: center;
        margin: 20px auto;
    }

    /* Carousel */
    .carousel-container {
        padding: 40px 20px;
    }

    .logo-item {
        width: 200px;
        height: 120px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-200px * 8 - 320px));
        }
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Testimonials */
    .author-name {
        font-size: 1.2rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonial-intro,
    .testimonial-body {
        font-size: 0.85rem;
    }

    /* CTA */
    .cta-container {
        padding: 50px 25px;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* Footer */
    .footer-content {
        margin-left: 15px;
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Mobile Portrait - 480px to 639px */
@media (max-width: 639px) {
    .container {
        padding: 0 10px;
    }

    .skip-button {
        top: 10px;
        right: 10px;
        padding: 6px 15px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .section-intro h2 {
        font-size: 28px;
    }

    .feature-content h2 {
        font-size: 28px;
    }

    .cta-heading {
        font-size: 1.75rem;
    }

    .offer-card {
        width: 95%;
    }

    .offer-card-title {
        font-size: 32px;
    }

    .offer-card-subtitle {
        font-size: 16px;
    }

    .new-price {
        font-size: 48px;
    }

    .old-price {
        font-size: 24px;
    }
}

/* Small Mobile - 375px to 479px */
@media (max-width: 479px) {
    .logo img {
        height: 50px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-intro h2 {
        font-size: 24px;
    }

    .feature-content h2 {
        font-size: 24px;
    }

    .cta-heading {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile - 320px to 374px */
@media (max-width: 374px) {
    .logo img {
        height: 45px;
    }

    .nav-link {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }

    .info-box {
        padding: 25px 15px;
    }

    .section-intro h2 {
        font-size: 22px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .cta-container {
        padding: 40px 20px;
    }

    .cta-heading {
        font-size: 1.3rem;
    }

    .offer-card-title {
        font-size: 28px;
    }

    .new-price {
        font-size: 40px;
    }
}

/* Landscape Orientation for Mobile Devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 50px;
    }

    .site-header {
        position: relative;
    }

    .cta-container {
        padding: 40px 30px;
    }

    .offer-modal {
        align-items: flex-start;
        padding-top: 20px;
    }

    .offer-card {
        max-height: 85vh;
    }
}

/* High DPI Displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
    }

    .author-image {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Print Styles */
@media print {

    .site-header,
    .cta-container,
    .offer-modal,
    footer,
    .skip-button,
    #three-background {
        display: none;
    }

    body {
        background: white;
    }

    .container {
        max-width: 100%;
    }
}

/* ===== MEDIA QUERIES FOR RESPONSIVE DESIGN ===== */

/* Large Desktop Screens - 1440px and above */
@media (min-width: 1440px) {

    .container,
    .containers {
        max-width: 1400px;
    }

    .header-inner {
        margin: 0 auto;
    }
}

/* Desktop - 1200px to 1439px */
@media (max-width: 1439px) {
    .nav-menu {
        margin-right: 100px;
    }

    .header-inner {
        margin-left: 100px;
    }

    .footer-content {
        margin-left: 100px;
    }
}

/* Large Tablet / Small Desktop - 1024px to 1199px */
@media (max-width: 1199px) {
    .header-inner {
        margin-left: 50px;
        padding: 0 20px;
    }

    .nav-menu {
        margin-right: 50px;
        gap: 20px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-content {
        margin-left: 50px;
    }
}

/* Tablet Portrait - 768px to 1023px */
@media (max-width: 1023px) {

    /* Header */
    .site-header {
        height: auto;
        padding: 10px 0;
    }

    .header-inner {
        margin-left: 0;
        padding: 0 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 70px;
    }

    /* Hide desktop navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        padding: 80px 20px 20px;
        transition: right 0.4s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        margin-left: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-menu {
        margin-right: 0;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        padding: 18px 15px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        color: white;
    }

    .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
    }

    /* Dropdown adjustments for mobile */
    .dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: rgba(212, 175, 55, 0.05);
        border-radius: 0;
        margin-top: 0;
        transition: all 0.3s ease;
    }

    .nav-item.active .dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .dropdown-item {
        padding: 15px 25px;
        border-left: 3px solid transparent;
    }

    /* Mobile Menu Toggle Button */
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 10px;
        background: transparent;
        border: none;
        z-index: 10000;
    }

    .mobile-toggle span {
        width: 28px;
        height: 3px;
        background: #D4AF37;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Close button for mobile menu */
    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
    }

    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9998;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 35px 25px;
    }

    /* Features */
    .section-intro h2 {
        font-size: 42px;
    }

    .feature-content h2 {
        font-size: 36px;
    }

    .feature-content p {
        font-size: 16px;
    }

    /* Stats */
    .stats-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Testimonials */
    .section-title h2 {
        font-size: 36px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-container {
        padding: 30px 20px;
    }

    /* CTA */
    .cta-container {
        padding: 60px 40px;
        border-radius: 20px;
    }

    .cta-heading {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 350px;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* Footer */
    .footer-content {
        margin-left: 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Landscape - 640px to 767px */
@media (max-width: 767px) {
    body {
        padding: 60px 15px;
    }

    /* Header */
    .site-header {
        padding: 10px 0;
    }

    .header-inner {
        margin-left: 15px;
        padding: 0 10px;
    }

    .logo img {
        height: 60px;
    }

    .nav-link {
        font-size: 14px;
        padding: 10px 15px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    /* Sections */
    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    /* Info Boxes */
    .container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .info-box {
        padding: 30px 20px;
    }

    /* How It Works */
    .section-intro h2 {
        font-size: 32px;
    }

    .section-intro p {
        font-size: 16px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .feature-card h3 {
        font-size: 24px;
    }

    /* Newsletter Button */
    .info-box-link[href="signup.html"] {
        margin-left: 0 !important;
        display: block;
        text-align: center;
        margin: 20px auto;
    }

    /* Carousel */
    .carousel-container {
        padding: 40px 20px;
    }

    .logo-item {
        width: 200px;
        height: 120px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-200px * 8 - 320px));
        }
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Testimonials */
    .author-name {
        font-size: 1.2rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonial-intro,
    .testimonial-body {
        font-size: 0.85rem;
    }

    /* CTA */
    .cta-container {
        padding: 50px 25px;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* Footer */
    .footer-content {
        margin-left: 15px;
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Mobile Portrait - 480px to 639px */
@media (max-width: 639px) {
    .container {
        padding: 0 10px;
    }

    .skip-button {
        top: 10px;
        right: 10px;
        padding: 6px 15px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .section-intro h2 {
        font-size: 28px;
    }

    .feature-content h2 {
        font-size: 28px;
    }

    .cta-heading {
        font-size: 1.75rem;
    }

    .offer-card {
        width: 95%;
    }

    .offer-card-title {
        font-size: 32px;
    }

    .offer-card-subtitle {
        font-size: 16px;
    }

    .new-price {
        font-size: 48px;
    }

    .old-price {
        font-size: 24px;
    }
}

/* Small Mobile - 375px to 479px */
@media (max-width: 479px) {
    .logo img {
        height: 50px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-intro h2 {
        font-size: 24px;
    }

    .feature-content h2 {
        font-size: 24px;
    }

    .cta-heading {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile - 320px to 374px */
@media (max-width: 374px) {
    .logo img {
        height: 45px;
    }

    .nav-link {
        font-size: 12px;
        padding: 8px 12px;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }

    .info-box {
        padding: 25px 15px;
    }

    .section-intro h2 {
        font-size: 22px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .cta-container {
        padding: 40px 20px;
    }

    .cta-heading {
        font-size: 1.3rem;
    }

    .offer-card-title {
        font-size: 28px;
    }

    .new-price {
        font-size: 40px;
    }
}

/* Landscape Orientation for Mobile Devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 50px;
    }

    .site-header {
        position: relative;
    }

    .cta-container {
        padding: 40px 30px;
    }

    .offer-modal {
        align-items: flex-start;
        padding-top: 20px;
    }

    .offer-card {
        max-height: 85vh;
    }
}

/* High DPI Displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
    }

    .author-image {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Print Styles */
@media print {

    .site-header,
    .cta-container,
    .offer-modal,
    footer,
    .skip-button,
    #three-background {
        display: none;
    }

    body {
        background: white;
    }

    .container {
        max-width: 100%;
    }
}