* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primarycolor: beige;
    --secondarycolor: #201c1c;
    --tertiarycolor: rgb(216, 193, 63);
    --maincolor: rgb(4, 4, 44);
}

body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background-color: var(--primarycolor);
}

/* =========================================
   HEADER & NAVBAR
   ========================================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--primarycolor);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 30px 0 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    height: 60px;
    width: 60px;
}

.logo-link {
    text-decoration: none;
    color: rgb(39, 34, 34);
}

.logo-text h3 {
    margin: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgb(39, 34, 34);
    position: relative;
    font-weight: 500;
}

/* WhatsApp Button */
.whatsapp-btn a {
    background-color: rgb(85, 190, 85);
    color: var(--primarycolor);
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

.whatsapp-btn a:hover {
    background-color: var(--tertiarycolor);
}

.whatsapp-btn a::after {
    content: none !important;
}

/* Underline Hover Effect */
.nav-links a:not(.whatsapp-btn a)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--tertiarycolor);
    transition: width 0.3s ease;
}

.nav-links a:not(.whatsapp-btn a):hover::after {
    width: 100%;
}

/* Hamburger Icon (Hidden on Desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: rgb(39, 34, 34);
    transition: all 0.3s ease;
}

/* =========================================
   HOME HERO SECTION
   ========================================= */
#Home {
    background-color: var(--maincolor);
    min-height: 80vh; 
    max-width: calc(100% - 1.4cm);
    margin: 0.5cm auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.container .box-1 span {
    border: 1px solid white;
    padding: 15px 30px;
    border-radius: 30px;
    color: var(--tertiarycolor);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.container .box-1 span:hover {
    background-color: var(--primarycolor);
    color: var(--secondarycolor);
}

.box-2 h1 {
    font-size: 45px;
    color: var(--tertiarycolor);
}

.box-3 h1 {
    font-size: 45px;
    color: #fff2f2;
}

.box-4 p {
    color: var(--primarycolor);
    font-size: 17px;
    line-height: 1.6;
}

.boxes-5-6 {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.box-5 h2, .box-6 h2 {
    border: 1px solid white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 20px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.box-5 h2 {
    color: var(--secondarycolor);
    background-color: var(--tertiarycolor);
    border-color: var(--tertiarycolor);
}

.box-5 h2:hover {
    box-shadow: 0 0 5px var(--tertiarycolor), 0 0 20px var(--tertiarycolor);
}

.box-6 h2 {
    color: var(--primarycolor);
    background-color: transparent;
}

.box-6 h2:hover {
    background-color: rgba(0, 255, 255, 0.267);
}

/* =========================================
   HOME HERO SECTION ENHANCEMENTS
   ========================================= */
#Home {
    background: linear-gradient(135deg, var(--maincolor) 0%, #0a0a5a 100%);
    min-height: 90vh;
    overflow: hidden;
    position: relative;
}

#Home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    opacity: 0.1;
    pointer-events: none;
}

.hero-badge {
    background: rgba(216, 193, 63, 0.2);
    color: var(--tertiarycolor);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--tertiarycolor);
    animation: fadeInUp 0.8s ease-out;
}

.hero-trust {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1.2s ease-out;
}

.trust-icons {
    font-size: 24px;
    margin-top: 10px;
    letter-spacing: 5px;
}

/* =========================================
   WHY US SECTION
   ========================================= */
#why-us {
    padding: 80px 20px;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--maincolor);
    margin-bottom: 10px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--tertiarycolor);
    margin: 0 auto;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    padding: 40px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--tertiarycolor);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    color: var(--maincolor);
    margin-bottom: 15px;
    font-size: 20px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

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

/* =========================================
   STATS SECTION
   ========================================= */
#stats {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.stats-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.stat-item {
    width: 100%;
}

.stars {
    color: var(--tertiarycolor);
    font-size: 40px;
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.rating-text {
    color: #4a90e2;
    font-size: 18px;
    font-weight: 500;
}

.stat-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #ddd;
    margin: 0;
}

.stat-item h2 {
    font-size: 60px;
    color: var(--tertiarycolor);
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.stat-item p {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stat-item h2 { font-size: 40px; }
    .stat-item p { font-size: 14px; }
}

/* =========================================
   FEATURES SECTION
   ========================================= */
#features {
    display: flex;
    justify-content: center;
    background-color: var(--tertiarycolor);
    text-align: center;
    align-items: center;
    min-height: 40vh;
    padding: 40px 0;
}

