/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background-color: #f1f5f9;
  color: #003049;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, border-bottom 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* When scrolled down, remove the shadow */
.site-header.transparent-border {
  box-shadow: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-img img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  position: relative;
  padding-bottom: 5px;
  color: #003049;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background-color: #b2d94a; /* Green highlight */
  transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}
/* Dropdown Menu for Services */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #eee;
  padding: 10px 0;
  display: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 10;
  min-width: 220px;
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: none;
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #003049;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: #f2f2f2;
}

.service-icons-strip {
  background-color: #ffffff;
  padding: 30px 20px;
}

.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  text-align: center;
}

.service-box {
  color: #ffffff;
  padding: 25px 10px;
  border-radius: 6px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.service-box i {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.service-box p {
  margin-top: 5px;
  font-size: 1rem;
}

/* Bhoyi Logo Color Variants */
.service-blue {
  background-color: #0077b6; /* logo blue */
}

.service-green {
  background-color: #b2d94a; /* logo green */
  color: #003049;
}

.service-red {
  background-color: #d62828; /* logo red */
}

.service-dark {
  background-color: #444;
}

/* Hover effect */
.service-box:hover {
  transform: translateY(-5px);
}
.service-summary h3 a {
  color: #003049; /* Brand primary color */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease;
}

.service-summary h3 a:hover {
  color: #05668d; /* Teal highlight on hover */
}

/* Hero Section */
.hero {
  background-color: #e6f0f3;
  padding: 80px 20px;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #003049;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #333;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.btn {
  display: inline-block;
  background-color: #003049; /* Primary blue */
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #001f33;
}

/* About Section */
.about-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  color: #003049;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #444;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    margin-top: 20px;
  }
}
.services-preview {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.services-preview h2 {
  font-size: 2rem;
  color: #003049;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-summary:hover {
  transform: translateY(-5px);
}

.service-summary h3 {
  color: #003049;
  margin-bottom: 10px;
}

.service-summary p {
  color: #555;
}

/* "See All Services" Button */
.services-preview .btn {
  margin-top: 30px;
  background-color: #003049;
}

.services-preview .btn:hover {
  background-color: #b2d94a;
}

.service-summary {
  background-color: white;
  border-top: 5px solid #b2d94a;
  padding: 25px;
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-summary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Why Choose Us Section */
.feature-section {
  background-color: #f1f5f9; /* Dark blue for trust and professionalism */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.feature-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.feature-title {
  font-size: 2.4rem;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #003049; /* Teal highlight */
  text-transform: uppercase;
}

.feature-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0;
  margin: 0;
}

.feature-points li {
  background: #05668d; /* Slightly lighter blue */
  padding: 25px 20px;
  border-radius: 12px;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 600;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.15);
  position: relative;
  transition: background-color 0.3s ease;
}

.feature-points li::before {
  content: "✔";
  color: #00a896;
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.feature-points li {
  padding-left: 50px;
}

/* Hover effect */
.feature-points li:hover {
  background-color: #028090;
  cursor: default;
}
.service-page {
  background-color: #ffffff;
  padding: 60px 20px;
}

.service-title {
  font-size: 2.2rem;
  color: #003049;
  margin-bottom: 20px;
  text-align: center;
}

.service-list {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 20px;
  color: #05668d;
  font-size: 1rem;
  line-height: 1.8;
}

.service-list li {
  margin-bottom: 12px;
}

/* Quote/Contact Section */
.quote-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.quote-section h2 {
  font-size: 2rem;
  color: #003049;
  margin-bottom: 10px;
}

.quote-section p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
}

.quote-form {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 40px 30px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #003049;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  background-color: #e6f0f3;
  font-family: inherit;
  transition: background-color 0.3s ease;
}

.form-group textarea {
  border-radius: 20px;
  min-height: 120px;
  resize: vertical;
}

.quote-form .btn {
  background-color: #003049;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.quote-form .btn:hover {
  background-color: #05668d;
}

/* Form status message */
#my-form-status {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #05668d;
  text-align: center;
}

.site-footer {
  background-color: #003049;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 30px auto;
}

.footer-column h3 {
  color: #00a896; /* Green */
  margin-bottom: 10px;
}

.footer-column p,
.footer-column a {
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 6px;
  display: block;
}

.footer-column a:hover {
  color: #9bf353;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #ccc;
  border-top: 1px solid #00567a;
  padding-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
/* === News Section Styles === */
.newsletter-section {
  background-color: #fdfdfd;
  padding: 60px 20px;
  text-align: center;
}

.newsletter-section h2 {
  color: #9bf353;
  font-size: 2rem;
  margin-bottom: 10px;
}

#news-date {
  display: block;
  font-size: 1rem;
  color: #4d4d4d;
  margin-bottom: 30px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 30px auto;
  padding: 0 10px;
}

