/* ============================================
   MOBILE RESPONSIVE FIX v2 — shared across all product pages
   ============================================ */

/* ---------- Tablet & below (<=992px) ---------- */
@media (max-width: 992px) {
  .product-detail-box {
    grid-template-columns: 1fr !important;
    padding: 25px !important;
    gap: 20px !important;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px !important;
  }
}

/* ---------- Mobile (<=768px) ---------- */
@media (max-width: 768px) {

  .header-top { padding: 15px !important; }
  .search-box input { padding: 12px 16px !important; }

  /* ===== PRODUCT DETAIL PANEL (click ke baad wala) ===== */
  .product-detail-section { padding: 25px 5% 15px !important; }
  .product-detail-box {
    grid-template-columns: 1fr !important;
    padding: 18px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  /* Image ko pehle (upar) dikhao, proper size ke saath */
  .product-image-detail {
    order: -1 !important;
    margin-bottom: 15px !important;
  }
  .product-image-detail img {
    width: 100% !important;
    height: 220px !important;
    max-height: 220px !important;
    object-fit: contain !important;
    background: #fff !important;
    border-radius: 12px !important;
  }
  .product-info h1 { font-size: 22px !important; line-height: 1.3 !important; }
  .product-info .detail-price { font-size: 20px !important; }
  .product-info p { font-size: 14px !important; line-height: 1.6 !important; }
  .product-info ul { font-size: 14px !important; }
  .detail-actions { flex-direction: column !important; }
  .detail-add-btn, .close-detail-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* ===== GALLERY GRID (product cards) ===== */
  .gallery-section { padding: 30px 5% !important; }
  .gallery-title { font-size: 24px !important; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .gallery-card {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }
  /* Image ka fixed white box, consistent size */
  .gallery-card img {
    height: 130px !important;
    width: 100% !important;
    padding: 10px !important;
    object-fit: contain !important;
    background: #fff !important;
  }
  /* Text ko clamp karo taaki card uneven na ho */
  .gallery-detail {
    padding: 10px 12px !important;
    min-height: 100px !important;
  }
  .gallery-detail h4 {
    font-size: 13px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    line-height: 1.35 !important;
  }
  .gallery-detail p {
    font-size: 11px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    line-height: 1.4 !important;
  }
  .gallery-detail .price-tag { font-size: 13px !important; }

  /* Availability badge: mobile pe hover kaam nahi karta, isliye hamesha visible + subtle animation */
  .avail-badge-wrap {
    top: auto !important;
    bottom: 6px !important;
    right: 8px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    animation: badgeRise 0.4s ease !important;
  }
  .avail-badge-icon { width: 26px !important; height: 26px !important; font-size: 12px !important; }
  .gallery-logo { width: 150px !important; }

  /* Modals */
  .checkout-modal, .login-modal {
    width: 92vw !important;
    max-height: 88vh !important;
    overflow-y: auto !important;
  }
  .checkout-body, .login-body { padding: 20px 18px !important; }
  .otp-input-group input { font-size: 18px !important; letter-spacing: 4px !important; }

  .footer-container { padding: 0 6% 25px !important; gap: 20px !important; }
  .footer-box h3 { font-size: 17px !important; }
}

@keyframes badgeRise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Small phones (<=480px) ---------- */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .gallery-card img { height: 105px !important; }
  .gallery-detail { min-height: 90px !important; }
  .gallery-detail h4 { font-size: 12px !important; }
  .gallery-detail p { font-size: 10.5px !important; }
  .gallery-title { font-size: 20px !important; }
  .product-image-detail img { height: 180px !important; }
  .product-info h1 { font-size: 20px !important; }
  .checkout-modal, .login-modal { width: 96vw !important; }
  .footer-container { grid-template-columns: 1fr !important; }
  .wa-float-btn { width: 44px !important; height: 44px !important; bottom: 18px !important; right: 18px !important; }
}

      /* ===== WHATSAPP FLOATING BUTTON ===== */
.wa-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  left: auto;
  background: #25D366;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.wa-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}
/* ===== WHATSAPP BUTTON END ===== */
  
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #f4f7fb;
    }
    /* language bar start*/
    .menu-bar{
        position:relative;
      }
      
      .lang-dropdown{
        position:absolute;
        right:8%;
        top:50%;
        transform:translateY(-50%);
        z-index:999;
      }
      
      
      .lang-btn{
        background:#0b2f63;
        color:#fff;
        border:none;
        padding:10px 18px;
        border-radius:25px;
        cursor:pointer;
        font-weight:600;
      }
      
      .lang-options{
        display:none;
        position:absolute;
        right:0;
        top:45px;
        background:#fff;
        border-radius:12px;
        box-shadow:0 8px 25px rgba(0,0,0,0.18);
        overflow:hidden;
        min-width:130px;
      }
      
      .lang-options button{
        width:100%;
        border:none;
        background:#fff;
        padding:12px 18px;
        cursor:pointer;
        text-align:left;
        color:#0b2f63;
        font-weight:600;
      }
      
      .lang-options button:hover{
        background:#f2f2f3;
      }
      
      .lang-options.show{
        display:block;
      }
      
      @media(max-width:768px){
        .lang-dropdown{
          position:static;
          transform:none;
          text-align:center;
          padding:10px;
        }
      }
      /* language bar start*/
   /* <!-- ===== HEADER / MENU BAR START ===== -->*/

   *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
  }
  
  .main-header{
    width:100%;
    background:#ffffff;
    box-shadow:0 4px 18px rgba(0,0,0,0.12);
  }
  
  .header-top{
    width:100%;
    padding:22px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
  }
  
  .logo-box img{
    width:180px;
    height:auto;
    display:block;
  }
  
  .search-box{
    display:flex;
    width:420px;
    max-width:100%;
    background:#ffffff;
    border-radius:50px;
    overflow:hidden;
    border:1px solid #dbe5f1;
  }
  
  .search-box input{
    width:100%;
    padding:14px 20px;
    border:none;
    outline:none;
    background:transparent;
    font-size:15px;
  }
  
  .search-box button{
    padding:0 25px;
    border:none;
    background:#9ea7b4;
    color:#004aad;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
  }
  
  .menu-bar{
    width:100%;
    background:#9ea7b4;
  }
  
  .menu-bar ul{
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
  }
  
  .menu-bar ul li a{
    display:block;
    padding:16px 35px;
    color:#004aad;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
    
  }
  
  .menu-bar ul li a:hover{
    background:#004aad;
    color:white;
  }
  
  /* MOBILE */
  .menu-toggle{
display:none;
font-size:28px;
padding:15px 25px;
cursor:pointer;
color:#0b2f63;
}

