.form-control{
  height:40px !important;
  font-size:14px !important;
}

/*Growth Accelerator*/
.gap-section{
  font-family:'Poppins',sans-serif;
  background:#000C4C;
  padding:90px 20px;
  color:#fff;
}

.gap-container{
  max-width:1300px;
  margin:auto;
}
.gap-header{
  text-align:center;
  margin-bottom:70px;
}

.gap-header h2{
  font-size:40px;
  font-weight:700;

}

.gap-header p{
  max-width:750px;
  margin:25px auto 0;
  font-size:16px;
  color:#cfd3ff;
  line-height:1.7;
}

.gap-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.gap-card{
  background:#0f1426;
  border-radius:18px;
  padding:30px 24px;
  border:1px solid rgba(255,255,255,0.08);
  transition:.3s ease;
}

.gap-card:hover{
  transform:translateY(-8px);
}

.gap-card span{
  font-size:30px;
  font-weight:700;
  color:#5aa9ff;
}

.gap-card h3{
  font-size:18px;
  margin:18px 0;
}

.gap-card ul{
  padding:0;
  margin:0;
}

.gap-card li{
  list-style:none;
  font-size:14px;
  color:#cfd3ff;
  margin-bottom:10px;
  padding-left:16px;
  position:relative;
}

.gap-card li::before{
  content:"→";
  position:absolute;
  left:0;
  color:#5aa9ff;
}

@media(max-width:1024px){
  .gap-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .gap-grid{
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:10px;
  }
  #mw-element-1765850962561{
	font-size:30px !important;
	line-height:1.4;
  }

  .gap-grid::-webkit-scrollbar{
    height:6px;
  }

  .gap-grid::-webkit-scrollbar-thumb{
    background:#5aa9ff;
    border-radius:10px;
  }

  .gap-card{
    min-width:85%;
    scroll-snap-align:start;
  }

  .gap-header h2{
    font-size:28px;
  }
}
/*Growth Accelerator END*/
/*blog*/
.blog-section {
  padding: 80px 20px;
  background: #f8f9fc;
  font-family: 'Poppins', sans-serif;
}

.blog-container {
  max-width: 1300px;
  margin: auto;
}

.blog-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}
.blog-heading h2 {
  font-size: 34px;
  font-weight: 600;
  color: #0A1F44;
  margin-bottom: 12px;
}

.blog-heading p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #479D2E;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 500;
}

.blog-date {
  position: absolute;
  bottom: -18px;
  left: 20px;
  background: #173d6d;
  color: #fff;
  width: 55px;
  text-align: center;
  border-radius: 10px;
  padding: 6px 0;
}

.blog-date span {
  display: block;
  font-size: 12px;
}

.blog-date strong {
  font-size: 16px;
}

.blog-content {
  padding: 40px 25px 30px;
}

.blog-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-content a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #1e6fd9;
}

@media (max-width: 768px) {
  .blog-heading h2 {
    font-size: 28px;
  }

  .blog-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .blog-card {
    min-width: 85%;
    scroll-snap-align: start;
  }

  .blog-img img {
    height: 200px;
  }
}
/*blog END*/

/*Review Section*/
.review-section{
  padding:80px 20px;
  font-family:'Poppins',sans-serif;
  color:#ffffff;
}

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

.review-header{
  text-align:center;
  max-width:700px;
  margin:0 auto 50px;
}

.review-header h2{
  font-size: 40px;
  font-weight: 800;
  color: #0a1f44;
  line-height: 1.15;
  margin-bottom: 20px;

}

