/* MAIN WRAPPER */
.gm-cta-section {
 display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;

  max-width: 1110px;
  width: 100%;
  margin: 40px auto;
}

/* LEFT PURPLE BOX */
/* LEFT PURPLE BOX */
.gm-cta-boxp {
  width: 688.172607421875px;
  height: 387.3096923828125px;
  border-radius: 10px;
  opacity: 1;
  object-fit: cover;
  transform: rotate(0deg);

  background: #DBE9FB;

  padding: 60px 50px; /* ADDED */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.gm-cta-boxp h2 {
  width: 530px;
  height: 110px;
  opacity: 1;
  transform: rotate(0deg);

  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500; /* Medium = 500 */
  font-size: 50px;
  line-height: 110%;
  letter-spacing: 0%;
  color: #000000;

  margin: 0 0 18px;
}


.gm-cta-boxp p {
  width: 506px;
  height: 58px;
  opacity: 1;
  transform: rotate(0deg);

  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400; /* Regular */
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0%;
  color: #000000; /* Purple box ke context me white hi rehna chahiye */

  margin-bottom: 25px;
}



.gm-cta-wrapper {
  display: flex;
  gap: 14px;             /* spacing between buttons */
  flex-wrap: wrap;       /* in case of mobile */
}

.gm-cta-btnp {
background: #7566F6;
  color: #fff;
 display: inline-flex !important;   /* inline + flex = no full width */
  border-radius: 30px;
  
   width: auto !important;            /* force natural width */
  max-width: fit-content !important; /* prevent stretching */
  align-self: flex-start !important; /* prevents flex parent from stretching */
  border: none;
  cursor: pointer;
  display: inline-block;    /* Stops full width */
  width: auto !important;   /* Force only content width */
  padding: 12px 26px;
  /* Figma Font Values */
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;       /* SemiBold */
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0;
}


.gm-cta-btn2 {
background: #FFD018;
  color: #1B1266;
 display: inline-flex !important;   /* inline + flex = no full width */
  border-radius: 30px;
  
   width: auto !important;            /* force natural width */
  max-width: fit-content !important; /* prevent stretching */
  align-self: flex-start !important; /* prevents flex parent from stretching */
  border: none;
  cursor: pointer;
  display: inline-block;    /* Stops full width */
  width: auto !important;   /* Force only content width */
  padding: 12px 26px;
  /* Figma Font Values */
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;       /* SemiBold */
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0;
}
/* RIGHT IMAGE BOX */
/* RIGHT IMAGE BOX */

.gm-cta-image-box {
  position: relative;
}
.gm-cta-image-box img {
  width: 501.4315185546875px;
  height: 314.2132263183594px;
  border-radius: 10px;
  opacity: 1;
  object-fit: cover;
  transform: rotate(0deg);
   margin-top: 72px;   /* adjust this number as needed */
}


/* SMALL LOGO INSIDE IMAGE */
/* SMALL LOGO BOTTOM RIGHT */
/* LOGO SMALL BOTTOM RIGHT */
.gm-cta-logo {
  position: absolute;
  bottom: 25px;
  right: 35px;
 
  width: 65px !important;    /* force small width */
  height: auto !important;  /* auto height = no cropping */
  border-radius: 6px;
  
    
    
  
 
}






/* ========== TABLET (same as desktop) ========== */
@media (max-width: 1024px) and (min-width: 768px) {
  .gm-cta-section {
    gap: 10px;
  }
  
   .gm-cta-boxp {
    width: 648px;   /* was left image width */
    height: auto;
    margin-top: 0;
  }
   .gm-cta-boxp h2 {
    width: 100% !important;
    font-size: 40px;
    line-height: 1.2;
    
  }
 .gm-cta-btnp {
    margin-top: 20px;!important;
    
  }
  .gm-cta-boxp p {
    width: 100% !important;
    font-size: 16px;
    margin-bottom: 20px;
  }
  .gm-cta-btn2{
    margin-top:20px;
  }
  
      .gm-cta-image-box img {
   
      width: 481px;   /* was right image width */
    height: 290px;
        margin-top:100px;
  }
}



/* ========== MOBILE STACKED LAYOUT ========== */
@media (max-width: 767px) {

  .gm-cta-section {
    flex-direction: column;
    gap: 0px;
    align-items: center;
  }

 .gm-cta-boxp {
   margin-bottom:-40px;
    width: 100% !important;
    height: auto !important;
    padding: 40px 25px;
  }

  .gm-cta-boxp h2 {
    width: 100% !important;
    font-size: 36px;
    line-height: 1.2;
  
    margin-bottom: -10px !important;
  }

  .gm-cta-btnp {
    margin-top: 20px;!important;
    
  }
  

  .gm-cta-boxp p {
    width: 100% !important;
    font-size: 16px;
    margin-bottom: 20px;
  }
  .cta-main-img {
    width: 88%;
    height: auto;
  }

  .gm-cta-logo {
    width: 55px;
    bottom: 18px;
    right: 18px;
  }
}













