
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #eef5ff;

}

.navbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
    background: #194C75;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo img {
    width:170px;
  

}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links li a {

    border-radius: 10px;
    padding: 10px 20px;
}
.nav-links li button {

    border-radius: 10px;


}

.nav-links li a:hover,.nav-links li button:hover {
    background: #627686ad;


}


.nav-links a,
.product-btn {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
}

.product-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.product-menu {
    position: relative;
}

.product-dropdown {
    position: absolute;
    top: 35px;
    left: 0;
    width: 180px;
    padding: 10px 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    list-style: none;
    display: none;
    z-index: 1001;
}

.product-dropdown li a {
    display: block;
    padding: 10px 15px;
    color: #194C75;
}

.product-dropdown li a:hover {
    background: #d9dfe4;
}

.product-dropdown.show {
    display: block;
}

.hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile design */

@media (max-width: 900px) {
    .hamburger {
        display: block;
        color: white;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 15px 7%;
        background: #194C75;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links>li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-links>li>a,
    .product-btn {
        display: block;
        width: 100%;
        padding: 15px 0;
        text-align: left;
    }

    .product-menu {
        position: static;
    }

    .product-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 10px 15px;
    }

    .product-dropdown li {
        border-bottom: none;
    }

    .product-dropdown li a {
        padding: 10px 0;
        color: #194C75;
    }
}


/* hero section */
.hero {
    width: 100%;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            #f8fafc 0%,
            #f8fafc 55%,
            #eef3f8 100%
        );
    overflow: hidden;
}

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
    padding: 80px 0;
}

.hero-content {
    max-width: 650px;
}

.hero-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #ea7c18;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 24px;
    color: #0f172a;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero h1 span {
    color: #ea7c18;
}

.hero-description {
    max-width: 590px;
    margin-bottom: 32px;
    color: #596579;
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.hero-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 160px;
    padding: 14px 25px;
    border: 2px solid transparent;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.primary-btn {
    background: #ea7c18;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(234, 124, 24, 0.24);
}

.primary-btn:hover {
    background: #cf6810;
    transform: translateY(-3px);
}

.secondary-btn {
    border-color: #0f2c4d;
    color: #0f2c4d;
    background: transparent;
}

.secondary-btn:hover {
    background: #0f2c4d;
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    position: relative;
    padding-left: 15px;
}

.hero-feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 3px;
    height: 38px;
    border-radius: 5px;
    background: #ea7c18;
}

.hero-feature strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
}

.hero-feature span {
    color: #718096;
    font-size: 13px;
}

.hero-image {
    position: relative;
    min-height: 520px;
}

.hero-image img {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(15, 44, 77, 0.18);
}

.hero-image::before {
    content: "";
    position: absolute;
    top: -22px;
    right: -22px;
    width: 150px;
    height: 150px;
    border-radius: 18px;
    background: #ea7c18;
    opacity: 0.12;
    z-index: 0;
}

.hero-image img {
    position: relative;
    z-index: 1;
}

.hero-image-card {
    position: absolute;
    left: -35px;
    bottom: 35px;
    z-index: 2;
    width: 230px;
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.hero-image-card span {
    display: block;
    margin-bottom: 6px;
    color: #ea7c18;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-image-card strong {
    color: #0f172a;
    font-size: 16px;
    line-height: 1.4;
}

/* Tablet */

@media (max-width: 950px) {

    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 70px 0;
    }

    .hero-content {
        max-width: 750px;
    }

    .hero-image {
        min-height: 460px;
    }

    .hero-image img {
        height: 460px;
    }

    .hero-image-card {
        left: 25px;
    }
}

/* Mobile */

@media (max-width: 600px) {

    .hero-container {
        width: 92%;
        padding: 55px 0;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-features {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .hero-image {
        min-height: 350px;
    }

    .hero-image img {
        height: 350px;
        border-radius: 12px;
    }

    .hero-image-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: auto;
    }
}


/* footerr parrt */
.footer{
    background:#0f172a;
    color:#fff;
    margin-top:80px;
}

.footer-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:70px 0;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}

.footer-logo{
    width:170px;
    margin-bottom:20px;
}

.footer-box h3{
    margin-bottom:20px;
    font-size:22px;
    color:#ff9800;
}

.footer-box p{
    color:#cbd5e1;
    line-height:1.8;
    font-size:15px;
}

.footer-box a{
    display:block;
    color:#cbd5e1;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-box a:hover{
    color:#ff9800;
    padding-left:8px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:22px;
    font-size:15px;
    color:#cbd5e1;
}

.footer-bottom span{
    color:#ff9800;
    font-weight:600;
}

/* Accessibility and small-screen improvements */
button:focus-visible,
a:focus-visible {
    outline: 3px solid #ffb347;
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .navbar {
        padding: 14px 5%;
    }

    .logo a {
        font-size: 19px;
    }

    .footer-container {
        width: 90%;
        padding: 45px 0;
        gap: 30px;
    }

    .footer-bottom {
        font-size: 13px;
        padding: 18px 5%;
    }
}
