
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#333;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= HEADER ================= */

header{
    background:#fff;
    border-bottom:1px solid #ececec;
}

header .container{
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.brand img{
    height:55px;
}

nav{
    display:flex;
    align-items:center;
    gap:35px;
}

nav a {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #555;
}

nav a.active {
    color: #0d6efd;
    font-weight: 600; 
}
.cta{
    background:#0d6efd;
    color:#fff;
    padding:12px 24px;
    border-radius:8px;
    transition:.3s;
}

.cta:hover{
    background:#0056d6;
}

/* ================= HERO ================= */
/* Hero Section */

.hero{
    width:100%;
    height:265px;

    display:flex;
    align-items:center;

    background-image:
    linear-gradient(rgba(255,255,255,.35),rgba(255,255,255,.35)),
    url("hero-bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}
.hero h1{
    font-size:64px;
    color:#08275d;
    font-weight:700;
    margin-bottom:18px;
}

.line{
    width:90px;
    height:4px;
    background:#1d6dff;
    margin:20px 0 25px;
}

.hero p{
    width:100%;
    max-width:1000px;
    margin:25px auto 0;
    font-size:22px;
    line-height:1.8;
    color:#4b5563;
    text-align:left;

}
.hero .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}
.hero-content{
    width:100%;
    max-width:1200px;
    margin:0 auto;
}

/* ================= PRODUCTS ================= */
.products-grid{
    width:90%;
    max-width:1200px;
    margin:50px auto 70px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

    align-items:stretch;
}

/* Product Card */

/* ================= PRODUCTS ================= */

.products-grid{
    width:90%;
    max-width:1200px;
    margin:50px auto 70px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* Product Card */

.product-card,
.coming-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;

    width:100%;
    max-width:340px;
    height:500px;

    padding:30px;
    margin:auto;

    display:flex;
    flex-direction:column;

    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover,
.coming-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

/* Icons */

.product-icon{
    width:90px;
    height:90px;
    object-fit:contain;
    margin:0 auto 20px;
}

/* Headings */

.product-card h2,
.coming-card h3{
    font-family:'Poppins',sans-serif;
    font-size:24px;
    font-weight:700;
    color:#1f2937;
    margin:10px 0 18px;
}

/* Blue Line */

.blue-line{
    width:70px;
    height:4px;
    background:#2563eb;
    border-radius:5px;
    margin-bottom:22px;
}

/* Description */

.product-card p,
.coming-card p{
    font-family:'Poppins',sans-serif;
    font-size:17px;
    line-height:1.8;
    color:#5f6b7a;

    flex-grow:1;
}

/* Learn More Button */

.btn{
    display:flex;
    justify-content:center;
    align-items:center;

    width:170px;
    height:48px;

    margin-top:auto;      /* pushes button to bottom */
    align-self:center;

    background:#2563eb;
    color:#fff;
    text-decoration:none;

    border-radius:10px;

    font-family:'Poppins',sans-serif;
    font-size:17px;
    font-weight:600;

    transition:.3s;
}

.btn:hover{
    background:#1d4ed8;
}

/* Coming Soon Card */

.coming-card{
    text-align:center;
    align-items:center;
}

.icon{
    font-size:60px;
    margin-bottom:20px;
}

.coming-card h3{
    margin-top:20px;
}

.coming-card p{
    margin-bottom:20px;
}
/* Coming Soon */

.coming-card{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.icon{
    font-size:60px;
    margin-bottom:20px;
}

.coming-card h3{
    font-size:28px;
    color:#555;
    margin-bottom:10px;
}

.coming-card p{
    font-size:18px;
    color:#888;
}
/* ================= FEATURES ================= */

.features{
    width:90%;
    max-width:1200px;
    margin:80px auto;
}

.features h2{
    text-align:center;
    font-size:42px;
    color:#0d2b63;
    margin-bottom:50px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.feature-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:30px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.feature-card h3{
    color:#0d2b63;
    margin-bottom:15px;
    font-size:24px;
}

.feature-card p{
    color:#666;
    line-height:1.7;
}

/* ================= MODULES ================= */

.modules{
    width:90%;
    max-width:1200px;
    margin:80px auto;
}

.modules h2{
    text-align:center;
    font-size:42px;
    color:#0d2b63;
    margin-bottom:50px;
}

.module-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.module-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:35px;
    text-align:center;
    font-size:22px;
    font-weight:600;
    color:#0d2b63;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.module-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

/* ================= FOOTER ================= */
.footer{
    margin-top:80px;
    background:#fff;
    border-top:1px solid #eef3fb;
    padding:32px 0;
}

.footer-top{
    width:90%;
    max-width:1100px;
    margin:0 auto;
    display:flex;
    justify-content:flex-start;
    gap:120px;   /* 80px, 100px, 120px try cheyyi */
}

.footer-column h3{
    font-size:18px;
    font-weight:700;
    color:#5b677a;
    margin-bottom:12px;
}

.footer-column p,
.footer-column a{
    color:#666;
    font-size:16px;
    text-decoration:none;
}

.footer-column a:hover{
    color:#0d6efd;
}

.footer-bottom{
    text-align:center;
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid #eef3fb;
    color:#666;
    font-size:15px;
}

@media(max-width:768px){

    .footer-top{
        grid-template-columns:1fr;
        gap:25px;
        text-align:center;
    }

}
/* ================= RESPONSIVE ================= */

@media (max-width:1024px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .module-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero h1{
        font-size:48px;
    }

    .hero p{
        font-size:18px;
    }

}

@media (max-width:768px){

    header .container{
        flex-direction:column;
        height:auto;
        padding:20px 0;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
        margin-top:15px;
    }

    .hero{
    padding:60px 20px;
    text-align:center;
    justify-content:center;
    height:auto;
    min-height:280px;
}
    .hero h1{
        font-size:40px;
    }

    .hero p{
        max-width:100%;
        font-size:17px;
    }

    .line{
        margin:20px auto;
    }

    .products-grid{
        grid-template-columns:1fr;
    }

    .module-grid{
        grid-template-columns:1fr;
    }

    .footer .container{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

}

/* ================= SMOOTH EFFECTS ================= */

html{
    scroll-behavior:smooth;
}

img{
    max-width:100%;
    display:block;
}


button,
.btn,
.cta{
    cursor:pointer;
}
