/* ==========================
   GLOBAL
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#1e293b;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}


/* ==========================
   HEADER
========================== */

header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:90px;
}

.logo{
    display:flex;
    align-items:center;
    margin-left:-50px;
    gap:15px;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.logo-content h2{
    color:#0B3A82;
    font-size:24px;
    margin-bottom:3px;
}

.logo-content p{
    color:#2EA44F;
    font-size:14px;
    font-weight:600;
}

.nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

.nav ul li a{
    text-decoration:none;
    color:#0B3A82;
    font-weight:600;
    transition:.3s;
}

.nav ul li a:hover{
    color:#2EA44F;
}

.product-btn{
    display:inline-block;
    margin-top:18px;
    padding:12px 24px;
     background:linear-gradient(135deg,#2563eb,#10b981);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:10px;
    transition:.3s;
}

.product-btn:hover{
    background:#2EA44F;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(46,164,79,.2);
}

.disabled-btn{
    background:#444;
    color:#fff;
    cursor:not-allowed;
}

.disabled-btn:hover{
    transform:none;
    box-shadow:none;
}

/* ==========================
   HERO
========================== */

.hero{
    position:relative;
    min-height:100vh;
    background:url('images/city-bg.jpg');
    background-size:cover;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(8,28,58,0.65);
}

.hero-content{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:center;
    height:100vh;
    max-width:700px;
    margin-left:75px;
    margin-top:-50px;
    padding-left:0;
}
.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
    background:rgba(0,0,0,.25);
}
#particles-js{
     position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:2;
}
#particles-js .container{
    position:relative;
    z-index:2;
}
.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:25px;
    max-width:200px;
    color:#ffffff; /* Text Color */
}
.hero-content h1{
    font-size:68px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:700;
    color:#ffffff;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
    max-width:650px;
    margin-bottom:40px;
    color:#ffffff;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary{
    background:linear-gradient(135deg,#2563eb,#10b981);
     backdrop-filter:blur(10px);
    color:white;
    text-decoration:none;
    padding:18px 35px;
    border-radius:10px;
    font-weight:600;
}

.btn-secondary{
    border:2px 
    solid white;
     backdrop-filter:blur(10px);
    color:white;
    text-decoration:none;
    padding:18px 35px;
    border-radius:10px;
    font-weight:600;
}
/* ==========================
   SECTION
========================== */

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#0B3A82;
    margin-bottom:15px;
    font-weight:700;
}

.section-title p{
    color:#0B3A82;
    max-width:700px;
    margin:auto;
}

/* ==========================
   PRODUCTS
========================== */
.cards{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    z-index:3;
}

.card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    border:1px solid #edf2f7;
    border-top:5px solid #2EA44F;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.card i{
    font-size:55px;
    color:#0b3a82;
    margin-bottom:20px;
}

.card h3{
    color:#0B3A82;
    margin-bottom:15px;
}

.card p{
 color: #0b3a82;
}

.card ul{
    margin-top:15px;
    padding-left:20px;
}

.card ul li{
    margin-bottom:8px;
}

/* ==========================
   ABOUT
========================== */

.about{
    background:#f8fafc;
}

.about-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.about-box{
    background:#fff;
     border-top:5px solid #2EA44F;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.about-box h3{
    color:#0B3A82;
    margin-bottom:15px;
}

/* ==========================
   CONTACT
========================== */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:
    start;
}

