*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}
body{
    background:#f6f6f6;
    color:#333;
}
.logo-img{
    height:100px;
    width:auto;
}
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:#fafafa;
    box-shadow:0 2px 6px rgba(0,0,0,0.05);
}
nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}
nav a{
    text-decoration:none;
    color:#cf006b;
    font-weight:600;
    transition: 0.3s;
}
nav a:hover{
    color:#cf006b;
}
.menu-toggle{
    font-size:28px;
    cursor:pointer;
    color:#e91e63;
    display:none;
    padding:10px;
}
.sidebar{
    position:fixed;
    top:0;
    left:-250px;
    width:250px;
    height:100%;
    background:#fafafa;
    transition:0.3s;
    padding-top:60px;
    z-index:1000;
}
.sidebar.active{
    left:0;
}
.sidebar ul{
    list-style:none;
    padding:0px;
}
.sidebar ul li{
    padding:15px 20px;
    text-align:center;
    border-bottom:1px solid #e5e5e5;
}
.sidebar ul li a{
    text-decoration:none;
    color:#cf006b;
    font-weight:600;
}
.sidebar{
    transition:left 0.35s ease;
}
.close-btn{
    position:absolute;
    top:15px;
    right:20px;
    font-size:22px;
    cursor:pointer;
    color:white;
}
@media (max-width:768px) {
    header {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    .menu-toggle {
        display: block;
    }
    nav {
        display: none;
    }
}
@media (max-width:768px){
    .logo-img{
        height:60px;
    }
}
.hero{
    text-align:center;
    max-width:900px;
    margin:60px auto;
    line-height:1.7;
}
.hero h2{
    font-size:22px;
    margin-bottom:20px;
    font-weight:600;
}
.hero p{
    color:#555;
}
.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:30px;
    padding:60px;
}
.card{
    background:#e5e5e5; 
    padding:30px 30px;
    border-radius:20px;
    border:1.75px solid #2f2f2f;
    border-shadow:0 5px 20px rgba(0,0,0,0.07);
    text-align:center;
    transition:0.3s;
    cursor:pointer;
    font-weight:700;
}
.card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.12);
}
.icon{
    font-size:40px;
    margin-bottom:15px;
    padding:15px;
    border-radius:50%;
    display:inline-block;
}
.blue{ background:#d9e6f2; }
.card h3{
    font-size:21px;
    font-weight:700;
    margin-bottom:15px;
    color:#333;
    line-height:1.4;
}
.card p{
    font-size:15px;
    color:#1f2933; 
    line-height:1.7;
}
.contact{
    text-align:center;
    padding:60px 20px;
    background:#fff;
    margin-top:30px;
}
.contact h2{
    font-size:26px;
    color:#e91e63;
    margin-bottom:10px;
}
.contact-text{
    color:#555;
    margin-bottom:20px;
}
.emails{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}
.emails a{
    text-decoration:none;
    background:#e91e63;
    color:white;
    padding:10px 18px;
    border-radius:25px;
    transition:0.3s;
}
.emails a:hover{
    background:#c2185b;
}
.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:white;
    font-size:28px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    transition:0.3s;
}
.whatsapp:hover{
    transform:scale(1.1);
}
.about-section{
    padding:120px 10%;
    background:#f7f7f7;
}
.slideshow-container {
    position: relative;
    max-width: 95%;
    margin: auto;
    overflow: hidden;
    z-index: 1;
}
.my-slides{
    position: relative;
    margin-top:20px;
    display:none;
    text-align:center;
    background:#f7f7f7;
    display:flex;
    justify-content:center;
}
.image-wrapper{
    position:relative;
    display:inline-block;
}
.image-wrapper img{
    width:100%;
    height:auto;
    max-height:600px;
    object-fit:contain;
}
.hero-overlay{
    position:absolute;
    bottom:15px;   
    left:50%;
    transform:translateX(-50%);
    text-align:center;
    color:white;
    z-index:2;
    background:rgba(0,0,0,0.5);
    padding:10px 20px;
    border-radius:20px;
    backdrop-filter:blur(10px);
}
.hero-overlay p{
    font-size:1.4em;
    margin-bottom:5px;
    text-shadow:1px 1px 2px rgba(0,0,0,0.7);
}
.dot-container{
    margin: 10px auto 10px auto;
    width: fit-content;
    text-align: center;
    background: rgba(39,37,37,0.6);
    padding: 10px 20px;
    border-radius: 25px;
}
.dot {
    height: 14px;
    width: 14px;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}
