/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Gilroy', sans-serif;
}

html, body {
  height: 100%;
  width: 100%;
}

/* ===== Global Body ===== */
body {
  background-color: #f6f4ef;
  padding: 40px 20px;
  color: #333;
  line-height: 1.6;
}

/* ===== Main Container ===== */
#main {
  width: 100%;
  border-top: 2px solid black;
}

/* ===== Navbar ===== */
#nav {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  background-color: #fff;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  margin-top: 1%;
}

#nav h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: bold;
  color: #000;
  margin-right: 15px;
  white-space: nowrap;
}

#nav h1 span {
  color: #001AFF;
}

#nav-links {
  display: flex;
  flex: 1;
  height: 100%;
}

#nav-links a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#nav-links a h2 {
  font-size: clamp(0.8rem, 3vw, 1rem);
  font-weight: 600;
  padding: 0 10px;
  display: flex;
  align-items: center;
}

#nav-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: black;
}

#nav-links a:first-child::before {
  display: none;
}

#nav-links a:hover {
  background-color: #001AFF;
  color: #fff;
}

/* ===== Start Section ===== */
#start {
  text-align: center;
  padding: 20px;
}

#second {
  margin-top: -10px;
}

#a {
  font-size: 18px;
  font-weight: 500;
  color: #001AFF;
  background-color: rgba(0,26,255,0.1);
  border: 3px solid rgba(0,26,255,0.1);
  border-radius: 10px;
  padding: 5px 10px;
  display: inline-block;
}

#b {
  margin-top: 10px;
}

#b h1 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}

#b span {
  color: #001AFF;
}

#card1 {
  margin-top: 1px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
}

#g {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

/* ===== Story Section ===== */
.story-section {
  max-width: 1200px;
  margin: 40px auto;
}

.tagline {
  background-color: #e2e6ff;
  color: #001AFF;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
}

#main-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

#main-title span {
  color: #001AFF;
}

.story-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.story-text {
  flex: 1 1 500px;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

.story-cards {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card3 {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 26, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card3:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 26, 255, 0.3);
}

.card-icon {
  font-size: 40px;
  background: rgba(0, 26, 255, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #001AFF;
}

h3 {
  font-size: 1.3rem;
  color: #001AFF;
  margin-bottom: 10px;
}

.card3 p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ===== Services Section ===== */
#services {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1200px;
  justify-content: center;
  margin: 40px auto;
}

.service-card {
  background: #fff;
  border: 2px solid #001AFF;
  border-radius: 16px;
  padding: 35px 25px;
  flex: 1 1 300px;
  box-shadow: 0px 6px 20px rgba(0, 26, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 8px 25px rgba(0, 26, 255, 0.25);
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(0, 26, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #001AFF;
  font-size: 28px;
}

ul {
  list-style: none;
  margin-bottom: 20px;
}

ul li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #222;
}

ul li::before {
  content: "•";
  color: #001AFF;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: 0;
}

.highlight {
  background: #001AFF;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
}

/* ===== CTA Box ===== */
.cta-container {
  background-color: #f0f4ff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  margin: 40px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-container h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.cta-container h1 a {
  color: #0056ff;
  text-decoration: none;
}

.cta-container p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.cta-container button {
  background-color: #0056ff;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-container button:hover {
  background-color: #0041cc;
}

/* ===== Contact Section ===== */
.contact-section {
  text-align: center;
  padding: 50px 20px;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-section h2 span {
  color: #001AFF;
}

.contact-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #555;
}

.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
  justify-content: center;
}

/* Left Info */
.contact-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-item .icon {
  background: #f0f3ff;
  color: #001AFF;
  font-size: 1.2rem;
  padding: 10px;
  border-radius: 10px;
  margin-right: 15px;
}

.info-item strong {
  display: block;
  margin-bottom: 5px;
}

/* Highlight Box */
.highlight-box {
  background: #001AFF;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
}

/* Right Form */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: left;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
}

textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Send Button */
.send-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #001AFF;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.send-btn:hover {
  background: #000ccc;
}

/* Thank You Message */
.thank-you {
  display: none;
  text-align: center;
  background: #f0f3ff;
  border: 2px solid #001AFF;
  padding: 25px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #001AFF;
  margin-top: 20px;
  animation: fadeIn 0.5s ease-in-out;
}

.thank-you p {
  font-size: 0.95rem;
  font-weight: normal;
  margin-top: 8px;
  color: #333;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  #services {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .cta-container {
    padding: 20px;
  }

  .cta-container h1 {
    font-size: 24px;
  }

  .cta-container p {
    font-size: 16px;
  }

  .cta-container button {
    font-size: 16px;
    padding: 12px 24px;
  }

  .cta-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 26, 255, 0.3);
  }

}.hero-banner {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
 .hero-button  {
  position: absolute;
  bottom: 30px;
  background-color: #e3ef26;
  color: #011AFF;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
 } 
.hero-button {
  display: inline-block;
  background: #e3ef26;
  color: #001AFF;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none; /* removes underline */
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 20px;
}

.hero-button:hover {
  color: black;
}



.hero-button:hover {
  background-color: #ffffff;
}
 .highlight-box p{
    color: white;
    html {
  scroll-behavior: smooth;
}html {
  scroll-behavior: smooth;
}
 }
/* Hero section base */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  background: #f9f9f9;
  flex-wrap: wrap; /* allow wrap for mobile */
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #001AFF;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

.hero-button {
  display: inline-block;
  background: #e3ef26;
  color: #001AFF;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-button:hover {
  background: #fcfcfc;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-button {
    margin-top: 15px;
  }

  .hero-image {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}