.news-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  text-decoration: none;
  color: #4d4d4d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}

.news-card h3 {
  font-size: 1.2rem;
  color: #003049;
  margin-bottom: 10px;
}

.news-card p {
  font-size: 0.95rem;
  color: #4d4d4d;
}
.about-page-section,
.webdev-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.about-box,
.webdev-section {
  margin-top: 30px;
}

.about-box h3,
.webdev-section h2 {
  color: #003049;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.about-box p,
.webdev-section p,
.webdev-section ul {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  max-width: 900px;
  margin-bottom: 20px;
}

.about-box ul,
.webdev-section ul {
  color: #05668d;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-box ul li,
.webdev-section ul li {
  margin-bottom: 10px;
}

.about-page-section .section-title,
.webdev-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #003049;
  margin-bottom: 30px;
}

.about-page-section .lead,
.webdev-section .lead {
  text-align: center;
  color: #444;
  font-size: 1.1rem;
  margin: 0 auto 30px;
  max-width: 850px;
}

.see-more .btn {
  background-color: #003049;
  color: #ffffff;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.see-more .btn:hover {
  background-color: #b2d94a;
}

.services-intro {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.services-intro .section-title {
  font-size: 2.4rem;
  color: #003049;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-description {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 10px auto;
}

/* === Services Grid on services.html === */
.services-preview {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.services-preview h2 {
  font-size: 2rem;
  color: #003049;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-summary {
  background-color: white;
  border-top: 5px solid #b2d94a;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-summary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.service-summary h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-summary h3 a {
  color: #003049;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-summary h3 a:hover {
  color: #05668d;
}

.service-summary p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .service-block {
    padding: 25px 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-block h2 {
    font-size: 1.3rem;
  }
}
.service-block-section {
  background-color: #f1f5f9;
  padding: 60px 20px;
}

.service-block {
  background-color: #ffffff;
  padding: 40px 30px;
  border-left: 6px solid #b2d94a;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  margin: 0 auto;
}

.service-block-title {
  font-size: 2rem;
  color: #003049;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-block-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.7;
}

.service-bullets {
  list-style: none;
  padding-left: 0;
}

.service-bullets li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #05668d;
  line-height: 1.6;
}

.service-bullets li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #b2d94a;
  font-weight: bold;
  font-size: 1rem;
}

/* === Services Intro with Image === */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  background-color: #f9f9f9;
  padding: 60px 20px;
  border-bottom: 1px solid #e2e2e2;
}

.intro-image img {
  width: 60%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.intro-text {
  text-align: left;
}

.intro-text .section-title {
  font-size: 2.2rem;
  color: #003049;
  margin-bottom: 20px;
}

.intro-text .section-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  max-width: 850px;
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-image {
    margin-bottom: 30px;
  }

  .intro-text {
    text-align: center;
  }
}

/* Services Page Styling */
.page-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.section-title {
  font-size: 2.2rem;
  color: #003049;
  text-align: center;
  margin-bottom: 30px;
}

.page-section p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 850px;
}

.page-section ul {
  color: #05668d;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
}

.page-section ul li {
  margin-bottom: 10px;
}

/* === CONTACT PAGE === */
.contact-hero {
  background-color: #e6f0f3;
  padding: 80px 20px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  color: #003049;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact form and newsletter */
.contact-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 25px;
  background-color: #e6f0f3;
  margin-bottom: 15px;
  font-size: 1rem;
}

.contact-form .form-row {
  display: flex;
  gap: 15px;
}

.contact-form .form-row input {
  flex: 1;
}

.contact-form button.btn {
  background-color: #003049;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

.contact-form button.btn:hover {
  background-color: #05668d;
}

/* Newsletter Card */
.newsletter-card {
  background-color: #05668d;
  color: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.newsletter-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.newsletter-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.newsletter-card input {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  border: none;
  margin-bottom: 10px;
}

.newsletter-card .btn-secondary {
  background-color: #b2d94a;
  color: #003049;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  width: 100%;
}

.newsletter-card .btn-secondary:hover {
  background-color: #a0c83a;
}

/* Contact Cards */
.contact-cards {
  background-color: #f1f5f9;
  padding: 60px 20px;
}

.cards-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-card {
  flex: 1;
  min-width: 250px;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-card i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #003049;
}

.contact-card h4 {
  font-size: 1.2rem;
  color: #003049;
  margin-bottom: 8px;
}

.contact-card p {
  color: #444;
}

/* Map Section */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-form .form-row input {
    width: 100%;
  }
}

/* Responsive Adjustments */
