body {
  margin: 0;
  font-family: Open Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  color: #777;
  overflow-x: hidden;
  padding-top: 150px;
}

html,
body {
  overflow-x: hidden;
}

/* Navbar background */
/* ================= NAVBAR ================= */
.custom-navbar {
  background-color: #6CBD62;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
  border-bottom: 1px solid #2d0a55;
  height: 150px;
  display: flex;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  
}

/* Nav links */
.navbar .nav-link {
  /* color: #2d0a55 !important; */
  font-weight: 500;
  margin: 0 12px;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

/* Hover */
.navbar .nav-link:hover {
  color: #000 !important;
  background-color: #89B837;
}

/* Active link */
.navbar .nav-link.active {
  color: #000;
  
}

/* ================= DROPDOWN ================= */
.navbar .dropdown-menu {
  border-radius: 10px;
  /* border: none; */
  padding: 10px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-width: 220px;
}

/* Dropdown items */
.navbar .dropdown-item {
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  transition: 0.3s;
}

/* Hover effect */
.navbar .dropdown-item:hover {
  background-color: #b0dea1;
  color: #3d077a;
  padding-left: 25px;
}

.breadcrumb {
  color: #a39b9b;
}

.breadcrumb a {
  text-decoration: none;
  font-size: 14px;
  color: #b0dea1;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ================= DESKTOP HOVER ================= */
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .navbar-nav {
    background: #b0dea1;
    padding: 15px;
  }

  .navbar .nav-link {
    margin: 10px 0;
  }

  .navbar .dropdown-menu {
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    text-align: center;
  }

  .navbar .dropdown-item {
    padding: 12px;
  }
}

.info-box {
  border: 1px solid #e0e0e0;
  padding: 25px;
  background: #fff;
  height: 100%;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: none;
}

.navbar-toggler::before {
  content: "☰";
  font-size: 24px;
  color: #3d077a;
}
/* ///////////////////////////////////////////////////////////////////////////// */
.ruchi-section {
  background: #b0dea1;
  padding: 80px 0;
}

.section-title {
  color: #000;
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 25px;
}

.ruchi-section p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #222;
}

