html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  * {
    box-sizing: border-box;
  }

  .newBtn {
    border-radius: 32px;
    background: #FF9F00;
    color: #FFF;
    font-size: 15px;
  }

  .custom-arrow {
    font-weight: normal;
    display: inline-block;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }

  #navbarSupportedContent ul li a{
        font-weight: bold;
        font-size: 13px;
       }

       .blink-icon {
         animation: blinker 1s linear infinite;
        }

        @keyframes blinker {
         50% {
          opacity: 0.2;
          text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
         }
        }

        .goldh1{
    color: #FFF;
       text-align: center;
       /*font-family: Inter;*/
       font-size: 32px;
       font-style: normal;
       font-weight: 600;
       line-height: 114%; /* 63.84px */
       letter-spacing: 0.28px;
  }

  @media (max-width: 768px) {
      .goldh1 {
        font-size: 22px;
      }
    }


.gold-rate-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* space between cards */
  justify-content: center; /* center align */
}

.gold-card2 {
  background-color: #fdfdfd;
  border-radius: 10px;
  padding: 10px 15px;
  width: 230px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  margin-bottom: 10px;
}

    .gold-card2 h4 {
      font-size: 16px;
      font-weight: bold;
      color: #000;
      text-align: center;
    }

    .gold-card2 .price2 {
      font-size: 14px;
      font-weight: 600;
      text-align: center;
      color: #000;
    }

    .gold-card2 img {
      width: 40px;
      height: 40px;
      object-fit: cover;
    }

    .gold-card2 .bottom-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
    }

    .gold-card2 .label2 {
      font-size: 14px;
      color: #daab29;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .gold-card2 {
       width: 45%;
      }
    }

    @media (max-width: 500px) {
      .gold-card2 {
         width: 48%;
      }
    }

    .selfdsgn {
           width: 20%;
           border: 5px solid #fff;
          }

          .selfdsgn ul li {
           font-size: 12px;
           color: #000;
           font-weight: bold;
           padding: 5px 30px;
           text-align: center;
          }

          .karat-badge {
           background-color: #FF9F00;
           border-radius: 3px;
           color: #fff;
           text-align: center;
           padding: 5px;
          }

          .price-row {
           display: flex;
           justify-content: space-between;
           align-items: center;
           text-align: left;
           line-height: 10px;
          }

          .price-row .label {
           flex: 1;
           text-align: left;
           padding: 0 3px;
          }

          .price-row .value {
           flex: 1;
           text-align: right;
          }

          .price-row small {
           display: block;
           width: 100%;
           text-align: center;
           font-weight: normal;
           font-size: 10px;
          }


          /* Mobile view (max-width: 768px) */
          @media (max-width: 768px) {
           .selfdsgn {
            width: 100%;
           }
          }

          .gold-rate-container {
        background: #fff;
        border-radius: 10px;
        padding: 15px;
        max-width: 1100px;
        margin: auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        position: relative;
       }

       .gold-rate-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
       }

       .gold-rate-header h3 {
        color: #1d4ed8;
        font-weight: 600;
        margin: 0;
        font-size: 16px;
       }

       .last-updated {
        font-size: 12px;
        color: gray;
       }

       .live-indicator {
        background: red;
        color: #fff;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 12px;
        margin-left: 10px;
       }

       .gold-description {
        margin-top: -5px;
        font-size: 13px;
       }

       .currency-tabs {
        margin-top: 5px;
        border-bottom: 2px solid #2C4CD3;
       }

       .tab-btn {
        padding: 1px 20px;
        border-bottom: none;
        font-weight: bold;
        font-size: 14px;
        cursor: pointer;
        background: #e5e7eb;
        margin-right: 0;
        /*border-radius: 5px;*/
       }

       .tab-btn.active {
        background-color: #1d4ed8;
        color: white;
       }

       .tab-content {
        display: none;
        margin-top: 5px;
       }

       .tab-content.active {
        display: block;
       }


