@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
    :root {
      --gold: #D4AF37;
      --gold-dark: #B8942F;
      --gold-light: #FFD700;
      --bg-gradient: linear-gradient(135deg, #FFD700, #D4AF37, #B8942F);
    }

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

    body {
  font-family: 'Poppins', sans-serif;
} .about


    html {
      scroll-behavior: smooth;
    }

    body {
      overflow-x: hidden;
    }

    /* HEADER */
    header {
      position: fixed;
      background: #000;
      top: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 8%;
      color: #fff;
    }

    nav ul {
      display: flex;
      gap: 30px;
      list-style: none;
   
    }

    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: .3s;
    }

    nav ul li a:hover {
      color: var(--gold);
    }

    .download-btn {
      padding: 8px 22px;
      border: 2px solid #fff;
      border-radius: 25px;
      color: #fff;
      text-decoration: none;
      transition: .3s;
    }

    .download-btn:hover {
      background: #fff;
      color: #000;
    }
    .logo{
      background: white;
      height: 60px;
      width: 60px;

      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo img {
      width: 40px;
    }
    /* ---------------Mobile menu---------- */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Sidebar */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 250px;
  height: 100%;
  background-color: #14161A; /* dark color */
  color: #fff;
  z-index: 9999;
  padding: 20px;
  transition: 0.3s;
  box-shadow: 2px 0 15px rgba(0,0,0,0.3);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  display: block;
  padding: 10px;
  border-radius: 5px;
  transition: 0.3s;
}

.mobile-menu ul li a:hover {
  background: #cf9e38; /* golden hover effect */
  color: #14161A;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-header img {
  width: 30px;
}

#closeMenu {
  cursor: pointer;
  font-size: 1.5rem;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  display: none;
  transition: 0.3s;
}

/* Active state */
.mobile-menu.active {
  left: 0;
}

.overlay.active {
  display: block;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .menu-toggle {
    display: block;
  }
  .desktop-menu {
    display: none;
  }
  .download-btn {
    display: none;
  }
}


    /* HERO */
    .hero {
      /* margin-top:90px; */
      min-height: 100vh;
      background: #ffffff;
      position: relative;
      display: flex;
      align-items: center;
    }

    .hero-content {
      width: 100%;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      align-items: center;
      padding: 0 8%;
      gap: 50px;
      color: #000;
    }
    .hero-btn{
        border-radius: 20px;
       padding: 10px;
        
        text-decoration:none;
          color:#ffffff;
        background-color:var(--gold);
    }
    .hero-btn:hover{
        color:#eae4e4;
        background-color: #cf9e38;
        border:none;
    }

    .hero-text h1 {
      font-size: 56px;
      line-height: 1.2;
      animation: fadeInLeft 1s ease;
    }

    .hero-text p {
      margin: 25px 0;
      font-size: 18px;
      opacity: 0.95;
      animation: fadeInLeft 1.4s ease;
    }

    .store-btns {
      display: flex;
      gap: 20px;
      animation: fadeInUp 1.6s ease;
    }

    .store-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 26px;
      border: 2px solid #fff;
      border-radius: 35px;
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: .3s;
    }
   
    .store-btn:hover {
      background: var(--gold);
      color: #000;
    }

    .hero-phone {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 320px;
      margin: auto;
    }


    .hero-phone img {
      width: 320px;
      filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .35));
    }

    .float-card {
      position: absolute;
      background: #fff;
      color: #000;
      padding: 12px 18px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      animation: float 3.5s ease-in-out infinite;
      max-width: 90%;
    }

    .card-1 {
      top: 15%;
      right: -25%;
    }

    .card-2 {
      bottom: 15%;
      left: -25%;
    }

    @media(min-width:768px) and (max-width:1443px) {
      .hero {
        /* margin-top: 100px; */
        padding-top: 150px;
        padding-bottom: 50px;
      }
      .hero h1{
        font-size: 2rem;
      }
      .hero p{
        font-size: 1rem;
      }

    }

    @media(max-width:768px) {
      .hero {
        /* margin-top: 100px; */
        padding-top: 120px;
        padding-bottom: 50px;
      }

      .card-1 {
        display: none;
      }

      .card-2 {
        display: none;
      }

      .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        /* animation: fadeInTop 1s ease; */
      }
      .hero-left h1{
        font-size: 1.5rem;
      }
      .hero-left p{
        font-size: 0.8rem;
      }
      