@media (max-width: 768px) {
.image-wrapper img{
    max-height:300px;   
}
.hero-overlay{
    bottom:10px;
    padding:5px 10px;
}
.hero-overlay p{
    font-size:0.9rem;
}
.dot{
    height:10px;
    width:10px;
    margin:0 5px;
}
.dot-container{
    padding:6px 14px;
}
}
.about-header h2{
    font-size:42px;
    font-weight:600;
}
.underline{
    width:80px;
    height:4px;
    background:#e91e63;
    margin-top:10px;
}
.story-card{
    background:white;
    padding:35px;
    margin:50px 0;
    border-left:5px solid #e91e63;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    line-height:1.8;
    color:#555;
}
.about-columns{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
}
.left-about p,
.right-about p{
    line-height:1.9;
    color:#555;
}
.vision-card{
    background:white;
    margin-top:25px;
    padding:30px;
    border-radius:8px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}
.vision-card h3{
    color:#e91e63;
    margin-bottom:10px;
}
@media(max-width:900px){
    .about-columns{
        grid-template-columns:1fr;
    }
}
.contact-section{
    padding:120px 10%;
    background:#f7f7f7;
}
.contact-container{
    max-width:900px;
    margin:auto;
    background:white;
    padding:50px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}
.contact-title{
    text-align:center;
    margin-bottom:40px;
}
.contact-title h2{
    font-size:36px;
    color:#333;
}
.contact-title p{
    color:#666;
    margin-top:8px;
}
.contact-form{
    display:flex;
    flex-direction:column;
    gap:25px;
}
.name-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}
.form-group{
    display:flex;
    flex-direction:column;
}
.form-group label{
    font-weight:500;
    margin-bottom:8px;
}
.form-group input,
.form-group textarea{
    padding:14px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:15px;
    transition:0.3s;
    resize: none;
}
.form-group input:focus,
.form-group textarea:focus{
    border-color:#e91e63;
    outline:none;
    box-shadow:0 0 0 2px rgba(233,30,99,0.1);
}
.submit-btn{
    background:#cf006b;
    color:white;
    padding:14px;
    border:none;
    border-radius:6px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}
.submit-btn:hover{
    background:#cf006b;
}
.spinner {
    border: 3px solid #ffffff;   
    border-top: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: none;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.form-message {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}
.form-message.success {
    color: green;
}
.form-message.error {
    color: red;
}
@media(max-width:768px){
    .name-row{
        grid-template-columns:1fr;
}
.contact-container{
    padding:30px;
}
}
.checkbox-group{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:8px;
}
.checkbox-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    color:#555;
    cursor:pointer;
}
.checkbox-item input{
    width:18px;
    height:18px;
    cursor:pointer;
}
.founder-section{
    padding:100px 80px;
    background:white;
}
.founder-container{
    display:flex;
    align-items:center;
    gap:80px;
    max-width:1200px;
    margin:auto;
}
.founder-image img{
    box-sizing: border-box;
    height: auto;
    max-width: 90%;
    vertical-align: bottom;
}
.founder-text{
    max-width:650px;
    text-align:space-between;
    font-size:16px;
    font-weight:500;
}
.founder-text p{
    font-size:15px;
    line-height:1.9;
    color:#000000;
    font-style:italic;
    margin-bottom:15px;
}
.founder-link{
    margin-top:25px;
    font-size:14px;
}
.founder-link a{
    color:#e91e63;
    text-decoration:none;
}
.founder-link a:hover{
    text-decoration:underline;
}
@media(max-width:900px){
    .founder-container{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }
.founder-image img{
    width:200px;
}
}
footer{
    text-align:center;
    padding:25px;
    background:white;
    margin-top:40px;
    color:#777;
}
