

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

    body{
      background:#f5f7fb;
    }

/* TOP SOCIAL BAR */

.top-social-bar{
width:100%;
height:35px;
background:#03152b;
display:flex;
justify-content:center;
align-items:center;
border-bottom:1px solid rgba(255,255,255,0.08);
}

.social-links{
display:flex;
align-items:center;
gap:18px;
}

.social-links a{
width:28px;
height:26px;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
color:#ffffff;
background:rgba(255,255,255,0.08);
border-radius:45%;
transition:0.3s;
}

.social-links a:hover{
background:#38bdf8;
transform:translateY(-3px);
}

.social-links i{
font-size:16px;
}

@media(max-width:768px){

.top-social-bar{
    height:32px;
}

.social-links{
    gap:12px;
}

.social-links a{
    width:22px;
    height:22px;
}

}
.social-links a:nth-child(1){
    background:#1877F2; /* Facebook */
}

.social-links a:nth-child(2){
    background:#25D366; /* WhatsApp */
}

.social-links a:nth-child(3){
    background:#E4405F; /* Instagram */
}

.social-links a:nth-child(4){
    background:#000000; /* X / Twitter */
}

.social-links a i{
    color:white;
}


    /* =========================
       NAVBAR
    ========================== */

    .navbar{
      width:100%;
      height:80px;
      background:linear-gradient(135deg,#041c38,#06264a,#0a3768);
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:0 5%;
      position:sticky;
      top:0;
      z-index:1000;
      box-shadow:0 5px 20px rgba(0,0,0,0.1);
    }

    /* LEFT SIDE */

    .left-side{
      display:flex;
      align-items:center;
      gap:18px;
    }

    /* MOBILE MENU BUTTON */

    .menu-btn{
      width:45px;
      height:45px;
      border-radius:10px;
      background:rgba(255,255,255,0.08);
      display:none;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition:0.3s;
    }

    .menu-btn:hover{
      background:#0ea5e9;
    }

    .menu-btn i{
      color:white;
      font-size:20px;
    }

    /* LOGO */

    .left-side .logo{
      color:white;
      text-decoration:none;
      font-size:28px;
      font-weight:700;
      letter-spacing:1px;
    }

     .left-side .logo span{
      color:#38bdf8;
    }

    /* DESKTOP MENU */

    .desktop-menu{
      display:flex;
      align-items:center;
      gap:28px;
      list-style:none;
    }

    .desktop-menu li{
      position:relative;
    }

    .desktop-menu a{
      text-decoration:none;
      color:white;
      font-size:15px;
      font-weight:500;
      transition:0.3s;
    }

    .desktop-menu a:hover{
      color:#38bdf8;
    }

    /* DROPDOWN */

    .dropdown-menu{
      position:absolute;
      top:45px;
      left:0;
      background:white;
      width:240px;
      border-radius:12px;
      overflow:hidden;
      box-shadow:0 10px 30px rgba(0,0,0,0.12);
      display:none;
    }

    .dropdown-menu a{
      display:block;
      color:#0f172a;
      padding:14px 18px;
      border-bottom:1px solid #eee;
      font-size:14px;
    }

    .dropdown-menu a:hover{
      background:#f1f5f9;
      color:#0ea5e9;
    }

    .dropdown:hover .dropdown-menu{
      display:block;
    }

    /* RIGHT SIDE */

    .navbar .right-side{
      display:flex;
      align-items:center;
      gap:18px;
    }

    /* SEARCH BAR */

    .search-box{
      width:260px;
      height:46px;
      background:rgba(255,255,255,0.08);
      border-radius:12px;
      display:flex;
      align-items:center;
      padding:0 16px;
      gap:10px;
    }

    .search-box i{
      color:#94a3b8;
      font-size:15px;
    }

    .search-box input{
      width:100%;
      background:transparent;
      border:none;
      outline:none;
      color:white;
      font-size:14px;
    }

    .search-box input::placeholder{
      color:#94a3b8;
    }

    /* CART */

    .cart-btn{
      width:46px;
      height:46px;
      border-radius:12px;
      background:rgba(255,255,255,0.08);
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
      cursor:pointer;
      transition:0.3s;
    }

    .cart-btn:hover{
      background:#0ea5e9;
    }

    .cart-btn i{
      color:white;
      font-size:18px;
    }

    .cart-count{
      position:absolute;
      top:-5px;
      right:-5px;
      background:red;
      color:white;
      width:20px;
      height:20px;
      border-radius:50%;
      font-size:12px;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    /* =========================
       MOBILE SIDEBAR
    ========================== */

    .nav .sidebar{
      position:fixed;
      top:0;
      left:-100%;
      width:82%;
      max-width:350px;
      height:100vh;
      background:linear-gradient(135deg,#041c38,#06264a,#0a3768);
      z-index:9999;
      transition:0.4s;
      padding:25px;
      overflow-y:auto;
    }

    .nav .sidebar.active{
      left:0;
    }

     .nav .sidebar .sidebar-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-bottom:25px;
    }

       .nav .sidebar .sidebar-top .sidebar-logo{
      color:white;
      font-size:24px;
      font-weight:700;
    }

   .nav .sidebar .sidebar-top .close-btn{
      color:white;
      font-size:24px;
      cursor:pointer;
    }

    /* MOBILE SEARCH */

    .mobile-search{
      width:100%;
      height:50px;
      background:rgba(255,255,255,0.08);
      border-radius:12px;
      display:flex;
      align-items:center;
      padding:0 16px;
      gap:10px;
      margin-bottom:30px;
    }

    .mobile-search i{
      color:#94a3b8;
    }

    .mobile-search input{
      width:100%;
      background:transparent;
      border:none;
      outline:none;
      color:white;
      font-size:14px;
    }

    .mobile-search input::placeholder{
      color:#94a3b8;
    }

    /* MOBILE LINKS */

    .mobile-links{
      list-style:none;
    }

    .mobile-links li{
      margin-bottom:12px;
    }

    .mobile-links a{
      color:white;
      text-decoration:none;
      font-size:16px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:14px 16px;
      border-radius:12px;
      background:rgba(255,255,255,0.08);
      transition:0.3s;
    }

    .mobile-links a:hover{
      background:#0ea5e9;
    }

    /* MOBILE DROPDOWN */

    .mobile-dropdown{
      max-height:0;
      overflow:hidden;
      transition:0.4s;
      margin-top:10px;
    }

    .mobile-dropdown.active{
      max-height:500px;
    }

    .mobile-dropdown a{
      background:rgba(255,255,255,0.08);
      margin-bottom:8px;
      padding-left:22px;
      font-size:14px;
    }

    /* OVERLAY */

    .nav .overlay{
      position:fixed;
      width:100%;
      height:100vh;
      background:rgba(0,0,0,0.4);
      top:0;
      left:0;
      opacity:0;
      visibility:hidden;
      transition:0.3s;
      z-index:999;
    }

     .overlay.active{
      opacity:1;
      visibility:visible;
    }


    /* =========================
       RESPONSIVE
    ========================== */

    @media(max-width:992px){

      /* SHOW MENU BUTTON */

      .menu-btn{
        display:flex;
      }

      /* HIDE DESKTOP MENU */

      .desktop-menu{
        display:none;
      }

      /* HIDE DESKTOP SEARCH */

      .search-box{
        display:none;
      }

      .navbar{
        padding:0 20px;
      }

      .left-side .logo{
        font-size:22px;
      }

    }


/* main part */


main h2{
  text-align: center;
  color: #0b1c2c;
  margin-top: 7px;
  padding: 8px;
}
main p{
  text-align: center;
  color: #0b1c2c;
  padding-bottom: 10px;
  font-size: 20px;
}
/* HERO */
.hero{ 
background-image: url(images/f-back.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
width:100%;
min-height:58vh;
display:flex;
align-items:center;
color:#fff;
position:relative;
overflow:hidden;
}

/* DARK OVERLAY */
.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0, 0, 0, 0.616);
z-index:1;
}

/* Content overlay ke upar rahe */
.hero-container{
width:90%;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
position:relative;
z-index:2;
}

/* LEFT CONTENT */
.hero-content{
  max-width:50%;
  z-index:2;
}

.hero-content h1{
  font-size:48px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:16px;
  color:#ccc;
  padding: 0px 20px;
  margin-bottom:25px;
  line-height:1.6;
}

.hero-buttons{
  display:flex;
  gap:15px;
}

.hero-buttons .btn{
  padding:12px 20px;
  text-decoration:none;
  font-size:14px;
  border-radius:5px;
}

.hero-buttons .primary{
  background:#2d7dd2;
  color:#fff;
}

.hero-buttons  .secondary{
  border:1px solid #fff;
  color:#fff;
}

/* RIGHT IMAGES */

.hero-images{
display:flex;
gap:10px;
align-items:center;
}

.hero-images .img{
width:160px;
height:390px;
object-fit:cover;
transform:skewX(-12deg);
border-radius: 2px;
transition:0.4s;
}


/* TABLET */

@media (max-width:1024px){

.hero-images .img{
width:80px;
height:240px;
}
}


/* MOBILE */

@media(max-width:768px){

.hero{
background-size: cover;
background-position: center;
background-repeat: no-repeat;

}

.hero-container{
flex-direction:column;
text-align:center;
}

.hero-content{
max-width:100%;
}

.hero-images{
display:none;
}

.hero-content h1{
font-size:30px;
}
}


/* product container */

.product-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    padding: 10px 0;
    gap: 10px;
}

