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

/* CSS Variables */
:root {
    --primary-white: #ffffff;
    --primary-orange: #ff6b35;
    --primary-blue: #2196f3;
    --primary-dark-blue: #1565c0;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark-blue) 100%);
    --gradient-orange: linear-gradient(135deg, var(--primary-orange) 0%, #e55a2b 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
   
    line-height: 1.6;
    color: var(--text-dark);
    /*background-color: var(--primary-white);*/
    background: lavender;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles */
.header {

    background: var(--primary-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}


.navbar {
    background: var(--primary-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
.nav-brand span{
    font-size: 1.7rem;
}
.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-dark-blue);
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav-brand .logo{

    width: 60px;
    margin-right: 0.5rem;
    color: var(--primary-orange);
}
footer .logo{
    width: 130px;
    height: auto;
}
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list li {
    position: relative;
    margin: 0 0.8rem;
}

.nav-list > li > a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.8rem 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-list > li > a:hover {
    color: var(--primary-orange);
}

.nav-list a i {
    margin-left: 0.4rem;
    font-size: 0.75rem;
    transition: var(--transition);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-white);
    box-shadow: var(--shadow-hover);
    border-radius: var(--border-radius);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 0.8rem 0;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.8rem 1.2rem;
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    transform: translateX(5px);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.phone-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-white);
    background: var(--primary-dark-blue);
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition:all 0.5s ease;
    font-size: 0.9rem;
    border: 1px solid #fff;
    white-space: nowrap;
}

.phone-btn:hover {
    box-shadow: var(--shadow-hover);
    background: transparent;
    border-color:var(--primary-dark-blue);
    color:var(--primary-dark-blue);
}

.phone-btn i {
    margin-right: 0.5rem;
    color: #25d366;
}

.login-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 0.6rem 1rem;
    background: var(--primary-orange);
    border: 1px solid #fff;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.4s ease;
    font-size: 0.7rem;
    white-space: nowrap;
}

.login-btn:hover {
    background: var(--text-white);
    color: var(--primary-orange);
    border-color: var(--primary-orange);
   
}

.login-btn i {
    margin-right: 0.5rem;
}

.order-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-white);
    background: var(--primary-orange);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.4s ease;
    border: 1px solid #fff;
    font-size: 0.7rem;
    white-space: nowrap;
}

.order-btn:hover {
    box-shadow: var(--shadow-hover);
     background: var(--text-white);
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.order-btn i {
    margin-right: 0.5rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Main Content */
main {
    margin-top: 80px;
}


.hero {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="1000,100 1000,0 0,100"/></svg>') no-repeat;
    background-size: cover;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trust-badge {
    margin-bottom: 3rem;
}

.trust-badge h6 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1.8rem;
    color: var(--primary-orange);
}

.trust-icons i {
    animation: float 3s ease-in-out infinite;
}

.trust-icons i:nth-child(2) { animation-delay: 0.5s; }
.trust-icons i:nth-child(3) { animation-delay: 1s; }
.trust-icons i:nth-child(4) { animation-delay: 1.5s; }

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

.offer-title {

    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.offer-title span {
    color: var(--primary-orange);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* Countdown Timer */
.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.time-unit {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.time-unit:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.time-value {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-orange);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.time-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--text-white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border: 1px solid var(--primary-orange);
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    color:var(--primary-orange);
    background: transparent;
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-hover);
}
#support{
    margin: 20px 0;
    font-size: 14px;
    text-align: center;
}
.support-button {
    background:var(--gradient-orange);
    color: #fff;
    padding: 10px 20px;
    border: 1px solid var(--gradient-orange);
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.support-button:hover {
    background: rgba(230, 230, 250, 0.87);
    color: var(--primary-orange);
}
/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--primary-white);
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-dark-blue);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--primary-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--text-white);
    box-shadow: var(--shadow);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Pricing Section */
