/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffdee;
  color: #0b2953;
}


/* Hero Section */
.hero-section {
  padding: 4rem 2rem;
  background: #fffbea;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-text h2 span {
  color: #0b2953;
}
.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.cta-button {
  background-color: #0b2953;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.cta-button:hover {
  background-color: #24478f;
}


  



/* futuresection CSS */
.future-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.future-heading h2 {
  font-size: 2rem;
  color: #f39c12;
  font-weight: bold;
  margin-bottom: 10px;
}

.future-heading p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.future-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-box {
  width: 250px;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box .icon {
  height: 50px;
  margin-bottom: 15px;
  filter: brightness(0) saturate(100%) invert(44%) sepia(92%) saturate(1919%) hue-rotate(0deg) brightness(105%) contrast(101%);
}

.feature-box h3 {
  color: #003087;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .future-features {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 100%;
    max-width: 350px;
  }
}

/* our Services css */
.services-section {
  padding: 40px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
}

.services-section h2 {
  font-size: 2.5rem;
  color: #101020;
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  width: 250px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.2rem;
  margin: 15px 10px 5px;
  font-weight: bold;
}

.service-card p {
  font-size: 0.95rem;
  padding: 0 10px 15px;
  color: #333;
}

@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
    max-width: 350px;
  }
}


/* about css */
 /* Main container */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background: linear-gradient(to right, #f8f8fc, #ffffff);
  gap: 40px;
  flex-wrap: wrap;
}

/* Image section */
.left {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Text section */
.right {
  flex: 1.2;
  padding: 20px 40px;
}

.right h2 {
  font-size: 2.5em;
  color: #1da1f2;
  margin-bottom: 20px;
}

.right h2 span {
  color: orange;
}

.right p {
  font-size: 1.1em;
  line-height: 1.8em;
  margin-bottom: 20px;
  text-align: justify;              /* ✅ Keep justified text */
  hyphens: auto;                    /* ✅ Enable word breaking */
  overflow-wrap: break-word;        /* ✅ Break long words if needed */
  word-break: break-word;           /* ✅ Break overflowing content */
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1em;
  color: white;
  background-color: orange;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: darkorange;
}

/* Responsive: Mobile view */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    text-align: center;
  }

  .left,
  .right {
    width: 100%;
    padding: 10px;
  }

  .right {
    max-width: 600px;
    margin: 0 auto;
  }

  .right h2 {
    font-size: 2em;
  }

  .right p {
    font-size: 1em;
    line-height: 1.8em;
    text-align: justify;
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .btn {
    margin-top: 10px;
  }
}