@media(max-width:768px){

.header-top{
flex-direction:column;
padding:20px;
}

.logo-box img{
width:150px;
}

.search-box{
width:100%;
}

.menu-toggle{
display:block;
}

.menu-bar{
position:relative;
padding-top:10px;
}

#mobileMenu{
display:none;
flex-direction:column;
width:100%;
background:#9ea7b4;
}

#mobileMenu.show{
display:flex;
}

#mobileMenu li{
width:100%;
text-align:center;
}

.lang-dropdown{
position:absolute;
right:15px;
top:10px;
}

}
    /* <!-- ===== HEADER / MENU BAR end ===== -->*/
   /* ===== MOBILE/TABLET MENU FIX START - ChatGPT change =====
   Is block ko dusre pages ke CSS me bhi paste kar sakte ho.
   Kaam:
   1) Mobile/tablet me hamburger left side.
   2) Language button hamburger ke saamne right side.
   3) Menu items click par show/hide.
   4) Language button slider ke andar nahi jayega.
*/
@media (max-width: 992px){
  .menu-bar{
    position: relative !important;
    min-height: 58px !important;
    height: auto !important;
    padding: 0 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    background: #9ea7b4 !important;
    z-index: 1000 !important;
  }

  .menu-toggle{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    order: 1 !important;
    width: 48px !important;
    height: 58px !important;
    padding: 0 !important;
    color: #004aad !important;
    font-size: 26px !important;
    cursor: pointer !important;
    background: transparent !important;
    border: 0 !important;
  }

  .lang-dropdown{
    order: 2 !important;
    position: static !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 1002 !important;
  }

  .lang-btn{
    padding: 9px 16px !important;
    border-radius: 25px !important;
    white-space: nowrap !important;
  }

  .lang-options{
    right: 15px !important;
    left: auto !important;
    top: 52px !important;
    z-index: 1005 !important;
  }

  #mobileMenu{
    order: 3 !important;
    flex-basis: 100% !important;
    width: 100% !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    background: #9ea7b4 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #mobileMenu.show{
    display: flex !important;
  }

  #mobileMenu li{
    width: 100% !important;
    text-align: center !important;
  }

  #mobileMenu li a{
    display: block !important;
    width: 100% !important;
    padding: 15px 20px !important;
    color: #fff !important;
  }
}
/* ===== MOBILE/TABLET MENU FIX END - ChatGPT change ===== */
    

    /* ===== SERVICE SECTION START =====*/
  
  
  .service-section{
    width:100%;
    padding:80px 8%;
    background:#ffffff;
}

