* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.navbar {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: space-around;
    padding: 15px 40px;
    background: #ffffff4f; 
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.logo img {
    width: 200px;
    height: auto;
}

.nav-links ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links ul li {
    position: relative;
    margin: 5px;
}

.nav-links ul li a {
    text-decoration: none;
    color: #2c3e50;
    padding: 10px 15px;
    transition: 0.3s;
}

.nav-links ul li a:hover,
.nav-links ul li a.active {
    background-color: #0a4d68;
    color: #fff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 180px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 100;
}

.dropdown-menu li a {
    padding: 10px 15px;
    color: #333;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.auth-link {
    color: #0a4d68;
    font-weight: 600;
}

/* ---------- Responsive ---------- */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0a4d68;
}

/*------------------ Hero Section ------------------ */

.hero {
    /* position: relative; */
    /* height: 100%; */
    width: 100%;
    color: #fff;
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 700px;
    width: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: relative;
    z-index: 2;
    padding: 110px 10%;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.overlay p {
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: rgba(6, 37, 19, 0.9);
    padding: 25px;
    border-radius: 10px;
    width: 360px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #0066cc;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    background: #0066cc;
    color: #fff;
}

/* Section Layout */
.welcome-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    background-color: #fefefe;
}

.welcome-container {
    max-width: 1200px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* Image Area */
.welcome-image img {
    width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Text Area */
.welcome-content {
    flex: 1;
}

.welcome-content h4 {
    font-size: 20px;
    color: #222;
    font-weight: 600;
    position: relative;
    margin-bottom: 10px;
}

.welcome-content h4::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #052e05;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.welcome-content h2 {
    font-size: 26px;
    color: #111;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.welcome-content p {
    margin-bottom: 18px;
    color: #444;
}

.welcome-content .mission {
    margin-top: 20px;
    font-weight: 600;
    color: #000;
}

/* Section Styling */
.regulatory-section {
    padding: 70px 20px;
    text-align: center;
    background: #fff;
}

/* Header */
.section-header {
    margin-bottom: 50px;
}

.section-header i, .section-header2 i {
    color: #00a651;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 28px;
    color: #111;
    font-weight: 700;
}

/* Grid Layout */
.regulatory-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Box */
.activity-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    transition: 0.3s ease;
}

.activity-box:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 40px;
    color: #00a651;
    margin-bottom: 15px;
}

.activity-box h3 {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}

.activity-box p {
    font-size: 15px;
    color: #555;
}


/* Section Styling */
/* Section Styling */
.stats-section {
    position: relative;
    background: url('nurses-bg.jpeg') center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Green Overlay */
.overlay2 {
    background-color: rgba(14, 49, 31, 0.93);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stats Layout */
.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 100px;
    flex-wrap: wrap;
}

.stat-box h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    transition: 0.3s;
}

.stat-box p {
    font-size: 16px;
    color: #f1f1f1;
}

/* Next Section */

    .vision-section {
        padding: 60px 20px;
        background-color: #f8f9fa;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .cards-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }

    .card2 {
        background: white;
        border-radius: 12px;
        padding: 40px 30px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card2:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }

    .card-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-icon svg {
        width: 100%;
        height: 100%;
        fill: #2ecc71;
    }

    .card2 h2 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #000000;
    }

    .card2 p {
        font-size: 16px;
        color: #666;
        line-height: 1.7;
    }

    .tagline-card {
        background: linear-gradient(135deg, #2ecc71, #000 80%);
        color: white;
        padding: 50px 40px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .tagline-card h2 {
        font-size: 32px;
        margin-bottom: 20px;
        color: white;
    }

    .tagline-card p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.7;
        max-width: 800px;
        margin: 0 auto;
    }

    .discover-more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        padding: 12px 24px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .discover-more:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
    }

/* ---------------Partners Section---------------- */


.partners-section {
    background: #f9f9f9;
    padding: 40px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
}

.partners-slider{
    overflow-x: auto;
    display: flex;
    scroll-behaviour: smooth;
    cursor: grab;
    scrollbar-width: none
    align-items: center;
    white-space: nowrap;
}

.partners-slider::-webkit-scrollbar {
  display: none; /* hide scrollbar in Chrome/Safari */
}

.partners-container {
  display: flex;
  align-items: center;
  animation: scroll-left 60s linear infinite;
}

.partners-container img {
    height: 100px;
    margin: 0 40px;
    width: auto;
    transition: filter 0.3s ease;
    user-select: none;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    /* filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1)); */
}

.partners-container img:hover{
    filter: grayscale(0%);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* moves half since we duplicated images */
  }
}

/* Disable animation when manually swiping */
.partners-container.paused {
  animation-play-state: paused;
}


