body {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif !important;
}

.banner {
    min-height: 100vh;
    background: url('https://www.fininfocom.com/assets/Images/aws-partner/superBanner@.svg') no-repeat center center / cover;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* background: linear-gradient(90deg, rgba(30,34,90,0.85) 60%, rgba(46,196,241,0.4) 100%); */
    z-index: 1;
}
.lead {
    font-size: 16px !important;
    font-weight: 400 !important;
    margin-bottom: 30px;
    line-height: 30px;
}
.request-consultation{
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    font-size: 16px;
    /* margin-top: 25px; */
    font-weight: 500;  
}

.banner-content {
    z-index: 2;
    width: 600px auto;
    margin: 0 auto;
    position: relative;
    text-align: left;
}

.banner .text-primary {
    color: #2ec4f1 !important;
}

.banner .badge-primary {
    background: #1e225a;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 20px;
}

.btn-primary {
    background: #2ec4f1;
    border: none;
    color: #fff;
    font-weight: 600;
}

.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
    font-weight: 600;
}

.btn-outline-light:hover {
    background: #fff;
    color: #2ec4f1;
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 21px;
    }
    .banner-content h3 {
        font-size: 1rem;
    }
}
/* =========================
   What We Offer Section
============================ */
.offer-section {
    /*background: url('https://www.fininfocom.com/assets/Images/aws-partner/offer-icon.svg') no-repeat center center/cover, */
                /*linear-gradient(180deg, #f7fafd 0%, #e3eafc 100%);*/
    padding: 80px 0 60px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    color: #22223b;
}

.section-subtitle {
    color: #4a4e69;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.offer-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(30,34,90,0.08), 0 1.5px 6px rgba(46,196,241,0.08);
    padding: 32px 24px 24px 24px;
    transition: box-shadow 0.2s;
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.offer-card:hover {
    box-shadow: 0 12px 36px rgba(30,34,90,0.16), 0 2px 8px rgba(46,196,241,0.12);
}

.offer-card-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 18px;
    margin-top: 4px;
    display: block;
   
}
.offer-section{
    position: relative;
}
.right-wall-img{
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
}
.left-wall-img{
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
}
.section-title-Offer{
    width: 90%;
    margin: auto;
}

.offer-card-badge {
    /* position: absolute; */
    top: 18px;
    right: 18px;
    background: #2ec4f1;
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    margin-top: -10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(46,196,241,0.15);
    z-index: 2;
    margin: 0;
    margin-left: 14px;
}
.circle-wall-img{
    position: absolute;
    bottom: -81px;
    width: 160px;
    left: -76px;
}
.side-wall-img{
    position: absolute;
    top: 0;
    right: 0;
    width:60px;
}
/* =========================
   Call to Action Section
============================ */
.cta-section {
    background: linear-gradient(90deg, #1a2340 0%, #5f2ca1 100%);
    color: #fff;
    padding: 50px 0 50px 0;
    text-align: center;
    position: relative;
  }

/* Continuous rotation animation for CTA button icon */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-btn__icon {
  animation: rotate 3s linear infinite;
}

.cta-section__badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #ffb385;
    color: #ffb385;
    border-radius: 22px;
    padding: 6px 22px;
    font-size: 16px; /* Badge font size */
    font-weight: 500;
    margin-bottom: 32px;
    gap: 8px;
    transition: background 0.3s;
  }
  .cta-section__badge:hover {
    background: rgba(255, 179, 133, 0.18);
  }
  .cta-badge__icon {
    font-size: 18px;
  }
  .cta-section__title {
    font-size: 40px; /* Main heading */
    font-weight: 600;
    margin-bottom: 16px;
  }
  .cta-section__subtitle {
    font-size: 18px; /* Subtitle */
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
  }
  .cta-section__actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .cta-section__Actions {
    display: flex;
    /* justify-content: center; */
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .cta-btn {
    display: flex;
    align-items: center;
    background: #fff;
    color: #1a2340;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 20px; /* Button font size */
    font-weight: 600;
    box-shadow: 0 4px 24px rgba(30,34,90,0.08);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    gap: 10px;
  }
 
  .cta-input {
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 20px; /* Input font size */
    font-weight: 400;
    width: 320px;
    max-width: 90vw;
    box-shadow: 0 4px 24px rgba(30,34,90,0.08);
    outline: none;
    transition: box-shadow 0.2s;
  }
  .cta-input:focus {
    box-shadow: 0 8px 32px rgba(46,196,241,0.18);
  }
  
  /* =========================
     Responsive Design
  ============================ */
  @media (max-width: 992px) {
    .cta-section__title { font-size: 38px; }
    .cta-section__subtitle { font-size: 18px; }
    .cta-btn, .cta-input { font-size: 16px; padding: 12px 18px; }
  }
  @media (max-width: 992px) {
    .cta-section { padding: 50px; }
    .cta-section__title { font-size: 24px; }
    .cta-section__subtitle { font-size: 14px; }
    .cta-btn, .cta-input { font-size: 14px; padding: 10px 10px; }
    .cta-section__actions { flex-direction: column; gap: 14px; }
  }
.offer-card h5 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600 !important;
    color: #1e225a;
}