.service-content{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.welcome-text{
    color:#0b2f63;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    letter-spacing:1px;
}

.service-title{
    font-size:42px;
    color:#0b2f63;
    line-height:1.4;
    margin-bottom:25px;
    font-weight:700;
}

.service-para{
    font-size:18px;
    color:#10284b;
    line-height:1.9;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    .service-section{
        padding:50px 20px;
    }

    .service-title{
        font-size:28px;
    }

    .service-para{
        font-size:16px;
        line-height:1.8;
    }

}
/* ===== SERVICE SECTION END ===== */
/*===== PRODUCT SECTION START 1=====*/
.product-section{

    width:100%;
    padding:80px 8%;
    background:#f2f2f3;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
  }
  
  .product-text{
    width:50%;
  }
  
  .product-text h2{
    font-size:42px;
    color:#0b2f63;
    font-weight:700;
    margin-bottom:22px;
  }
  
  .blue-line{
    width:80px;
    height:5px;
    background:#168bd6;
    margin-bottom:35px;
  }
  
  .product-text p{
    font-size:21px;
    color:#555;
    line-height:2;
    max-width:620px;
  }
  
  .product-image{
    width:25%;
    text-align:center;
  }
  
  .product-image img{
    max-width:800px;
    width:100%;
    height:auto;
    object-fit:contain;
    filter:drop-shadow(0 20px 25px rgba(0,0,0,0.15));
  }
  
  /* MOBILE */
  @media(max-width:768px){
    .product-section{
      flex-direction:column;
      padding:50px 20px;
      text-align:center;
    }
  
    .product-text,
    .product-image{
      width:100%;
    }
  
    .product-text h2{
      font-size:30px;
    }
  
    .blue-line{
      margin:0 auto 25px;
    }
  
    .product-text p{
      font-size:16px;
      line-height:1.8;
    }
  
    .product-image img{
      max-width:320px;
    }
  }
/*===== PRODUCT SECTION END =====*/

.green-product{
    width:100%;
    padding:80px 8%;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
  }
  
  .green-product .product-image{
    width:30%;
    text-align:center;
  }
  
  .green-product .product-image img{
    max-width:460px;
    width:100%;
    height:auto;
    object-fit:contain;
    filter:drop-shadow(0 20px 25px rgba(0,0,0,0.15));
  }
  
  .green-product .product-text{
    width:40%;
  }
  
  .green-product .product-text h2{
    font-size:42px;
    color:#3d2f8f;
    font-weight:700;
    margin-bottom:22px;
  }
  
  .green-line{
    width:90px;
    height:5px;
    background:#4f8f2f;
    margin-bottom:35px;
  }
  
  .green-product .product-text p{
    font-size:21px;
    color:#555;
    line-height:2;
    max-width:650px;
  }
  
  /* MOBILE */
  @media(max-width:768px){
    .green-product{
      flex-direction:column;
      padding:50px 20px;
      text-align:center;
    }
  
    .green-product .product-image,
    .green-product .product-text{
      width:100%;
    }
  
    .green-product .product-text h2{
      font-size:30px;
    }
  
    .green-line{
      margin:0 auto 25px;
    }
  
    .green-product .product-text p{
      font-size:16px;
      line-height:1.8;
    }
  
    .green-product .product-image img{
      max-width:320px;
    }
  }
  /*-- ===== GREEN PRODUCT SECTION END ===== */
 /*-- PRODUCT SLIDER SECTION START --*/
  .product-slider-section {
      width: 100%;
      padding: 70px 8%;
      background: #f2f2f3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
      overflow: hidden;
    }
  
    .product-text-slider {
      width: 52%;
      position: relative;
      min-height: 300px;
    }
  
    .text-slide {
      position: absolute;
      opacity: 0;
      transform: translateX(-40px);
      transition: all 0.8s ease;
    }
  
    .text-slide.active {
      opacity: 1;
      transform: translateX(0);
    }
  
    .text-slide h2 {
      font-size: 34px;
      color: #0b4ea2;
      margin-bottom: 18px;
      font-weight: 800;
    }
  
    .text-slide p {
      font-size: 17px;
      line-height: 1.8;
      color: #333;
      text-align: justify;
    }
  
    .product-image-slider {
      width: 42%;
      height: 430px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .product-img {
      position: absolute;
      max-width: 100%;
      max-height: 430px;
      object-fit: contain;
      opacity: 0;
      transform: translateX(60px) scale(0.96);
      transition: all 0.8s ease;
    }
  
    .product-img.active {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  
    @media (max-width: 768px) {
      .product-slider-section {
        flex-direction: column;
        padding: 45px 6%;
        gap: 25px;
      }
  
      .product-text-slider,
      .product-image-slider {
        width: 100%;
      }
  
      .product-text-slider {
        min-height: 430px;
        order: 2;
      }
  
      .product-image-slider {
        height: 340px;
        order: 1;
      }
  
      .product-img {
        max-height: 330px;
      }
  
      .text-slide h2 {
        font-size: 26px;
        text-align: center;
      }
  
      .text-slide p {
        font-size: 15px;
        line-height: 1.7;
        text-align: center;
      }
    }
    .main-slider{
  width:100%;
  height:500px;
  position:relative;
  overflow:hidden;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:1s;
}

.slide.active{
  opacity:1;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@media(max-width:768px){
  .main-slider{
    height:250px;
  }
}
    /* PRODUCT SLIDER SECTION END --*/

    /*<!-- ===== GALLERY SECTION START ===== -->*/

    .gallery-section{
        width:100%;
        padding:80px 6%;
        background:#red;
      }
      
      .gallery-title{
        text-align:center;
        font-size:42px;
        color:#0b2f63;
        margin-bottom:45px;
        font-weight:700;
      }
      
      .gallery-grid{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:25px;
      }
      
      .gallery-card{
        width:100%;
        aspect-ratio:1/1;
        position:relative;
        overflow:hidden;
        border-radius:22px;
        background:#fff;
        box-shadow:0 12px 30px rgba(0,0,0,0.12);
        cursor:pointer;
      }
      .gallery-card img{
        width:100%;
        height:100%;
      
        /* YE LAGAO */
        object-fit:contain;
      
        background:#fff;
        padding:10px;
      
        display:block;
        transition:0.5s ease;
      }
      
      .gallery-card:hover img{
        transform:scale(1.08);
      }
      
      .gallery-detail{
        position:absolute;
        left:0;
        bottom:-100%;
        width:100%;
        padding:25px;
        background:linear-gradient(to top, rgba(8,27,54,0.96), rgba(8,27,54,0.82));
        color:#fff;
        transition:0.5s ease;
      }
      
      .gallery-card:hover .gallery-detail{
        bottom:0;
      }
      
      .gallery-detail h3{
        font-size:18px;
        margin-bottom:8px;
        line-height:1.5;
      }
      
      .gallery-detail h4{
        font-size:17px;
        color:#7fc7ff;
        margin-bottom:10px;
      }
      
      .gallery-detail p{
        font-size:14px;
        line-height:1.7;
        margin-bottom:10px;
        color:#e6eef8;
      }
      
      .gallery-detail span{
        font-size:14px;
        font-weight:700;
        color:#fff;
      }
      
      /* TABLET */
      @media(max-width:992px){
        .gallery-grid{
          grid-template-columns:repeat(2,1fr);
        }
      }
      
      /* MOBILE */
      @media(max-width:576px){
        .gallery-grid{
          grid-template-columns:1fr;
        }
      
        .gallery-title{
          font-size:32px;
        }
      }
     /*<!-- ===== GALLERY SECTION END ===== -->*/

      /* COMMENT SECTION1 */

.comment-section{
    margin-top:40px;
}

.comment-title{
    font-size:28px;
    color:#0b2f63;
    margin-bottom:25px;
}

.comment-box{
    background:#f5f8fd;
    padding:20px;
    border-radius:18px;
    margin-bottom:20px;

    box-shadow:0 5px 15px rgba(0,0,0,0.06);
}

.comment-box h4{
    color:#111;
    font-size:20px;
    margin-bottom:10px;
}

.comment-box p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}
 /* COMMENT SECTION END1*/
/* ===== CONTACT SECTION 2 ===== */

.premium-contact{
    width:100%;
    padding:100px 8%;
    background:linear-gradient(to right,#f2f2f3,#f2f2f3);

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}

/* LEFT SIDE */

.contact-content{
    width:45%;
}

.contact-tag{
    display:inline-block;
    padding:10px 22px;
    background:#dce9ff;
    color:#0b2f63;
    border-radius:50px;
    font-size:20px;
    font-weight:600;
    margin-bottom:25px;
}

.contact-content h2{
    font-size:32px;
    line-height:1.3;
    color:#0b2f63;
    margin-bottom:25px;
}

.contact-content p{
    font-size:14px;
    line-height:1.9;
    color:#666;
    margin-bottom:45px;
}

/* DETAILS */

.contact-details{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.detail-box{
    display:flex;
    align-items:center;
    gap:20px;

    background:#fff;
    padding:12px;
    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,0.06);

    transition:0.3s;
}

.detail-box:hover{
    transform:translateY(-5px);
}

.detail-icon{
    width:50px;
    height:50px;
    min-width:50px;

    border-radius:18px;

    background:linear-gradient(135deg,#0b2f63,#0b2f63);

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    font-size:24px;
}

.detail-box h4{
    font-size:15px;
    color:#111;
    margin-bottom:6px;
}

.detail-box span{
    color:#666;
    font-size:16px;
}

/* FORM */

.contact-form-box{
    width:50%;
    background:#fff;
    padding:45px;
    border-radius:30px;

    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.contact-form-box h3{
    font-size:14px;
    color:#0b2f63;
    margin-bottom:35px;
}

/* INPUT ROW */

.input-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    border:none;
    outline:none;

    background:#f5f8fd;

    padding:18px 20px;

    border-radius:14px;

    font-size:16px;
    color:#333;
}

.contact-form-box textarea{
    height:180px;
    resize:none;
    margin-bottom:25px;
}

/* BUTTON */

.contact-form-box button{
    width:100%;
    height:60px;

    border:none;
    border-radius:14px;

    background:linear-gradient(135deg,#0b2f63,#0b2f63);

    color:#fff;

    font-size:18px;
    font-weight:600;

    cursor:pointer;
    transition:0.3s;
}

.contact-form-box button:hover{
    transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

    .premium-contact{
        flex-direction:column;
        padding:70px 20px;
    }

    .contact-content,
    .contact-form-box{
        width:100%;
    }

    .contact-content h2{
        font-size:36px;
    }

    .input-row{
        flex-direction:column;
    }

}
/* ===== CONTACT SECTION END 2 ===== */

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

.premium-footer{
    width:100%;
    background:#9ea7b4;
    color:#10284b;
    padding-top:80px;
}

/* CONTAINER */

.footer-container{
    width:100%;
    padding:0 8% 60px;

    display:grid;

    /* YE CHANGE KRO */
    grid-template-columns:repeat(4,1fr);

    gap:50px;
    align-items:flex-start;
}

/* MOBILE */

@media(max-width:768px){

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

}

/* LOGO */

.footer-logo{
    font-size:20px;
    margin-bottom:20px;
    color:white;
    letter-spacing:2px;
}

/* TEXT */

.footer-box p{
    color:white;
    line-height:1.9;
    font-size:16px;
}

/* HEADING */

.footer-box h3{
    font-size:24px;
    color: white;
    margin-bottom:25px;
    position:relative;
}

.footer-box h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;

    width:60px;
    height:3px;

    background:#004aad;
}

/* LINKS */

.footer-box ul{
    list-style:none;
}

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

.footer-box ul li a{
    color:white;
    text-decoration:none;
    transition:0.3s;
    font-size:16px;
}

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

/* SOCIAL */

.footer-social{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.footer-social a{
    width:48px;
    height:48px;

    border-radius:50%;
    background:white;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#004aad;
    text-decoration:none;

    transition:0.3s;
}

.footer-social a:hover{
    background:#10284b;
    transform:translateY(-5px);
}

/* CONTACT */

.footer-contact p{
    margin-bottom:18px;
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.footer-contact i{
    color:white;
    margin-top:5px;
}

/* BOTTOM */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);

    padding:25px 20px;
    text-align:center;
}

.footer-bottom p{
    color:#004aad;
    font-size:15px;
}

/* MOBILE */

@media(max-width:768px){

    .premium-footer{
        text-align:center;
    }

    .footer-box h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-social{
        justify-content:center;
    }

    .footer-contact p{
        justify-content:center;
    }

}
/* ===== FOOTER END===== */

/* ===== Privacy policy start===== */
.privacy-section{
    width:100%;
    padding:80px 8%;
    background:#f7f9fc;
  }
  
  .privacy-header{
    max-width:1100px;
    margin:0 auto 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
  }
  
  .privacy-header h1{
    font-size:42px;
    color:white;
  }
  
  .privacy-lang{
    position:relative;
  }
  
  .privacy-lang > button{
    border:none;
    background:#0b2f63;
    color:#fff;
    padding:12px 22px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
  }
  
  .privacy-lang-options{
    display:none;
    position:absolute;
    right:0;
    top:50px;
    background:#fff;
    min-width:140px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.18);
    overflow:hidden;
    z-index:999;
  }
  
  .privacy-lang-options.show{
    display:block;
  }
  
  .privacy-lang-options button{
    width:100%;
    border:none;
    background:#fff;
    padding:13px 18px;
    cursor:pointer;
    text-align:left;
    color:white;
    font-weight:600;
  }
  
  .privacy-lang-options button:hover{
    background:#0b2f63;
  }
  
  .privacy-container{
    max-width:1100px;
    margin:auto;
    background:#fff;
    padding:55px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
  }
  
  .privacy-container h2{
    font-size:28px;
    color:#0b2f63;
    margin-top:35px;
    margin-bottom:18px;
  }
  
  .privacy-container p{
    font-size:17px;
    color:#333;
    line-height:1.9;
    margin-bottom:18px;
    text-align:justify;
  }
  
  @media(max-width:768px){
    .privacy-section{
      padding:50px 20px;
    }
  
    .privacy-header{
      flex-direction:column;
      align-items:flex-start;
    }
  
    .privacy-header h1{
      font-size:32px;
    }
  
    .privacy-container{
      padding:30px 22px;
    }
  
    .privacy-container h2{
      font-size:23px;
    }
  
    .privacy-container p{
      font-size:15px;
    }
  }
  /* ===== Privacy policy end===== */
  *{
    margin:0;
    padding:0;
    box-sizing:border-box;
  }
  
  body{
    font-family: Arial, sans-serif;
    background:#fff;
    color:#333;
  }
  
  .about-page{
    display:flex;
    gap:50px;
    padding:25px 40px;
    max-width:1300px;
    margin:auto;
  }
  
  .about-logo{
    width:280px;
    flex-shrink:0;
    text-align:center;
  }
  
  .about-logo img{
    width:100%;
    max-width:260px;
  }
  
  .about-content{
    flex:1;
  }
  
  .about-title{
    font-size:24px;
    color:#999;
    font-weight:400;
    margin-bottom:18px;
  }
  
  .about-line{
    height:14px;
    background:#004aad;
    margin-bottom:12px;
  }
  
  .about-section{
    margin-bottom:28px;
  }
  
  .about-heading{
    background:#004aad;
    color:#fff;
    font-size:20px;
    font-weight:bold;
    padding:7px 22px;
    margin-bottom:14px;
  }
  
  .about-section p{
    font-size:18px;
    line-height:1.6;
  }
  
  .about-section strong{
    font-weight:bold;
  }
  
  /* Mobile Responsive */
  @media(max-width:768px){
    .about-page{
      flex-direction:column;
      padding:20px;
      gap:25px;
    }
  
    .about-logo{
      width:100%;
    }
  
    .about-logo img{
      max-width:220px;
    }
  
    .about-title{
      font-size:20px;
      text-align:center;
    }
  
    .about-section p{
      font-size:16px;
    }
  
    .about-heading{
      font-size:18px;
    }
  }
  /* Service*/
  .product-section{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    padding:0px 8%;
    background:#fff;
  }

  .product-text{
    flex:1;
    order:1;
  }

  .product-image{
    flex:1;
    order:2;
    text-align:right;
  }

  .product-image img{
    max-width:100%;
    width:450px;
    height:auto;
    display:block;
    margin-left:auto;
  }

  .product-features{
    margin:18px 0;
    padding-left:52px;
  }

  .product-features li{
    margin-bottom:8px;
    line-height:1.8;
    transition:0.3s;
  }

  .product-features li:hover{
    transform:translateX(6px);
  }

  .product-features li a{
    color:#004aad;
    text-decoration:none;
    transition:0.3s;
  }

  .product-features li a:hover{
    color:#0b2f63;
    text-decoration:underline;
    font-weight:600;
  }

  .product-features li::marker{
    color:#004aad;
  }

  .blue-line{
    width:80px;
    height:4px;
    background:#004aad;
    margin:14px 0 20px;
  }

  @media(max-width:768px){
    .product-section{
      flex-direction:column;
      text-align:center;
      gap:30px;
      padding:40px 20px;
    }

    .product-text{
      order:2;
    }

    .product-image{
      order:1;
      text-align:center;
    }

    .product-image img{
      margin:auto;
      width:90%;
    }

    .product-features{
      text-align:left;
    }
  }
  .product-text{
  order:1;
}

.product-image{
  order:2;
  text-align:right;
}
  .product-image{
  order:1;
  text-align:left;
}

.product-text1{
  order:2;
}

