/* Basic Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-blue: #2563eb;
  --secondary-blue: #0d2678;
  --highlight-yellow: #fde047;
  --light-text: #dbeafe;
  --white-text: #ffffff;
  --dark-text: #333333;
  --border-color: #3c4b82;
  --gradient-blue: linear-gradient(135deg, #1e3a8a, #3b82f6);
  --button-gradient: linear-gradient(135deg, #facc15, #f59e0b);
  --hover-gradient: linear-gradient(135deg, #f59e0b, #d97706);
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--white-text);
  background-color: var(--primary-blue);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header & Navbar */
header {
  background-color: #ffffff;
  padding: 20px 0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.5rem;
}
.logo img {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}
.logo span {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1e3a8a;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  font-weight: 500;
  align-items: center;
  margin-left: auto;
}
.nav-links a {
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
  color: #555;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #fde047;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: #000;
}
.nav-links a:hover::after {
  width: 100%;
}
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #0a1c63;
}

/* Responsive Navbar Styles */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #f8f9fa;
    position: absolute;
    top: 80px;
    left: 0;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    gap: 0;
    margin-left: 0;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    color: #555;
  }
  .nav-links .nav-btn {
    margin: 0;
    width: 80%;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* Hero Section */
.hero-section {
  background: var(--gradient-blue);
  padding: 80px 0;
  overflow: hidden;
}
.hero-section .container {
  display: flex;
  align-items: center;
  gap: 50px;
}
.hero-content {
  flex: 1;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  color: var(--highlight-yellow);
}
.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--light-text);
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-buttons .btn-primary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  background: var(--button-gradient);
  color: #111827;
  transition: background-color 0.3s ease;
}
.hero-buttons .btn-primary:hover {
  background: var(--hover-gradient);
}
.btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  border: 2px solid #ffffff;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.btn-secondary:hover {
  background-color: #ffffff;
  color: var(--primary-blue);
}
.hero-image-container {
  flex: 1;
  position: relative;
  text-align: center;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
}
.hero-image {
  display: block;
  width: 100%;
  transition: transform 0.5s ease;
}
/* Hover effect */
.hero-image-container:hover .hero-image {
  transform: scale(1.05);
  cursor: pointer;
}
.hero-image-container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.award-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--highlight-yellow);
  color: var(--dark-text);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-section .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-buttons {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .btn-primary {
    padding: 10px 20px;
  }
  .btn-secondary {
    padding: 10px 20px;
  }
  .award-badge {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

/* Stats Section */
.stats-section {
  background-color: #f9fafb;
  padding: 60px 0;
  text-align: center;
}
.stats-section .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}
.stat-description {
  font-size: 1rem;
  color: #4b5563;
}

/* Responsive Styles for Stats Section */
@media (max-width: 768px) {
  .stats-section .container {
    justify-content: center;
  }
  .stat-item {
    margin-bottom: 30px;
  }
}

/* About Section */
.about-section {
  background-color: #ffffff;
  padding: 80px 0;
}
.about-section .container {
  display: flex;
  gap: 50px;
  align-items: center;
}
.about-image {
  flex: 1;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
}
.about-img {
  display: block;
  width: 100%;
  transition: transform 0.5s ease;
}

/* Hover effect */
.about-image:hover .about-img {
  transform: scale(1.05);
  cursor: pointer;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-content {
  flex: 1;
  color: #4b5563;
}
.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1e3a8a;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #4b5563;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: #111827;
}
.feature-item i {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

/* Responsive Styles for About Section */
@media (max-width: 992px) {
  .about-section .container {
    flex-direction: column;
    text-align: center;
  }
  .about-content {
    margin-top: 30px;
  }
  .about-features {
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Services Section */
.services-section {
  background-color: #f9fafb;
  padding: 80px 0;
  text-align: center;
}
.services-section .section-header {
  margin-bottom: 50px;
}
.services-section .section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1e3a8a;
}
.services-section .section-header p {
  font-size: 1rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.service-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.service-card .icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--primary-blue);
}
.service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
.service-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  color: #4b5563;
}
.service-card ul li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.service-card ul li i {
  color: #00a38d;
  margin-right: 10px;
  font-size: 0.8rem;
}

/* Projects Section */
.projects-section {
  background-color: #fff;
  padding: 80px 0;
  text-align: center;
}
.projects-section .section-header {
  margin-bottom: 50px;
}
.projects-section .section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1e3a8a;
}
.projects-section .section-header p {
  font-size: 1rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.project-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.project-card .card-content {
  padding: 20px;
}
.project-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 5px;
}
.project-card p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 15px;
  line-height: 1.5;
}
.project-card a {
  color: var(--primary-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}
.project-card a:hover {
  gap: 10px;
}

/* Testimonials Section */
.testimonials-section {
  background-color: #f9fafb;
  padding: 80px 0;
  text-align: center;
}
.testimonials-section .section-header {
  margin-bottom: 50px;
}
.testimonials-section .section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1e3a8a;
}
.testimonials-section .section-header p {
  font-size: 1rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.testimonial-card .stars {
  color: #facc15;
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.testimonial-card .quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 20px;
}
.testimonial-card .client-info {
  display: flex;
  flex-direction: column;
}
.testimonial-card .client-name {
  font-weight: 600;
  color: #111827;
  font-size: 1rem;
}
.testimonial-card .client-title {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Contact Section */
.contact-section {
  background-color: #f9fafb;
  padding: 80px 0;
}
.contact-section .section-header {
  margin-bottom: 50px;
  text-align: center;
}
.contact-section .section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1e3a8a;
}
.contact-section .section-header p {
  font-size: 1rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}
.contact-content {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  max-width: 400px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #ffffff;
}
.info-text h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 5px;
}
.info-text span {
  font-size: 1rem;
  color: #4b5563;
}
.contact-form {
  flex: 2;
  max-width: 600px;
}
.form-group-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  flex: 1;
  margin-bottom: 20px;
}
.form-group label {
  display: none;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: #333;
  background-color: #f8f9fa;
  transition: border-color 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaaaaa;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0d2678;
}
.contact-form .btn-primary-alt {
  width: 100%;
  padding: 15px 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  background: var(--button-gradient);
  color: #0a1c63;
  transition: transform 0.3s ease;
}
.contact-form .btn-primary-alt:hover {
  background: var(--hover-gradient);
  transform: translateY(-3px);
}

