*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:100px;
}

body{
    background:#f5f5f5;
    color:#222;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* HEADER */

header{
    background:#c8103a;
    position:sticky;
    top:0;
    z-index:1000;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin: left -5px;  
    padding-left:0;
}

.logo img{
    width:90px;
    height:90px;
    object-fit:contain;
    display:block;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-text h2{
    color:#fff;
    font-size:2.2rem;
    margin:0;
}

.logo-text span{
    color:#ffd54f;
    font-size:1.1rem;
    margin-top:5px;
}

#menu{
    display:none;
}

.hamburger{
    display:none;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#ffd54f;
}

/* HERO */

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("images/hero.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    color:#fff;
    max-width:900px;
    padding:20px;
}

.overlay h1{
    font-size:64px;
    margin-bottom:20px;
}

.overlay p{
    font-size:24px;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:15px 40px;
    background:#ffd54f;
    color:#000;
    text-decoration:none;
    border-radius:40px;
    font-weight:bold;
}

.btn:hover{
    background:#fff;
}

/* SECTIONS */

section{
    padding:80px 0;
}

.title h2,
.enterprise h2,
.contact h2{
    text-align:center;
    color:#0f537c;
    font-size:42px;
    margin-bottom:30px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    line-height:1.8;
}

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:30px;
}

.stats div{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.stats h3{
    color:#c8103a;
    font-size:42px;
    margin-bottom:10px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-card{
    background:#c8103a;
    color:#fff;
    padding:35px 20px;
    border-radius:18px;
    text-align:center;
    font-size:22px;
    font-weight:bold;
    transition:.3s;
}

.service-card:hover{
    background:#0d3b66;
    transform:translateY(-6px);
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery div{
    height:220px;
    background:#d8d8d8;
    border-radius:18px;
}

.contact .card{
    text-align:center;
}

.contact p{
    margin-bottom:15px;
}

footer{
    background:#0d3b66;
    color:#fff;
    text-align:center;
    padding:25px;
    margin-top:50px;
}

/* Floating WhatsApp */

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
    z-index:9999;
    transition:all 0.3s ease;
    animation:float 2s ease-in-out infinite;
}

.whatsapp-float img{
    width:38px;
    height:38px;
}

.whatsapp-float:hover{
    transform:scale(1.15);
    box-shadow:0 12px 28px rgba(37,211,102,0.6);
}


/* Founder Section */

.founder-section{
    padding:80px 0;
    background:#ffffff;
}

.founder-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.founder-image{
    flex:1;
    text-align:center;
}

.founder-image img{
    width:100%;
    max-width:350px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    transition:.4s;
}

.founder-image img:hover{
    transform:scale(1.03);
}

.founder-content{
    flex:1.5;
}

.founder-tag{
    display:inline-block;
    background:#ffd54f;
    color:#000;
    padding:8px 18px;
    border-radius:30px;
    font-weight:bold;
    margin-bottom:15px;
}

.founder-content h2{
    color:#c8103a;
    font-size:40px;
    margin-bottom:10px;
}

.founder-content h3{
    color:#0d3b66;
    font-size:30px;
    margin-bottom:20px;
}

.founder-content p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:15px;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:0.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* CLIENTS SECTION */

.clients-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
    margin-top:25px;
}

.client-card{
    background:#fff;
    border-radius:15px;
    padding:20px 15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    border-top:4px solid #c8103a;
    transition:all 0.3s ease;
}

.client-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.client-card h3{
    color:#0d3b66;
    font-size:18px;
    margin-bottom:8px;
    line-height:1.4;
}

.client-card p{
    color:#666;
    font-size:14px;
    margin:0;
}

/* Optional client icon */

.client-card::before{
    content:"🏢";
    display:block;
    font-size:24px;
    margin-bottom:10px;
}

/* CONTACT SECTION */

.contact-section{
    padding:60px 0;
    background:#f8f9fb;
}

.contact-box{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    max-width:700px;
    margin:auto;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.contact-item:last-child{
    border-bottom:none;
}

.contact-item span{
    font-size:22px;
    min-width:30px;
}

.contact-item h3{
    color:#c8103a;
    margin-bottom:4px;
    font-size:16px;
}

.contact-item p{
    color:#555;
    line-height:1.5;
    font-size:14px;
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0);
    }
}

/* MOBILE */

@media(max-width:768px){

      .nav{
        position:relative;
    }

   .hamburger{
        display:block;
        font-size:32px;
        color:#fff;
        cursor:pointer;
        position:absolute;
        right:20px;
        top:50%;
        transform:translateY(-50%);
    }

     nav{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#c8103a;
        flex-direction:column;
        gap:20px;
        padding:20px 0;
        text-align:center;
    }

      #menu:checked ~ nav{
        display:flex;
    }

    .logo img{
        width:60px;
        height:60px;
    }

    .logo-text h2{
        font-size:18px;
    }

    .logo-text span{
        font-size:12px;
    }
    .container{
        padding:10px 15px;
    }

    .overlay h1{
        font-size:40px;
    }

    .overlay p{
        font-size:18px;
    }

    .stats{
        grid-template-columns:1fr;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .title h2,
    .enterprise h2,
    .contact h2{
        font-size:32px;
    }
    
    .whatsapp-float{
        width:55px;
        height:55px;
        bottom:20px;
        right:15px;
    }

    .whatsapp-float img{
        width:34px;
        height:34px;
    }
    .founder-container{
        flex-direction:column;
        text-align:center;
        gap:35px;
    }

    .founder-image img{
        max-width:250px;
    }

    .founder-content h2{
        font-size:32px;
    }

    .founder-content h3{
        font-size:24px;
    }

    .founder-content p{
        font-size:16px;
    }

    .clients-grid{
        grid-template-columns:1fr;
    }

    .client-card{
        padding:25px 20px;
    }

    .client-card h3{
        font-size:20px;
    }

    .client-card p{
        font-size:15px;
    }
    .gallery{
        grid-template-columns:1fr;
        gap:18px;
    }

    .gallery-item{
        border-radius:15px;
    }

    .gallery-item img{
        width:100%;
        height:250px;
        object-fit:cover;
    }
     .contact-box{
        padding:20px;
    }

    .contact-item{
        gap:10px;
    }

    .contact-item span{
        font-size:20px;
    }

    .contact-item h3{
        font-size:15px;
    }

    .contact-item p{
        font-size:13px;
    }
}





