* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  /* font-family: "Open Sans", sans-serif; */
  /* font-family: 'Baloo Bhai' !important; */
  line-height: 1.6;
  background: #fff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
  /* gap: 10px; */
}

.logo img {
  width: 100%;
  height: auto;
  max-width: 180px; /* Optional: keep it within reasonable size */
  display: block;
}

.logo-text h2 {
  font-size: 18px;
  font-weight: 600;
  color: #0055b7;
}

.logo-text span {
  color: #90a68c;
}

.logo-text p {
  font-size: 11px;
  color: #777;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}
.nav .btn {
  color: #fff;
}

.nav a:hover {
  color: #1e3c5e;
  /* font-weight: 500; */
}

.nav .btn {
  background-color: #1e3c5e;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
}

/* Hero */
.hero {
  /* background: #f4f8fc; */
  padding: 60px 20px 120px 20px;
  background-image: url("assets/img/heroBg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  color: #fff;
}
/* .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 0;
} */

/* Ensure content is above overlay */
/* .hero > * {
  position: relative;
  z-index: 1;
} */

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Buttons */
.btn {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.hero-buttons .primary-btn {
  background-color: #1e3c5e;
  color: #fff;
}

.hero-buttons .primary-btn:hover {
  background-color: #1e3c5e;
}

.hero-buttons .secondary-btn {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.hero-buttons .secondary-btn:hover {
  background-color: #1e3c5e;
  color: #fff;
  border: 2px solid #1e3c5e;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  max-width: 550px;
}

.hero-text h1 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
}

.btn-hero {
  background-color: #1e3c5e;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
}

.btn-hero:hover {
  background-color: #3e5b3a;
}

.hero-image {
  flex: 1;
  text-align: center; /* optional: centers the image */
}

.hero .circle-wrapper {
  background-color: transparent;
  border-radius: 50%;
  padding: 12px;
  display: inline-block;
  border: 2px solid #1e3c5e; /* optional: white ring effect */
}

.hero-image img {
  max-width: 100%;
  height: auto;
  width: 360px; /* or any fixed size */
  aspect-ratio: 1 / 1; /* ensures it's a square */
  border-radius: 50%; /* makes it circular */
  object-fit: cover; /* crops and fills without distortion */
  border: 6px solid #f4f4f4; /* optional: matches the white ring effect */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* About */
.about {
  background: #ffffff;
  padding: 120px 20px 80px 20px;
  /* top | right | bottom | left */
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-text {
  flex: 1;
  max-width: 600px;
  padding-right: 40px;
}

.about-text h2 {
  font-size: 28px;
  color: #1e3c5e;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
}

.about-text ul li {
  font-size: 15px;
  color: #2c2c2c;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.about-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0055b7;
}

/* Services */
/* ======= Services Section ======= */
/* ======= Features Section ======= */
.features-section {
  padding: 60px 0;
  /* background-color: #f8f9fa; */
  background-image: url("assets/img/Caraousel5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.features-section .section-header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.features-section .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}

.feature-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.feature-box .icon {
  font-size: 32px;
  color: #007bff;
  margin-bottom: 15px;
}

.feature-box .title {
  font-size: 20px;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 15px;
}

.feature-box .description {
  padding-left: 20px;
  list-style: disc;
  color: #555;
  font-size: 15px;
}

.feature-box .description li {
  margin-bottom: 8px;
}

/* Counters */
.counter-section {
  position: absolute;
  display: flex;
  align-content: center;
  justify-content: center;
  margin-left: 15%;
  padding: 20px 0px;
}

.counter-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.counter-card {
  display: flex;
  align-items: center;
  margin: 20px;
  gap: 15px;
  min-width: 220px;
}

.counter-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.counter-info h3 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #1a1a1a;
}

.counter-info p {
  margin: 0;
  font-size: 14px;
  color: #777;
}
/* BUSINESS GROW */
.business-grow {
  padding: 60px 20px;
  background-color: #f7fafd;
}
.business-grow-content {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  display: inline;
}
.business-grow .business-grow-content h2 {
  color: #1e3c5e;
  /* font-weight: 700; */
  font-size: 28px;
  text-align: center;
  margin-bottom: 10px;
}

.business-grow p {
  color: #444;
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.business-grow .card-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.business-grow .card {
  position: relative; /* Important for absolute pseudo elements */
  background-color: white;
  border-radius: 20px;
  padding: 10px 20px 0px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
  cursor: pointer;
  overflow: visible; /* So pseudo-elements are visible outside */
}

.business-grow .card::before,
.business-grow .card::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid #1e3c5e;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 0 0 0 25px; /* Curve for top-left L */
}

.business-grow .card::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
  border-radius: 25px 0 0 0; /* curved L for top-left */
}

.business-grow .card::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 25px 0; /* curved L for bottom-right */
}

.business-grow .card:hover {
  transform: translateY(-5px);
  background-color: #1e3c5e;
  color: white;
}
.business-grow .card:hover img {
  /* opacity: 0;
  transition: opacity 0.3s ease; */
  display: none;
}

.business-grow .card:hover h5,
.business-grow .card:hover p,
.business-grow .card:hover span {
  color: white;
}

.business-grow .card:hover::before,
.business-grow .card:hover::after {
  opacity: 1;
  transform: scale(1.1);
}

.business-grow .card img {
  height: 40px;
  width: 40px;
  display: flex;
  /* align-items: center;
  justify-content: center; */
}

.business-grow .card h5 {
  margin-top: 10px;
  color: #1e3c5e;
  text-align: left;
  font-size: 16px;
}

.business-grow .card p {
  color: #555;
  margin-top: 10px;
  text-align: left;
}

.contact {
  /* background: #f7fafd; */
  padding: 80px 20px;
  background-image: url("assets/img/2.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.contact .form {
  max-width: 800px;
  /* margin: auto; */
  background: rgba(128, 128, 128, 0.9);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact .form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact .form #emailForm button {
  background-color: #1e3c5e;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact .form .close {
  position: absolute;
  padding: 4px 8px;
  top: 10px;
  right: 10px;
  font-size: 12px;
  background-color: #1e3c5e;
  color: #fff;
  cursor: pointer;
}
.contact .form .form-group {
  flex: 1;
  min-width: 250px;
}

.contact .form .form-group input,
.contact .form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  /* margin-bottom: 10px; */
}

.contact-info-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
}
.contact-info-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-info-section .align-items-stretch {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  width: -webkit-fill-available;
}

.map-container {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-details {
  padding: 20px 30px;
  background: #ffffff;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h3 {
  font-size: 20px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item address,
.contact-item p,
.contact-item a {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
}

.contact-item a:hover {
  color: #1e3c5e;
  text-decoration: none;
}
/* Make inputs and selects same height */
.form-control,
select.form-control {
  height: calc(2.25rem + 2px); /* same as Bootstrap input height */
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
}
#emailForm .form-control {
  height: 45px; /* fixed height */
}

#emailForm #content {
  height: auto; /* fixed height */
}

.footer-section {
  background-color: #002b36; /* dark blue/gray tone */
  color: #ffffff;
  padding: 10px 0;
  font-size: 15px;
}

.footer-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-section .copyright {
  margin-bottom: 10px;
}

.footer-section .credits {
  font-size: 14px;
  color: #bbbbbb;
}

.footer-section a {
  color: #00bcd4;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

/* ------------------ MEDIA QUERIES ------------------ */
/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: #1e3c5e;
  cursor: pointer;
}
.nav {
  display: flex;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 10px;
    top: 12px;
  }
  .nav {
    display: none !important; /* Hide menu initially */
  }

  .nav .open {
    display: flex !important; /* Show when toggled */
  }

  .nav.open {
    display: flex !important;
  }

  .nav ul {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .nav a {
    font-size: 16px;
    padding: 10px 0;
  }

  .nav .btn {
    width: 100%;
    text-align: center;
  }
  .counter-section {
    display: none;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 30px 20px;
  }
  .about .about-content .about-image img {
    display: none;
  }
  /* Global */
  .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 15px;
  }

  /* Header */
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
  }

  .nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .nav .btn {
    width: 100%;
    text-align: center;
  }

  .logo img {
    max-width: 140px;
  }

  .logo-text h2 {
    font-size: 16px;
  }

  /* Hero Section */
  .hero {
    padding: 40px 20px 80px 20px;
    text-align: center;
  }

  .hero-content {
    flex-direction: column;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 32px;
    color: black;
  }

  .hero-text p {
    font-size: 16px;
    color: black;
  }

  .hero-buttons .secondary-btn {
  border: 2px solid #1e3c5e;
  color: #1e3c5e;
  background: transparent;
}

.hero-buttons .secondary-btn:hover {
  background-color: #1e3c5e;
  color: #fff;
  border: 2px solid #1e3c5e;
}

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-image img {
    width: 250px;
    aspect-ratio: 1 / 1;
  }

  /* About Section */
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    padding: 0;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-text p,
  .about-text ul li {
    font-size: 14px;
  }

  .about-image {
    margin-bottom: 30px;
  }

  /* Features Section */
  .features-section {
    padding: 40px 10px;
  }

  .features-section .section-header h2 {
    font-size: 26px;
  }

  .feature-box {
    padding: 20px;
    margin-bottom: 20px;
  }

  /* Business Grow Cards - 2 per row */
  .business-grow .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Counter Section */
  .counter-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  /* Contact */
  .contact .container {
    padding: 0px;
  }
  .contact .form {
    width: 100%;
    margin: auto;
  }
  .contact .form .row {
    flex-direction: column;
    gap: 0;
  }

  .contact .form .form-group input,
.contact .form .form-group textarea {
    width: 100%;
    margin-bottom: 10px;
  }

  .contact-info-section .align-items-stretch {
    flex-direction: column;
  }

  .map-container {
    min-height: 250px;
    margin-bottom: 20px;
  }
  .map-container iframe {
    height: 400px;
  }

  .contact-details {
    width: 100%;
  }

  /* Footer */
  .footer-section .container {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 18px;
  }

  .business-grow .card-grid {
    grid-template-columns: 1fr;
  }

  .feature-box .description {
    padding-left: 0;
  }
}
