  body {
            background-color: #f8f9fa; /* Light background similar to the image */
     
        }
        .icon-card-section {
            padding: 60px 0; /* Adjust padding as needed */
            background-color: #f8f9fa; /* Ensure background matches body for consistency */
        }
        .icon-card {
            background-color: #fff;
            border-radius: 8px; /* Slightly rounded corners */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Subtle shadow */
            padding: 20px;
            display: flex;
            align-items: center;
            margin-bottom: 20px; /* Space between cards */
            min-height: 120px; /* Ensure consistent height for cards */
        }
        .icon-wrapper {
            width: 60px; /* Fixed width for the icon background */
            height: 60px; /* Fixed height for the icon background */
            background-color: #e6f7e6; /* Light green background for icon */
            border-radius: 50%; /* Circular background */
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0; /* Prevent icon wrapper from shrinking */
            margin-right: 20px;
        }
        .icon-wrapper i {
            font-size: 28px; /* Icon size */
            color: #6c757d; /* Dark grey icon color (can be changed to a specific green if desired) */
            /* Using a shade of green for icons if preferred: */
            /* color: #28a745; */
        }
        .icon-card-text {
            flex-grow: 1; /* Allow text to take remaining space */
            color: #495057; /* Darker text for readability */
            font-size: 1rem;
            line-height: 1.5;
        }

        /* Responsive adjustments for smaller screens */
        @media (max-width: 767.98px) {
            .icon-card {
                flex-direction: column; /* Stack icon and text on small screens */
                text-align: center;
                padding: 15px;
            }
            .icon-wrapper {
                margin-right: 0;
                margin-bottom: 15px; /* Add space below icon when stacked */
            }
        }

      /* Make sure .icon-card has a transition */
      .icon-card {
        background: rgba(255, 255, 255, 0.9);
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 8px;
        text-align: center;
        transition: all 0.3s ease;
      }

      /* On hover: background turns green, text and icon turn white */
      .icon-card:hover {
        background: #4CAF50; /* Green background on hover */
      }

      /* Optional: Make the icon and text white on hover */
      .icon-card:hover .icon-wrapper i,
      .icon-card:hover .icon-card-text {
        color: #fff;
      }
      
/* Base nav styling */
.nav {
  list-style: none;
  margin: 10;
  padding: 0;
}

/* Desktop layout: horizontal nav */
@media (min-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
  }

  .nav > li {
    display: inline-flex;
    position: relative;
  }

  .nav > li > a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
  }

  .nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 180px;
    z-index: 1000;
    padding: 0;
    margin: 0;
  }

  /* Show dropdown on hover for desktop */
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile layout: vertical nav */
@media (max-width: 767px) {
  .nav {
    display: block;
    width: 100%;
  }

  .nav > li {
    display: block;
    width: 100%;
  }

  .nav > li > a {
    display: block;
    width: 100%;
    padding: 10px 15px;
  }

  .nav .dropdown-menu {
    display: none;
    position: static;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  /* Show dropdown when parent is clicked (Bootstrap toggles .show) */
  .nav-item.dropdown.show .dropdown-menu {
    display: block;
  }
}

/* Dropdown item styling */
.nav .dropdown-menu .dropdown-item {
  display: block;
  padding: 10px 15px;
  white-space: nowrap;
}

.nav .dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
}
.navbar-nav .nav-link {
  font-weight: 500;
  color: #000;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ff6600;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #ffffff; /* White background for better visibility */
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    color: #000 !important; /* Force readable text */
  }

  .navbar-nav .nav-link:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
}








.video-section p.text-muted {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 500px;
}


/* Video styling */
.video-section .ratio {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-section .ratio:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Optional: Title styling for extra elegance */
.video-section h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #333;
}

.video-section p {
  color: #555;
  font-size: 1rem;
}


//* Style for the "Explore More" button */
.explore-btn {
  background-color: #198754;           /* Bootstrap green */
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.explore-btn {
  background-color: #198754;           /* Green always */
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Hover and focus */
.explore-btn:hover,
.explore-btn:focus {
  background-color: #145c3f;           /* Darker on hover/focus */
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Active/clicked */
.explore-btn:active {
  background-color: #0f3e2a;           /* Even darker when clicking */
  color: #fff;
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* Visited */
.explore-btn:visited {
  background-color: #198754;           /* Keep same green after visiting */
  color: #fff;
}






/* Beautiful gradient background for the whole top header */
.sub-header {
  background: linear-gradient(90deg, #198754,#198754); /* deep purple gradient */
}

/* Make all text and icons pure white */
.sub-header,
.sub-header .info li,
.sub-header .info li i,
.sub-header strong,
.sub-header .social-links a,
.sub-header .social-links i {
  color: #ffffff !important; /* pure white */
}.header-text .category {
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
}

/* Optional: bigger text on big screens */
@media (min-width: 768px) {
  .header-text h2 {
    font-size: 3rem;
  }
  .header-text .category {
    font-size: 1.5rem;
  }
}

/* Keep social icon brand colors on large screens if you want them */
@media (min-width: 768px) {
  .sub-header .social-links i.fa-facebook-f { color: #3b5998 !important; }
  .sub-header .social-links i.fa-twitter { color: #1da1f2 !important; }
  .sub-header .social-links i.fa-linkedin-in { color: #0077b5 !important; }
  .sub-header .social-links i.fa-instagram { color: #e1306c !important; }
}

/* On small screens, make all icons white for clarity */
@media (max-width: 767.98px) {
  .sub-header .social-links i {
    color: #ffffff !important;
  }
}

/* Hover state: lighten the text for clarity */
.sub-header .social-links a:hover,
.sub-header .social-links a:focus {
  color: #ffee58 !important; /* bright yellow on hover */
}

/* Mobile responsive layout */
@media (max-width: 767.98px) {
  .sub-header .row {
    flex-direction: column;
    text-align: center;
  }
  .sub-header .col-md-8,
  .sub-header .col-md-4 {
    justify-content: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sub-header strong {
    margin-bottom: 0.5rem;
  }
}




/* Custom Footer Fixes */
footer p {
  margin: 0;
  line-height: 1.5;
  white-space: normal;
  word-spacing: normal;
  color: #ffffffcc; /* semi-transparent white */
}

/* Footer link hover effect */
footer a:hover {
  text-decoration: underline;
  color: #fff !important;
}



/* Responsive padding fix for footer */
footer .container {
  padding-bottom: 30px;
}

/* Optional - compress h5 spacing in footer */
footer h5 {
  margin-bottom: 12px;
}

/* Optional - style the footer HR */
footer hr {
  background-color: #ffffff33;
  height: 1px;
  border: none;
}
