/* ===== Import Google Font ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ===== Hero Section Styles Only ===== */
.hero-section {
  font-family: 'Poppins', sans-serif;
  background-color: #f8fafc;
  padding: 80px 0;
}

/* Text content area */
.hero-section .hero-content {
  color: #333;
}

.hero-section .hero-tagline {
  color: #e65100;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
}

.hero-section .hero-title {
  color: #0a2f5a;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-section .hero-title span {
  color: #e65100;
}

.hero-section .hero-description {
  font-size: 1.05rem;
  margin-top: 15px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #333;
}

/* Buttons */
.hero-section .btn-primary-custom {
  background-color: #e65100;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-section .btn-primary-custom:hover {
  background-color: #cc4a00;
  text-decoration: none;
}

.hero-section .btn-outline-custom {
  color: #0a2f5a;
  border: 2px solid #0a2f5a;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-section .btn-outline-custom:hover {
  background-color: #0a2f5a;
  color: #fff;
  text-decoration: none;
}

/* Image Styling */
.hero-section .hero-image {
  border-radius: 15px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero-section .hero-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding: 60px 0;
  }

  .hero-section .hero-title {
    font-size: 2rem;
  }

  .hero-section .hero-description {
    font-size: 1rem;
  }

  .hero-section .hero-buttons {
    margin-top: 20px;
  }

  .hero-section .btn-primary-custom,
  .hero-section .btn-outline-custom {
    display: inline-block;
    width: 80%;
    margin-bottom: 10px;
  }

  .hero-section .hero-image {
    margin-top: 30px;
    width: 100%;
  }
}

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

  .hero-section .hero-description {
    font-size: 0.95rem;
  }
}


/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: #ffffff;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

/* Image */
.about-section .about-image {
  border-radius: 15px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.about-section .about-image:hover {
  transform: scale(1.03);
}

/* Text */
.about-section .about-content {
  color: #333;
}

.about-section .about-tagline {
  color: #e65100;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
  text-transform: uppercase;
}

.about-section .about-title {
  color: #0a2f5a;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-section .about-title span {
  color: #e65100;
}

.about-section .about-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

/* Button styling reused */
.about-section .btn-primary-custom {
  background-color: #e65100;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-section .btn-primary-custom:hover {
  background-color: #cc4a00;
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-section .about-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    text-align: center;
    padding: 70px 0;
  }

  .about-section .about-title {
    font-size: 1.8rem;
  }

  .about-section .about-description {
    font-size: 1rem;
  }

  .about-section .about-image {
    margin-bottom: 25px;
  }
}


/* ===== Our Solutions Section ===== */
.solutions-section {
  background-color: #ffffff;
}

.solutions-tagline {
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 1rem;
}

.solutions-title {
  color: var(--primary-color);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.solutions-subtext {
  color: #555;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.solution-card {
  border: 1px solid rgba(10, 47, 90, 0.1);
  border-radius: 15px;
  background: #f9fafc;
  transition: all 0.3s ease;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.solution-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.solution-name {
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.solution-desc {
  color: #666;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .solutions-title {
    font-size: 1.9rem;
  }
  .solutions-subtext {
    font-size: 1rem;
  }
  .solution-card {
    margin-bottom: 20px;
  }
}


/* ===== Expiry Shield Features Section ===== */
.features-section {
  background-color: #f9fafc;
}

.features-tagline {
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 1rem;
}

.features-title {
  color: var(--primary-color);
  font-size: 2.4rem;
  font-weight: 700;
}

.features-title span {
  color: var(--accent-color);
}

.features-subtext {
  color: #555;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* ===== Feature Cards ===== */
.feature-card {
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid rgba(10, 47, 90, 0.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  color: var(--accent-color);
  font-size: 2.5rem;
}

.feature-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .features-title {
    font-size: 1.9rem;
  }
  .features-subtext {
    font-size: 1rem;
  }
  .feature-card {
    margin-bottom: 20px;
  }
}



/* ===== Testimonials Section ===== */
.testimonials-section {
  background-color: #ffffff;
}

.testimonials-tagline {
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 1rem;
}

.testimonials-title {
  color: var(--primary-color);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonials-subtext {
  color: #555;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* ===== CTA Section ===== */
.cta-section {
  background-color: var(--primary-color);
  background-image: linear-gradient(135deg, #0a2f5a 0%, #082745 100%);
  padding: 100px 0;
}

.cta-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

.cta-title span {
  color: var(--accent-color);
}

.cta-subtext {
  color: #f0f0f0;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.cta-buttons .btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-buttons .btn-light {
  color: var(--primary-color);
  background-color: #fff;
}

.cta-buttons .btn-light:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.cta-buttons .btn-outline-light {
  color: #fff;
  border: 2px solid #fff;
}

.cta-buttons .btn-outline-light:hover {
  background-color: #fff;
  color: var(--primary-color);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
  .cta-subtext {
    font-size: 1rem;
  }
  .cta-buttons .btn {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
}


/* ===== Why Choose Us Section ===== */
.why-choose-section {
  background-color: #f9fafc;
}

.choose-tagline {
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
}

.choose-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
}

.choose-title span {
  color: var(--accent-color);
}

.choose-subtext {
  color: var(--text-color);
  max-width: 700px;
  margin: 15px auto 40px;
  line-height: 1.6;
  font-size: 1.05rem;
}

.choose-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.choose-icon {
  font-size: 2.2rem;
  color: var(--accent-color);
}

.choose-card-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.choose-card-text {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .choose-title {
    font-size: 2rem;
  }
}


