/* ===========================
   Table of Content
   ===========================
   1. Global Reset
   2. Navbar (Desktop)
   3. Dropdown Menu
   4. Offcanvas Menu (Mobile)
   5. Responsive Styles
=========================== */

/* 1. Global Reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Times New Roman', Times, serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 12px;
}

a {
  text-decoration: none;
}

body,
html {
  scroll-behavior: smooth;
}

.main_wraP {
  overflow: hidden;
}

/* ---------- Top Header ---------- */
/* ===== Top Header ===== */
.top-header {
  background-color: #000;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  margin: -20px 0;
}

@media (max-width:768px) {
  .top-header {
    margin: -5px 0;
  }

  /* only fix for keeping date and time side by side */
  .top-header .contact-info {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 8px;
  }

  .top-header .contact-details,
  .top-header .social-icons {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .top-header .social-icons::before {
    /* content: " || "; */
    color: #fff;
    margin: 0 4px;
    font-weight: 500;
  }
}

.top-header i {
  color: #ffcc00;
  margin-right: 6px;
  font-size: 16px;
}


.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-details,
.social-icons {
  flex: 1 1 100%;
  text-align: center;
}

/* ===== Desktop View ===== */
@media (min-width: 768px) {
  .contact-details {
    text-align: left;
    flex: 1;
  }

  .social-icons {
    text-align: right;
    flex: 1;
  }
}

/* ===== Mobile View ===== */
@media (max-width: 767px) {
  .contact-info {
    flex-direction: column;
    text-align: center;
    margin: -20px 0;
  }

  .contact-details,
  .social-icons {
    margin: 3px 0;
  }
}


.social-icons a {
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #e0f7fa;
  transform: scale(1.1);
}

/* Separator only on medium screens and up */
.separator {
  margin: 0 10px;
}

/* Responsive behavior */
@media (max-width:768px) {
  .contact-info {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    margin-top: 5px;
  }

  .social-icons {
    display: none;
  }
}


@media (max-width: 480px) {
  .top-header {
    font-size: 13px;
    padding: -3px;
  }

  .social-icons a {
    font-size: 16px;
    margin-right: 4px;
  }
}



/* ---------- Navbar ---------- */
.navbar_wrapper {
  width: 100%;
  transition: all 0.3s ease-in-out;
  background-color: #26a7d3;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #26a7d3;
  /* or your site color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1050;
}

/* shadow when scrolled */
.navbar_wrapper.scrolled {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Fallback: fixed header (if you prefer always-fixed) */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}




.navbar-brand img {
  height: 45px;
  width: 100%;
  margin-left: 30px;
}

@media (max-width:765px) {
  .navbar-brand img {
    height: 60px;
    width: 100%;
    margin-left: 0;
  }
}

.navbar-toggler {
  background: transparent;
  color: #000000;
  border: 1px solid #000;
  padding: 2px 8px;
  border-radius: 5px;
}

.navbar-toggler {
  border-color: #000;
  /* makes it visible */
}

.navbar-toggler-icon {
  background-color: rgba(0, 0, 0, 0.1);
}


.navbar-nav .nav-link {
  color: #ffffff;
  font-weight: 500;
  padding: 8px 16px;
  transition: color 0.3s ease;
  font-size: 17px;
  margin: 10px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #312c1f !important;
  font-size: 18px;
  font-weight: 600;
  /* green accent */
}

.offcanvas-header {
  border-bottom: 1px solid #000;
}

.offcanvas-header img {
  max-height: 70px;
}

.offcanvas-title {
  display: flex;
}

.offcanvas-body {
  background: #26a7d3;
}

.offcanvas.show:not(.hiding),
.offcanvas.showing {
  transform: none;
  width: 79%;
}

.Consult_btn {
  background-color: #dab859;
  padding: 10px 35px;
  margin-right: 20px;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
  color: #000;
}

.Consult_btn a {
  color: #000;
}

.Consult_btn:hover {
  background: #15367D;
}

@media (max-width:765px) {
  .Consult_btn {
    background-color: #15367D;
    padding: 10px;
    width: 50%;
    margin-right: 20px;
    margin-top: 10px;
    transition: 0.3s ease-in-out;
  }
}


@media (max-width: 991px) {
  .dropdown-menu {
    border: none;
    box-shadow: none;
  }

  .dropdown-item {
    padding-left: 25px;
  }
}

.offcanvas-contact {
  position: relative;
  padding-top: 20px;
  margin-top: 20px;
}

.offcanvas-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 1px;
  background-color: #000;
  /* Black border */
  border-radius: 2px;
}

.contact-info {
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
}

.contact-info i {
  margin-right: 6px;
  color: #ffffff;
  font-size: 20px;
}

#current-date,
#current-time {
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-info {
    text-align: center;
    flex-direction: column;
    gap: 5px;
  }
}



/* navbar-exit */

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff4b2b;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.whatsapp-btn i {
  margin-right: 8px;
}

.whatsapp-btn:hover {
  background-color: #e63e1f;
}

/* === Responsive Adjustments === */
@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }

  .offcanvas-contact {
    display: block;
  }

  .offcanvas-contact h6 {
    color: #000000;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 20px;
  }

  .offcanvas-contact p {
    color: #fff;
  }

}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}


/* WhatsApp Button */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff4b2b;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.whatsapp-btn i {
  margin-right: 8px;
}

.whatsapp-btn:hover {
  background-color: #e63e1f;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }

  .offcanvas-contact {
    display: block;
  }
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}



/* navbar exit */


/* <!-- search section --> */
.search-section {
  background: #fff;
  text-align: center;
  padding: 20px 0;
  margin: 30px 0 25px 0;
}

.search-heading h2 {
  font-size: 1.6rem;
  color: #333;
  font-weight: 5 00;
  margin-bottom: 30px;
  margin-top: 50px;
}

.search-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  max-width: 750px;
  height: 70px;
  width: 90%;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #333;
  padding: 8px 12px;
}

.mic-icon {
  color: #4285F4;
  font-size: 1.2rem;
}

.search-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: #000;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.search-btn:hover {
  color: #ff4b2b;
}

/* Responsive */
@media (max-width: 768px) {

  .search-section {
    margin-top: 20px;
  }

  .search-heading {
    font-size: 24px;
    margin-bottom: 21px;
    margin-top: -20px;
  }

  .search-box {
    padding: 8px 15px;
  }

  .search-input {
    font-size: 0.95rem;
  }
}

/* <!-- search section exit --> */


/* <!-- announcement --> */
.result-announcement {
  background: #fff;
  padding: 30px 0;
}

.result-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #fff7f7, #fff);
  border: 1px solid #f4e4e4;
  border-radius: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.result-box:hover {
  transform: translateY(-3px);
}

.result-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.result-content p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
}

.result-btn {
  display: inline-block;
  background-color: #1e56fc;
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.result-btn:hover {
  background-color: #1744c3;
  text-decoration: none;
}

.result-logo img {
  width: 190px;
  height: 110px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .result-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .result-logo img {
    width: 180px;
    margin-bottom: -19px;
  }
}


/* <!-- announcement exit --> */


/* <!-- feature-section grid --> */
.feature-section {
  background: #fff;
  padding: 40px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  justify-content: center;
}

.feature-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature-item {
  background: #fff;
  border-radius: 15px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.feature-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  object-fit: contain;
}

.feature-item p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #000;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-item img {
    width: 50px;
    height: 50px;
  }

  .feature-item p {
    font-size: 0.9rem;
  }
}

/* <!-- feature-section grid exit --> */


