
.hamburger {
    display: none;              
    flex-direction: column;     
    cursor: pointer;            
    gap: 5px;                   
}


.hamburger span {
    width: 25px;                
    height: 3px;                
    background-color: #333;     
    border-radius: 2px;         
    transition: 0.3s;           
}



@media (max-width: 768px) {

    .hamburger {
        display: flex;
        z-index: 1001; 
    }

    .nav-links {
        position: fixed;        
        left: -100%;            
        top: 0;
        flex-direction: column; 
        background-color: #fff;
        width: 100%;
        height: 100vh;         
        text-align: center;
        transition: 0.3s;       
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        justify-content: center;
        padding-top: 50px;
        z-index: 1000;
    }

  
    .nav-links.active {
        left: 0; 
    }

    
    .nav-links li {
        margin: 15px 0;
    }
    
    
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    
    .hero-image {
        display: none;
    }

    
    .hero-content {
        text-align: center;
        width: 100%;
    }

    
    .hero-grid {
        display: block;
    }
}

:root {
    --primary-blue: #4ea8de;
    --accent-green: #aacc00;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f9f9f9;
}


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


body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}



.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}



.promo-bar {
    background: #c7e000;
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}


header {
    padding: 10px 0;
    background: #fff;
    position: sticky;  /* Sticks to top when scrolling */
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}


/* Logo alignment */
.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
}


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

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
}


.btn-order {
    background: var(--primary-blue);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-order:hover {
    background: #3d8dbb;
}


.hero {
    background-color: var(--primary-blue);
    color: white;
    padding: 60px 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;

    min-height: 90vh;   /* Gives hero a strong visual height */
    display: flex;      /* Enables vertical centering */
    align-items: center;
}

/* Desktop layout: 2 columns */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
}


.hero-image img {
    width: 100%;
    height: 100%; /* Forces the image to match the container height */
    object-fit: cover; /* Crops the image slightly to fill the area without distortion */
    /*border-radius: 20px;  Optional: matches the modern look of ProjectVala */
  vertical-align: middle;
}

.hero-content h1 { font-size: 3.5rem; }
.hero-content h2 { font-size: 1.8rem; margin: 15px 0; }
.hero-content p  { margin-bottom: 30px; opacity: 0.9; }

.btn-get-started {
    background: var(--accent-green);
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    color: #444;
}




.features {
    display: flex;
    justify-content: space-between;
    padding: 80px 20px;
    text-align: center;
}

.feature-card {
    flex: 1;
    padding: 20px;
}

/* Circular icon style */
.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Color variations */
.pink  { background: #ffe5f0; }
.blue  { background: #e0f2ff; }
.green { background: #e8f5e9; }


.details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding-bottom: 80px;
}

/* Circular image */
.circle-img {
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Subtitle style */
.sub-title {
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Custom checklist */
.checklist {
    list-style: none;
    margin-top: 20px;
}

/* Add checkmark before each list item */
.checklist li::before {
    content: "✔️";
    margin-right: 10px;
}