 body {
            font-family: 'Roboto', Arial, sans-serif;
            background-color: #f0f2f5;
        }

      /* Navbar and Footer Unified Color */
.navbar {
    background-color: rgb(0,60,120); /* Unified color */
}

/* Navbar Brand Image */
.navbar-brand img {
    height: 50px;
    width: 150px;
    object-fit: contain;
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #00bcd4 !important; /* Hover effect */
}
        /* Hero */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('https://dmnins.org/img/WhatsApp%20Image%202025-01-27%20at%2004.44.50_89aeff97.jpg') center/cover no-repeat;
            height: 100vh;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 0 20px;
            text-align: center;
        }

        .hero h1 {
            font-weight: 700;
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .hero .btn {
            font-weight: 500;
            padding: 10px 25px;
            border-radius: 30px;
        }

        /* Sections */
        .section-white {
            background-color: #fff;
        }
        .section-light {
            background-color: #f9f9f9;
        }
        h2 {
            font-weight: 700;
            margin-bottom: 30px;
            color: #333;
        }

        /* Cards & Images */
        .card-img-top {
            transition: transform 0.3s;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }

        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
        }

        .card-body h5 {
            font-weight: 600;
        }

        /* Boxes and Fade-in */
        .box {
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 1s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Gallery */
        #gallery h3 {
            font-weight: 600;
            margin-top: 60px;
        }

        /* Videos */
        video,
        .ratio iframe {
            border-radius: 10px;
            transition: transform 0.3s;
        }

        video:hover,
        .ratio:hover iframe {
            transform: scale(1.03);
        }

        /* Footer */
        footer {
            background-color: rgb(0,60,120);
            color: #fff;
            padding: 40px 0;
        }

        footer h5 {
            font-weight: 600;
            margin-bottom: 20px;
        }

        footer ul li {
            margin-bottom: 5px;
        }

        footer a {
            color: #fff;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
            color: #00bcd4;
        }

        footer hr {
            opacity: 0.5;
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }


.section-light {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.section-light h2 {
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.section-light ul {
    padding-left: 0;
}

.section-light ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.section-light .btn {
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 500;
}

.event-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.event-date {
    border-radius: 0 10px 10px 0;
}

.event-card img {
    transition: transform 0.3s;
}

.event-card:hover img {
    transform: scale(1.05);
}

 .video-thumbnail:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .box {
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .section-light {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.section-light h2 {
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.section-light ul {
    padding-left: 0;
}

.section-light ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.section-light .btn {
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 500;
}


.news-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.news-card img {
    transition: transform 0.3s;
    border-radius: 10px 10px 0 0;
}

.news-card:hover img {
    transform: scale(1.05);
}

.section-light {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.section-light h2 {
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.section-light .btn-lg {
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 500;
}

.stat-box {
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



/* Base Styling for Animation */
[data-animate="rise"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out; /* Slower Speed */
}

/* Trigger the Animation */
[data-animate="rise"].in-view {
    opacity: 1;
    transform: translateY(0);
}



/* Navbar and Footer Unified Color */
.navbar, footer {
    background-color: rgb(0,60,120); /* Unified color */
}

/* Navbar Brand Image */
.navbar-brand img {
    height: 50px;
    width: 150px;
    object-fit: contain;
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #00bcd4 !important; /* Hover effect */
}

/* Footer Styles */
footer {
    color: #fff;
    padding: 40px 0;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

footer ul li {
    margin-bottom: 5px;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    text-decoration: underline;
    color: #00bcd4;
}

footer hr {
    opacity: 0.5;
}



/* Section Styling */
#training {
    background-color: #f9f9f9;
}

#training h2 {
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    transition: transform 0.3s;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body h5 {
    font-weight: 600;
}

.card-body .d-flex {
    font-size: 0.9rem;
}


/* Scroll-to-Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Hidden by default */
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(0,60,120);
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
}

#scrollToTopBtn:hover {
    background-color: #005f99;
    transform: scale(1.1); /* Slightly enlarge on hover */
}

 #scrollToTopBtn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: none; /* Hidden by default */
            z-index: 1000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgb(0, 60, 120);
            color: white;
            border: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: opacity 0.3s, transform 0.3s;
        }

        #scrollToTopBtn:hover {
            background-color: #005f99;
            transform: scale(1.1); /* Slightly enlarge on hover */
        }





         /* Tooltip Message */
        .tooltip-message {
            position: fixed;
            bottom: 90px; /* Place above the WhatsApp button */
            right: 20px;
            display: none; /* Hidden by default */
            background-color: #25d366;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s, transform 0.3s;
        }

        /* Tooltip Visible State */
        .tooltip-message.visible {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* WhatsApp Chat Button */
        #whatsappChatBtn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: none; /* Hidden by default */
            z-index: 1000;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            align-items: center;
            transition: opacity 0.3s, transform 0.3s;
        }

        #whatsappChatBtn:hover {
            background-color: #1ebe57;
            transform: scale(1.1); /* Slightly enlarge on hover */
        }

        #whatsappChatBtn i {
            font-size: 20px;
            margin-right: 10px;
        }