.ruchi-img {
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* /////////////////////////////////////////////////////////////////////////////////////////////// */

.servicee-section {
    background: #f9f9f9;
}

/* Box styling */
.servicee-box {
    padding: 20px;
    height: 100%;
}

/* Icons */
.servicee-icon {
    width: 60px;
    margin-bottom: 15px;
}

/* Heading */
.servicee-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT ALIGNMENT FIX */
.servicee-box p {
    text-align: justify;
    /*same like your screenshot */
    line-height: 1.8;
    /* proper spacing */
    font-size: 14px;
    color: #555;
}

/* Equal height columns */
.servicee-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Responsive */
@media (max-width: 991px) {
    .servicee-box {
        text-align: center;
    }

    .servicee-box p {
        text-align: justify;
    }
}


/* Center everything */
.servicee-box {
    text-align: center;
    padding: 20px;
    height: 100%;
}

/* ICON CENTER FIX */
.servicee-icon {
    width: 60px;
    display: block;
    margin: 0 auto 15px auto;
    /* 🔥 centers image */
    transition: 0.4s ease;
}

/* 🔥 HOVER EFFECT */
.servicee-box:hover .servicee-icon {
    transform: scale(1.2) rotate(5deg);
    /* zoom + slight rotate */
}

/* Optional: add glow effect */
.servicee-box:hover .servicee-icon {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

/* Heading */
.servicee-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.servicee-box p {
    text-align: justify;
    line-height: 1.8;
    font-size: 14px;
    color: #555;
}

/* Responsive */
@media (max-width: 991px) {
    .servicee-box {
        margin-bottom: 20px;
    }
}
/* ////////////////////////////////////////////////////////////////////////////////////// */

.page-title {
  color:#ffffff;
   font-size:35px;
}



.page-header-section {
  margin-top: 0;
  padding-top: 0;
}

.bg-image {
  margin-top: 0 !important;
}

.page-banner,
.bg-image {
  padding-top: 40px;
  /* 🔥 pushes content down */
  padding-bottom: 60px;
}

/* ===== TABLE BASE ===== */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

/* Header */
.custom-table thead {
  background-color: #b0dea1;
  color: #fff;
}

.custom-table th {
  text-align: left;
  padding: 14px;
  font-weight: 600;
}

/* Body */
.custom-table td {
  padding: 12px;
  border: 1px solid #b0dea1;
  color: #555;
  vertical-align: top;
}

/* Alternate rows */
.custom-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Hover */
.custom-table tbody tr:hover {
  background-color: #f1f1f1;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 991px) {
  .custom-table {
    font-size: 14px;
  }

  .custom-table th,
  .custom-table td {
    padding: 10px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .custom-table {
    font-size: 13px;
  }

  .custom-table th,
  .custom-table td {
    padding: 8px;
  }
}

/* Horizontal scroll for small screens */
.table-responsive {
  overflow-x: auto;
}

.contact-info {
  margin-left: 100px;
}

.map {
  margin-right: 100px;
}

/* SECTION BACKGROUND LIKE SCREENSHOT */
.director-section {
  
  padding: 40px 20px;
}

/* CARD */
.director-card {
  padding: 20px;
}

/* IMAGE */
.image img {
  width: 140px;
  height: auto;
  border-radius: 4px;
}

/* NAME */
.subtitle h5 {
  color: #1e73be;
  font-weight: 700;
  margin-top: 10px;
  font-size: 18px;
}

.subtitle p {
  color: #1e73be;
  font-weight: 600;
  margin: 0;
}

.subtitle {
  transition: 0.3s;
}

/* HEADING (MATCH SCREENSHOT STYLE) */
.director-heading {
  color: #1e73be;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* PARAGRAPH */
.content-responsive p {
  color: #000;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.bullet-points li{
    font-size: 14px;
    font-weight: 400;
    color: #000;
     line-height: 1.8;

  text-align: justify;
}


/* ✅ TABLET */
@media (max-width: 992px) {
  .image img {
    width: 130px;
  }

  .director-heading {
    font-size: 22px;
  }
}

/* ✅ MOBILE */
@media (max-width: 768px) {
  .director-section {
    padding: 30px 15px;
  }

  .image img {
    width: 120px;
  }

  .director-heading {
    text-align: center;
    font-size: 20px;
  }

  .content-responsive p {
    font-size: 14px;
  }

  .subtitle h5 {
    font-size: 16px;
  }
}

/* ✅ SMALL MOBILE */
@media (max-width: 480px) {
  .image img {
    width: 100px;
  }

  .content-responsive p {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* Contact SECTION */
.contact-section {
 
  padding: 40px 20px;
}

/* HEADINGS */
.section-title {
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 30px;
  color: #000;
}

/* MAP */
.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* FORM */
form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

form input:focus,
form textarea:focus {
  border-color: #7bbf3f;
}

/* BUTTON */
form button {
  background: #6ad446;
  color: white;
  border: 1px solid #51a835;
  padding: 8px 20px;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #7bbf3f;
}

/* ADDRESS */
.address-section h4 {
  color: #2b6cb0;
  margin-bottom: 15px;
}

.address-section p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

/* ✅ TABLET */
@media (max-width: 992px) {
  .map-container iframe {
    height: 250px;
  }
}

/* ✅ MOBILE */
@media (max-width: 768px) {
  .section-title {
    text-align: center;
  }

  form button {
    width: 100%;
  }

  .address-section {
    text-align: center;
  }
}

/* ✅ SMALL MOBILE */
@media (max-width: 480px) {
  .map-container iframe {
    height: 200px;
  }

  form input,
  form textarea {
    font-size: 13px;
  }
}

/* FOOTER SECTION */
/* ===== FOOTER FINAL FIX ===== */

.footer-section {
  background: black;
  padding: 60px 0;
}

.footer-title {
  color: #b0dea1;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-text {
  color: #fff;
  line-height: 1.8;
  font-size: 14px;
}

/* MAP SIZE PERFECT */
.footer-map {
  width: 100%;
  height: 320px;
  border: 0;
}

/* COPYRIGHT */
.footer {
  background: black;
  color: #b0dea1;
}

.footer a {
  color: #b0dea1;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-map {
    margin-top: 20px;
    height: 250px;
  }
}

.footer-home {
  background: #f5f5f5;
  padding: 50px 0;
}

.footer-home h4 {
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 30px;
}

/* LIST */
.footer-list {
  font-size: 14px;
  list-style: disc;
  padding-left: 20px;
}

.footer-list li {
  margin-bottom: 8px;
}

/* LINKS */
.footer-list a {
  text-decoration: none;
  color: #68a830;
  transition: 0.3s;
}

/* HOVER EFFECT */
.footer-list a:hover {
  color: #3d077a;
  padding-left: 5px;
}

/* TEXT */
.footer-home p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

/* MAP */
.footer-map {
  width: 100%;
  height: 220px;
  border: 0;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .footer-home {
    padding: 40px 20px;
  }

  .footer-map {
    height: 200px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-home {
    text-align: center;
  }

  .footer-list {
    list-style: none;
    padding-left: 0;
  }

  .footer-list li {
    margin-bottom: 10px;
  }

  .footer-map {
    margin-top: 20px;
    height: 180px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .footer-home h4 {
    font-size: 18px;
  }

  .footer-home p {
    font-size: 13px;
  }

  .footer-map {
    height: 160px;
  }
}