/* <!-- explore-section grid --> */
.explore-section {
  background: #fff;
  padding: 40px 0;
  margin-top: -30px;
}

.explore-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  justify-content: center;
}

.explore-item {
  background: #fff;
  border-radius: 15px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.explore-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.explore-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  object-fit: contain;
}

.explore-item p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #000;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .explore-item img {
    width: 50px;
    height: 50px;
  }

  .explore-item p {
    font-size: 0.9rem;
  }
}

/* <!-- explore-section grid exit --> */

/* ===== Latest Updates Section ===== */
.latest-updates {
  padding: 30px 20px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #080808;
  max-width: 1200px;
  margin: 40px auto;
  font-family: "Poppins", sans-serif;
}

.latest-updates h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 35px;
}

.latest-updates .icon {
  color: #d10000;
  font-size: 18px;
}

.latest-updates .highlight {
  color: #204ecf;
  text-decoration: underline;
}

@media (max-width:768px) {
  .latest-updates {
    margin: 0 5px;
    border-radius: 8px;
  }
}

/* ===== Grid Layout ===== */
.updates-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.updates-column {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== Update Item (Clickable Card) ===== */
.update-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.box1 {
  background: #e3f2fd;
}

/* Light Blue */
.box2 {
  background: #fce4ec;
}

/* Light Pink */
.box3 {
  background: #e8f5e9;
}

/* Light Green */
.box4 {
  background: #fff3e0;
}

/* Light Orange */
.box5 {
  background: #ede7f6;
}

/* Light Purple */
.box6 {
  background: #f9fbe7;
}

/* Light Yellow */
.box7 {
  background: #e0f7fa;
}

/* Aqua */
.box8 {
  background: #fbe9e7;
}

/* Peach */
.box9 {
  background: #f3e5f5;
}

/* Lavender */
.box10 {
  background: #fff8e1;
}

/* Cream */
.box11 {
  background: #e0f2f1;
}

/* Teal light */
.box12 {
  background: #f1f8e9;
}

/* Mint */

.update-item:hover {
  background: #f9f9ff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.update-item img {
  width: 63px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

/* ===== Text Styles ===== */
.update-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  line-height: 1.5;
  margin-top: 25px;
  margin-bottom: 4px;
}

.update-content .date {
  font-size: 13px;
  color: #2a56cc;
}

/* ===== View All Button ===== */
.view-all {
  text-align: center;
  margin-top: 25px;
}

.view-all a {
  display: inline-block;
  padding: 10px 22px;
  background: #001277;
  color: #ffffff;
  font-weight: 600;
  border-radius: 25px;
  transition: 0.3s;
  text-decoration: none;
}

.view-all a:hover {
  background: #080b14;
  color: #fff;
}

.view-all small {
  display: block;
  font-size: 12px;
  color: #777;
  margin-top: 6px;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .updates-column {
    flex: 1 1 100%;
  }

  .update-item img {
    width: 70px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .updates-grid {
    flex-direction: column;
    gap: 25px;
  }

  .update-item {
    flex-direction: row;
    align-items: center;
    padding: 8px;
  }

  .update-content h3 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .update-item img {
    width: 46px;
    height: 50px;
  }

  .update-content h3 {
    font-size: 14px;
  }
}

/* <!-- latest-updates exit --> */



/* <!-- take-ideas --> */
.take-ideas {
  background: #f9f9f9;
  text-align: center;
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD STYLE */
.idea-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.idea-card i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}

.idea-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.idea-card p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 20px;
}

.idea-card .btn {
  background-color: #007bff;
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

.idea-card .btn:hover {
  background-color: #0056b3;
}

/* Hover Effect */
.idea-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE GRID */
@media (max-width: 992px) {
  .ideas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ideas-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .ideas-grid {
    grid-template-columns: 1fr;
  }
}

/* <!-- take-ideas exit --> */



/* <!-- option-section grid --> */
.option-section {
  background: #fff;
  padding: 40px 0;
}

.option-section h2 {
  margin: 20px 0 40px 0;
  font-weight: 700;
  color: #222;
}

/* === Card Styling === */
.option-item {
  display: block;
  background: #fff;
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.option-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  object-fit: contain;
}

.option-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.option-item p {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

/* === Box Colors === */
.box1 {
  background: #e3f2fd;
}

/* Light Blue */
.box2 {
  background: #fce4ec;
}

/* Light Pink */
.box3 {
  background: #e8f5e9;
}

/* Light Green */
.box4 {
  background: #fff3e0;
}

/* Light Orange */
.box5 {
  background: #ede7f6;
}

/* Light Purple */
.box6 {
  background: #f9fbe7;
}

/* Light Yellow-Green */

/* === Hover Effect === */
.option-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* === Responsive Tweaks === */
@media (max-width: 576px) {
  .option-item {
    padding: 20px 10px;
  }

  .option-item img {
    width: 60px;
    height: 60px;
  }

  .option-item h4 {
    font-size: 18px;
    font-weight: 600;
  }

  .option-item p {
    font-size: 13px;
  }
}


/* <!-- option-section grid exit --> */


/* <!-- board-section grid --> */
.board-section {
  background: #fff;
  padding: 40px 0;
  margin-top: -30px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  justify-content: center;
}

.board-item {
  background: #fff;
  border-radius: 15px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.board-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.board-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  object-fit: contain;
}

.board-item p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #000;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .board-item img {
    width: 50px;
    height: 50px;
  }

  .board-item p {
    font-size: 0.9rem;
  }
}

/* <!-- board-section grid exit --> */


/* <!-- business-section grid --> */
.business-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 40px 20px;
  max-width: 1350px;
  margin: auto;
}

.business-box {
  flex: 1 1 520px;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.business-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 25px;
  text-align: center;
}

.business-box h3 span {
  color: #2563eb;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  justify-items: center;
}

.business-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  width: 160px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease-in-out;
  text-decoration: none;
  /* remove underline */
  color: inherit;
}

.business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.business-card img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 8px;
}

.business-card p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .business-box {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .business-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 25px 10px;
  }

  .business-box {
    padding: 20px;
  }

  .business-box h3 {
    font-size: 1.3rem;
  }

  .business-card {
    width: 140px;
    height: 130px;
  }
}

@media (max-width: 480px) {
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .business-card {
    width: 100%;
    height: 120px;
  }
}

/* <!-- business-section grid text --> */


/* <!-- healthcare-section --> */
.healthcare-section {
  background: #f5f9ff;
  padding: 80px 20px;
  text-align: center;
}

.healthcare-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 10px;
}

.healthcare-section .section-subtitle {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 50px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.healthcare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.healthcare-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.healthcare-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.card-img {
  width: 100%;
  height: 220px;
  /* You can adjust height as per your design */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fae4e4;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* keeps image ratio but fills area */
  transition: all 0.4s ease;
}

.healthcare-card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px 18px 30px;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.25rem;
  color: #003366;
  margin-bottom: 10px;
  font-weight: 600;
}

.card-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .healthcare-section {
    padding: 60px 15px;
  }

  .healthcare-section .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .healthcare-grid {
    grid-template-columns: 1fr;
  }

  .card-img img {
    height: 180px;
  }
}

/* <!-- healthcare-section exit --> */




/* <!--case-studies-section --> */
.case-study-section {
  padding: 60px 0;
  background-color: #fff;
}

.case-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.case-image {
  flex: 1 1 40%;
  text-align: center;
}

.case-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.case-content {
  flex: 1 1 55%;
}

.case-studies .case-content h3 {
  color: rgb(0, 0, 0);
  font-size: 23px;
  margin: 0px;
  font-weight: 500;
}