.contact-info,
.contact-form{
    background:#fff;
    border-top:5px solid #2EA44F;
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-info h3{
    color:#0B3A82;
    margin-bottom:30px;
}

.info-box{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.info-box i{
    width:55px;
    height:55px;
    background:linear-gradient(135deg,#2563eb,#10b981);
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
}

.info-box h4{
    color:#0B3A82;
    margin-bottom:5px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#2EA44F;
    outline:none;
}

.contact-form button{
    width:100%;
    background:linear-gradient(135deg,#2563eb,#10b981);
    color:white;
    padding:15px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

.contact-form button:hover{
    background:#2EA44F;
}

.featured-product{
    padding:100px 0;
    background:#f8fafc;
}

.featured-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.featured-badge{
    display:inline-block;
     background:linear-gradient(135deg,#2563eb,#10b981);
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.featured-content h2{
    font-size:52px;
    color:#0B3A82;
    margin-bottom:10px;
}

.featured-content h3{
    font-size:30px;
    color:#1e293b;
    margin-bottom:20px;
}

.featured-content p{
    font-size:18px;
    color:#64748b;
    margin-bottom:30px;
    line-height:1.8;
}

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:12px 15px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.feature-item i{
    color:#2EA44F;
}

.featured-btn{
    display:inline-block;
    background:linear-gradient(135deg,#2563eb,#10b981);
     backdrop-filter:blur(10px);
    color:#fff;
    padding:16px 30px;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.featured-btn:hover{
    background:#2EA44F;
}

.featured-image img{
    width:relative;
    height:relative;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.grecaptcha-badge{
    transform:scale(.75);
    transform-origin:bottom right;
    opacity:.8;
}

/* ==========================
   BUTTON HOVER EFFECTS
========================== */

.btn-primary,
.btn-secondary,
.featured-btn,
.contact-form button{
    transition:.3s;
}

.btn-primary:hover,
.btn-secondary:hover,
.featured-btn:hover,
.contact-form button:hover{
    transform:translateY(-3px);
}
#products{
    position:relative;
    overflow:hidden;
    background:
    radial-gradient(circle at 0% 0%, rgba(37,99,235,1), transparent 100%),
    radial-gradient(circle at 100% 100%, rgba(16,185,129,1), transparent 100%),
    linear-gradient(180deg,#ffffff,#f4f8ff);
}
#products-particles{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:2;
}

#products .container{
    position:relative;
    z-index:2;
}

#products h2{
 color:#ffffff;
}

#products p2{
 color:#ffffff;
}

#services{
    background:#ffffff;
}
#services p{
    color:#0b3a82;
}
#about{ 
    position:relative;
    overflow:hidden;
    background:
    radial-gradient(circle at 0% 0%, rgba(37,99,235,1), transparent 100%),
    radial-gradient(circle at 100% 100%, rgba(16,185,129,1), transparent 100%),
    linear-gradient(180deg,#ffffff,#f4f8ff);
}
#about-particles{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:2;
}

#about.container{
    position:relative;
    z-index:-1;
}

#about h2{
    color:#ffffff;
}
#about p{
    color:#0b3a82;
}
#contact{
    background:#ffffff;
}
#contact p{
    color:#0b3a82;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#0B3A82;
    color:#fff;
    text-align:center;
    padding:12px 10px;
}

.copyright{
    margin:0;
    font-size:13px;
    line-height:1.5;
}


/* ===================================
   RESPONSIVE CSS
=================================== */

@media (max-width:1024px){

    .container{
        width:95%;
    }
    .logo{
        flex-direction:column;
        text-align:center;
        margin-left:-50px;
    }
    .featured-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:52px;
    }

}

/* TABLET */

@media (max-width:768px){

    header{
        position:relative;
    }

    .nav{
        flex-direction:column;
        gap:15px;
        padding:15px 0;
    }

    .logo{
        flex-direction:column;
        text-align:center;
        margin-left:0px;
    }

    .logo img{
        width:60px;
        height:60px;
    }

    .logo-content h2{
        font-size:18px;
    }

    .logo-content p{
        font-size:12px;
    }

    .nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:12px;
    }

    .nav ul li a{
        font-size:14px;
    }

    .hero{
        min-height:85vh;
    }

    .hero-content{
        margin-left:15px;
        margin-top:0;
        padding:40px 20px;
        text-align:center;
        align-items:center;
        justify-content:center;
        max-width:100%;
        width:100%;
        min-height:100vh;
    }


    .hero-content h1{
        font-size:42px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:18px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
        max-width:350px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:32px;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .card{
        padding:25px;
    }

    .featured-content{
        text-align:center;
    }

    .featured-content h2{
        font-size:38px;
    }

    .featured-content h3{
        font-size:24px;
    }

    .feature-list{
        grid-template-columns:1fr;
    }

    .featured-image img{
        height:350px;
    }

    .contact-info,
    .contact-form{
        padding:25px;
    }

}

/* MOBILE */

@media (max-width:480px){

    .container{
        width:94%;
    }
.logo{
        flex-direction:column;
        text-align:center;
    }
    .hero{
        min-height:100vh;
    }

    .hero-content{
        min-height:100vh;
        padding:50px 0;
    }

    .hero-badge{
        font-size:12px;
        padding:8px 15px;
    }

    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:15px;
    }

    .section-title h2{
        font-size:26px;
    }

    .section-title p{
        font-size:14px;
    }

    .card{
        padding:20px;
    }

    .card i{
        font-size:42px;
    }

    .featured-content h2{
        font-size:28px;
    }

    .featured-content h3{
        font-size:20px;
    }

    .featured-content p{
        font-size:15px;
    }

    .featured-image img{
        height:250px;
    }

    .product-btn,
    .featured-btn,
    .btn-primary,
    .btn-secondary{
        width:100%;
        display:block;
        text-align:center;
    }

    .info-box{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    footer{
        padding:30px 15px;
    }

    footer p{
        font-size:14px;
    }

}