  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
    }

    body {
        font-family: 'Arial', sans-serif;
        line-height:1.6;
        color:#222222;
        background:#ffffff;
        overflow-x:hidden;
    }

    .container{
        max-width:1200px;
        margin:0 auto;
        padding:0 20px;
    }

    /* HEADER */
    .header{
        background:linear-gradient(135deg, #005f73 0%, #0A7E3C 100%);
        color:#ffffff;
        padding:60px 0;
        text-align:center;
        position:relative;
        overflow:hidden;
    }

    .header::before{
        content: '';
        position:absolute;
        top:0;
        left:0;     
        bottom:0;
        right:0;
        background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    
.section-title{
    position: relative;
    font-size: 2.5rem;
    margin: 30px 0;
    color:#005F73;
    text-align: center;
}

.section-title::after{
    content: '';
    position:absolute;
    bottom:-10px;
    left: 50%;
    transform: translateX(-50px);
    width: 80px;
    height:4px;
    background: linear-gradient(90deg, #25D366,#005F73);
    border-radius: 2px;
}
    
.hero-content{
    position: relative;
    z-index: 2;
    animation:fadeInUp 1s ease-out;
}

.hero-title{
    font-size:3.2rem;
    font-weight:bold;
    margin-bottom:20px;
    text-shadow:4px 4px 4px rgba(0,0,0,0.3);
}

.hero-subtitle{
    font-size:1.4rem;
    margin-bottom:30px;
    opacity:0.95;
}

.features-list{
    list-style: none;
    margin:30px 0;
    font-size:1.1rem;

}

.features-list li{
    margin:10px 0;
    padding-left:30px;
    position:relative;
}

.cta-button{
    display: inline-block;
    background:#25D366;
    color:#ffff;
    padding:18px 35px;
    text-decoration:none;
    border-radius:50px;
    font-size:1.2rem;
    font-weight:bold;
    margin:20px 10px;
    transition:all 0.3s ease;
    box-shadow:0 4px 15px rgba(37,211,102,0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover{

    background: #1EBEA5;
    transform:translateY(-2px);
    box-shadow:0 6px 20px rgba(37,211,102,0.4);
}

.cta-button::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before{
    left:100%;
}


/* STORIES */
.stories-section{
    background:#f8f9fa;
    padding: 60px 0;
}

.stories-title{
    text-align: center;
    font-size: 2.5rem;
    color: #005F73;
    margin:50px 0;
    font-weight: bold;
}

.stories-subtitle{
    text-align: center;
    font-size: 1.5rem;
    color: #005F73;
    margin-bottom: 30px;
    font-weight: 600;
}

.stories-carousel{
   display: flex;
   gap: 20px;
   overflow-x: auto;
   padding: 10px 0;
   scroll-behavior:smooth;
   -webkit-overflow-scrolling:touch;
   justify-content: center;

}

.stories-carousel::-webkit-scrollbar {
    display: none;
}

.story-item{
    flex: 0 0 300px;
    background-color:#f9f9f9;
    border-radius:15px;
    box-shadow:0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;

}

.story-image{
    height:180px;
    background:#ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-bottom: 3px solid #25D366;
}

.story-image img{
    width:100%;
    height:100%;
    object-fit: cover;
}

.story-content{
    padding:15px;
    display:flex;
    flex-direction: column;
    gap: 10px;

}

.story-title{
    font-weight: bold;
    color: #005F73;
}

.story-text{
    font-size: 0.9rem;
    color: #555;
}

.story-badge{
    background: #25D366;
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    align-self: flex-start;
}


/* Mind Section*/
.mind-section {
  text-align: center;
}

.mind-content h2{
    font-size: 2.2rem;
    margin: 30px 0;
    color:#005F73;
}

.benefits-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin:50px 0;
    padding:15px 0;
}

.benefits-card{
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left:4px solid #25D366;
    text-align: center;
}

.benefits-card:hover{
    transform: translateY(-5px);
    cursor: pointer;
}

/* STEPS-CONTAINER*/
.steps-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.step{
    text-align:center;
    padding:30px 20px;
    background:#ffffff;
    border-radius: 15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;

}

.step:hover{
    transform:scale(1.05);
    cursor: pointer;
}


.step-number{
    width:60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #1EBEA5);
    color:white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;

    /* 0(top) auto(left/right to center horizontally...works)*/
    margin:0 auto 20px;
}

/*Visual Choices*/


.choice-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap:30px;
    margin:50px 0;

}

.choice-card{
    background: white;
    padding:25px;
    border-radius:15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition:all 0.3s ease;
    border:2px solid transparent;

}

.choice-card:hover{
    border-color: #25D366;
    transform: translateY(-3px);
    cursor: pointer;
}

.choice-icon{
    font-size: 2rem;
    color: #005F73;
    margin-bottom: 15px;
}


/* Security */
.transform{
    transform:translateY(0px) scale(1);
}


/* Testimonials */

.testimonials{
    background: linear-gradient(135deg, #005f73, #0A7E3C);
    color: white;
    padding:25px 0;
}

.testimonials-grid{
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial{
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius:15px;
    backdrop-filter:blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.testimonial-text{
    font-size:1.1rem;
    margin-bottom:20px;
    font-style:italic;
}

.testimonial-author{
    font-weight:bold;
    color:#25D366;
}

/* Coverage Area */

.coverage-area{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:30px;
    margin:40px 0;
}

.area-tag{
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.5s ease;
    cursor: pointer;

}
s
.area-tag:hover{
    background: #1EBEA5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

/* Footer */
.footer{
    background:#222222;
    color:#ffffff;
    text-align: center;
}

.footer-content{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap:30px;
    padding:55px 55px;
    
}

.footer-section h3{
    color:#25D366;
    margin-bottom: 15px;
}

/* Animations */
@keyframes fadeInUp {
            from {
                opacity: 0.8;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0.8;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }



/*Flaoting Whatsapp*/
.whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background: #1EBEA5;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

