.dolor,
.highlight-nri {
  background: linear-gradient(135deg, #0891b2, #65a30d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* section 2 */
.tempor {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
  align-items: center;
  background: #fff;
  padding: 70px 0px;
}
.tempor p {
  color: #666;
  font-size: 18px;
  max-width: 900px;
  line-height: 1.6;
  margin: auto;
}
@media (max-width: 480px) {
.tempor p{
  max-width: 95%;
  margin: auto;
  font-size: 14px;
}  
}
.card-description {
    color: #666;
    margin-top: 15px;
}
/* section 3 */

.who-can-apply-section {
  max-width: 1400px;
  margin: 50px auto;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title .highlight {
  color: #3b82f6;
}

.section-description {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.apply-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.apply-card {
  background: white;
  border-radius: 16px;
  padding: 35px 25px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.apply-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.card-icon img {
  width: 60px;
  height: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 36px;
  }

  .apply-grid {
    gap: 20px;
        padding: 0px 20px;
  }

  .apply-card {
    padding: 30px 20px 25px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .section-description {
    font-size: 15px;
    margin-bottom: 50px;
  }

  .apply-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 14px;
  }

  .apply-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
    gap: 20px;
  }

  .apply-card {
    padding: 25px 20px;
    max-width: 400px;
    margin: 0 auto;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .card-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .card-description {
    font-size: 13px;
  }
}

/* section 4 */
.banner-statistics-wrapper {
  max-width: 1400px;
  margin: 50px auto;
}

.primary-banner-area {
  background: linear-gradient(135deg, #398fc5 0%, #2196f3 50%, #3f51b5 100%);
  border-radius: 24px;
  padding: 60px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.primary-banner-area::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.primary-banner-area::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: rgba(139, 195, 74, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.banner-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.left-content-section {
  color: white;
}

.status-badge-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.active-status-dot {
  width: 8px;
  height: 8px;
  background: #8bc34a;
  border-radius: 50%;
  animation: dot-pulse-effect 2s infinite;
}

@keyframes dot-pulse-effect {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.primary-banner-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.primary-banner-heading .highlighted-accent {
  color: #93ff18;
}

.banner-subtitle-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #fff;
}

.features-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.individual-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.feature-indicator-icon {
  width: 20px;
  height: 20px;
  background: rgba(139, 195, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8bc34a;
  font-size: 12px;
  flex-shrink: 0;
}

.cta-buttons-container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.main-action-button {
  background: white;
  color: #2196f3;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.main-action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.main-action-button::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.3s ease;
}

.main-action-button:hover::after {
  transform: translateX(4px);
}

.secondary-action-button {
  background: transparent;
  color: white;
  padding: 14px 28px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.secondary-action-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.right-visual-area {
  position: relative;
}

.performance-metric-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #73c514;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(139, 195, 74, 0.4);
  z-index: 3;
}

.metric-percentage-value {
  font-size: 24px;
  font-weight: 700;
}

.metric-description-label {
  font-size: 12px;
  opacity: 0.9;
}

.visual-content-container {
  width: 100%;
  max-width: 600px;
  height: 500px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.visual-content-container  img{
  max-width: 550px;
  height: 450px;
  border-radius: 5px;
}


.duration-metric-badge {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: white;
  color: #2196f3;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.2);
  text-align: center;
}

.duration-display-value {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.duration-description-label {
  font-size: 12px;
  color: #666;
}

.metrics-dashboard-panel {
  background: white;
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.numerical-stats-collection {
  display: flex;
  gap: 60px;
}

.single-stat-block {
  text-align: left;
}

.stat-numerical-display {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-category-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.branding-elements-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

.colorful-brand-dots {
  display: flex;
  gap: 8px;
}

.individual-brand-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #398fc5, #2196f3);
}

.individual-brand-dot:nth-child(2) {
  background: linear-gradient(135deg, #2196f3, #3f51b5);
}

.individual-brand-dot:nth-child(3) {
  background: linear-gradient(135deg, #3f51b5, #9c27b0);
}

.individual-brand-dot:nth-child(4) {
  background: linear-gradient(135deg, #9c27b0, #e91e63);
}

.brand-description-text {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .primary-banner-area {
    padding: 50px 40px;
  }

  .banner-content-layout {
        grid-template-columns: 1fr;
    gap: 40px;
  }

  .primary-banner-heading {
    font-size: 42px;
  }

  .metrics-dashboard-panel {
    padding: 25px 30px;
  }

  .numerical-stats-collection {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  
.content-placeholder-area img {
  max-width: 100%;
}
  .primary-banner-area {
    padding: 40px 30px;
  }

  .banner-content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .primary-banner-heading {
    font-size: 36px;
    text-align: center;
  }

  .banner-subtitle-text {
    text-align: center;
  }

  .features-showcase-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-buttons-container {
    justify-content: center;
  }

  .visual-content-container {
    height: 280px;
    /* max-width: 100%; */
    margin: auto;
  }

  .metrics-dashboard-panel {
    flex-direction: column;
    gap: 30px;
    padding: 30px 25px;
  }

  .numerical-stats-collection {
    justify-content: center;
    gap: 50px;
  }

  .branding-elements-area {
    justify-content: center;
  }
  .performance-metric-badge {
    top: -30px;
    right: 100px;
  }
  .duration-metric-badge {
    right: 100px;
}
.image-placeholder img {
    max-width: 400px;
    height: 400px;
}

}
@media (max-width: 480px) {
  .primary-banner-area {
    padding: 30px 20px;
  }

  .primary-banner-heading {
    font-size: 28px;
  }
    .performance-metric-badge {
        top: -30px;
        right: 0px;
    }
    .duration-metric-badge {
        right: 0px;
    }
  .banner-subtitle-text {
    font-size: 14px;
  }

  .cta-buttons-container {
    flex-direction: column;
    align-items: center;
  }

  .main-action-button,
  .secondary-action-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .visual-content-container {
    height: 240px;
  }

  .performance-metric-badge {
    padding: 10px 16px;
  }

  .metric-percentage-value {
    font-size: 20px;
  }

  .duration-metric-badge {
    padding: 12px 16px;
  }

  .duration-display-value {
    font-size: 24px;
  }

  .metrics-dashboard-panel {
    padding: 25px 20px;
  }

  .numerical-stats-collection {
    gap: 30px;
  }

  .stat-numerical-display {
    font-size: 28px;
  }

  .colorful-brand-dots {
    gap: 6px;
  }

  .individual-brand-dot {
    width: 28px;
    height: 28px;
  }
  .content-placeholder-area img {
  max-width: 100%;
}
.visual-content-container img {
    height: 250px;
    border-radius: 5px;
}
}

@media (max-width: 375px) {
  .banner-statistics-wrapper {
    margin: 20px auto;
    padding: 0 12px;
  }
    .image-placeholder img {
        max-width: 300px;
        height: 300px;
    }
  .primary-banner-area {
    padding: 20px;
    border-radius: 16px;
  }
.content-placeholder-area img {
  max-width: 100%;
}
  .banner-content-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
.duration-metric-badge,.performance-metric-badge{
  display: none;
}
  .primary-banner-heading {
    font-size: 22px;
    text-align: start;
    margin-bottom: 12px;
  }

  .banner-subtitle-text {
    font-size: 13px;
    text-align: start;
    margin-bottom: 20px;
  }

  .features-showcase-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .individual-feature-item {
    font-size: 12px;
  }

  .feature-indicator-icon {
    width: 18px;
    height: 18px;
  }

  .cta-buttons-container {
    flex-direction: column;
    align-items: center;
  }

  .main-action-button,
  .secondary-action-button {
    width: 100%;
    max-width: 100%;
    padding: 10px 16px;
    font-size: 14px;
  }

  .right-visual-area {
    margin-top: 20px;
  }

  .visual-content-container {
    height: 180px;
  }

  .performance-metric-badge,
  .duration-metric-badge {
    padding: 8px 12px;
    font-size: 14px;
  }

  .metric-percentage-value,
  .duration-display-value {
    font-size: 18px;
  }

  .duration-description-label,
  .metric-description-label {
    font-size: 10px;
  }

  .metrics-dashboard-panel {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .numerical-stats-collection {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .single-stat-block {
    text-align: center;
  }

  .stat-numerical-display {
    font-size: 22px;
  }

  .stat-category-label,
  .brand-description-text {
    font-size: 12px;
  }

  .branding-elements-area {
    flex-direction: column;
    gap: 12px;
  }

  .colorful-brand-dots {
    gap: 4px;
  }

  .individual-brand-dot {
    width: 24px;
    height: 24px;
  }

      .visual-content-container img {
        height: 200px;
    }
}



/* section 5 */

.highlights-section {
  background: #fff;
  padding: 50px 20px;
}

.highlights-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.image-container {
    width: 100%;
    max-width: 700px;
    height: 600px;
    position: relative;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fdf4 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.1);
    justify-self: center;
}


.image-placeholder {
  width: 100%;
  height: 100%;
  background: #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}
.image-placeholder img {
    max-width: 600px;
    height: 600px;
}
.content-container {
  padding: 20px 0;
}

.highlight-admissions {
  color: #0ea5e9;
}

.highlights-list {
  list-style: none;
  margin-bottom: 35px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon::after {
  content: "✓";
}

/* Large Desktop Screens */
@media (min-width: 1400px) {
  .highlights-container {
    gap: 80px;
    padding: 0 40px;
  }
  
  .highlights-section {
    padding: 60px 20px;
  }
}

/* Desktop Screens */
@media (max-width: 1200px) {
  .highlights-container {
    gap: 50px;
    padding: 0 15px;
  }
  
  .image-container {
    max-width: 550px;
    height: 550px;
    padding: 35px;
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .highlights-container {
    gap: 40px;
    padding: 0 15px;
  }
.image-placeholder img {
    max-width: 500px;
    height: 500px;
}
  .section-title {
    font-size: 28px;
  }

  .image-container {
    max-width: 500px;
    height: 500px;
    padding: 30px;
  }

  .image-placeholder {
    font-size: 16px;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .highlights-section {
    padding: 40px 15px;
  }
  
  .highlights-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 10px;
  }
.image-placeholder img {
    max-width: 400px;
    height: 400px;
}
  .section-title {
    font-size: 26px;
    text-align: center;
  }

  .image-container {
    order: 2;
    max-width: 450px;
    height: 400px;
    padding: 25px;
    margin: 0 auto;
  }

  .content-container {
    order: 1;
    text-align: center;
    padding: 10px 0;
  }

  .highlights-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 35px;
  }

  .image-placeholder {
    font-size: 16px;
  }
}

/* Mobile Large */
@media (max-width: 640px) {
  .highlights-section {
    padding: 35px 10px;
  }
  
  .highlights-container {
    gap: 35px;
    padding: 0 5px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .image-container {
    max-width: 400px;
    height: 350px;
    padding: 20px;
  }
  
  .highlights-list {
    max-width: 500px;
    margin: 0 auto 30px;
  }
  
  .highlight-item {
    font-size: 14px;
    margin-bottom: 14px;
  }
}

/* Mobile Medium */
@media (max-width: 480px) {
  .highlights-section {
    padding: 30px 8px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .highlights-list {
    text-align: left;
    max-width: 350px;
    margin: 0 auto 25px;
    padding: 0 10px;
  }

  .image-container {
    max-width: 320px;
    height: 300px;
    padding: 18px;
  }
    .image-placeholder img {
        max-width: 300px;
        height: 300px;
    }

  .highlight-item {
    font-size: 14px;
    margin-bottom: 12px;
    gap: 10px;
  }

  .check-icon {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
}

/* Mobile Small */
@media (max-width: 360px) {
  .highlights-section {
    padding: 25px 5px;
  }
  
  .highlights-container {
    gap: 30px;
    padding: 0;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .highlights-list {
    max-width: 300px;
    margin: 0 auto 20px;
    padding: 0 8px;
  }
  
  .image-container {
    max-width: 280px;
    height: 260px;
    padding: 15px;
  }
  
  .content-container {
    padding: 15px 0;
  }
  
  .highlight-item {
    font-size: 13px;
    margin-bottom: 10px;
    gap: 8px;
  }
  
  .check-icon {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }
  
  .image-placeholder {
    font-size: 12px;
  }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
  .highlights-section {
    padding: 20px 3px;
  }
  
  .section-title {
    font-size: 18px;
  }
  
  .highlights-list {
    max-width: 260px;
    padding: 0 5px;
  }
  
  .image-container {
    max-width: 250px;
    height: 230px;
    padding: 12px;
  }
  
  .highlight-item {
    font-size: 12px;
    margin-bottom: 8px;
    gap: 6px;
  }
  
  .check-icon {
    width: 14px;
    height: 14px;
    font-size: 9px;
  }
}
/* section 6 */

.choose-us-wrapper {
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
}

.main-header {
  margin-bottom: 80px;
}

.main-heading {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.main-heading .cyan-text {
  color: #398fc5;
}

.header-text {
  font-size: 16px;
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.benefits-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.phone-container {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  z-index: 10;
}

.mobile-device {
  width: 280px;
  height: 400px;
  background: linear-gradient(135deg, #398fc5, #0097a7);
  border-radius: 24px;
  padding: 20px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 188, 212, 0.3);
  position: relative;
}

.mobile-display {
  width: 100%;
  height: 100%;
  background: #f8fafc;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.mobile-display img{
    max-width: 250px;
}
.benefit-info {
  margin-top: 10px;
  color: #666;
}
.benefit-box {
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.benefit-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.benefit-box.position-top-left {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.benefit-box.position-top-right {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.benefit-box.position-bottom-left {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
}

.benefit-box.position-bottom-right {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
}

.action-btn {
  background: linear-gradient(135deg, #0891b2, #2563eb);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.action-btn:hover {
  background: linear-gradient(135deg, #0097a7, #00838f);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}
.benefit-name{
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-heading {
    font-size: 36px;
  }
.choose-us-wrapper {
  margin: 50px 20px;
 
}
  .benefits-layout {
    grid-template-columns: 1fr 350px 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .mobile-device {
    width: 240px;
    height: 340px;
  }

  .benefit-box {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 32px;
  }
.mobile-display img {
    max-width: 180px;
}
  .main-header {
    margin-bottom: 60px;
  }

  .benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .phone-container {
    order: 1;
    margin-bottom: 20px;
  }

  .mobile-device {
    width: 200px;
    height: 280px;
  }

  .benefit-box {
    width: 100%;
    max-width: 400px;
    order: 2;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 28px;
  }

  .header-text {
    font-size: 14px;
  }

  .mobile-device {
    width: 180px;
    height: 260px;
    padding: 16px;
  }

  .benefit-box {
    padding: 25px 20px;
  }

  .benefit-symbol {
    width: 45px;
    height: 45px;
    font-size: 18px;
    margin-bottom: 16px;
  }

  .benefit-name {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .benefit-info {
    font-size: 13px;
  }

  .action-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}