@media (max-width:768px) {
  .case-studies .case-content h3 {
    color: rgb(0, 0, 0);
    font-size: 21px !important;
    margin: 0px;
    font-weight: 600;
  }
}

.case-content h3,
h1 {
  font-size: 25px;
  font-weight: 500;
  color: #000000;
  padding: 5px 10px;
  margin-bottom: 25px;
}

.case-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.case-card {
  display: block;
  text-decoration: none;
  background-color: #f1f5f9;
  padding: 18px 20px;
  border-radius: 10px;
  color: #1e293b;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
  line-height: 1.5;
  border: 1px solid #000;
}

.case-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.case-card p {
  font-size: 0.95rem;
  color: #374151;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

.case-card img {
  border-radius: 8px;
}

.case-main-btn-container {
  margin-top: 25px;
  text-align: center;
  /* Align the button to the right */
}

.case-main-btn {
  padding: 12px 28px;
  background: linear-gradient(90deg, #2563eb, #1e40af);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.case-main-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: linear-gradient(90deg, #1e40af, #2563eb);
}

@media (max-width:768px) {
  .case-content h1 {
    text-align: center;
  }
}


/* Card colors */
.case-card.green {
  background-color: #d1fae5;
}

.case-card.orange {
  background-color: #ffedd5;
}

.case-card.purple {
  background-color: #ede9fe;
}

.case-card.pink {
  background-color: #ffe4e6;
}

/* Responsive design */
@media (max-width: 992px) {
  .case-cards {
    grid-template-columns: 1fr;
    margin: 10px 0;
  }

  .case-content h3 {
    font-size: 17px !important;
    padding: 15px 0;
    text-align: center;
  }

  .case-content h1 {
    margin-bottom: 12px;
  }

}

@media (max-width: 768px) {
  .case-row {
    flex-direction: column;
  }

  .case-image {
    order: -1;
  }

}

.case-content i {
  box-sizing: content-box;
  display: var(--fa-display, inline-block);
  height: 13px !important;
  overflow: visible;
  vertical-align: -0.125em;
  width: var(--fa-width, 1.25em);
}

/* <!-- case-studies-section exit --> */



/* <!-- govt-section grid --> */
.govt-schemes {
  padding: 60px 0;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
}

.govt-schemes .container {
  max-width: 1600px;
  margin: auto;
  padding: 0 15px;
}

.govt-schemes .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Left Image */
.col-left {
  flex: 1 1 40%;
  text-align: center;
}

.col-left img {
  width: 80%;
  max-width: 350px;
}

/* Right Content */
.col-right {
  flex: 1 1 55%;
}

.col-right h2 {
  font-size: 28px;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 10px;
}

.col-right h2 span {
  color: #0044cc;
}

.col-right p {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

/* Grid */
.schemes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.scheme-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  text-decoration: none;
  color: #000;
}

.scheme-card img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.scheme-card span {
  font-size: 15px;
  font-weight: 500;
}

.scheme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .govt-schemes .row {
    flex-direction: column;
  }

  .col-left img {
    width: 60%;
  }

  .col-right {
    text-align: center;
  }

  .schemes-grid {
    justify-items: center;
  }
}

.gov-support {
  element.style {
    font-size: 20px;
    color: #000;
    font-weight: 500;
  }
}

/* <!-- govt-section grid exit --> */



/* <!-- corner-section --> */
.corner-section {
  background: #fff;
  padding: 60px 0;
}

/* Grid for two main boxes */
.corner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Each box container */
.corner-box {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.corner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Headings */
.corner-box h2 {
  font-weight: 700;
  font-size: 22px;
  color: #222;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.corner-box h2 i {
  color: #007bff;
}

/* Inner items grid */
.corner-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

}

/* Individual item */
.item {
  background: #eef6ff;
  /* default light demo color */
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  color: #222;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.item:nth-child(2n) {
  background: #fff3e0;
  /* Light orange */
}

.item:nth-child(3n) {
  background: #e8f5e9;
  /* Light green */
}

.item img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  object-fit: contain;
}

.item p {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* Hover Effect */
.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* === Responsive === */
@media (max-width: 992px) {
  .corner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .corner-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .corner-box {
    padding: 20px;
  }

  .corner-box h2 {
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .item img {
    width: 50px;
    height: 50px;
  }

  .item p {
    font-size: 14px;
    font-weight: 700;
    /* bold on mobile */
  }
}

/* === Center last card in mobile view === */
@media (max-width: 768px) {
  .corner-items .item:last-child:nth-child(odd) {
    grid-column: span 2;
    justify-self: center;
    width: 80%;
    /* optional: make it look nicely centered */
  }
}

@media (max-width: 480px) {
  .corner-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .item {
    padding: 12px;
  }
}


/* <!-- corner-section exit --> */


/* <!-- edu-section --> */
.edu-section {
  background: #fff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.edu-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Side */
.edu-left {
  position: relative;
  flex: 1 1 45%;
  text-align: center;
}

.edu-image {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
}

.edu-tag {
  position: absolute;
  top: 10%;
  left: 55%;
  background: #fff;
  padding: 6px 14px;
  font-weight: 600;
  color: #0a58ca;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.edu-icon {
  position: absolute;
  font-size: 28px;
}

.edu-icon-1 {
  bottom: 25%;
  left: 35%;
}

.edu-icon-2 {
  bottom: 20%;
  right: 35%;
}

/* Right Side */
.edu-right {
  flex: 1 1 50%;
}

.edu-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0d6efd;
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.edu-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.edu-card {
  padding: 15px;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.edu-card.green {
  background: #d8f9e2;
}

.edu-card.orange {
  background: #ffe8d0;
}

.edu-card.purple {
  background: #e8e3ff;
}

.edu-card.pink {
  background: #ffe3e8;
}

/* Responsive */
@media (max-width: 768px) {
  .edu-container {
    flex-direction: column;
    text-align: center;
  }

  .edu-cards {
    grid-template-columns: 1fr;
  }

  .edu-left {
    order: 1;
  }

  .edu-right {
    order: 2;
  }
}

/* <!-- edu-section exit --> */



/* ===== Breadcrumb Section ===== */
.breadcrumb-section {
  position: relative;
  text-align: center;
  font-family: "Poppins", sans-serif;
  background-color: #000000;
}

.breadcrumb-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 50px auto 15px;
  padding: 0 15px;
}

.breadcrumb-inner h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  background: none;
}

.breadcrumb-list {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: green;
  padding: 15px 20px;
  border-radius: 10px;
}


.breadcrumb-list li {
  font-size: 18px;
  color: #ffffff;
}

.breadcrumb-list li a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
  color: #000;
}

.breadcrumb-list li::after {
  content: "›";
  color: #ffffff;
  margin: 0 6px;
}

.breadcrumb-list li:last-child::after {
  content: "";
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 60px 0;
  }

  .breadcrumb-inner h1 {
    font-size: 1.8rem;
  }

  .breadcrumb-list li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-inner h1 {
    font-size: 1.5rem;
  }

  .breadcrumb-list {
    gap: 4px;
  }
}

.breadcrumb-list {
  background-color: green;
}


/* ===== Breadcrumb exit ===== */


/* <!-- ===== Hero Section ===== --> */
.about-hero {
  background-color: #e6f1f5b9;
}

.about-hero h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-hero h2 span {
  color: #26a7d3;
  margin-bottom: 20px;
}

.about-hero p {
  color: #000000;
  font-size: 15px;
}

.about-hero img {
  width: 550px;
  height: 350px;
}

/* <!-- ===== Hero Section exit ===== --> */


/* ===== Company Overview ===== */
.company-overview {
  padding: 70px 0;
  background-color: #fff;
}