.review-header p{
  font-size:15px;
  color:#000;
  line-height:1.7;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.review-card{
  background:#000C4C;
  padding:28px;
  border-radius:14px;
  transition:0.3s ease;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.review-card:hover{
  transform:translateY(-6px);
}

.review-stars{
  color:#ffd166;
  font-size:15px;
  margin-bottom:15px;
}

.review-text{
  font-size:14px;
  color:#e6e8ff;
  line-height:1.8;
  margin-bottom:25px;
}

.review-footer{
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:15px;
}

.review-name{
  font-weight:500;
  font-size:15px;
}

.review-service{
  font-size:13px;
  color:#9aa0ff;
}

@media(max-width:1024px){
  .review-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .review-header h2{
    font-size:28px;
  }

  .review-grid{
    grid-template-columns:1fr;
  }

  .review-card{
    padding:24px;
  }
}
/*Review Section END*/

/*why section*/
.why-section{
  padding:80px 20px;
}

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


.why-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.tag{
  color:#8b8b8b;
  font-weight:600;
  letter-spacing:1px;
  font-size:14px;
}

.why-header h2{
  font-size:36px;
  font-weight:700;
  max-width:600px;
  line-height:1.3;
  color:#000D4D;
}

.cta-btn{
  background:#000D4D;
  color:#fff;
  padding:14px 28px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.cta-btn:hover{
  transform:translateY(-2px);
}

/* why we are the right choice*/
.why-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:50px;
  align-items:center;
}

.why-image img{
  width:100%;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}


.why-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.card{
  background:#ffffff;
  padding:26px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-4px);
}

.card h4{
  margin-top:12px;
  font-size:18px;
  font-weight:600;
}

.card p{
  margin-top:8px;
  font-size:14px;
  color:#555;
  line-height:1.6;
}

.number{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#f2f2f2;
  font-weight:600;
}

.number.active{
  background:#C9A24D;
  color:#fff;
}

@media(max-width:768px){

  .why-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .why-header h2{
    font-size:26px;
  }

  .why-content{
    grid-template-columns:1fr;
  }

  .why-cards{
    grid-template-columns:1fr;
  }

  .cta-btn{
    align-self:flex-start;
  }
}
/* why we are the right choice END*/
/*Why Choose Us*/
.why-section{
  padding:80px 20px;
}

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


.why-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
  margin-bottom:50px;
}

.why-small{
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#555;
  display:flex;
  align-items:center;
  gap:8px;
}

.why-small span{
  width:8px;
  height:8px;
  background:#000;
  border-radius:50%;
}

.why-title{
 font-size: 42px;
  font-weight: 700;
  color: #2B2620;
  line-height: 1.15;
  margin-bottom: 30px;
 
}