.offer-card p {
    color: #4a4e69;
    font-size: 1rem;
    margin-bottom: 12px;
}

.offer-card ul {
    padding-left:0px;
    margin-bottom: 0;
}

.offer-card ul li {
    color: #4a4e69;
    font-size:14px;
    line-height: 26px;
    margin-bottom: 15px;
    list-style: none;
    position: relative;
    display: flex;
    align-items: baseline;
    /* padding-left: 18px; */
}
.offer-card ul li img{
  position: relative;
  top: 4px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .offer-card {
        min-height: 360px;
    }
}
@media (max-width: 767px) {
    .offer-section {
        padding: 50px 0 30px 0;
    }
    .offer-card {
        min-height: 0;
        padding: 28px 16px 18px 16px;
    }
    .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 550px) {
    .offer-card {
        margin-bottom: 18px;
    }
}

/* =========================
   AWS Expertise Section
============================ */
.aws-expertise {
  background: linear-gradient(90deg, #232946 0%, #5f65f1 100%);
  color: #fff;
  padding: 30px 0 30px 0;
  text-align: center;
}

.aws-expertise__container {
  max-width: 1200px;
  margin: 0 auto;
}

.aws-expertise__title {
  font-size: 40px; /* 48px for main heading */
  font-weight: 600;
  margin-bottom: 16px;
}

.aws-expertise__subtitle {
  font-size: 20px; /* 20px for subtitle */
  margin-bottom: 40px;
  font-weight: 400;
}

.aws-expertise__services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 20px; /* row gap, column gap */
  width: 90%;
  margin: 0 auto;
}

.aws-service {
  background: linear-gradient(90deg, #2ec4f1 0%, #3a86ff 100%);
  color: #fff;
  border-radius: 30px;
  padding: 14px 36px;
  font-size: 15px; /* 20px for service name */
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(46,196,241,0.10);
  transition: transform 0.2s;
}
.aws-service:hover {
  transform: translateY(-4px) scale(1.05);
}

/* =========================
   Responsive Design
============================ */
@media (max-width: 992px) {
  .aws-expertise__title {
    font-size: 36px; /* 36px for main heading */
  }
  .aws-expertise__subtitle {
    font-size: 18px; /* 18px for subtitle */
  }
  .aws-service {
    font-size: 18px; /* 18px for service name */
    padding: 12px 24px;
  }
  .aws-expertise__services {
    gap: 18px 18px;
  }
}

@media (max-width: 550px) {
  .aws-expertise__title {
    font-size: 24px; /* 24px for main heading */
  }
  .aws-expertise__subtitle {
    font-size: 15px; /* 15px for subtitle */
  }
  .aws-service {
    font-size: 15px; /* 15px for service name */
    padding: 8px 12px;
  }
  .aws-expertise__services {
    gap: 10px 8px;
  }
}
/* =========================
   Why FinInfocom Section
============================ */
.why-aws-section {
    background: #f8fafc;
    padding: 60px 0 80px 0;
    text-align: center;
    position: relative;
  }
  .why-aws-section__title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .why-aws-section__subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
  }
  .why-aws-features {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    gap: 26px;
    width: 90%;
    margin: 0 auto;
  }
  .why-aws-feature-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(30,34,90,0.08);
    padding: 32px 24px 24px 24px;
    max-width: 300px;
    min-width: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .why-aws-feature-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }
  .why-aws-feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .why-aws-feature-desc {
    font-size: 16px;
    font-weight: 400;
  }
  /* Card hover animation */