.company-overview h2 {
  font-weight: 700;
  margin-bottom: 20px;

}

.company-overview p {
  color: #000000;
}

.company-overview ul {
  padding-left: 0;
}

.company-overview li {
  list-style: none;
  margin-bottom: 10px;
}

.company-overview img {
  width: 550px;
  height: 350px;
}

.company-overview ul li strong {
  color: #000;
  font-size: 20px;
}

/* ===== Company Overview exit===== */


/* ===== Mission / Vision Sections ===== */
.mission-section,
.vision-section {
  background-color: #edf2f7;
  padding: 80px 0;
}

.mission-section h2,
.vision-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.mission-section p,
.vision-section p {
  color: #000000;
}

.mission-section ul,
.vision-section ul {
  padding-left: 0;
}

.mission-section li,
.vision-section li {
  list-style: none;
  margin-bottom: 10px;
}


/* ===== Mission / Vision Sections exit ===== */


/* ===== Why Choose Us ===== */
.why-choose-us h2 {
  font-weight: bold;
}

.choose-card {
  transition: all 0.3s ease;
  background-color: #fff;
}

.choose-card:hover {
  transform: translateY(-5px);
}

.why-choose-us h5 {
  font-weight: bold;
}

.why-choose-us p {
  font-size: 14px;
}

.why-2025-section p {
  font-size: 16px;
}


/* ===== Why Choose Us exit===== */



/* ===== Partner Section ===== */
.partner-section {
  background-color: #000000;
  padding: 20px 0;

}

.partner-section h2 {
  font-weight: 700;
  color: #ffffff;
}

.partner-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 25px;
  color: #ffffff;
}