.feature {
    flex: 1;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Vertical line between features */
.feature:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 2px;
    height: 80%;
    background-color: rgba(65, 61, 44, 0.226);  
}

.feature img {
    height: 70px;
    object-fit: contain;
}

/* =========================================
   SECTION 3
   ========================================= */
#section-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    min-height: 70vh;
    align-items: center;
    background-color: var(--primarycolor);
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

#section-3 .img img {
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(68, 60, 60, 0.3);
    width: 100%;
    max-width: 600px;
    display: block;
}

#section-3 .content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#section-3 .text-1 h1 {
    color: var(--maincolor);
    font-size: 32px;
}

#section-3 p {
    color: var(--secondarycolor);
    line-height: 1.7;
}

.unorder-lists {
    padding-left: 20px;
    color: var(--secondarycolor);
    list-style: circle;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.learn-more h3 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    border: 1px solid var(--secondarycolor);
    transition: all 0.3s ease;
    width: fit-content;
    font-size: 16px;
}

.learn-more h3:hover {
    background-color: var(--maincolor);
    color: var(--primarycolor);
    border-color: var(--maincolor);
    cursor: pointer;
}

/* =========================================
   SECTION 4
   ========================================= */
#section-4 {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--maincolor);
    padding: 60px 20px;
    text-align: center;
    gap: 20px;
}

#section-4 h1 {
    color: white;
    font-size: 32px;
}

.subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    max-width: 600px;
    line-height: 1.6;
}

.btn-trial h3 {
    color: var(--secondarycolor);
    background-color: var(--tertiarycolor);
    padding: 15px 35px;
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    margin-top: 15px;
    font-size: 18px;
}

.btn-trial h3:hover {
    background-color: white;
    transform: translateY(-5px);
}

/* =========================================
   FOOTER
   ========================================= */
#footer-container {
    background-color: var(--maincolor);
    padding: 60px 40px 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-area img {
    height: 70px;
}

.logo-area h2 {
    color: var(--primarycolor);
    margin-top: 20px;
    font-size: 20px;
}

.logo-area p {
    color: rgba(255,255,255,0.7);
    margin-top: 15px;
    line-height: 1.6;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links h2, .contact-area h2 {
    color: var(--tertiarycolor);
    font-size: 20px;
    margin-bottom: 5px;
}

.links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.links a:hover {
    color: var(--tertiarycolor);
}

.contact-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.7);
}

.contact-item img {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

.mail-icon {
    height: 28px !important;
}

.footer-line {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 50px auto 20px;
    max-width: 1200px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-align: center;
}

.footer-bottom .dua {
    color: var(--tertiarycolor);
    font-style: italic;
    font-size: 16px;
}

/* =========================================
   MOBILE RESPONSIVE RULES (Max 768px)
   ========================================= */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--primarycolor);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        padding: 30px 0;
        gap: 25px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-links.active {
        left: 0;
    }

    /* Hamburger Animation */
    .hamburger.toggle span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.toggle span:nth-child(2) { opacity: 0; }
    .hamburger.toggle span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

    .logo-text h3 { font-size: 16px; }

    /* Home Mobile */
    #Home {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 60px 20px;
    }
    
    .box-2 h1 { font-size: 32px; }
    .box-3 h1 { font-size: 36px; }
    .desktop-br { display: none; }
    
    .boxes-5-6 {
        flex-direction: column;
        width: 100%;
    }
    
    .box-5, .box-6 { width: 100%; }

    /* Features Mobile */
    #features {
        flex-direction: column;
        gap: 40px;
        padding: 50px 20px;
    }

    .feature:not(:last-child)::after {
        display: none;
    }
    
    /* Section 3 Mobile */
    #section-3 {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        text-align: center;
    }
    
    .unorder-lists {
        align-items: center;
        padding-left: 0;
        list-style-position: inside;
        text-align: center;
    }
    
    .learn-more h3 { margin: 0 auto; }

    /* Section 4 Mobile */
    #section-4 { padding: 60px 20px; }
    #section-4 h1 { font-size: 26px; }
    .subtitle { font-size: 16px; }
    
    /* Footer Mobile */
    #footer-container { padding: 50px 20px 20px; }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .contact-item { justify-content: center; }
}

@media (max-width: 900px) and (min-width: 769px) {
    #section-3 {
        gap: 40px;
        padding: 60px 30px;
    }
}