.contact-btn{
  background:#C9A24D;
  color:#fff;
  padding:14px 26px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.contact-btn:hover{
  transform:translateY(-3px);
}


.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card{
  background:#fff;
  padding:25px;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

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

.card h3{
  font-size:20px;
  font-weight:600;
  margin-bottom:12px;
}

.card p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}


@media(max-width:768px){

  .why-title{
    font-size:30px;
  }

  .cards{
    display:flex;
    overflow-x:auto;
    gap:20px;
    padding-bottom:10px;
    scroll-snap-type:x mandatory;
  }

  .cards::-webkit-scrollbar{
    display:none;
  }

  .card{
    min-width:85%;
    scroll-snap-align:start;
  }
}
/*Why Choose Us END*/

/*Form Section*/
.hero-banner{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
 
}
.hero-container{
  max-width:1200px;
  width:100%;
}
.hero-tag{
  display:inline-block;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(10px);
  padding:12px 28px;
  border-radius:40px;
  font-weight:600;
  color:#163a5f;
  margin-bottom:35px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}
.hero-title{
  font-size:4.5rem;
  font-weight:800;
  line-height:1.05;
  color:#163a5f;
  letter-spacing:-1px;
}
.hero-highlight{
  display:inline-block;
  margin:30px 0 25px;
  padding:16px 34px;
  background:#163a5f;
  color:#ffffff;
  font-size:1.15rem;
  font-weight:600;
  border-radius:10px;
}

.hero-desc{
  max-width:700px;
  font-size:1.08rem;
  line-height:1.9;
  color:#2f5f88;
  margin-bottom:35px;
}

.hero-features{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
  margin-bottom:45px;
}

.hero-feature{
  background:#ffffff;
  padding:16px 26px;
  border-radius:12px;
  font-size:0.95rem;
  font-weight:500;
  color:#163a5f;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.hero-btn{
  display:inline-block;
  padding:16px 40px;
  background:#163a5f;
  color:#ffffff;
  border-radius:35px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s ease;
}

.hero-btn:hover{
  background:#0f2b46;
  transform:translateY(-2px);
}

@media(max-width:768px){

  .hero-title{
    font-size:2.7rem;
  }

  .hero-highlight{
    font-size:1rem;
    padding:14px 24px;
  }

  .hero-desc{
    font-size:0.95rem;
  }

  .hero-feature{
    font-size:0.85rem;
    padding:14px 20px;
  }
}
/*Form Section END*/


/*marketing process*/
.process-section{
  padding:70px 20px;
  text-align:center;
}

.process-tag{
  color:#043766;
  font-weight:600;
  letter-spacing:2px;
  margin-bottom:10px;
}

.process-title{
  font-size: 35px;
  font-weight: 800;
  color: #0a1f44;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #0a1f44 0%, #1a3cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-title span{
  display:block;
  color:#555;
}

.process-wrapper{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:60px;
  margin-top:60px;
  flex-wrap:wrap;
}

.process-card{
  max-width:260px;
}

.icon-box{
  width:110px;
  height:110px;
  background:#043766;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
  position:relative;
}

.step-no{
  position:absolute;
  top:-6px;
  left:-6px;
  background:#111;
  color:#fff;
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:600;
}

.icon-box img{
  width:80px;
 
}

.process-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.process-card p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

.arrow{
  width:80px;
  height:2px;
  background:#043766;
  position:relative;
  margin-top:55px;
}

.arrow::after{
  content:'';
  position:absolute;
  right:-6px;
  top:-4px;
  border-left:8px solid #043766;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
}

.cta-box{
  margin-top:70px;
  background:rgba(217,217,217,0.08);
  border-radius:40px;
  padding:18px 25px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  flex-wrap:wrap;
  gap:15px;
  border:1px solid rgba(227,85,61,0.3);
}

.cta-box span{
  font-size:18px;
  color:#D9D9D9;
}

.cta-btn{
  background:#C9A24D;
  color:#fff;
  padding:14px 28px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:10px;
}

.cta-btn::after{
  content:'➜';
  font-size:18px;
}

@media(max-width:768px){

  .process-title{
    font-size:30px;
  }

  .process-wrapper{
    flex-direction:column;
    gap:35px;
  }

  .arrow{
    transform:rotate(90deg);
    margin:0;
  }

  .cta-box{
    flex-direction:column;
    text-align:center;
  }

  .cta-box span{
    font-size:16px;
  }
}
/*marketing process END*/


/*services*/
  .services-section{
  padding:60px 20px;
  background:#f8f9fb;
  font-family:'Poppins', sans-serif;
}

.services-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

.service-card{
  background:#F7F3EE;
  padding:34px 26px;
  text-align:center;
  border-radius:8px;
  transition:transform 0.3s ease;
}

.service-card:hover{
  transform:translateY(-4px);
}

.service-img{
  width:56px;
  height:56px;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.service-card h3{
  font-size:18px;
  font-weight:600;
  color:#1f3c88;
  margin-bottom:10px;
}

.service-card p{
  font-size:14px;
  line-height:1.65;
  color:#555;
  max-width:260px;
  margin:0 auto;
}

@media(max-width:900px){
  .services-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .services-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    padding:30px 22px;
  }
}
.our-services-label{
  background:#2b2620;      
  padding:10px 16px;       
  border-radius:20px;     
  font-size:13px;
  color:#fff;           
  display:inline-block;
  letter-spacing:0.8px;
  font-weight:500;
}
/*services END*/

/*About us Page Intro section*/
.rm-about-section {
    background: #FFFFFF;
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}
.rm-about-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.rm-image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.rm-image-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid #D4A574;
    border-radius: 10px;
    z-index: -1;
}

.rm-image-frame img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
.rm-about-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2B2620;
    position: relative;
}

.rm-about-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #D4A574;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.rm-about-text {
    font-size: 1.05rem;
    color: #6E665C;
    line-height: 1.7;
    margin-bottom: 18px;
}
.rm-quote-box {
    background: #F7F3EE;
    padding: 25px;
    border-left: 4px solid #D4A574;
    border-radius: 8px;
    margin: 30px 0;
}

.rm-quote-text {
    font-style: italic;
    font-size: 1.15rem;
    color: #2B2620;
}

.rm-qualities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 30px;
}

.rm-quality-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rm-quality-icon {
    width: 50px;
    height: 50px;
    background:#C9A24D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rm-quality-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.rm-quality-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #2B2620;
}

.rm-quality-content p {
    font-size: 0.95rem;
    color: #6E665C;
    margin: 0;
}
@media (max-width: 768px) {
    .rm-about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rm-about-title {
        font-size: 2rem;
    }

    .rm-qualities-grid {
        grid-template-columns: 1fr;
    }
}
/*About us Page Intro section END*/