/* --------------------News Section------------------------- */

.news-section {
    text-align: center;
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-header2 .subtitle {
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-header2 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Image + Hover Effect */
.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

/* Overlay effect */
.news-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;
}

.news-card:hover .news-image::after {
    background: rgba(0, 0, 0, 0.25);
}

/* Category tag */
.category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #27f0d1;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    z-index: 2;
}

/* Date badge */
.date-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #f13b68;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    text-align: center;
    z-index: 2;
}

.date-badge .day {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.date-badge .month {
    font-size: 0.8rem;
}

/* Card content */
.news-content {
    padding: 40px 20px 25px;
}

.news-content h3 {
    color: #00a64f;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.author img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.author p {
    font-size: 0.9rem;
    color: #333;
}

/* Button */
.read-btn {
    display: inline-block;
    background: #00a64f;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.read-btn:hover {
    background: #007c3c;
    transform: scale(1.05);
}

footer {
    background: #111;
    color: #fff;
    width: 100%;
}

/* ===== Top Section (Logo + Newsletter) ===== */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 30px 15%;
    border-bottom: 1px solid #222;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.footer-logo h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo p {
    font-size: 0.8rem;
    color: #ccc;
}

.newsletter {
    text-align: center;
}

.newsletter h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
}

.newsletter form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.newsletter input {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    width: 250px;
    outline: none;
}

.newsletter button {
    padding: 10px 20px;
    background: #00a64f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #007c3c;
}

/* ===== Main Footer Content ===== */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 50px 10%;
    background: #151515;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    color: #ccc;
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #00a64f;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

/* Contact icons */
.footer-col i {
    color: #00a64f;
    margin-right: 8px;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    color: #fff;
    background: #222;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: #00a64f;
}

/* Facebook embed */
.fb-page iframe {
    border-radius: 8px;
    width: 100%;
}

/* ===== Bottom Copyright ===== */
.footer-bottom {
    text-align: center;
    background: #101010;
    padding: 15px;
    font-size: 0.85rem;
    color: #aaa;
    border-top: 1px solid #222;
}

.footer-bottom span, a {
    color: #00a64f;
    font-weight: 600;
    text-decoration: none;
}


@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #fff;
        text-align: center;
        transition: 0.4s;
    }

    .nav-links.active {
        left: 0;
    z-index: 1000;
    }

    .nav-links ul {
        flex-direction: column;
        background-color: honeydew;
    }

    .nav-links ul li a {
        padding: 15px;
    display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .menu-toggle {
        display: block;
    }

    .overlay h1 {
        font-size: 1.8rem;
    }

    .overlay p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .card {
        width: 100%;
    }
.welcome-section {
    padding: 40px 15px;
}

.welcome-content h2 {
    font-size: 20px;
}

.welcome-content h4 {
    font-size: 15px;
}
}


    /* Responsive Design */
    @media (max-width: 992px) {
        .welcome-container {
            flex-direction: column;
            text-align: center;
        }

        .welcome-image img {
            width: 385px;
            margin: 0 auto 20px;
        }

        .welcome-content h2 {
            font-size: 22px;
        }

        .welcome-content p {
            font-size: 15px;
        }
        
    .regulatory-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

  .stats-container {
      gap: 60px;
  }

  .stat-box h2 {
      font-size: 40px;
  }
}

  .stat-box p {
      font-size: 15px;
  }
        
@media (max-width: 768px) {
    .regulatory-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .activity-box {
        padding: 15px;
    }

    .activity-box h3 {
        font-size: 17px;
    }

    .activity-box p {
        font-size: 14px;
    }

          .stats-section {
              height: auto;
          }
    
          .stats-container {
              flex-direction: column;
              gap: 30px;
          }
    
          .stat-box h2 {
              font-size: 36px;
          }
    
          .stat-box p {
              font-size: 14px;
          }

    .overlay2{
        padding: 50px;
    }

        .vision-section {
            padding: 40px 15px;
        }

        .cards-wrapper {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .card2 {
            padding: 30px 20px;
        }

        .card h2 {
            font-size: 24px;
        }

        .card p {
            font-size: 15px;
        }

        .tagline-card {
            padding: 40px 25px;
        }

        .tagline-card h2 {
            font-size: 26px;
        }

        .tagline-card p {
            font-size: 16px;
        }

        .section-header2 h2 {
            font-size: 1.75rem;
        }

        .news-content {
            padding: 30px 15px;
        }

        .read-btn {
            padding: 8px 18px;
        }

        .footer-top {
            flex-direction: column;
            text-align: center;
        }

        .footer-logo {
            flex-direction: column;
        }

        .newsletter form {
            flex-direction: column;
        }

        .newsletter input {
            width: 100%;
        }
        }