/* Responsive Styles for Contact Section */
@media (max-width: 992px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .form-group-row {
    flex-direction: column;
    gap: 0;
  }
}

/* CTA Section */
.cta-section {
  background: var(--gradient-blue);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}
.cta-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 1.1rem;
  color: #dbeafe;
  max-width: 800px;
  margin: 0 auto 40px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-buttons .btn-primary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  background: var(--button-gradient);
  color: #111827;
  transition: background-color 0.3s ease;
}
.cta-buttons .btn-primary:hover {
  background: var(--hover-gradient);
}
.btn-secondary-cta {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  border: 2px solid #ffffff;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-secondary-cta:hover {
  background-color: #ffffff;
  color: #0a1c63;
}

/* Footer */
footer {
  background-color: #111827;
  padding: 60px 0 20px;
  color: #9ca3af;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}
.logo {
  margin-bottom: 15px;
}
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.logo img {
  display: block;
  height: auto;
}
.footer-about p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons a {
  color: #9ca3af;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #fff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 1rem;
  color: #9ca3af;
  transition: color 0.3s ease;
}
.footer-col ul a:hover {
  color: #ffffff;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  font-size: 1rem;
  color: #9ca3af;
}

/* Floating WhatsApp Button */
.chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  z-index: 999;
}
.chat-toggle img {
  width: 35px;
  height: 35px;
}
.chat-toggle:hover {
  transform: scale(1.1);
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

/* Chat-Header */
.chat-header {
  background: #25d366;
  color: #fff;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-header img.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* Chat Close Button */
.chat-close {
  position: absolute;
  top: 5px;
  right: 10px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* Chat Body */
.chat-body {
  padding: 15px;
  background: #f9f9f9;
  max-height: 250px;
  overflow-y: auto;
}
.message {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.message strong {
  display: block;
  color: #333;
  margin-bottom: 4px;
}
.message p {
  margin: 0;
  color: #555;
}
.message .time {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 5px;
  text-align: right;
}

/* Chat Button */
.chat-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  font-weight: bold;
  gap: 8px;
}
.chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  z-index: 999;
}
.chat-toggle .fa-whatsapp {
  font-size: 36px;
  color: #fff;
}
.chat-toggle:hover {
  transform: scale(1.1);
}

/* Mission Section */
.mission-section {
  background: #f9fafb;
  padding: 80px 20px;
  text-align: center;
}
.mission-container {
  max-width: 900px;
  margin: auto;
}
.mission-section h2 {
  font-size: 2.5rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1e3a8a;
  margin-bottom: 20px;
}
.mission-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 15px;
}

/* Why Choose Us */
.choose-us {
  padding: 80px 20px;
  background: #fff;
}
.choose-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.choose-container h2 {
  font-size: 2.5rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1e3a8a;
  margin-bottom: 40px;
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.choose-card {
  background: #f9fafb;
  border-radius: 15px;
  padding: 30px 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.choose-card:hover {
  transform: translateY(-5px);
}
.choose-card i {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 15px;
}
.choose-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111827;
}
.choose-card p {
  color: #4b5563;
  font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-section .container {
    flex-direction: column;
    text-align: center;
  }
  .about-content {
    margin-top: 30px;
  }
  .about-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Services Hero Section*/
.split-header {
  background: #f9fafb;
  padding: 80px 0 0;
}
.split-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.split-header .header-left {
  flex: 1;
}
.split-header .label {
  display: inline-block;
  background: var(--highlight-yellow);
  color: #111827;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.split-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0;
  line-height: 1.2;
}
.split-header h2 .highlight {
  color: #fde047;
}
.split-header .header-right {
  flex: 1;
}
.split-header .header-right p {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.7;
}
/* Responsive Styling */
@media (max-width: 992px) {
  .split-header .container {
    flex-direction: column;
    text-align: center;
  }
  .split-header h2 {
    font-size: 2rem;
  }
}

/* Pricing Section */
.pricing-detailed-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}
.section-header-alt {
  margin-bottom: 50px;
}
.section-header-alt h3 {
  font-size: 2.5rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-header-alt p {
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Section */
.pricing-section {
  background-color: #fff;
  padding: 80px 0;
  text-align: center;
}
.pricing-section .section-header {
  margin-bottom: 50px;
}
.pricing-section .section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1e3a8a;
}
.pricing-section .section-header p {
  font-size: 1rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.pricing-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 40px 25px;
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.pricing-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}
.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}
.pricing-card .plan-description {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 25px;
  min-height: 40px;
}
.pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
  flex-grow: 1;
}
.pricing-card .features-list li {
  font-size: 0.95rem;
  color: #111827;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card .features-list li i {
  color: #00a38d;
}
.pricing-card .btn-primary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  background: var(--gradient-blue);
  color: #ffffff;
  transition: background-color 0.3s ease;
  width: 100%;
}
.pricing-card .btn-primary:hover {
  background: linear-gradient(135deg, #0d2678, #2563eb);
}

/* Highlighted "Most Popular" card */
.pricing-card.highlighted {
  border: 3px solid var(--primary-blue);
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.pricing-card.highlighted:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}
.highlight-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-blue);
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-card .btn-primary-alt {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  background: var(--button-gradient);
  color: #fff;
  transition: transform 0.3s ease;
  width: 100%;
}
.pricing-card .btn-primary-alt:hover {
  background: var(--hover-gradient);
}
.features-list {
  text-align: left;
  padding: 0;
  list-style: none;
  margin: 20px 0;
}
.features-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.features-list i {
  color: #00a38d;
  margin-right: 10px;
}
/* Highlight Card */
.detailed:hover {
  border: 2px solid var(--primary-blue);
  transform: scale(1.05);
}

/* Trust Section */
.trust-section {
  padding: 80px 20px;
  background: #f8f9fa;
}
.trust-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.trust-container h2 {
  font-size: 2.5rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #1e3a8a;
  margin-bottom: 40px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.trust-card {
  background: #f9fafb;
  border-radius: 15px;
  padding: 30px 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.trust-card:hover {
  transform: translateY(-5px);
}
.trust-card i {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 15px;
}
.trust-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111827;
}
.trust-card p {
  color: #4b5563;
  font-size: 1rem;
}
/* Responsive */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Products Section */
.products-section {
  padding: 80px 20px;
  background: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.product-card {
  background: #f9fafb;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-card .card-content {
  padding: 20px;
}
.product-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111827;
}
.product-card p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 15px;
}
.product-price {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 15px;
}
.product-card .btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.product-card .btn-primary:hover {
  background: #1e3a8a;
}

/* Universal Hero Section */
.page-hero-section {
  background: var(--gradient-blue);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.page-hero-container h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.page-hero-container p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}