/* CARD */
.product-card {
    width: 18%;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* HOVER EFFECT */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.4s ease;
}

/* IMAGE HOVER */
.product-card:hover img {
    transform: scale(1.05);
}

/* TEXT */
.product-card .content {
    font-weight: 600;
    font-size: 15px;
    padding: 10px 8px 5px;
    color: #0b1c2c;
    letter-spacing: 0.3px;
}

/* BUTTON */
.product-card a {
    display: inline-block;
    margin: 8px 0 14px;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #041c38, #0a3768);
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 12px;
    transition: 0.3s;
}

/* BUTTON HOVER */
.product-card a:hover {
    background: #0ea5e9;
    transform: scale(1.05);
}
   @media (max-width:768px){
    .product-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        place-items: center;
    }
      .product-card{
    width: 90%;
    height: auto;
   
   }
   .product-card:last-child{
    grid-column: 1 / 3;
    justify-self: center;
    width: 45%;
   }
   }


/* SECTION */

.services{
width:100%;
padding:40px 5%;
}

/* GRID */

.services-container{
display:grid;
grid-template-columns:repeat(5,1fr);
border-top:1px solid #ddd;
border-left:1px solid #ddd;
}

/* CARD */

.service-box{
padding:35px 20px;
text-align:center;
border-right:1px solid #ddd;
border-bottom:1px solid #ddd;
transition:0.3s;
background:#fff;
}

