/* Hero Section Styles */
.hero-section {
  background: #f9f9f9;
  padding: 0;
  margin: 0;
}

/* Header */
.header-bar {
  background: #fff;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #222;
}

.logo span {
  color: #c2172e;
}

.header-call {
  font-weight: bold;
  color: #c2172e;
  text-decoration: none;
  font-size: 16px;
}

/* Hero Content */
.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: 20px;
}

.hero-image img {
  max-width: 100%;
  height: 250px;
  border-radius: 10px;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 36px;
  color: #00314d;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #c2172e;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #a81425;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .header-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

.features-section {
  padding: 80px 20px;
  background-color: #f5f7fa;
  text-align: center;
}

.features-section h2 {
  font-size: 32px;
  color: #00314d;
  margin-bottom: 40px;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.feature-box i {
  font-size: 40px;
  color: #c2172e;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 20px;
  color: #00314d;
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.info-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.info-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.info-text {
  flex: 1;
  min-width: 300px;
}

.info-text h2 {
  font-size: 32px;
  color: #00314d;
  margin-bottom: 20px;
}

.info-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.info-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.info-text ul li {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.info-text ul li i {
  color: #c2172e;
  margin-right: 8px;
}

.cta-button {
  background-color: #c2172e;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #a91426;
}

.info-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.info-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .info-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .info-text h2 {
    font-size: 26px;
  }
}

.difference-section {
  background-color: #f7f9fc;
  padding: 80px 20px;
  text-align: center;
}

.difference-section h2 {
  font-size: 32px;
  color: #00314d;
  margin-bottom: 40px;
  font-weight: 700;
}

.difference-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.diff-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.diff-card:hover {
  transform: translateY(-5px);
}

.diff-card i {
  font-size: 36px;
  color: #c2172e;
  margin-bottom: 15px;
}

.diff-card h3 {
  font-size: 18px;
  color: #00314d;
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.parallax-cta {
  background-image: url('../images/logo/cta.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.parallax-cta .overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Black overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.parallax-cta .content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
}

.parallax-cta .content p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-btn {
  background-color: #c2172e;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #a91426;
}

/* Responsive */
@media (max-width: 768px) {
  .parallax-cta {
    background-attachment: scroll;
    height: auto;
  }

  .parallax-cta .content h2 {
    font-size: 24px;
  }

  .parallax-cta .content p {
    font-size: 15px;
  }
}

.testimonials-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 32px;
  color: #00314d;
  margin-bottom: 40px;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card i {
  font-size: 24px;
  color: #c2172e;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 14px;
  color: #00314d;
  font-weight: bold;
}

.advantages-faq-section {
  background: #fff;
  padding: 80px 20px;
  color: #00314d;
}

.adv-faq-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

.advantages-col,
.faq-col {
  flex: 1 1 45%;
}

.advantages-col h2,
.faq-col h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: left;
}

.advantages-list {
  list-style: none;
  padding: 0;
}

.advantages-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
}

.advantages-list i {
  color: #c2172e;
  font-size: 20px;
  margin-top: 3px;
}

/* FAQ Styling */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.faq-question {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: #00314d;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 10px 0;
}

.faq-answer {
  font-size: 15px;
  padding: 0 0 10px 0;
  display: none;
  color: #444;
  line-height: 1.6;
}

/* Open FAQ State */
.faq-item.open .faq-answer {
  display: block;
}

@media (max-width: 768px) {
  .adv-faq-wrapper {
    flex-direction: column;
  }
}




.process-modern {
  position: relative;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}

.process-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  z-index: 1;
}

.process-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.process-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 800;
}

.subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  color: #ddd;
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 25px 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 240px;
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  display: inline-block;
  background: #c2172e;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  margin-bottom: 15px;
}

.step p {
  color: #eee;
  font-size: 15px;
  line-height: 1.5;
}

.process-btn {
  display: inline-block;
  background: #c2172e;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.process-btn:hover {
  background-color: #a91426;
}

/* Responsive */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
}

.site-footer {
  background-color: #000;
  color: #ccc;
  text-align: center;
  padding: 40px 20px 80px; /* Extra space for bottom bar */
  font-size: 14px;
}

.disclaimer p {
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Fixed Call Now Bar */
.call-now-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c2172e;
  color: white;
  text-align: center;
  z-index: 999;
}

.call-now-bar a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
}

.call-now-bar a:hover {
  background-color: #a91426;
}