.accordion {
     background-color: #E7F0FF66;
     color: #000;
     cursor: pointer;
     padding: 18px;
     width: 100%;
     border: none;
     text-align: left;
     outline: none;
     font-size: 15px;
     transition: 0.4s;
     margin-bottom: 5px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: bold;
    }

    .accordion:hover,
    .accordion.active {
     background-color: #E7F0FF66;
    }

    .panel {
     padding: 0 18px;
     display: none;
     background-color: #E7F0FF66;
     margin-bottom: 5px;
     overflow: hidden;
    }

    .panel p{
      color: #000;
    }

    .arrow {
     transition: transform 0.3s ease;
    }


          .complaint{
       color: #000;
       font-size: 20px;
       font-style: normal;
       font-weight: 400;
      }
      .complaint:hover{
       cursor: pointer;
       color: #FF9F00;
       text-decoration: underline;
      }

      .footerli li a{
       color: #000;
       font-size: 20px;
       font-style: normal;
       font-weight: 400;
      }

      .footerli li a:hover{
       color: #FF9F00;
       text-decoration: underline;
      }

       .additional-content {
  display: none;
  color: #000;
  font-size: 14px;
 }


 .downloadtradedesg{
  background-color: #E7F0FF;
  padding: 50px;
  border-radius: 7px;
 }

 .coldesignpad{
  padding: 0 110px;
 }
 .metadegn{
  background-color: #2C4CD3;
  height: 340px;
 }

 .metadegn-pad{
  padding: 0 60px
 }

 .metadegn-pad p{
  color: #fff;
  text-align: justify;
  margin-top: 10px;
  font-size: 20px;
 }
 .lidesgn li img{
  height: 30px;
 }

 .showmbl{
  display: none;
 }

 .showdesktop{
  display: block;
 }

 .footerpic{
  height: 340px;
  float: right;
 }

 .tradepar{
  padding: 50px 50px
 }

 .tradepar p{
  border-left: 2px solid #2C4CD3;
  text-align:justify;
  padding: 0 10px;
  color: #525252;
  font-size: 20px;
  line-height: 34px;
 }

 .banner-section{
  margin-top: -50px;;
 }

 .texthover{
  color: #2C4CD3;
  text-decoration: underline;
 }

 .texthover:hover{
  color: #FF9F00;
  text-decoration: underline;
 }

 .footer_p{
  color: gray;
  font-size: 20px;
  text-align: center;
  margin-top: -50px;
 }

 .footer_lia{
  color: #111B21;
  font-size: 22px;
 }

 .pad{
  padding: 0 100px;
 }

 .pad p{
  font-size: 20px;
  color: #000;
  font-style: normal;
  font-weight: 400;
  text-align: center;
 }

 .header-desgn{
  background-image:url(assets/images/banner/bg.webp);
  padding: 30px 30px 0 30px;
  background-size: cover;
 }

 .banner-img-design{
  background-image:url(assets/images/banner/bg.webp);
  width: 100%;
  height: 750px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
 }

 .content-item-banner-box-1{
  display: inline-flex;
  padding: 35px 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 31px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
 }

 .content-item-banner-box-2{
  margin-top: -130px;
 }

 .content-item-banner-box-3{
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  z-index: 1;
  height: 150px;
  width: 300px;
 }

 .content-boxs-img5{
  height: 90px;
  margin-top: -80px;
 }

 .middle_portion1{
  height: 230px;
  object-fit: contain;
  width: 100%;
  object-fit: contain;
  margin-bottom: -150px;
 }

 .middle_portion2{
  display: flex;
  width: 500px;
  height: 280px;
  padding: 45px;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #E7F0FF;
 }

 .middle_portion2 ul{
  text-align: left;
  line-height: 33px;
 }

 .middle_portion2 ul li{
  font-size: 18px;
 }

 .middle_portion2 ul li i{
  font-size: 12px;
 }



 .middle_portion3{
  display: flex;
  width: 458px;
  height: 222px;
  padding: 72px 64px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #2C4CD3;
  margin-top: 170px;
 }

 .middle_portion3 p{
  color: #FFF;
  text-align: justify;
  /*font-family: Mulish;*/
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 141%; /* 33.84px */
  letter-spacing: 0.12px;
 }

 .middle_portion4{
  height: 120px;
  width: 420px;
  margin-top: -135px;
 }

 .rightimg{
  width: 100%;
  height: 500px;
  object-fit: contain;
 }

 .ulstyle ul li p{
  font-size: 18px;
 }
 @media only screen and (max-width: 767px) {

  .banner-section{
   margin-top: 0;
  }

  .downloadtradedesg{
   background-color: #E7F0FF;
   padding: 1px;
   border-radius: 7px;
  }
  .coldesignpad{
   padding: 0 50px;
  }
  .metadegn{
   background-color: #2C4CD3;
   height: auto;
  }

  .metadegn-pad{
   padding: 0 10px
  }

  .metadegn-pad p{
   color: #fff;
   text-align: justify;
   margin-top: 10px;
   font-size: 18px;
   font-weight: normal;
   margin-bottom: 20px;
  }

  .lidesgn li img{
   height: 10px
  }
  .lidesgn li {
   font-size: 9px;
  }

  .showmbl{
   display: block;
  }

  .showdesktop{
   display: none;
  }

  .footerpic{
   height: 160px;
   float: right;
  }

  .tradepar{
   padding: 10px
  }

  .tradepar p{
   border-left: 2px solid #2C4CD3;
   text-align:justify;
   padding: 0 10px;
   color: #525252;
   font-size: 13px;
   line-height: 26px;
  }

  .footer_p{
   color: gray;
   font-size: 13px;
   text-align: center;
   margin-top: 0px;
  }

  .footer_lia{
   color: #111B21;
   font-size: 10px;
  }

  .footer_lia:hover{
   color: #FF9F00;
   text-decoration: underline;
  }

  .additional-content {
   font-size: 11px;
  }
  .footerli li span,
  .footerli li a{
   font-size: 12px;
  }

  .pad{
   padding: 0 10px;
  }

  .pad p{
   font-size: 15px;
   color: #000;
   font-style: normal;
   font-weight: 400;
   text-align: center;
  }

  .header-desgn{
   padding: 30px 0 0 0;
  }

  .mobile-menu .navigation li > a:hover{
   color: #FF9F00;
   text-decoration: underline;
  }

  .banner-img-design{
   height: auto;
  }

  .content-item-banner-box-1{
   margin-top: -150px;
   padding: 35px 22px;
   backdrop-filter: blur(0);
  }



  .content-boxs-img1{
   margin-top: 10px;
   height: 140px;
  }

  .content-boxs-img2{
   height: 120px;
  }

  .content-boxs-img3{
   height: 180px;
   margin-top: -120px
  }

  .content-boxs-img4{
   height: 80px;
   margin-top: -100px;
  }

  .content-boxs-img5{
   height: 80px;
   margin-top: -90px;
  }

  .content-item-banner-box-2{
   margin-top: -70px;
   margin-bottom: 40px;
  }

  .content-item-banner-box-3{
   background: rgba(255, 255, 255, 0.12);
   border-radius: 10px;
   z-index: 1;
   height: 110px;
   width: auto;
  }


  .middle_portion1{
   height: 230px;
   object-fit: contain;
   width: 100%;
   object-fit: contain;
   margin-bottom: -110px;
  }

  .middle_portion2{
   display: flex;
   width: auto;
   height: auto;
   padding: 25px;
   flex-direction: column;
   gap: 8px;
   flex-shrink: 0;
   border-radius: 12px;
   background: #E7F0FF;
  }

  .middle_portion2 ul{
   text-align: left;
   line-height: 33px;
  }

  .middle_portion2 ul li{
   font-size: 13px;
  }

  .middle_portion2 ul li i{
   font-size: 10px;
  }


  .middle_portion3{
   display: flex;
   width: auto;
   height: auto;
   padding: 32px 34px;
   justify-content: center;
   align-items: center;
   gap: 8px;
   flex-shrink: 0;
   border-radius: 12px;
   background: #2C4CD3;
   margin-top: 119px;
  }

  .middle_portion3 p{
   color: #FFF;
   text-align: justify;
   /*font-family: Mulish;*/
   font-size: 12px;
   font-style: normal;
   font-weight: 400;
   line-height: 141%; /* 33.84px */
   letter-spacing: 0.12px;
  }

  .middle_portion4{
   height: 120px;
   width: 300px;
   margin-top: -410px;

  }

  .rightimg{
   object-fit: contain;
  }


  .ulstyle ul li p{
   font-size: 16px;
   padding: 0 10px;
  }

 }