.partner-section .btn {
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.partner-section .btn:hover {
  transform: translateY(-3px);
}

/* ===== Partner Section exit===== */

/* ============================
    about section RESPONSIVE DESIGN
=============================== */
@media (max-width: 992px) {
  .about-hero {
    text-align: center;
  }

  .about-hero .text-content,
  .about-hero img {
    flex: 1 1 100%;
  }

  .about-hero h2 {
    font-size: 1.9rem;
  }

  .breadcrumb-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero h2 {
    font-size: 1.8rem;
  }

  .team-img {
    max-width: 140px;
    height: 140px;
  }

  .partner-section {
    padding: 40px 15px;
  }

  .partner-section h2 {
    font-size: 1.8rem;
  }

  .partner-section p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {

  .company-overview,
  .vision-section,
  .mission-section,
  .why-choose-us {
    padding: 60px 0;
  }

  .mission-section img,
  .vision-section img {
    margin-bottom: 20px;
  }

  .mission-section .row,
  .vision-section .row {
    flex-direction: column;
  }

}

@media (max-width: 576px) {
  .about-hero h2 {
    font-size: 1.6rem;
  }
}



/* ===== Contact Location Section ===== */
/* ===== Contact Location Section ===== */
.contact-location {
  background-color: #f9f9f9;
}

.contact-card,
.map-container {
  border: 1px solid #ddd;
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card {
  text-align: center;
  padding: 30px;
}

.contact-card .brand-name {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 8px;
}

.contact-card a {
  color: #007bff;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

  .contact-card,
  .map-container {
    height: auto;
  }

  .map-container iframe {
    height: 250px;
  }
}

/* ===== Contact Location Section exit===== */



/* ===== Let's Start a Conversation Section ===== */
.contact-conversation {
  background-color: #f9f9f9;
}

.contact-conversation h2 {
  font-weight: 700;
  color: #222;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-info-list li {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
}

.contact-info-list a {
  color: #007bff;
  text-decoration: none;
}

.contact-info-list a:hover {
  text-decoration: underline;
}

.contact-form .form-control {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
}

.contact-form .form-control:focus {
  border-color: #007bff;
  box-shadow: none;
}

.contact-form button {
  background-color: #007bff;
  border: none;
  padding: 10px;
  font-weight: 600;
  border-radius: 5px;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .contact-conversation {
    text-align: center;
  }

  .contact-info-list {
    text-align: left;
  }
}

/* ===== Let's Start a Conversation Section exit===== */



/* services */
/* ===== Hero ===== */
.services-hero h2 {
  font-weight: 700;
}

.services-hero h2 span {
  color: #26a7d3;
}

.services-hero p {
  color: #000000;
}

.services-hero img {
  border-radius: 5%;
  transition: 0.3s;
}

/* ===== Services Cards ===== */
.core-services h2 {
  font-weight: bold;
  font-size: 3rem;
}


.service-card {
  background: #fff;
  border-radius: 40px 0px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 30px 20px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #26a7d3, #6dd5ed);
  border-radius: 12px 12px 0 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(38, 167, 211, 0.2);
}

/* ===== Image ===== */
.service-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(38, 167, 211, 0.4));
}

/* ===== Heading ===== */
.service-card h5 {
  font-weight: 600;
  color: #000000;
  font-size: 23px;
  font-weight: 600;
  margin: 10px 0;
}

/* ===== Paragraph ===== */
.service-card p {
  color: #000000;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ===== Explore Button ===== */
.explore-btn {
  display: inline-block;
  background: linear-gradient(90deg, #26a7d3, #6dd5ed);
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  align-self: center;
  margin-top: auto;
}

.explore-btn:hover {
  background: linear-gradient(90deg, #1b8fb9, #4fc1e9);
  box-shadow: 0 0 10px rgba(38, 167, 211, 0.5);
  transform: scale(1.05);
}

/* ===== Responsive Grid ===== */
@media (max-width: 767px) {
  .core-services .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .core-services h2 {
    font-weight: bold;
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .service-card img {
    width: 80px;
    height: 80px;
  }

  .service-card h5 {
    font-size: 15px;
  }

  .service-card p {
    font-size: 13px;
    text-align: center;
  }

  .services-hero h2 {
    text-align: center;
    margin-bottom: 18px;
  }

  .services-hero p {
    color: #000000;
    font-size: 15px;
    text-align: center;
  }

  .service-card h5 {
    font-size: 21px;
    margin: 10px 0;
  }
}



/* achievement */
.achievement-section {
  /* background: linear-gradient(90deg, #8a9fd6, #2460c2); */
  background-color: #eff8f7;
  text-align: center;
  padding: 80px 0;
}

.achievement-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;

}

.fa-users {
  color: #ffffff;
}

.fa-briefcase {
  color: #ffffff;
}

.fa-trophy {
  color: #ffffff;
}

.fa-handshake {
  color: #ffffff;
}

.achievement-section .section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.achievements {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.achievements p {
  color: #fff;
}

.achievements h3 {
  color: #fff;
}

.fas {
  color: #fff;
}

.achievements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.achievement-box {
  background: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-box i {
  font-size: 36px;
  color: #582b00;
  margin-bottom: 10px;
}

.achievement-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .achievements {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .achievements {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.achievement-box {
  background: rgb(0, 0, 0);
  border-radius: 12px;
  width: 220px;
  padding: 30px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.achievement-box:hover {
  transform: translateY(-8px);
}

.achievement-box i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.counter {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.achievement-box p {
  font-size: 1rem;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .services-hero img {
    margin-top: 20px;
  }

  .process-step {
    margin-bottom: 20px;
  }

  .achievements {
    flex-direction: column;
    gap: 20px;
  }

  .achievement-box {
    width: 100%;
    padding: 20px;
    height: 100%;
  }

  .achievement-section .section-title {
    font-size: 25px;
    font-weight: 600;
  }

  .achievement-section {
    padding: 30px 0;
  }
}

/* services  exit */



/* Case Studies */
/* ===== Case Studies Hero ===== */
.case-hero-section {
  padding: 80px 0;
  background-color: #fff;
}

.case-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.case-hero-image {
  flex: 1 1 45%;
  text-align: center;
}

.case-hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.case-hero-text {
  flex: 1 1 50%;
}

.case-hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.case-hero-text h1 span {
  color: #007bff;
  font-weight: 700;
}

.case-hero-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.hero-btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #0056b3;
}

/* ===== Case Studies Grid ===== */
.case-studies {
  padding: 70px 0;
  background: #f8f9fa;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.case-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-card:hover {
  transform: translateY(-10px);
}

.case-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.case-content {
  /* padding: 20px; */
  padding: 10px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-content h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #000;
  line-height: 30px;
}

.case-content p {
  font-size: 14px;
  color: #000000;
  flex-grow: 1;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.read-more:hover {
  color: #0056b3;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .case-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .case-hero-text {
    flex: 1 1 100%;
  }

  .case-hero-text h1 {
    font-size: 2rem;
  }

  .case-hero-image img {
    max-width: 400px;
  }

  .case-content {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .case-hero-text h1 {
    font-size: 1.8rem;
  }

  .case-hero-text p {
    font-size: 0.95rem;
  }

  .hero-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .case-hero {
    padding: 80px 20px;
  }

  .case-hero h1 {
    font-size: 2rem;
  }

  .case-hero p {
    font-size: 0.95rem;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-card img {
    height: 200px;
  }
}

/* Case Studies exit */



/* Start a Business in 2025 Page */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  position: relative;
}

/* 
.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #007bff, #6610f2);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
} */

.text-center {
  text-align: center;
}

.py-5 {
  padding: 80px 0;
}

.bg-light {
  background-color: #f8f9fa;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-success {
  background-color: #28a745;
  color: #fff;
}

.btn-success:hover {
  background-color: #218838;
}

/* ================== HERO SECTION ================== */
.business-hero-section {
  padding: 100px 0;
  background: linear-gradient(to right, #eef4ff, #ffffff);
}

.business-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.business-hero-text {
  flex: 1;
  min-width: 300px;
}

.business-hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.business-hero-text h1 span {
  color: #007bff;
}

.business-hero-text p {
  color: #555;
  margin-bottom: 25px;
}

.business-hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.business-hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ================== WHY 2025 SECTION ================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-item {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.why-item i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}

.why-item:hover {
  transform: translateY(-8px);
}

/* ================== TRENDING SECTORS ================== */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.sector-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.sector-item:hover {
  transform: translateY(-5px);
}

.sector-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.sector-item h4 {
  margin: 20px;
  font-size: 1.2rem;
  color: #007bff;
}

.sector-item p {
  margin: 0 20px 20px;
  color: #555;
}

/* Default grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Mobile layout */
@media (max-width: 768px) {

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 cards per row */
  }

  .why-grid .why-item:nth-child(3) {
    grid-column: 1 / 3;
    /* Span full width */
    justify-self: center;
    /* Center the card */
    width: 80%;
    /* Optional: make it look balanced */
  }
}

/* ================== STEPS SECTION ================== */
.business-steps {
  background-color: #f7fdf7;
}

.business-steps h2 {
  font-weight: 700;
  color: #000000;
  font-size: 38px;
}

.step-card {
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #000;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.68) 0px 3px 6px, rgba(0, 0, 0, 0.72) 0px 3px 6px;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.step-card i {
  color: #003a77;

}

.step-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
  font-size: 22px;
}

.step-card p {
  color: #555;
  font-size: 0.95rem;
}

.step:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .business-steps .col-md-4 {
    width: 50%;
    flex: 0 0 50%;
  }
}

/* ================== GOVERNMENT SUPPORT ================== */
.gov-list {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: auto;
}

.gov-list li {
  background: #fff;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.gov-list strong {
  font-size: 18px;
  font-weight: 500;
}

.gov-support p {
  font-size: 20px;
  font-weight: 500;
}

/* ================== TIPS SECTION ================== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.tip-item {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.tip-item i {
  font-size: 40px;
  color: #007bff;
  height: 20;
  margin-bottom: 20px;
}

.svg-inline--fa {
  box-sizing: content-box;
  display: var(--fa-display, inline-block);
  height: 22px !important;
  overflow: visible;
  vertical-align: -0.125em;
  width: var(--fa-width, 1.25em);
}

.tip-item:hover {
  transform: translateY(-5px);
}

/* ================== RESPONSIVE DESIGN ================== */
@media (max-width: 992px) {
  .business-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .business-hero-text h1 {
    font-size: 2rem;
  }

  .business-hero-image img {
    max-width: 400px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .py-5 {
    padding: 60px 0;
  }

  .business-hero-text p {
    font-size: 1rem;
  }

  .sector-item img {
    height: 150px;
  }

  .tip-item {
    padding: 20px;
  }

  .step-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .business-steps h2 {
    font-size: 1.8rem;
  }

  .step-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .step-card h5 {
    font-size: 1rem;
  }

  .step-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .business-hero-text h1 {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .why-item,
  .sector-item,
  .tip-item,
  .step {
    margin-bottom: 20px;
  }
}

/* Start a Business in 2025 Page exit */




/* ===== Current Updates Section (3x4 Grid) ===== */
.current-section {
  padding: 60px 20px;
  background: #fff;
  max-width: 1200px;
  margin: 50px auto;
  font-family: "Poppins", sans-serif;
}

.current-section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}

.current-section .icon {
  color: #d10000;
  font-size: 18px;
}

.current-section .highlight {
  color: #204ecf;
  text-decoration: underline;
}

/* ===== Grid Layout ===== */
.current-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ===== Each Card ===== */
.current-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.current-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.current-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.current-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

/* ===== Explore Button ===== */
.current-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #204ecf;
  color: #fff;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.current-btn:hover {
  background: #0b2fa0;
}

/* ===== View All Button ===== */
.current-viewall {
  text-align: center;
  margin-top: 35px;
}

.current-viewall a {
  display: inline-block;
  padding: 10px 22px;
  background: #f2f4ff;
  color: #2a56cc;
  font-weight: 600;
  border-radius: 25px;
  transition: 0.3s;
}

.current-viewall a:hover {
  background: #2a56cc;
  color: #fff;
}

.current-viewall small {
  display: block;
  font-size: 12px;
  color: #777;
  margin-top: 6px;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .current-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .current-card img {
    height: 160px;
  }
}

@media (max-width: 576px) {
  .current-grid {
    grid-template-columns: 1fr;
  }

  .current-card img {
    height: 150px;
  }

  .current-card h3 {
    font-size: 16px;
  }
}

/* ===== Current Updates Section (3x4 Grid) exit===== */



/* about_banner */

.poster {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
  /* optional: light background */
}

.poster img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 3px 7px 9px rgba(0, 0, 0, 0.50);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster img:hover {
  transform: translateY(-5px);
  /* hover effect */
}


.poster {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

.poster-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.poster-content p {
  font-size: 1.2rem;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .poster {
    padding: 40px 15px;
    margin-top: -90px;
    /* margin top */
    margin-bottom: -70px;
    /* margin bottom */
  }
}

@media (max-width: 768px) {
  .poster {
    padding: 30px 10px;
    margin-top: -115px;
    margin-bottom: -115px;
  }
}

@media (max-width: 480px) {
  .poster {
    padding: 20px 5px;
    margin-top: -210px;
    margin-bottom: -210px;
  }

  .poster img {
    max-width: 100%;
    border-radius: 10px;
  }
}

/* about_banner exit*/



/* Introduction Section */
.intro {
  background: #f9fafc;
  padding: 60px 20px;
}

.intro h2 {
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.intro p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  text-align: justify;
  max-width: 900px;
  margin: 10px auto;
}

.intro .highlight {
  color: #007bff;
  font-weight: 600;
}

/* Companies Section */
.companies {
  padding: 60px 20px;
}

.company {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px 30px;
  margin-bottom: 30px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.company:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.company h3 {
  color: #222;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.company p {
  color: #555;
  line-height: 1.7;
}

/* Highlighted Star Company */
.star-company {
  border-left: 5px solid #007bff;
  background: #f3f8ff;
}

.star-company h3 {
  color: #0056b3;
  font-weight: 700;
}

.star-company .company-details {
  margin-top: 15px;
}

.star-company .company-details h4 {
  color: #222;
  font-size: 1.1rem;
  margin-top: 15px;
}

.star-company ul {
  list-style: disc;
  padding-left: 25px;
}

.star-company ul.contact {
  list-style: none;
  padding-left: 0;
}

.star-company ul.contact li {
  margin-bottom: 6px;
}

.star-company .highlight {
  color: #007bff;
  font-weight: 600;
  margin-top: 10px;
  display: inline-block;
}

/* Conclusion Section */
.conclusion {
  background: #f0f6ff;
  padding: 60px 20px;
  text-align: center;
}

.conclusion h2 {
  color: #0056b3;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.conclusion p {
  color: #000000;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
  .poster-content h1 {
    font-size: 2.2rem;
  }

  .poster-content p {
    font-size: 1rem;
  }

  .intro h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .poster-content h1 {
    font-size: 1.6rem;
  }

  .poster-content p {
    font-size: 0.9rem;
  }

  .company {
    padding: 20px;
  }
}

/* Top 10 Website Development Companies in India exit*/
/* SEO */
/* ===========================
   SEO Section Styles
   =========================== */
.SEO_Wrapper {
  background-color: #a7a7a7;
  padding: 20px;
  border-top: 1px solid #2a2b2c;
  border-bottom: 1px solid #212222;
}

.SEO_Wrapper .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.SEO_Wrapper p {
  font-size: 14px;
  line-height: 25px;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-align: justify;
  padding: 25px 30px;
  border-radius: 12px;

}



.SEO_Wrapper p::selection {
  background: #0078ff;
  color: #fff;
}

/* Responsive Text Styling */
@media (max-width: 992px) {
  .SEO_Wrapper p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 768px) {
  .SEO_Wrapper {
    padding: 40px 15px;
  }

  .SEO_Wrapper p {
    font-size: 14px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .SEO_Wrapper p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* 
SEO Exit */

/* .latest-updates inner page */

/* ================================
   Salon Inner Section Styles
   (Scoped & Isolated)
   ================================ */

.salon-inner {
  background-color: #fafafa;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.salon-inner-container {
  max-width: 1100px;
  margin: 0 auto;
}

.salon-inner h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
}

.salon-inner .highlight {
  color: #e91e63;
}

.salon-inner .intro {
  text-align: justify;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 15px;
}

.salon-inner-grid {
  display: flex;
  flex-direction: column;
}

.salon-inner-column h3 {
  color: #111;
  font-size: 1.25rem;
  margin-top: 25px;
}

.salon-inner-column p {
  line-height: 1.7;
  margin-top: 8px;
  color: #444;
  text-align: justify;
}

.salon-inner .conclusion-title {
  margin-top: 40px;
  color: #e91e63;
  font-size: 1.5rem;
}

.salon-inner .conclusion {
  line-height: 1.8;
  font-weight: 500;
  color: #333;
}

/* ======================
   Responsive Styles
   ====================== */
@media (max-width: 768px) {
  .salon-inner {
    padding: 40px 15px;
  }

  .salon-inner h1 {
    font-size: 1.5rem;
  }

  .salon-inner-column h3 {
    font-size: 1.1rem;
  }

  .salon-inner-column p {
    font-size: 0.95rem;
  }
}

/* .latest-updates inner page exit */


/* AI Business Ideas to Start in 2025 */

/* ===== AI Chatbot Solutions Section ===== */
.ai-chatbot {
  background: linear-gradient(135deg, #f8fbff 0%, #eef3f9 100%);
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.ai-chatbot .container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 50px 0;
}

.ai-chatbot h2 {
  text-align: center;
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 25px;
  position: relative;
  animation: fadeIn 1.2s ease;
}

.ai-chatbot h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #004aad;
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

.ai-intro {
  color: #444;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 50px auto;
  animation: fadeIn 1.5s ease;
}

.ai-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.ai-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.28);
  transition: all 0.4s ease;
  border-top: 3px solid transparent;
}

.ai-box:hover {
  transform: translateY(-6px);
  border-top: 3px solid #004aad;
  box-shadow: 0 10px 25px rgba(0, 74, 173, 0.15);
}

.ai-box h3 {
  color: #004aad;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.ai-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-box ul li {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}

.ai-box ul li::before {
  content: "▹";
  color: #004aad;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Animations */
.fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.delay1 {
  animation-delay: 0.2s;
}

.delay2 {
  animation-delay: 0.4s;
}

.delay3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .ai-chatbot h2 {
    font-size: 1.6rem;
  }

  .ai-intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

/* AI Business Ideas to Start in 2025 exit */



/* ===== Tech Business Section (Updated) ===== */
.tech-business-section {
  padding: 60px 20px;
  background-color: #f9fafb;
  color: #1f2937;
}

.tech-business-section h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1f2937;
}

.tech-business-section .description {
  text-align: center;
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 50px;
}

/* ===== Tech List ===== */
.tech-cards-grid {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tech-card {
  position: relative;
  padding: 18px 22px;
  background-color: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-card h2 {
  font-size: 1.25rem;
  margin: 0 0 5px 0;
  color: #1f2937;
}

.tech-card p {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0 0 3px 0;
}

.tech-card .example {
  font-size: 0.85rem;
  font-style: italic;
  color: #6b7280;
}

/* ===== Hover Effects ===== */
.tech-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2), 0 0 10px rgba(16, 185, 129, 0.1);
  border-left-color: #10b981;
  background-color: #f0fdf4;
}

.tech-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(120deg, #3b82f6, #10b981);
  border-radius: 8px;
  opacity: 0.1;
  transition: width 0.4s ease;
  z-index: 0;
}

.tech-card:hover::before {
  width: 100%;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .tech-cards-grid {
    gap: 12px;
  }

  .tech-card {
    padding: 15px 18px;
  }

  .tech-card h2 {
    font-size: 1.15rem;
  }

  .tech-card p,
  .tech-card .example {
    font-size: 0.85rem;
  }


}

@media (max-width: 480px) {
  .tech-business-section {
    padding: 30px 10px;
  }

  .tech-card h2 {
    font-size: 1.05rem;
  }

  .tech-card p,
  .tech-card .example {
    font-size: 0.8rem;
  }
}

/* ===== Tech Business Section exit ===== */

/* <!-- ===== Idea Validation CSS with Simple Animation ===== -->- */
.idea-validation-business {
  background: #f9f9f9;
  padding: 60px 20px;
}

.idea-validation-business h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.idea-validation-business p {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  color: #444;
}

.idea-validation-business h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #27ae60;
  font-size: 1.5rem;
}

/* Steps list as cards */
.steps-list {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

/* Step number circle */
.step-number {
  flex-shrink: 0;
  background: #27ae60;
  color: #fff;
  font-weight: bold;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  margin-right: 15px;
}

/* Step content */
.step-content {
  flex: 1;
  font-size: 0.95rem;
  color: #555;
}

.step-content strong {
  color: #27ae60;
}

/* Show class for animation */
.steps-list li.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
  .steps-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    margin-bottom: 10px;
  }
}

/* <!-- ===== Idea Validation CSS with Simple Animation exit===== -->- */



/* .Healthcare-Business-AI-Plan-Section */
/* Section */
/* Section */
.ai-diagnostics h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #1a202c;
}

/* Step-by-Step Numbered List */
.ai-list {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.ai-list li {
  position: relative;
  background: #fff;
  margin-bottom: 25px;
  padding: 25px 25px 25px 70px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Blue Curve Decorative Element */
.ai-list li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
  clip-path: ellipse(70% 100% at 0% 50%);
  opacity: 0.15;
  pointer-events: none;
}

/* Number Circle */
.ai-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  background: #2b6cb0;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Hover Effect */
.ai-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Text Styling */
.ai-list h3 {
  font-size: 1.25rem;
  color: #2b6cb0;
  margin-bottom: 10px;
}

.ai-list p {
  font-size: 1rem;
  color: #4a5568;
}

/* Conclusion */
.ai-conclusion {
  margin-top: 40px;
  background: #edf2f7;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.ai-conclusion h2 {
  color: #2b6cb0;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.ai-conclusion p {
  color: #4a5568;
}

/* Responsive */
@media (max-width: 768px) {
  .ai-diagnostics h1 {
    font-size: 1.8rem;
  }

  .ai-list li {
    padding: 20px 20px 20px 60px;
  }

  .ai-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    left: 20px;
  }

  .ai-list li::after {
    width: 90px;
    clip-path: ellipse(65% 100% at 0% 50%);
  }

  .ai-list h3 {
    font-size: 1.1rem;
  }

  .ai-list p,
  .ai-conclusion p {
    font-size: 0.95rem;
  }
}


/* .Healthcare-Business-AI-Plan-Section exit */



/* ===== Star Info Lab - Web Design Section ===== */


.web-design-list {
  padding: 70px 20px;
  background: linear-gradient(to bottom right, #f9fafb, #e8f0fe);
  color: #1f2937;
  font-family: 'Poppins', sans-serif;
}

.web-design-list h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #0056b3;
  margin-bottom: 10px;
}



.web-design-list .intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
}

.service-list {
  counter-reset: list-counter;
  list-style: none;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.service-list li {
  position: relative;
  background: #fff;
  padding: 20px 25px;
  margin: 15px 0;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  line-height: 1.6;
  font-size: 1.05rem;
  border-left: 5px solid #0078ff;
}

.service-list li i {
  color: #0078ff;
  margin-right: 10px;
  font-size: 1.3rem;
}

.service-list li:hover {
  transform: translateY(-5px);
  background: #abc9ec;
  color: #000000;
  box-shadow: 0 8px 18px rgba(0, 120, 255, 0.3);
}

.service-list li:hover i {
  color: #fff;
}

.service-list li strong {
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .web-design-list h1 {
    font-size: 2rem;
  }

  .web-design-list h2 {
    font-size: 1.5rem;
  }

  .service-list li {
    font-size: 1rem;
    padding: 18px;
  }
}

/* ===== Star Info Lab - Web Design Section exit===== */


/* ===== Startup Success Stories Styles ===== */
.startup-success {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.startup-success h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #000000;
}

.startup-success p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px auto;
  color: #000000;
  font-size: 1rem;
}

.success-steps {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step {
  display: flex;
  align-items: center;
  background-color: var(--step-color);
  border-radius: 40px 10px 10px 40px;
  padding: 15px 25px;
  color: white;
  position: relative;
  max-width: 600px;
  /* Shorter width */
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateX(5px);
}

.step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  width: 20px;
  height: 20px;
  background-color: var(--step-color);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
}

.number {
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 15px;
  min-width: 40px;
  text-align: center;
  color: #000;
}

.content {
  flex: 1;
}

.icon {
  font-size: 1rem;
  margin-right: 8px;
}

.step h3 {
  display: inline-block;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
}

.step p {
  margin: 5px 0 0 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .step {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    border-radius: 20px;
    max-width: 100%;
  }

  .step::after {
    display: none;
  }

  .number {
    margin-bottom: 8px;
  }

  .step h3 {
    display: block;
  }
}

/* ===== Startup Success Stories Styles exit===== */



/* === Business Tips Section === */
.business-tips-area {
  padding: 50px 20px;
  background: #ffffff;
}

.business-tips-area .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.business-header {
  margin: 20px 0;
  border-radius: 10px;
  padding: 20px 0;
}

.business-header h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #002633;
  margin-bottom: 15px;
  background: none;
  box-shadow: none;
}

.business-header .subheading {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* Cards */
.tip-card {
  background: linear-gradient(145deg, #ffffff, #ebf6fac9);
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.tip-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  border: 3px solid #067296;
  transition: transform 0.3s, border-color 0.3s;
}

.tip-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #000000;
  font-weight: 600;
}

.tip-card p {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #067296;
  color: #fff;
  border-radius: 12px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.read-more-btn:hover {
  background: #067296;
  transform: scale(1.05);
}

/* Hover Effect */
.tip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(145deg, #b6e8f8, #d7f5ff);
}

.tip-card:hover img {
  transform: scale(1.1);
  border-color: #067296;
}

/* Responsive Layout */

/* 2 columns per row for medium screens (tablet) */
@media (max-width: 992px) {
  .business-tips-area .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* 2 columns per row for small screens (mobile) */
@media (max-width: 576px) {
  .business-tips-area .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .tip-card {
    padding: 20px 15px;
  }

  .tip-card h3 {
    font-size: 1.1rem;
  }

  .tip-card p {
    font-size: 0.9rem;
  }
}



/* === Business Tips Section exit=== */




/* footer */
.footer {
  background: #26a7d3;
  padding: 20px 0;
  color: #ffffff;
}

.footer .container {
  width: 90%;
  margin: auto;
}

.footer-about a {
  color: #000000;
  font-size: 14px;
  margin: 0 5px;
}

.footer-about img {
  margin-bottom: 15px;
}

.footer-about p {
  font-weight: 500;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-col {
  flex: 1 1 30%;
  margin: 10px;
}

.footer-row {
  border-bottom: 2px solid #ddd;
  padding-bottom: 12px;
}

.footer-col h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
  margin-bottom: 20px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 45px;
  height: 2px;
  background: #ffffff;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #131313;
  text-decoration: none;
}

.footer-story {
  color: #000000;
  text-align: center;
  margin-top: 20px;
}

.footer-story p {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
}

.footer-story .btn {
  font-weight: 600;
  padding: 10px 25px;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 5px;
}

/* Email Button */
.footer-story .btn-primary {
  background-color: #ffffff;
  color: #007bff;
  border: none;
}

.footer-story .btn-primary:hover {
  background-color: #f8f9fa;
  color: #0056b3;
}

/* WhatsApp Button */
.footer-story .btn-success {
  background-color: #25d366;
  border: none;
}

.footer-story .btn-success:hover {
  background-color: #1ebe5d;
}

.footer-bottom strong {
  color: #65d8ff;
  /* or your main blue theme color */
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  border-top: 2px solid #ddd;
  margin-top: 30px;
  margin-bottom: -40px;
  font-size: 16px;
  color: #ffffff;
  background-color: #000;
  padding: 15px 0;
}

.footer-bottom strong {
  color: #000000;
  /* or your main blue theme color */
}


/* Responsive */
@media (max-width: 992px) {
  .footer-row {
    flex-direction: column;
  }


  .footer-story p {
    font-size: 1.2rem;
  }

  .footer-story .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-payment {
    margin-top: 30px;
  }

  .footer-bottom {
    padding-bottom: 20px;
  }


  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}



/* Floating Buttons */
.scroll-top {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 15px;
  right: 20px;
  background: #26a7d3;
  color: white;
  border-radius: 100%;
  padding: 10px 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  border: 1px solid #000;
}

@media (max-width:768px) {
  .scroll-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 48px;
    right: 5px;
    background: #26a7d3;
    color: white;
    border-radius: 100%;
    padding: 10px 12px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    border: 1px solid #000;
  }
}

.scroll-top:hover {
  background: #ff5722;
}


.scroll-top:hover {
  background: #404d53;
  color: #fff;
}

/* footer mobile menu  */
/* ===== STICKY MOBILE FOOTER MENU ===== */
.mobile-footer-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}


.mobile-footer-menu .menu-item {
  flex: 1;
  text-align: center;
  color: #000000;
  text-decoration: none;
  font-size: 13px;
}

.mobile-footer-menu .menu-item i {
  display: block;
  font-size: 20px;
  margin-bottom: 3px;
  color: #000000;
  transition: color 0.3s ease;
}

.mobile-footer-menu .menu-item:hover i,
.mobile-footer-menu .menu-item:focus i {
  color: #582b00;
}

.mobile-footer-menu .menu-item span {
  display: block;
  font-size: 12px;
}

/* Hide on desktop */
@media (min-width: 768px) {
  .mobile-footer-menu {
    display: none;
  }
}

/* Prevent content from hiding behind the fixed menu */
@media (max-width: 767px) {
  body {
    padding-bottom: 65px;
    /* height of menu */
  }
}

/* BACKEND */
/* Login box */
.login_wrapper {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #1d58c5, #253b61);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  animation: fadeIn 0.6s ease-in-out;
}

/* Heading */
.login-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #1e3c72;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Error message */
.error {
  background: #ffe6e6;
  color: #b00000;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
}

/* Form groups */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 16px;
  color: #000000;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: #2a5298;
  box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.15);
  outline: none;
}

/* Button */
.login-container button {
  width: 100%;
  padding: 13px;
  border: none;
  background: linear-gradient(135deg, #2a5298, #1e3c72);
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-container button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 60, 114, 0.4);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .login-container {
    padding: 28px 22px;
  }
}


/* Background Gradient */
.Top_box {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Login Box */
.login-box {
  background: #ffffff;
  width: 100%;
  max-width: 380px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* Heading */
.login-box h2 {
  margin-bottom: 20px;
  color: #0d6efd;
  font-size: 35px;
}

/* Error Message */
.error {
  background: #ffe2e2;
  color: #c62828;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 14px;
}

/* Inputs */
.login-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 21px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* Button */
.login-box button {
  width: 100%;
  padding: 12px;
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.login-box button:hover {
  background: #084298;
}

/* Mobile */
@media (max-width: 480px) {
  .login-box {
    padding: 25px 20px;
  }
}

/* sidebar */
/* Sidebar */
.sidebar {
  width: 240px;
  min-height: 100vh;
  background: linear-gradient(180deg, #0d6efd, #0a58ca);
  color: #fff;
  padding: 20px 15px;
  position: fixed;
  left: 0;
  top: 0;
}

/* Logo */
.sidebar .logo {
  text-align: center;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #fff;
}

/* Menu */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 10px;
}

/* Links */
.sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 26px 15px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Icons */
.sidebar ul li a i {
  font-size: 18px;
}

/* Hover */
.sidebar ul li a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

/* Active menu (add class="active" to <a>) */
.sidebar ul li a.active {
  background: #ffffff;
  color: #0d6efd;
  font-weight: 600;
}

.sidebar ul li a.active i {
  color: #0d6efd;
}

/* Main content spacing (important) */
.main-content {
  margin-left: 240px;
  padding: 25px;
}

.category_heading {
  font-size: 38px;
  color: #003366;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    min-height: auto;
  }

  .main-content {
    margin-left: 0;
  }

  .sidebar ul li a {
    justify-content: center;
  }
}

/* Dashboard */

.dashbord_wrapper {
  margin: 0;
  background: #f4f6f9;
}

/* Layout */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

/* Sidebar override (if needed) */
.sidebar {
  width: 240px;
  background: #0d6efd;
  color: #fff;
}

/* Main Content */
.main-content {
  flex: 1;
  /* padding: 25px; */
  padding: 40px 15px;
}

/* Top Header */
.dashboard-header {
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.dashboard-header h2 {
  margin: 0;
}

.logout-btn {
  background: #dc3545;
  color: #fff;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}

/* Cards */
.cards {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s;
}

.card-box:hover {
  transform: translateY(-5px);
}

.card-box i {
  font-size: 30px;
  color: #0d6efd;
  margin-bottom: 10px;
}

.card-box h3 {
  margin: 10px 0 5px;
}

.card-box p {
  color: #666;
  font-size: 14px;
}

/* Welcome box */
.welcome-box {
  margin-top: 20px;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .admin-wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }
}

/* catagories.php */
/* ===== Layout ===== */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

/* MAIN AREA */
.main-content {
  margin-left: 240px;
  padding: 30px;
  background: #f5f7fb;
  min-height: 100vh;
}

/* CARD */
.page-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  margin: 52px 0;
}

/* HEADER */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.page-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1e293b;
}

/* ADD BUTTON */
.btn-add {
  background: #4f46e5;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
}

.btn-add:hover {
  background: #4338ca;
  transform: translateY(-2px);
}

/* TABLE */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: #f1f5f9;
}

th {
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  text-align: left;
}

td {
  padding: 14px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  color: #475569;
}

tbody tr {
  transition: 0.3s;
}

tbody tr:hover {
  background: #f8fafc;
}

/* ICON IMAGE */
.cat-icon {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 4px;
  background: #ffffff;
}

/* ACTION BUTTONS */
.action-btns {
  display: flex;
  gap: 10px;
}

.btn-edit {
  background: #22c55e;
  border: none;
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}

.btn-delete {
  background: #ef4444;
  border: none;
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}

.btn-edit:hover {
  background: #16a34a;
}

.btn-delete:hover {
  background: #dc2626;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .main-content {
    margin-left: 0;
    padding: 15px;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .action-btns {
    flex-direction: column;
  }

  .btn-edit,
  .btn-delete {
    width: 100%;
  }
}

/* catagory_add.php  */
/* Form Box */
.form-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.58);
}

/* Headings */
.page-containt  {
 padding-top: 30px;
}
.page-containt  h2 {
  margin-bottom: 20px;
  color: #1e293b;
  font-size: 30px;
}

/* Labels */
.form-box label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #475569;
  font-weight: 500;
}

/* Inputs */
.form-box input[type="text"],
.form-box input[type="file"] {
  width: 100%;
  padding: 11px 12px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  background: #f8fafc;
  transition: 0.3s;
}

.form-box input:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
}

/* Button */
.form-box .btn-add {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.form-box .btn-add:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .form-box {
    padding: 20px;
  }

  .page-wrapper h2 {
    font-size: 20px;
  }
}
.error-msg{
    background:#fee2e2;
    color:#991b1b;
    padding:12px 15px;
    border-radius:8px;
    margin-bottom:15px;
    font-size:14px;
    border-left:5px solid #ef4444;
}

.success-msg{
    background:#dcfce7;
    color:#166534;
    padding:12px 15px;
    border-radius:8px;
    margin-bottom:15px;
    font-size:14px;
    border-left:5px solid #22c55e;
}