.why-aws-feature-card {
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .why-aws-feature-card:hover {
    box-shadow: 0 8px 32px rgba(30,34,90,0.18);
    transform: translateY(-10px) scale(1.03);
    z-index: 2;
  }
  
  /* Icon hover animation (icon grows and rotates slightly) */
  .why-aws-feature-card .why-aws-feature-icon img {
    transition: transform 0.4s cubic-bezier(.4,2.08,.55,.44), filter 0.3s;
  }
  .why-aws-feature-card:hover .why-aws-feature-icon img {
    transform: scale(1.18) rotate(-8deg);
    filter: drop-shadow(0 4px 12px rgba(46,196,241,0.18));
  }
  /* =========================
     Responsive Design
  ============================ */
  @media (max-width: 992px) {
    .why-aws-section__title { font-size: 36px; }
    .why-aws-section__subtitle { font-size: 18px; }
    .why-aws-feature-title { font-size: 18px; }
    .why-aws-feature-desc { font-size: 15px; }
    .why-aws-features { gap: 20px; }
  }
  @media (max-width: 767px) {
    .why-aws-features {
      flex-direction: column;
      align-items: center;
    }
    .why-aws-feature-card {
      max-width: 90vw;
      min-width: unset;
    }
  }
  @media (max-width: 550px) {
    .why-aws-section__title { font-size: 24px; }
    .why-aws-section__subtitle { font-size: 15px; }
    .why-aws-feature-title { font-size: 16px; }
    .why-aws-feature-desc { font-size: 14px; }
    .why-aws-feature-icon img { width: 48px; height: 48px; }
  }
  /* =========================
   Industries We Serve Section
============================ */
.industries-section {
    background: linear-gradient(90deg, #dbeafe 0%, #b6eaff 100%);
    padding: 60px;
    text-align: center;
  }
  .industries-section__title {
    font-size: 40px; /* Main heading */
    font-weight: 600;
    margin-bottom: 12px;
  }
  .industries-section__subtitle {
    font-size: 20px; /* Subtitle */
    font-weight: 400;
    margin-bottom: 40px;
    color: #374151;
  }
  .industries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
  .industry-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(30,34,90,0.08);
    padding: 32px 24px 24px 24px;
    max-width: 200px;
    min-width: 160px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .industry-card:hover {
    box-shadow: 0 8px 32px rgba(30,34,90,0.18);
    transform: translateY(-10px) scale(1.04);
    z-index: 2;
  }
  .industry-card__icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    transition: transform 0.4s cubic-bezier(.4,2.08,.55,.44), filter 0.3s;
  }
  .industry-card:hover .industry-card__icon img {
    transform: scale(1.15) rotate(-8deg);
    filter: drop-shadow(0 4px 12px rgba(46,196,241,0.18));
  }
  .industry-card__title {
    font-size: 16px; /* Card title */
    font-weight: 500;
    color: #111827;
  }
  
  /* =========================
     Responsive Design
  ============================ */
  @media (max-width: 992px) {
    .industries-section__title { font-size: 36px; }
    .industries-section__subtitle { font-size: 18px; }
    .industry-card__title { font-size: 16px; }
    .industries-list { gap: 20px; }
  }
  @media (max-width: 767px) {
    .industries-list {
      flex-direction: column;
      align-items: center;
    }
    .industry-card {
      max-width: 90vw;
      min-width: unset;
    }
  }
  @media (max-width: 550px) {
    .industries-section__title { font-size: 24px; }
    .industries-section__subtitle { font-size: 15px; }
    .industry-card__title { font-size: 14px; }
    .industry-card__icon img { width: 40px; height: 40px; }
  }
  /* =========================
   Call to Action Section
============================ */
.cta-section {
    background: linear-gradient(90deg, #1a2340 0%, #5f2ca1 100%);
    color: #fff;
    padding: 50px;
    text-align: center;
    position: relative;
  }

/* Continuous rotation animation for CTA button icon */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-btn__icon {
  animation: rotate 3s linear infinite;
}

.cta-section__badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #ffb385;
    color: #ffb385;
    border-radius: 22px;
    padding: 6px 22px;
    font-size: 16px; /* Badge font size */
    font-weight: 500;
    margin-bottom: 32px;
    gap: 8px;
    transition: background 0.3s;
  }
  .cta-section__badge:hover {
    background: rgba(255, 179, 133, 0.18);
  }
  .cta-badge__icon {
    font-size: 18px;
  }
  .cta-section__title {
    font-size: 40px; /* Main heading */
    font-weight: 600;
    margin-bottom: 16px;
  }
  .cta-section__subtitle {
    font-size: 18px; /* Subtitle */
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
  }
  .cta-section__actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .cta-btn {
    display: flex;
    align-items: center;
    background: #fff;
    color: #1a2340;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 20px; /* Button font size */
    font-weight: 600;
    box-shadow: 0 4px 24px rgba(30,34,90,0.08);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    gap: 10px;
  }
 
  .cta-input {
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 20px; /* Input font size */
    font-weight: 400;
    width: 320px;
    max-width: 90vw;
    box-shadow: 0 4px 24px rgba(30,34,90,0.08);
    outline: none;
    transition: box-shadow 0.2s;
  }
  .cta-input:focus {
    box-shadow: 0 8px 32px rgba(46,196,241,0.18);
  }
  .modal-title{
    color: #22223b;
    font-size: 25px;
    font-weight: 700;
  }
  .modal-content {
border-radius: 15px !important;
border-top:4px solid #2ec4f1 !important;
  }
  .contactUsForms{

  }
  .contactUsForms .formControl {
    color: #1c1c1c;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    border: 0.5px solid #b9b9b9;
    width: 100%;
    height: 45px;
    padding: 0.375rem 0.75rem;
    border-radius: 7px;
    margin-bottom: 15px;
  } 
  .formControl{
    border: 0px;
  } 
  
  .contactUsForms .formControl:focus-visible{
    outline: 0;
  }
 .textArea{
    height: 85px !important;
  }
  .formSubmitBtn .submitBtn {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    background: #022777;
    border: 0;
    width: 100%;
    height: 45px;
    border-radius: 7px;
    display: inline-block;
    background: linear-gradient(to right, #df0530 50%, #022777 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.7s ease-out;
    margin-top: 15px;
    box-shadow: 0px 16px 23px rgba(35, 34, 81, 0.38);
    cursor: pointer;
  }
   .formSubmitBtn .submitBtn:hover {
    background-position: left bottom;
  }
  /* =========================
     Responsive Design
  ============================ */
  @media (max-width: 992px) {
    .cta-section__title { font-size: 38px; }
    .cta-section__subtitle { font-size: 18px; }
    .cta-btn, .cta-input { font-size: 16px; padding: 12px 18px; }
  }
  @media (max-width: 992px) {
   
    .cta-section__title { font-size: 24px; }
    .cta-section__subtitle { font-size: 14px; }
    .cta-btn, .cta-input { font-size: 14px; padding: 10px 10px; }
    .cta-section__actions { flex-direction: column; gap: 14px; }
  }

/* =========================
   Responsive Design
============================ */

/* Desktop (1200px and above) */
@media (min-width: 1200px) {
  .banner-content {
    max-width: 800px;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
  
  .offer-card {
    min-height: 320px;
  }
  
  .aws-expertise__title {
    font-size: 48px;
  }
  
  .why-aws-section__title {
    font-size: 48px;
  }
  
  .industries-section__title {
    font-size: 48px;
  }
  
  .cta-section__title {
    font-size: 48px;
  }
}

/* Tablet (768px to 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  .banner-content {
    max-width: 600px;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .banner-content h3 {
    font-size: 1.4rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .offer-card {
    min-height: 360px;
    padding: 28px 20px 20px 20px;
  }
  
  .aws-expertise__title {
    font-size: 36px;
  }
  
  .aws-expertise__subtitle {
    font-size: 18px;
  }
  
  .aws-service {
    font-size: 16px;
    padding: 12px 28px;
  }
  
  .why-aws-section__title {
    font-size: 36px;
  }
  
  .why-aws-section__subtitle {
    font-size: 18px;
  }
  
  .why-aws-features {
    gap: 20px;
    
  }
  
  .why-aws-feature-card {
    padding: 28px 20px 20px 20px;
  }
  
  .industries-section__title {
    font-size: 36px;
  }
  
  .industries-section__subtitle {
    font-size: 18px;
  }
  
  .industries-list {
    gap: 24px;
  }
  
  .cta-section__title {
    font-size: 36px;
  }
  
  .cta-section__subtitle {
    font-size: 16px;
  }
  
  .cta-btn {
    font-size: 18px;
    padding: 14px 28px;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .banner {
    min-height: 80vh;
    padding: 15px;
  }
  
  .banner-content {
    max-width: 100%;
    /*text-align: center;*/
  }
  
  .banner-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .banner-content h3 {
    font-size: 1.1rem;
  }
  
  .lead {
    font-size: 14px !important;
    line-height: 24px;
  }
  
  .request-consultation {
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .offer-section {
    padding: 40px 0 30px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .offer-card {
    min-height: auto;
    padding: 24px 16px 16px 16px;
    margin-bottom: 20px;
  }
  
  .offer-card h5 {
    font-size: 16px;
  }
  
  .offer-card p {
    font-size: 14px;
  }
  
  .offer-card ul li {
    font-size: 13px;
    line-height: 22px;
  }
  
  .right-wall-img,
  .left-wall-img {
    width: 50px;
  }
  
  .circle-wall-img {
    width: 100px;
    bottom: -50px;
    left: -50px;
  }
  
  .aws-expertise {
    padding: 25px 0 25px 0;
  }
  
  .aws-expertise__title {
    font-size: 24px;
  }
  
  .aws-expertise__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .aws-expertise__services {
    gap: 8px 6px;
  }
  
  .aws-service {
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 20px;
  }
  
  .why-aws-section {
    padding: 40px 0 30px 0;
  }
  
  .why-aws-section__title {
    font-size: 24px;
  }
  
  .why-aws-section__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .why-aws-features {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .why-aws-feature-card {
    max-width: 90vw;
    min-width: unset;
    padding: 24px 16px 16px 16px;
  }
  
  .why-aws-feature-icon img {
    width: 48px;
    height: 48px;
  }
  
  .why-aws-feature-title {
    font-size: 16px;
  }
  
  .why-aws-feature-desc {
    font-size: 14px;
  }
  
  .industries-section {
    padding: 40px 0 30px 0;
  }
  
  .industries-section__title {
    font-size: 24px;
  }
  
  .industries-section__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .industries-list {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  
  .industry-card {
    max-width: 90vw;
    min-width: unset;
    padding: 24px 16px 16px 16px;
  }
  
  .industry-card__icon img {
    width: 40px;
    height: 40px;
  }
  
  .industry-card__title {
    font-size: 14px;
  }
  
  
  .cta-section__title {
    font-size: 24px;
  }
  
  .cta-section__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .cta-section__actions {
    flex-direction: column;
    gap: 16px;
  }
  
  .cta-btn {
    font-size: 16px;
    padding: 14px 24px;
    width: 100%;
    justify-content: center;
  }
  
  .cta-input {
    font-size: 16px;
    padding: 14px 20px;
    width: 100%;
  }
}

/* Extra Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 21px;
  }
  
  .banner-content h3 {
    font-size: 1rem;
  }
  
  .lead {
    font-size: 13px !important;
    line-height: 22px;
  }
  
  .request-consultation {
    padding: 12px 16px;
    font-size: 13px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .offer-card {
    padding: 20px 12px 12px 12px;
  }
  
  .offer-card h5 {
    font-size: 15px;
  }
  
  .offer-card p {
    font-size: 13px;
  }
  
  .offer-card ul li {
    font-size: 12px;
    line-height: 20px;
  }
  
  .aws-expertise__title {
    font-size: 20px;
  }
  
  .aws-expertise__subtitle {
    font-size: 13px;
  }
  
  .aws-service {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .why-aws-section__title {
    font-size: 20px;
  }
  
  .why-aws-section__subtitle {
    font-size: 13px;
  }
  
  .why-aws-feature-card {
    padding: 20px 12px 12px 12px;
  }
  
  .why-aws-feature-icon img {
    width: 40px;
    height: 40px;
  }
  
  .why-aws-feature-title {
    font-size: 14px;
  }
  
  .why-aws-feature-desc {
    font-size: 13px;
  }
  
  .industries-section__title {
    font-size: 20px;
  }
  
  .industries-section__subtitle {
    font-size: 13px;
  }
  
  .industry-card {
    padding: 20px 12px 12px 12px;
  }
  
  .industry-card__icon img {
    width: 36px;
    height: 36px;
  }
  
  .industry-card__title {
    font-size: 13px;
  }
  
  .cta-section__title {
    font-size: 20px;
  }
  
  .cta-section__subtitle {
    font-size: 13px;
  }
  
  .cta-btn {
    font-size: 12px;
    padding: 12px 20px;
  }
  
  .cta-input {
    font-size: 14px;
    padding: 12px 16px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px){
  .why-aws-features{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
 
  
}
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape){
  .why-aws-features{
    display: flex;
  }
}
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px)
  and (-webkit-min-device-pixel-ratio: 2) {
    .why-aws-features{
      display: flex;
    }
}