* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: #2c3e50;
  line-height: 1.6;
}

/* Header */
/* .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #0d3b66;
}
.logo img {
  height: 45px;
} */
/* .logo span { color: #6ac400; } */

/* .nav a {
  text-decoration: none;
  color: #444;
  margin: 0 15px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
} */

/* .nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
} */
/* .nav a:hover { color: #6ac400; }

.quote-btn {
  background: #6ac400;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}
.quote-btn:hover { background: #5ab000; } */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  background: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px; /* space between logo and nav links */
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #78c000; /* optional hover color */
}

.quote-btn {
  background-color: #78c000;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.quote-btn:hover {
  background-color: #66a800;
}


/* Hero Section */
.hero {
  background-image: url('images/hero1.jpg'); /* replace with your image */
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end; /* positions overlay near bottom */
  justify-content: left;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  padding: 5px 40px;
  border-radius: left 10px;
  /* margin: 40px; */
  color: #003366;
  max-width: 600px;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #003366;
}

.breadcrumb {
  font-size: 1rem;
  color: #333;
}

.breadcrumb a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.breadcrumb span {
  margin: 0 5px;
  color: #666;
}
  .back-btn {
      position: absolute;
      left: 20px;
      top: 20%;
      transform: translateY(-50%);
      background: #fff;
      color: #145DA0;
      padding: 8px 14px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 14px;
      font-weight: bold;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      transition: 0.3s;
    }

    .back-btn:hover {
      background: #e6e6e6;
    }
/* .hero {
  background: url("/images/hero1.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
} */
/* Back Button */
  
/* About Section */
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 8%;
  align-items: center;
}
.about-text {
  flex: 1 1 45%;
}
.about-text h2 {
  font-size: 2rem;
  color: #0d3b66;
  margin-bottom: 15px;
}
.about-images {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.about-images img {
  width: 100%;
  border-radius: 10px;
}

/* Definition */
.definition {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* padding: 0px 0%; */
  background: #f5f9f6;
}
.definition-content {
  flex: 1 1 50%;
}
.definition-content h2 {
  color: #0d3b66;
  margin-bottom: 15px;
}
.definition-image {
  flex: 1 1 45%;
  text-align: center;
}
.definition-image img {
  width: 100%;
  border-radius: right 10px;
}

/* Features */
.features {
  background: #0d3b66;
  color: #fff;
  text-align: center;
  padding: 60px 8%;
}
.features h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-item {
  background: #fff;
  color: #333;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.feature-item i {
  font-size: 2rem;
  color: #6ac400;
  margin-bottom: 10px;
}
.feature-item h3 {
  color: #0d3b66;
  margin-bottom: 10px;
}

/* Floating Buttons */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 10;
}
.whatsapp-float:hover { background: #1da851; }

.book-consult {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #a4d007;
  padding: 10px 20px;
  border-radius: 10px 0 0 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.book-consult a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}


/* ======== FOOTER ======== */
.footer {
  background: #111;
  color: #ddd;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 50px 60px;
}

.footer-section h3 {
  color: #7ab800;
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #7ab800;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-logo {
  height: 60px;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 14px;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #7ab800;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #222;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icons a.facebook:hover { background-color: #1877f2; }
.social-icons a.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icons a.youtube:hover { background-color: #ff0000; }
.social-icons a.linkedin:hover { background-color: #0077b5; }

.footer-bottom {
  background: #0a0a0a;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #999;
  border-top: 1px solid #333;
}

.footer-bottom .highlight {
  color: #7ab800;
}