.pricing-section {
    background: var(--primary-dark-blue);
    color: var(--text-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.05)"><polygon points="0,0 1000,100 0,100"/></svg>') no-repeat;
    background-size: cover;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pricing-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pricing-info p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.pricing-info h4 {
    font-size: 1.4rem;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    font-weight: 600;
}

.payment-methods {
    display: flex;
    gap: 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 2rem;
}

.payment-methods i {
    transition: var(--transition);
}

.payment-methods i:hover {
    transform: scale(1.1);
    color: var(--text-white);
}

.pricing-btn {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--text-white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Services Section */
.services-section {
    padding: 3rem 0;
    background: lavender;
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    color: var(--text-dark);
}

.section-header .highlight {
    color: var(--primary-orange);
}

.section-header h3 {
    font-size: 1.6rem;
    color: var(--primary-dark-blue);
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
    gap: 2.5rem;
    margin-bottom: 0.3rem;
}

.service-category {
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-category ul {
    list-style: none;
    padding: 0.0rem 1.4rem;
    margin: 0;
    text-align: left;
}

.service-category li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding-left: 2rem;
    transition: var(--transition);
}

.service-category li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 0.9rem;
}



.services-cta {
    margin-top: 1.7rem;
}

/* Test Order Section */
.test-order-section {
    background: #1a237e;
    color: var(--text-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.test-order-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="1000,0 0,0 1000,100"/></svg>') no-repeat;
    background-size: cover;
}

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

.test-order-text h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.test-order-text .highlight {
    color: var(--primary-orange);
    font-weight: 800;
}

.test-order-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.test-order-text h3 {
    color: #e1c9c9;
    margin-bottom: 2.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.test-order-btn {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--text-white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.test-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.test-order-image {
    text-align: center;
}

.test-order-image i {
    font-size: 10rem;
    color: var(--primary-orange);
    opacity: 0.8;
    animation: pulse 2s infinite;
}

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

/* About Section */
.about-section {
    padding: 2rem 0;
    background: var(--primary-white);
}

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

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1.3rem;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.about-text h3 {
    color: var(--primary-dark-blue);
    margin-bottom: 2.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.about-visual {
    text-align: center;
}

.success-animation {
    margin-bottom: 2.5rem;
}

.success-animation i {
    font-size: 8rem;
    color: var(--primary-blue);
    animation: bounce 2s infinite;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.social-links a:hover {
    background: var(--gradient-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Statistics Section */
.stats-section {
    background: lavender;
    padding: 5rem 0;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    color: var(--primary-dark-blue);
    margin-bottom: 4rem;
    font-weight: 700;
}


.stat-item {
    padding: 3rem 2rem;
    background: var(--primary-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

.stat-label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gradient-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-list li {
        margin: 0 0.5rem;
    }
    
    .nav-list > li > a {
        font-size: 0.9rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-actions a {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .nav-list {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-actions a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .offer-title {
        font-size: 2.5rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-unit {
        padding: 1.5rem 0.8rem;
    }
    
    .time-value {
        font-size: 2.2rem;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .test-order-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .nav-brand a {
        font-size: 1.5rem;
    }
    
    .nav-actions {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        gap: 0.8rem;
    }
    
    .hamburger {
        order: 2;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .offer-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 400px;
    }
    
    .time-unit {
        padding: 1.2rem 0.8rem;
    }
    
    .time-value {
        font-size: 1.8rem;
    }
    
    .time-label {
        font-size: 0.8rem;
    }
    
    .trust-icons {
        gap: 1.5rem;
        font-size: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    

    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-widget a span {
        display: none;
    }
    
    .whatsapp-widget a {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .back-to-top {
        bottom: 100px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-brand a {
        font-size: 1.3rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
        margin-top: 0.8rem;
    }
    
    .nav-actions a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .offer-title {
        font-size: 1.6rem;
    }
    
    .countdown-timer {
        gap: 0.8rem;
        max-width: 350px;
    }
    
    .time-unit {
        padding: 1rem 0.5rem;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .time-label {
        font-size: 0.75rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .trust-icons {
        gap: 1rem;
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header h3 {
        font-size: 1.3rem;
    }
    
    .process-section h2 {
        font-size: 2rem;
    }
    
    .step {
        padding: 2rem 1rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .pricing-info h3 {
        font-size: 1.8rem;
    }
    
    .test-order-text h4 {
        font-size: 1.5rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    

    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-widget a {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-widget i {
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 85px;
        left: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-white);
        box-shadow: var(--shadow-hover);
        transform: translateY(-100vh);
        transition: var(--transition);
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-list {
        display: flex;
        flex-direction: column;
        padding: 2rem 0;
        margin: 0;
    }
    
    .nav-list li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-list > li > a {
        padding: 1.2rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .nav-list > li > a:hover {
        background: rgba(33, 150, 243, 0.1);
        color: var(--primary-blue);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0;
        border: none;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 400px;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu a {
        padding: 1rem 3rem;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-menu a:hover {
        background: var(--primary-blue);
        color: var(--text-white);
        transform: none;
        padding-left: 3.5rem;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-orange);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Smooth Animations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

/* Selection Styling */
::selection {
    background: var(--primary-orange);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--primary-orange);
    color: var(--text-white);
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-widget,
    .back-to-top,
    .hamburger {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .hero {
        background: none !important;
        color: #000 !important;
    }
    
    .pricing-section,
    .test-order-section,
    .footer {
        background: none !important;
        color: #000 !important;
    }
    
    a {
        color: #000 !important;
        text-decoration: underline !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
    }
    
    .step,
    .service-category,
    .stat-item {
        border: 2px solid var(--text-dark);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .trust-icons i,
    .success-animation i,
    .test-order-image i {
        animation: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-white: #1a1a1a;
        --text-dark: #ffffff;
        --text-light: #cccccc;
        --shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
        --shadow-hover: 0 8px 30px rgba(255, 255, 255, 0.15);
    }
    
    .header {
        background: #1a1a1a;
        border-bottom: 1px solid #333;
    }
    
    .services-section,
    .stats-section {
        background: #222;
    }
    
    .step,
    .service-category,
    .stat-item {
        background: #1a1a1a;
        border: 1px solid #333;
    }
    
    .dropdown-menu {
        background: #1a1a1a;
        border: 1px solid #333;
    }
    
    .nav-menu {
        background: #1a1a1a;
        border-top: 1px solid #333;
    }
}

/* Additional Responsive Fixes */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0;
    }
    
    .countdown-timer {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }
    
    .time-unit {
        padding: 1rem 0.5rem;
    }
    
    .time-value {
        font-size: 1.8rem;
    }
}

/* Fix for very small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .nav-brand a {
        font-size: 1.2rem;
    }
    
    .offer-title {
        font-size: 1.4rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
        max-width: 300px;
    }
    
    .time-unit {
        padding: 0.8rem 0.3rem;
    }
    
    .time-value {
        font-size: 1.3rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-actions a {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .whatsapp-widget a {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-widget i {
        font-size: 1.3rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Performance Optimizations */
.step,
.service-category,
.stat-item {
    will-change: transform;
}

.hamburger span {
    will-change: transform, opacity;
}

.nav-menu {
    will-change: transform;
}

/* Ensure proper stacking contexts */
.header {
    isolation: isolate;
}

.hero {
    isolation: isolate;
}

.footer {
    isolation: isolate;
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    .nav-menu {
        max-height: -webkit-fill-available;
    }
}

/* Fix for Firefox */
@-moz-document url-prefix() {
    .step-icon,
    .social-links a {
        display: -moz-inline-box;
        -moz-box-align: center;
        -moz-box-pack: center;
    }
}

/* Ensure text remains visible during webfont load */
@font-face {
    font-family: 'Poppins';
    font-display: swap;
}

/* Additional hover effects for better UX */
.nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-list > li > a:hover::after {
    width: 100%;
}

/* Ensure proper contrast ratios */
.cta-button,
.pricing-btn,
.test-order-btn,
.order-btn {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Final responsive adjustments */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .offer-title {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
}

/* Ensure all interactive elements are accessible */
button,
a,
input,
select,
textarea {
    min-height: 44px;
    min-width: 44px;
}

/* Fix for touch devices */
@media (hover: none) and (pointer: coarse) {
    .step:hover,
    .service-category:hover,
    .stat-item:hover {
        transform: none;
    }
    
    .nav-list > li > a:hover::after {
        width: 0;
    }
}




.main {
  padding: 60px 20px;
  background: #01013a;
  color:#fff;
}

.headline {
    text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 50px;
}

.osteps {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.ostep {
  text-align: center;
  max-width: 200px;
}

.ostep img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.ostep p {
  color: #bbb;
  font-weight: 500;
}
.cost-section{
    text-align: center;
}

.cost-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.cost-section p {
  font-size: 15px;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 20px;
}

.cost-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.cta {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 30px;
}

.cta:hover {
  background-color: #d62839;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-icons img {
  height: 30px;
}
@media (max-width: 1024px) {
  .osteps {
    gap: 50px;
  }

  .ostep img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 768px) {
  .headline {
    font-size: 22px;
    padding: 0 10px;
  }

  .cost-section h2 {
    font-size: 20px;
  }

  .cta {
    font-size: 15px;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .osteps {
    flex-direction: column;
    align-items: center;
  }

  .ostep {
    margin-bottom: 30px;
  }

  .cost-section p {
    padding: 0 10px;
    font-size: 14px;
  }

  .payment-icons {
    gap: 10px;
  }

  .payment-icons img {
    height: 26px;
  }
}