.service-box:hover{
background:#f8f8f8;
transform:translateY(-4px);
}

/* ICON */

.service-box i{
font-size:42px;
color:#0b1c2c;
margin-bottom:18px;
}

/* TITLE */

.service-box h3{
font-size:20px;
color:#0b1c2c;
margin-bottom:10px;
}

/* TEXT */

.service-box p{
font-size:15px;
color:#555;
line-height:1.5;
}


/* TABLET */

@media(max-width:992px){

.services-container{
grid-template-columns:repeat(3,1fr);
}

}


/* MOBILE */

@media(max-width:768px){

.services-container{
grid-template-columns:repeat(2,1fr);
}

.service-box{
padding:25px 15px;
}

.service-box i{
font-size:32px;
}

.service-box h3{
font-size:17px;
}

.service-box p{
font-size:13px;
}

}


/* SMALL MOBILE */

@media(max-width:480px){

.services-container{
grid-template-columns:1fr;
}

}























.map-box{
    width: 100%;
    height: 320px;
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.map-box iframe{
    width: 100%;
    height: 100%;
    border: 0;

}


/* =========================
   FOOTER
========================= */

.footer{
  background:linear-gradient(135deg,#041c38,#06264a,#0a3768);
  color:#fff;
  padding:45px 28px 16px;
}

/* CONTAINER */

.footer-container{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
}

/* BOX */

.footer-box{
  padding-right:14px;
  border-right:1px solid rgba(255,255,255,0.10);
}

.footer-box:last-child{
  border-right:none;
}

/* TITLE */

.footer-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:18px;
  font-weight:600;
  margin-bottom:14px;
  letter-spacing:.3px;
}

.toggle-icon{
  display:none;
  transition:.4s;
}

/* CONTENT */

.footer-content{
  display:block;
}

/* ABOUT LOGO */

.about-logo{
  width:98px;
  border-radius:14px;
  margin-bottom:12px;
  font-weight: bold;
  font-size: 25px;
}



/* ABOUT TEXT */

.about-text{
  color:#d6dce5;
  line-height:1.7;
  font-size:16px;
}

/* LINKS */

.footer ul{
  list-style:none;
}

.footer ul li{
  margin-bottom:10px;
}

.footer ul li a{
  text-decoration:none;
  color:#d6dce5;
  font-size:15px;
  transition:.3s;
}

.footer ul li a:hover{
  color:#fff;
  padding-left:4px;
}

/* SOCIAL */

.footer-content .social-icons{
  margin-top:14px;
  display:flex;
  gap:10px;
}

.footer-content .social-icons a{
  width:34px;
  height:34px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  background:rgba(255,255,255,0.08);
  transition:.3s ease;
  font-size:15px;
}

.footer-content .social-icons a:hover{
  transform:translateY(-3px);
  background:linear-gradient(135deg,#041c38,#06264a,#0a3768);
}

/* CONTACT */

.contact-item{
  display:flex;
  gap:10px;
  margin-bottom:14px;
  align-items:flex-start;
}

.contact-item i{
  width:34px;
  height:34px;
  border-radius:10px;
  background:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:15px;
  flex-shrink:0;
}

.contact-item p{
  color:#d6dce5;
  line-height:1.6;
  font-size:15px;
}

/* FORM */

.footer-form input,
.footer-form textarea{
  width:100%;
  padding:11px 12px;
  margin-bottom:10px;
  border:none;
  outline:none;
  border-radius:10px;
  background:rgba(255,255,255,0.08);
  color:white;
  font-size:14px;
}

.footer-form textarea{
  resize:none;
  height:82px;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder{
  color:#cbd5e1;
}

.footer-form button{
  width:100%;
  padding:11px;
  background: white;
  color:linear-gradient(135deg,#041c38,#06264a,#0a3768);
  border:none;
  border-radius:10px;
  font-size:14px;
  cursor:pointer;
  transition:.3s;
}

.footer-form button:hover{
  background:linear-gradient(135deg,#0a3768, #06264a);
  color: white;
}

/* COPYRIGHT */

.copyright{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:24px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,0.10);
  font-size:13px;
  color:#d6dce5;
}

/* PAYMENT ICONS */

.payment-icons{
  display:flex;
  gap:10px;
  align-items:center;
  margin-left:auto;
}

.payment-icons i{
  font-size:26px;
  color:white;
  transition:.3s;
}

.payment-icons i:hover{
  color:#38bdf8;
  transform:translateY(-2px);
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

  .footer-container{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-box{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,0.10);
    padding-bottom:14px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .footer{
    padding:35px 18px 14px;
  }

  .footer-container{
    grid-template-columns:1fr;
    gap:12px;
  }

  .footer-title{
    cursor:pointer;
    margin-bottom:0;
    padding:10px 0;
  }

  .footer-title .toggle-icon{
    display:block;
  }

  .accordion .footer-content{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:
    max-height .4s ease,
    opacity .3s ease;
  }

  .accordion.active .footer-content{
    max-height:400px;
    opacity:1;
    padding-top:12px;
  }

  .accordion.active .toggle-icon{
    transform:rotate(45deg);
  }



  .payment-icons{
    margin-left:0;
  }

}
