/* ===========================================
   MODERN HOMEPAGE DESIGN
   System Fonts Only - No External Imports
=========================================== */
.quote-form.aos-init.aos-animate h3 {
    color: #fff;
}

.hero-content {
    color: #fff!important;
}


.hero-content h2 {
    color: #fff!important;
}

.hero-sub-title {
    display: inline-block;
    background: rgba(255, 107, 107, 0.9);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content p[data-animation] {
    font-size: 20px;
    color: #fff;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn_01 {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn_01 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn_01 a:first-child {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.btn_01 a:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 107, 107, 0.4);
}

.btn_01 a:last-child {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn_01 a:last-child:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    backdrop-filter: blur(10px);
}



/* ===========================================
   DOSAGE SECTION
   =========================================== */
/* Layout */
.dosage-section {
  padding: 90px 20px;
  background: #f9fbff;
  font-family: "Inter", system-ui, sans-serif;
}

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

/* Header */
.dosage-header {
  max-width: 100%;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b2c5d;
  line-height: 1.25;
}

.brand-highlight {
  color: #ff5a5f;
}

.section-description {
  margin-top: 16px;
  font-size: 17px;
  color: #5c6f91;
}

/* Grid */
.dosage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.dosage-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 45px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(11, 44, 93, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient Border */
.dosage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, #ff5a5f, #3a7bd5);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Icon */
.dosage-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: #f1f5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dosage-icon img {
  width: 48px;
}

/* Title */
.dosage-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0b2c5d;
  margin-bottom: 12px;
}

/* Text */
.dosage-card p {
  font-size: 15px;
  color: #5c6f91;
  line-height: 1.6;
}

/* Hover */
.dosage-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(11, 44, 93, 0.18);
}

.dosage-card:hover::before {
  opacity: 1;
}

.dosage-card:hover .dosage-icon {
  transform: scale(1.12) rotate(3deg);
  box-shadow: 0 12px 30px rgba(255, 90, 95, 0.35);
}

/* Responsive */
@media (max-width: 992px) {
  .dosage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .section-title {
    font-size: 30px;
  }
}
/* ===========================================
   FEATURE BOXES
   =========================================== */

.feature-boxes-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.feature-box {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-box:hover:before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-box:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 8px 16px rgba(240, 147, 251, 0.3);
}

.feature-title {
    font-size: 26px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 16px;
}

.feature-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
}

/* ===========================================
   HERO SECTION (ABOUT)
   =========================================== */

.hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section:before,
.hero-section:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-section:before {
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: #ff6b6b;
}

.hero-section:after {
    bottom: 10%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: #667eea;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 107, 0.95);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.hero-section h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-section h1 span {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 32px;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* ===========================================
   OUR SERVICES
   =========================================== */

.our-services {
    padding: 100px 0;
    background: #fff;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    text-transform: none;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.section-header p {
    max-width: 100%;
    margin: 0 auto 60px;
    color: #1e3a5f;
    font-size: 16px;
    line-height: 1.5;
}

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

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card figure {
    margin: 0;
    position: relative;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 28px 25px 16px;
    color: #1e3a5f;
}

.service-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.8;
    padding: 0 25px;
    margin-bottom: 24px;
}

.service-card a {
    display: inline-block;
    margin: 0 0 35px 25px;
    color: #ff6b6b;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card a:hover {
    color: #ee5a52;
    transform: translateX(5px);
}

/* ===========================================
   REVIEWS SECTION
   =========================================== */

.reviews-section {
    background: #ffffff;
    padding: 0 0;
}

.rating-overview h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
    font-size: 28px;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(255, 193, 7, 0.2);
}

.rating-breakdown {
    padding: 20px 0;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.rating-bar-item span:first-child {
    min-width: 90px;
    color: #495057;
    font-size: 15px;
    font-weight: 600;
}

.progress {
    flex: 1;
    height: 12px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: width 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.4);
}

.rating-bar-item span:last-child {
    min-width: 50px;
    text-align: right;
    color: #495057;
    font-size: 15px;
    font-weight: 700;
}

/* ===========================================
   CUSTOMER REVIEWS
   =========================================== */

.customer-reviews-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

.review-card {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.review-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 80px;
    color: rgba(102, 126, 234, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.review-rating {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 18px;
    text-shadow: 0 2px 4px rgba(255, 193, 7, 0.2);
}

.review-text {
    color: #495057;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e3a5f;
}

.author-info small {
    color: #28a745;
    font-size: 13px;
    font-weight: 600;
}

/* ===========================================
   WELCOME SECTION
   =========================================== */

/* SECTION */
.welcome-section {
  padding: 100px 20px;
  background: #ffffff;
  font-family: "Inter", system-ui, sans-serif;
}

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

/* GRID */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.welcome-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.welcome-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.welcome-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b2c5d;
  margin-bottom: 20px;
}

.welcome-title span {
  color: #ff5a5f;
}

.welcome-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4e5d78;
  margin-bottom: 16px;
}