.about h2,.how-title,.download-text h2,.footer-box.footer-box h3{
    font-size: 1.5rem!important;
}
.about p,.download-text p,.store-btn{
    font-size: 0.8rem !important;
}
.premium-title{
     font-size: 1.5rem !important;
}
.how-card h3{
    font-size:1rem !important;
}

    }

    /* @media(max-width:768){
  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
 
}
} */
   


    .float-icon {
      width: 38px;
      height: 38px;
      background: var(--bg-gradient);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }



 
   




    /* FEATURE */
    /* SECTION */
    .grow-section {
      padding: 80px 8%;
      background: #fff;
      color: #000;
      text-align: center;
      overflow: hidden;
    }

    .title {
      font-size: 36px;
      margin-bottom: 40px;
      color: var(--gold);
    }

    /* CONTAINER */
    .grow-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
    }

    /* CARD STYLE */
    .grow-card {
      background: #111;
      border: 2px solid var(--gold);
      border-radius: 20px;
      padding: 20px;

      opacity: 0;
      transform: scale(0.6);

      animation: growIn 1s ease forwards;
    }

    .grow-card img {
      width: 100%;
      border-radius: 15px;
      margin-bottom: 15px;
    }

    .grow-card h3 {
      color: var(--gold-light);
      margin-bottom: 10px;
    }

    .grow-card p {
      font-size: 14px;
      opacity: 0.9;
    }

    /* MAIN ANIMATION */
    @keyframes growIn {
      0% {
        opacity: 0;
        transform: scale(0.6);
      }

      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* SEQUENCE ANIMATION DELAY */
    /* EK KE BAAD EK AAYENGE */

    .grow-card:nth-child(1) {
      animation-delay: 0.3s;
    }

    .grow-card:nth-child(2) {
      animation-delay: 1s;
    }

    .grow-card:nth-child(3) {
      animation-delay: 1.7s;
    }

    /* HOVER EFFECT */
    .grow-card:hover {
      transform: scale(1.05);
      transition: 0.3s;
      box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

    /* RESPONSIVE */
    @media(max-width:768px) {
      .grow-section {
        padding: 60px 5%;
      }
    }

    /*  feature SECTION */
    .premium-section {
      padding: 100px 8%;
      background: linear-gradient(135deg, #ffffff, #f4d87f);
      color: #000000;
      text-align: center;
      overflow: hidden;
    }

    .premium-title {
      font-size:2rem;
      color:#212529;
    }

    .premium-sub {
      margin: 10px 0 50px;
      opacity: 0.8;
    }

    /* CONTAINER */
    .premium-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    /* CARD DESIGN */
    .premium-card {
      background: #ffffff;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(212, 175, 55, 0.3);
      border-radius: 25px;
      overflow: hidden;

      opacity: 0;
      transform: scale(0.5);

      animation: premiumGrow 1.2s ease forwards;
    }

    /* IMAGE BOX */
    .img-box {
      overflow: hidden;
    }

    .premium-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: 0.4s;
    }

    .premium-card:hover img {
      transform: scale(1.1);
    }

    /* CONTENT */
    .card-content {
      padding: 20px;
    }

    .card-content h3 {
      color: #212529;
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .card-content p {
      font-size: 14px;
      opacity: 0.9;
      margin-bottom: 15px;
    }

    /* TAGS */
    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .tags span {
      padding: 6px 12px;
      border: 1px solid var(--gold);
      border-radius: 20px;
      font-size: 12px;
      color: var(--gold-light);
    }

    /* HOVER EFFECT */
    .premium-card:hover {
      box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
      transform: translateY(-10px) scale(1.02);
      transition: 0.4s;
    }

    /* MAIN ANIMATION */
    @keyframes premiumGrow {
      0% {
        opacity: 0;
        transform: scale(0.5) translateX(-100px);
      }

      100% {
        opacity: 1;
        transform: scale(1) translateX(0);
      }
    }

    /* SEQUENCE EFFECT */
    .premium-card:nth-child(1) {
      animation-delay: 0.3s;
    }

    .premium-card:nth-child(2) {
      animation-delay: 1s;
    }

    .premium-card:nth-child(3) {
      animation-delay: 1.7s;
    }

    /* RESPONSIVE */
    @media(max-width:768px) {
      .premium-section {
        padding: 60px 5%;
      }

      .premium-title {
        font-size: 32px;
      }
    }
    /* ----------about us------- */


.about{
  padding:100px 20px;
 /* dark premium background */
  color:#0d0f14;
}

.about-container{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.about h2{
  font-size:2.5rem;
  margin-bottom:30px;
  background:linear-gradient(135deg,#FFD700,#D4AF37);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.about p{
  font-size:1.1rem;
  line-height:1.8;
  margin-bottom:20px;
  opacity:0.9;
}



    /* -----how it is work------- */
    /* SECTION */
    .how-section {
      padding: 100px 8%;
      background: #000;
      color: #fff;
      text-align: center;
      overflow: hidden;
    }

    .how-title {
      font-size: 40px;
      color: var(--gold);
    }

    .how-sub {
      margin: 10px 0 50px;
      opacity: 0.8;
    }

    /* CONTAINER */
    .how-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    /* CARD */
    .how-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(212, 175, 55, 0.3);
      border-radius: 20px;
      padding: 30px;
      position: relative;

      opacity: 0;
      transform: translateY(80px) scale(0.8);
      transition: 0.8s ease;
    }

    /* ACTIVE ANIMATION */
    .how-card.show {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* STEP CIRCLE */
    .step-circle {
      width: 50px;
      height: 50px;
      background: var(--bg-gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin: auto;
      margin-bottom: 15px;
      color: #000;
      font-size: 20px;
    }

    /* ICON */
    .step-icon {
      font-size: 30px;
      color: var(--gold-light);
      margin-top: 15px;
    }

    /* TEXT */
    .how-card h3 {
      margin-bottom: 10px;
      color: var(--gold-light);
    }

    .how-card p {
      font-size: 14px;
      opacity: 0.9;
    }

    /* SEQUENCE DELAY */
    .how-card:nth-child(1).show {
      transition-delay: 0.2s;
    }

    .how-card:nth-child(2).show {
      transition-delay: 0.8s;
    }

    .how-card:nth-child(3).show {
      transition-delay: 1.4s;
    }

    /* HOVER */
    .how-card:hover {
      transform: scale(1.04);
      box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    }

    /* RESPONSIVE */
    @media(max-width:768px) {
      .how-section {
        padding: 60px 5%;
      }
    }
    /* -----------Download--------------- */
.download-app{
  padding:50px 20px;
  background:#fff;
  color:#0d0f14;
}

.download-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
}

.download-text{
  flex:1;
}

.download-text h2{
  font-size:2.6rem;
  margin-bottom:15px;
  background:linear-gradient(135deg,#FFD700,#D4AF37);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.download-text .subtitle{
  font-size:1.2rem;
  margin-bottom:20px;
  opacity:0.9;
}

.download-text p{
  font-size:1.05rem;
  line-height:1.7;
  margin-bottom:30px;
  opacity:0.85;
}

.store-buttons{
  display:flex;
  gap:20px;
  
}

.store-btn{
  padding:14px 28px;
  border-radius:30px;
  background:linear-gradient(135deg,#FFD700,#D4AF37);
  color:#000;
  text-decoration:none;
  font-weight:600;
}

.store-btn.outline{
  background:transparent;
  color:#FFD700;
  border:1px solid #FFD700;
}

/* Right Image */
.download-image{
  flex:1;
  display:flex;
  justify-content:center;
}

.download-image img{
  width:100%;
  max-width:380px;
  height:480px;
  object-fit:cover;
  border-radius:20px;
}

/* Responsive */
@media (max-width:900px){
  .download-container{
    flex-direction:column;
    text-align:center;
  }

  .store-buttons{
    justify-content:center;
  }

  .download-image img{
    height:420px;
  }
}



    /* -----------Contact us ----------- */
    .contact-section {
      background: #fffbe6;
      padding: 80px 0;
      font-family: 'Poppins', sans-serif;
    }

    .contact-info h2 {
      text-align:left;
      color: #d4a017;
      font-size: 36px;
      margin-bottom: 10px;
    }
    

    .subtitle {
      text-align:left;
      margin-bottom: 40px;
      color: #555;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .contact-info {
      flex: 1;
      min-width: 300px;
      padding: 20px;
      border-radius: 20px;
      /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); */
    }

    .info-box {
      /* background: #fff; */
      padding: 0 20px;
      margin-bottom: 25px;
      border-radius: 15px;
      border-left: 2px solid #ffcc00;
      /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    }

    .info-box i {
      font-size:1.2rem;
      color: #ffcc00;
    }

    .info-box h4 {
      margin-top: 10px;
      color: #333;
    }
    /* .info-box p{
        padding-left: 32px;
    } */

    .contact-form {
      background-color: #ffffff;
      padding: 40px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
      flex: 1;
      border-radius: 20px;
      min-width: 300px;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 12px;
      border-radius: 15px;
      border: 1px solid #ffcc00;
      border-radius: 5px;
      outline: none;
    }

    .contact-form button {
      padding: 12px;
      margin-top: 35px;
      border-radius: 20px;
      background: #ffcc00;
      color: #000;
      border: none;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .contact-form button:hover {
      background: #d4a017;
      color: #fff;
    }

    @media(max-width: 768px) {
      .contact-wrapper {
        flex-direction: column;
      }
      .about-section{
        padding-top: 50px;
      }
    
    }

    
    /* FOOTER */
    footer {
      background: #000;
      color: #fff;
      text-align: center;
      padding: 20px;
      margin-bottom: 0;
    }

    /* ANIMATIONS */
    @keyframes float {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-18px)
      }
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px)
      }

      to {
        opacity: 1;
        transform: translateX(0)
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px)
      }

      to {
        opacity: 1;
        transform: translateX(0)
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* RESPONSIVE */
    @media(max-width:900px) {
      .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      nav ul {
        display: none;
      }

      .store-btns {
        justify-content: center;
      }
    }
    @media(max-width:375px){
        .container{
         margin: 0 !important;
        }
        .premium-card {
    background:none;
    /* backdrop-filter: blur(10px); */
    border: none;
    /* border-radius: 25px; */
    /* overflow: hidden; */
    opacity: 0;
    transform: scale(0.5);
    animation: premiumGrow 1.2s ease forwards;
}
    
    
    
    }



    /* Footer Main */
    .footer {
      background: #111;
      color: #fff;
      padding: 60px 0 20px 0;
      font-family: 'Poppins', sans-serif;
      box-shadow: 0 -10px 30px rgba(255, 204, 0, 0.2);
    }

    /* Layout */
    .footer-container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }

    /* Boxes */
    .footer-box {
      flex: 1;
      min-width: 260px;
      text-align: left;
    }

    /* Logo */
    .footer-logo {
      height: 50px;
    }

    /* Text */
    .footer-text {
      color: #a9a9a9;
      font-size: 14px;
      margin-top: 15px;
      line-height: 1.7;
      text-align: left;
    }

    /* Headings */
    .footer-box{
        margin-left: 70px;
    }
    .footer-box.footer-box h3 {
      color: #ffcc00;
      margin-bottom: 15px;
      font-weight: 600;
    }

    /* Links */
    .footer-box ul {
  
      list-style: none;
      padding: 0;
    }

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

    .footer-box ul li a {
      color: #a9a9a9;
      text-decoration: none;
      transition: 0.3s;
    }

    .footer-box ul li a:hover {
      color: #ffcc00;
    }

    /* Contact Text */
    .label {
      color: #a9a9a9;
      font-size: 13px;
      margin-top: 10px;
    }

    .info {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
    }

    .info:hover {
      color: #ffcc00;
    }

    /* Social Icons */
    .social-icons {
      margin-top: 15px;
      display: flex;
      gap: 10px;
      /* justify-content: center; */
    }

    .social-icons a {
      padding: 8px;
      border: 1px solid rgba(255, 204, 0, 0.3);
      border-radius: 50%;
      color: #a9a9a9;
      transition: 0.3s;
    }

    .social-icons a:hover {
      border-color: #ffcc00;
      color: #ffcc00;
    }

    /* Bottom Bar */
    .footer-bottom {
      border-top: 1px solid rgba(255, 204, 0, 0.2);
      margin-top: 30px;
      padding-top: 20px;
    

      width: 90%;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;

      
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 15px;

      color: #a9a9a9;
      font-size: 12px;
    }

    .bottom-links a {
      color: #a9a9a9;
      margin-left: 15px;
      text-decoration: none;
      transition: 0.3s;
    }

    .bottom-links a:hover {
      color: #ffcc00;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
      }
      .footer-box{
        margin-left: 0;
    }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
       .social-icons {
      margin-top: 15px;
      display: flex;
      gap: 10px;
      justify-content: left;
    }

    }
    .contact-item{
      display: flex;
      /* justify-content: center; */
      align-items: center;
    }
    .contact-item h4{
     font-size: 1.2rem;
    }
    
 

    .emi-hero {
  background: #ffffff;
  padding: 80px 8%;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 70px;
}

.hero-left h1 {
  font-size: 48px;
  color: #000;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #222;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.btn {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary {
  background: #000;
  color: #fff;
}

.primary:hover {
  background: #222;
}

.secondary {
  border: 2px solid #000;
  color: #000;
}

.secondary:hover {
  background: #000;
  color: #fff;
}

.features {
  display: flex;
  gap: 20px;
  font-weight: 500;
}

.hero-right img {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .features {
    justify-content: center;
    flex-wrap: wrap;
  }
}
     @media(max-width:375px) {
      .hero {
        margin-right: 0;
      }

      .hero-text h1 {
        font-size: 1rem;

      }

      .hero-text p {
        font-size: 0.8rem;
      }

      .store-btn {
        width: 100px;
        height: 50px;
        padding: 10px;
        font-size: 0.9rem;
      }

      .hero-phone img {
        width: 270px;
        filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .35));
      }
    
       .store-btn{
        font-size: 0.5rem!important;
        align-items: center;
        justify-content: center;
       }
    .features{
      display:none
    }
    .emi-hero{
      padding-bottom:0;
    }
    .about{
      padding-top:50px
    }
  .premium-card img{
    width:150px
  }
  .about{
    padding-bottom: 50px;
  }
  .hero-buttons {
        justify-content:space-around;
    }
    #download-btn i{
     margin-right: 0;
    }
    .menu-toggle i{
      height: 30px;
      width: 30px;
    }
    .hero-left h1 {
  font-size:2rem;
  color: #000;
  margin-bottom: 20px;
}
.hero-left p{
   font-size:1rem;
}
}
.bmdu{
  text-decoration: none;
  color: #a9a9a9;
  font-weight:600;
}

    

   