*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100%;
    width: 100%;
    background-color: #fff;/*#cdecff; */
    overflow-x: hidden;
    overflow-y: scroll;
    font-family: 'DM Sans',sans-serif;
}
.navbar{
    position: relative;
    z-index: 999;
    background-color: transparent;
    height: 80px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    font-family: 'Poppins',sans-serif;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 50px;
    color: #00034c;
}
.nav-menu{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-items{
    list-style: none;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-size: 18px;
}
.nav-links a{
    text-decoration: none;
    padding: 10px;
    transition: all 0.4s ease-in-out;
    border-radius: 5px;
    cursor: pointer;
    color: #000371;
}
.nav-links:hover a{
    background-color: #000371;
    color: #fff;
}
.nav-links.active a{
    background-color: #000371;
    color: #fff;
}
.partner-button{
    font-weight: 600;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #00579e;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in;
}
.partner-button:hover{
    transform: scale(1.05);
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: #fff;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid rgba(0, 3, 76, 0.08);
  box-shadow: 0 8px 24px rgba(0, 3, 76, 0.1);
  z-index: 1000;
}
.mobile-menu.open { display: flex; }

.mobile-nav-link {
  display: block;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #000371;
  transition: background 0.2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #000371;
  color: #fff;
}
.mobile-partner {
  width: 100%;
  margin-top: 12px;
  font-weight: 600;
  color: #fff;
  padding: 13px;
  border-radius: 25px;
  background: #00579e;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

/* Show hamburger, hide desktop nav on mobile */
@media (max-width: 768px) {
  .nav-items,
  .partner-button { display: none; }
  .hamburger { display: flex; }
}
footer{
    padding: 40px 50px;
    background-color: #00046e;
    position: relative;
    overflow: hidden;
}

footer::after{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(0, 98, 255, 0.25);
    filter: blur(120px);
    top: -80px;
    right: -80px;
}
.links{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 15px;
}
.company{
    display: flex;
    flex-direction: column;
    width: 280px;
    gap: 15px;
    font-size: 14px;
    color: #fff;
}
.company img{
    width: 80px;
    border-radius: 20px;
}
.company p{
    font-size: 16px;
    font-weight: 400;
}
.company button{
    background-color: rgb(0, 98, 255);
    border-radius: 20px;
    border: none;
    outline: none;
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    width: max-content;
    transition: 0.3s;
}
.company button:hover{
    transform: scale(1.12);
}
.products-foot{
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.products-foot h2{
    color: #fff;
    font-size: 16px;
}
.product-list{
    color: #fff;
    font-size: 15px;
    list-style: none;
    text-decoration: none;
}
.product-list li{
    margin-bottom: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.product-list li:hover{
    color: #8c8c8c;
}
.navigation{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.navigation h2{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.nav-list{
    color: #fff;
    font-size: 15px;
    list-style: none;
    text-decoration: none;
}
.nav-list li{
    margin-bottom: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.nav-list li:hover{
    color: #8c8c8c;
}
.contact{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.details h2{
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}
.details p{
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
}
.social-head{
    font-size: 16px;
    color: #fff;
}
.icons{
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.icon-link{
    text-decoration: none;
    color: #fff;
}
.icon-link i{
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.34);
    cursor: pointer;
    transition: 0.3s;
}
.fa-instagram:hover{
    color: #E1306C;
    background: rgba(255,255,255);
}

.fa-facebook:hover{
    color: #0000ff;
    background: rgba(255,255,255);
}
.copyright{
    margin-top: 30px;
}
.copyright h5{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
}
hr{
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 20px 0;
}
/*new*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100%;
    width: 100%;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: scroll;
    font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar{
    position: relative;
    z-index: 999;
    background-color: transparent;
    height: 80px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    font-family: 'Poppins', sans-serif;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 50px;
    color: #00034c;
}
.nav-menu{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-items{
    list-style: none;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-size: 18px;
}
.nav-links a{
    text-decoration: none;
    padding: 10px;
    transition: all 0.4s ease-in-out;
    border-radius: 5px;
    cursor: pointer;
    color: #000371;
}
.nav-links:hover a{
    background-color: #000371;
    color: #fff;
}
.nav-links.active a{
    background-color: #000371;
    color: #fff;
}
.partner-button{
    font-weight: 600;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #00579e;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in;
    white-space: nowrap;
}
.partner-button:hover{
    transform: scale(1.05);
}

/* ── Hamburger button ── */
.hamburger{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
    flex-shrink: 0;
}
.hamburger span{
    display: block;
    width: 24px;
    height: 2px;
    background: #000371;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile dropdown menu ── */
.mobile-menu{
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid rgba(0,3,76,0.08);
    box-shadow: 0 8px 24px rgba(0,3,76,0.1);
    z-index: 1000;
}
.mobile-menu.open{ display: flex; }

.mobile-nav-link{
    display: block;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #000371;
    transition: background 0.2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active{
    background: #000371;
    color: #fff;
}
.mobile-partner{
    width: 100%;
    margin-top: 12px;
    font-weight: 600;
    color: #fff;
    padding: 13px;
    border-radius: 25px;
    background: #00579e;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.mobile-partner:hover{ background: #003f75; }

/* ============================================================
   FOOTER
============================================================ */
footer{
    padding: 40px 50px;
    background-color: #00046e;
    position: relative;
    overflow: hidden;
}
footer::after{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(0,98,255,0.25);
    filter: blur(120px);
    top: -80px;
    right: -80px;
    pointer-events: none;
}

.links{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;          /* allow wrapping on smaller screens */
    gap: 40px;
    margin-bottom: 15px;
}

.company{
    display: flex;
    flex-direction: column;
    width: 280px;
    gap: 15px;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}
.company img{
    width: 80px;
    border-radius: 20px;
}
.company p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}
.company button{
    background-color: rgb(0,98,255);
    border-radius: 20px;
    border: none;
    outline: none;
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    width: max-content;
    transition: 0.3s;
}
.company button:hover{ transform: scale(1.12); }

.products-foot{
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.products-foot h2{
    color: #fff;
    font-size: 16px;
}
.product-list{
    color: #fff;
    font-size: 15px;
    list-style: none;
}
.product-list li{
    margin-bottom: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.product-list li:hover{ color: #8c8c8c; }

.navigation{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.navigation h2{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.nav-list{
    color: #fff;
    font-size: 15px;
    list-style: none;
}
.nav-list li{
    margin-bottom: 10px;
    transition: 0.3s;
    cursor: pointer;
}
.nav-list li:hover{ color: #8c8c8c; }

.contact{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.details h2{
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}
.details p{
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
}
.social-head{
    font-size: 16px;
    color: #fff;
}
.icons{
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.icon-link{
    text-decoration: none;
    color: #fff;
}
.icon-link i{
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    background: rgba(0,0,0,0.34);
    cursor: pointer;
    transition: 0.3s;
}
.fa-instagram:hover{
    color: #E1306C;
    background: rgba(255,255,255,1);
}
.fa-facebook:hover{
    color: #0000ff;
    background: rgba(255,255,255,1);
}

.copyright{ margin-top: 30px; }
.copyright h5{
    font-size: 16px;
    color: #fff;
    font-weight: 300;
}
hr{
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 20px 0;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
============================================================ */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px){
    .navbar{ padding: 15px 30px; gap: 20px; }
    .nav-items{ font-size: 16px; gap: 12px; }
    .partner-button{ font-size: 16px; padding: 9px 16px; }

    footer{ padding: 40px 30px; }
    .links{ gap: 32px; }
    .company{ width: 240px; }
}

/* ── Mobile landscape / large phone (≤ 768px) ── */
@media (max-width: 768px){
    /* Navbar */
    .navbar{ padding: 15px 20px; gap: 0; }
    .nav-items,
    .partner-button{ display: none; }
    .hamburger{ display: flex; }

    /* Footer */
    footer{ padding: 36px 20px; }
    .links{
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    .company{ width: 100%; max-width: 340px; }
}

/* ── Small phone (≤ 480px) ── */
@media (max-width: 480px){
    .navbar{ padding: 12px 16px; height: 68px; }
    .mobile-menu{ top: 68px; }
    .navbar img{ width: 64px !important; height: auto !important; }

    footer{ padding: 28px 16px; }
    .links{ gap: 28px; }
    .company{ font-size: 13px; }
    .company p{ font-size: 14px; }
    .product-list,
    .nav-list{ font-size: 14px; }
    .details p{ font-size: 14px; }
    .copyright h5{ font-size: 14px; }
    .icon-link i{ height: 38px; width: 38px; font-size: 20px; }
}