/* FEATURE BOX */
.feature-box {
  margin-top: 30px;
  padding: 30px 35px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(11, 44, 93, 0.12);
}

.feature-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #0b2c5d;
  margin-bottom: 14px;
  line-height: 1.6;
}

/* Green Check Icon */
.feature-box li::before {
  content: "✔";
  color: #28a745;
  font-weight: bold;
  margin-top: 2px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .welcome-title {
    font-size: 34px;
  }

  .welcome-content {
    padding-right: 0;
  }
}


/* ===========================================
   BLOG SECTION
   =========================================== */

.blog-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-content {
    padding: 30px;
}

.blog-content h3 a {
    color: #1e3a5f;
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #ff6b6b;
}

.blog-content p {
    color: #6c757d;
    line-height: 1.8;
    margin: 16px 0 20px;
}
.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.read-more {
    color: #ff6b6b;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #ee5a52;
    transform: translateX(5px);
}

/* ===========================================
   GLOBAL SECTION
   =========================================== */

.global-section {
  padding: 100px 20px;
  background: #f9fbff;
  font-family: "Inter", system-ui, sans-serif;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b2c5d;
}

.section-desc {
  font-size: 16px;
  color: #5c6f91;
  margin-top: 10px;
}


.faq-answer p {
    font-size: 14px;
    color: #0b2c5d;
}

/* GRID */
.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* COLUMN */
.faq-column {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(11, 44, 93, 0.12);
  overflow: hidden;
}

/* FAQ ITEM */
.faq-item {
  border-bottom: 1px solid #eef1f7;
}

.faq-item:last-child {
  border-bottom: none;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  font-size: 18px;
  font-weight: 600;
  color: #0b2c5d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* ICON */
.faq-icon {
  font-size: 26px;
  color: #ff5a5f;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 1200px;
  padding: 0 28px 25px;
}

/* MAP */
.faq-map {
  width: 100%;
  max-width: 520px;
  margin: 20px auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .global-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }
}


/* ===========================================
   QUOTE SECTION
   =========================================== */

.quote-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #24557a 100%);
    padding: 100px 0;
    color: #fff;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.quote-info {
    background: #fff;
    color: #333;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.quote-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.quote-info h2 span {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-info p {
    font-size: 23px;
    line-height: 1.8;
    margin: 20px 0;
    color: #224e73;
}

.quote-form {
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-form h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
}

.quote-form h3 {
    color: #ff6b6b;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.form-row input,
.form-row select,
textarea {
    padding: 16px;
    border: none;
    border-radius: 10px;
    width: 100%;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
textarea:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

textarea {
    min-height: 140px;
    margin-bottom: 24px;
    resize: vertical;
}

.quote-form button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border: none;
    color: #fff;
    padding: 18px 50px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.quote-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 107, 107, 0.4);
}

/* ===========================================
   STATS SECTION
   =========================================== */

.stats-section {
    background: #ffffff;
    padding: 15px 0;
    color: #234d72;
    position: relative;
    overflow: hidden;
}

.stats-section:before,
.stats-section:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.stats-section:before {
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: #ff6b6b;
}

.stats-section:after {
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #667eea;
}

.stat-box {
    text-align: center;
    padding: 30px;
    position: relative;
}

.stat-box strong {
    font-size: 34px;
    display: block;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0px;
    background: #224f74;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box span {
    opacity: 0.95;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===========================================
   ANIMATIONS
   =========================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 992px) {
    .services-grid,
    .quote-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 42px !important;
    }
    
    .section-title,
    .section-header h2 {
        font-size: 36px !important;
    }
}

@media (max-width: 768px) {
    ._slider_01.hs-2 {
        height: 550px;
    }
    
    .hero-title {
        font-size: 36px !important;
    }
    
 
    
    .btn_01 {
        flex-direction: column;
    }
    
    .btn_01 a {
        width: 100%;
        text-align: center;
    }
    
    .stat-box strong {
        font-size: 42px;
    }
    
    .dosage-section,
    .reviews-section,
    .customer-reviews-section,
    .welcome-section,
    .blog-section,
    .global-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px !important;
    }
    
    .section-title,
    .section-header h2 {
        font-size: 28px !important;
    }
    
    .stat-box strong {
        font-size: 36px;
    }
}