/********** Template CSS **********/
:root {
    --bs-tertiary: #797E88;
}



.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}




/* ===============================
   RESPONSIVE TOP LOGO (HHSV)
================================ */


/* ===============================
   RESPONSIVE TOP LOGO (HHSV)
================================ */
.top-logo {
  min-height: 100px;   /* as you requested */
  max-height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ===============================
   MOBILE DROPDOWN FIX
================================ */
@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    position: static;
    float: none;
    display: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: #f8f9fa;
  }

  .navbar .dropdown-menu.show {
    display: block;
  }
}








.top-logo {
  max-height: 100px;     /* desktop default */
  width: auto;
  height: auto;
  max-width: 100%;
  display: inline-block;
}

/* Tablets */
@media (max-width: 992px) {
  .top-logo {
    max-height: 100px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .top-logo {
    max-height: 100px;
  }
}


/*** Top Bar ***/
.top-bar {
    height: 100px;
    padding: 0 90px;
}

.top-bar h6 {
    letter-spacing: 1px;
}



/*** Nav Bar ***/
.nav-bar {
    padding: 0 90px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: var(--bs-dark);
    font-size: 18px;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid var(--bs-white);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}








/* ===============================
   MOBILE MENU FULL WIDTH
================================ */
@media (max-width: 991.98px) {

    .navbar-collapse {
        width: 100%;
        background: var(--bs-primary);
        padding: 15px 20px;
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 12px 0;
        font-size: 17px;
        text-align: left;
    }
}



/* ===============================
   MOBILE DONATE BUTTON HIGHLIGHT
================================ */
@media (max-width: 991.98px) {

   /* .navbar-nav .donate-mobile {
        background: var(--bs-secondary);
        color: var(--bs-dark) !important;
        font-weight: 700;
        text-align: center;
        padding: 14px 0;
        margin-top: 12px;
        border-radius: 4px;
    }*/

    .navbar-nav .donate-mobile:hover {
        background: #ffffff;
        color: var(--bs-primary) !important;
    }
}




@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    position: static;
    display: none;
  }

  .navbar .dropdown-menu.show {
    display: block;
  }
}







/* ===============================
   HHSV TOP LOGO
================================ */
.top-logo {
  min-height: 100px;
  max-height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ===============================
   MOBILE MENU FULL WIDTH
================================ */
@media (max-width: 991.98px) {

  .navbar-collapse {
    width: 100%;
    background: var(--bs-primary);
    padding: 15px 20px;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-link {
    width: 100%;
    padding: 12px 0;
    font-size: 17px;
  }
}

/* ===============================
   MOBILE DROPDOWN FIX
================================ */
@media (max-width: 991.98px) {

  .navbar .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
  }

  .navbar .dropdown-menu.show {
    display: block;
  }
}

/* ===============================
   MOBILE DONATE BUTTON
================================ */
@media (max-width: 991.98px) {

  .donate-mobile {
    background: var(--bs-secondary);
    color: var(--bs-dark) !important;
    font-weight: 700;
    text-align: center;
    padding: 14px 0;
    margin-top: 15px;
    border-radius: 6px;
  }

  .donate-mobile:hover {
    background: #ffffff;
    color: var(--bs-primary) !important;
  }
}

/* ===============================
   DESKTOP DONATE BUTTON
================================ */
.donate-btn {
  font-weight: 600;
  animation: pulseDonate 2s infinite;
}

@keyframes pulseDonate {
  0% { transform: scale(1); }
  70% { transform: scale(1.05); }
  100% { transform: scale(1); }
}






/* =====================================
   FORCE 100% WIDTH NAVBAR (SMALL SCREENS)
===================================== */
@media (max-width: 991.98px) {

  /* remove all side gaps */
  body,
  .container,
  .container-fluid,
  .nav-bar {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }

  /* navbar full width */
  .navbar {
    width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* opened menu full width */
  .navbar-collapse {
    width: 100% !important;
    margin: 0 !important;
    background: var(--bs-primary);
  }

  /* menu list full width */
  .navbar-nav {
    width: 100% !important;
    margin: 0 !important;
  }

  /* menu items edge-to-edge */
  .navbar-nav .nav-link {
    width: 100%;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  /* dropdown full width */
  .navbar .dropdown-menu {
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0;
    box-shadow: none;
  }
}


/*** Header Carousel ***/
.header-carousel {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.header-carousel .carousel-img {
    position: relative;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

.page-header {
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
    color: var(--bs-dark);
}

/* =====================================
   HEADER SLIDER HEIGHT – FINAL
===================================== */

/* Desktop & Tablet */
.header-carousel {
    padding-top: 30px;
    padding-bottom: 30px;
}

.header-carousel .container {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.header-carousel .carousel-img img {
    width: 100%;
    height: auto;
    max-height: 380px;      /* ✅ DESKTOP MAX HEIGHT */
    object-fit: cover;
}

/* Text scale for desktop */
.header-carousel .carousel-text h1 {
    font-size: 3rem;
    line-height: 1.15;
}

.header-carousel .carousel-text p {
    margin-bottom: 20px;
}

/* =====================================
   MOBILE – MAX HEIGHT 400px
===================================== */
@media (max-width: 768px) {

    .header-carousel {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .header-carousel .container {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .header-carousel .carousel-text h1 {
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .header-carousel .carousel-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .header-carousel .carousel-img img {
        max-height: 400px;   /* ✅ MOBILE MAX HEIGHT */
    }

    .header-carousel .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}


/*/////////////////////////////////*/


/*** Video ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-dark);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: var(--bs-white);
    background: #000000;
    opacity: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 0px;
    top: 5px;
    left: -40px;
    border-top: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 0px;
    bottom: 6px;
    left: -60px;
    border-bottom: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-img {
    position: relative;
}

.about-img::before,
.about-img::after {
    position: absolute;
    content: "";
    width: 33%;
    height: 90px;
    background: var(--bs-white);
}

.about-img::before {
    top: 0px;
    left: 0px;
}

.about-img::after {
    right: 0px;
    bottom: 0px;
}


/*** Service ***/
.service-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.service-title h1 {
    font-size: 22px;
}

.service-item {
    overflow: hidden;
}

.service-item .btn-square {
    width: 65px;
    height: 65px;
}

.service-item a {
    position: relative;
    padding: 0;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    transition: .5s;
}

.service-item a::after {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    left: 100%;
    bottom: 3px;
    margin-left: 10px;
    border-bottom: 2px solid var(--bs-primary);
}


/*** Donation ***/
.donation-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.donation-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.donation-item .donation-progress {
    width: 80px;
}

.donation-item .progress .progress-bar {
    height: 20px;
    overflow: visible;
    transition: 3s;
}


/*** Banner ***/
.banner .banner-inner {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.banner .banner-inner::before,
.banner .banner-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.banner .banner-inner::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.banner .banner-inner::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}


/*** Event ***/
.event-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.event-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}


/*** Donate ***/
.donate .donate-text {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.donate .donate-text::before,
.donate .donate-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.donate .donate-text::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.donate .donate-text::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}

.donate .donate-form .form-control {
    border: none;
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group {
    display: flex;
}

.donate .donate-form .btn-group .btn {
    margin: 0;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--bs-tertiary);
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group .btn-check:checked+.btn {
    border: none;
    background: var(--bs-white);
}



/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.team-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.team-item .team-detail span {
    letter-spacing: 2px;
}



/*** Testimonial ***/
.testimonial-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-title h1{
    font-size: 20px;
    
}

.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    transition: .5s;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
    color: var(--bs-secondary);
    background: var(--bs-white);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: 6.3rem;
    }
}



/*** Footer ***/
.footer {
    color: var(--bs-tertiary);
    background: linear-gradient(rgba(5, 19, 17, .95), rgba(5, 19, 17, .95)), url(../img/bg-footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-tertiary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
}








/* =========================================
   FIX MOBILE HORIZONTAL SCROLL (FINAL)
========================================= */
@media (max-width: 991.98px) {

  /* stop horizontal scroll globally */
  html, body {
    width: 100%;
    overflow-x: hidden !important;
  }

  /* remove container padding that causes overflow */
  .container,
  .container-fluid,
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }

  /* navbar full width without padding */
  .navbar {
    width: 100% !important;
    margin: 0 !important;
    padding-left: 20 !important;
    padding-right: 20 !important;
  }

  /* menu area full width */
  .navbar-collapse {
    width: 100% !important;
    margin: 0 !important;
    background: var(--bs-primary);
      
      
  }

  .navbar-nav {
    width: 100% !important;
    margin: 0 !important;
  }

  /* menu items */
  .navbar-nav .nav-link {
    width: 100%;
    padding: 14px 16px;   /* ✅ controlled padding */
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  /* dropdown menu */
  .navbar .dropdown-menu {
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0;
    box-shadow: none;
  }

  .navbar .dropdown-item {
    padding: 12px 20px;
    white-space: normal;
  }

  /* mobile donate */
 /* .donate-mobile {
    margin: 10px 16px;
    width: calc(100% - 32px);
  }*/
}


/* =========================================
   FIX MOBILE MENU SCROLL (FINAL)
========================================= */
@media (max-width: 991.98px) {

  /* allow navbar menu to scroll */
  .navbar-collapse {
    max-height: calc(100vh - 60px); /* adjust if header height differs */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* prevent body scroll issues */
  body {
    overflow-x: hidden;
  }

  /* smooth scrolling inside menu */
  .navbar-collapse::-webkit-scrollbar {
    width: 5px;
  }

  .navbar-collapse::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
  }
}


/* =====================================
   MOBILE TOGGLE & MENU TEXT PADDING
===================================== */
@media (max-width: 991.98px) {

  /* Toggle (☰) padding */
  .navbar-toggler {
    margin:  -left: 10px !important;
    margin-right: 10px !important;
  }

  /* Menu text padding */
  .navbar-nav .nav-link {
    /*margin-left: 10px !important;*/
    margin-right: 10px !important;
  }

  /* Dropdown items padding */
  .navbar .dropdown-item {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
}






/* =========================
   MOBILE MENU DONATE BUTTON FIX
========================= */

.donate-btn {
  display: block;              /* Makes centering possible */
  width: 100%;                 /* Full width on mobile */
  max-width: 260px;            /* Controls button size */
  margin: 20px auto 0 auto;    /* Centers horizontally */
  text-align: center;
  padding: 12px 20px;
  background: #1f6f5c;         /* Your green */
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

/* Extra safety for small screens */
@media (max-width: 576px) {
  .donate-btn {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.mobile-menu,
.menu-panel,
.nav-mobile {
  align-items: center;
}


/* ===============================
   MOBILE DONATE BUTTON (FINAL FIX)
================================ */
@media (max-width: 991.98px) {

  .donate-mobile {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    margin: 15px auto 5px;

    padding: 14px 0;
    background: var(--bs-secondary);
    color: var(--bs-dark) !important;

    font-weight: 700;
    border-radius: 6px;
    text-align: center;
  }

}

/* ===============================
   DESKTOP DONATE BUTTON ALIGN FIX
================================ */
@media (min-width: 992px) {

  .navbar {
    display: flex;
    align-items: center; /* center everything vertically */
  }

  .navbar-collapse {
    display: flex;
    align-items: center;
  }

  .navbar-nav {
    align-items: center;
  }

  .ms-auto.d-lg-flex {
    align-items: center;
  }

  .donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;              /* match nav-link height */
    padding: 0 22px;
    margin-top: 0;            /* remove any offset */
  }

}








/*///////////////////////////////////////*/

.read-more-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--bs-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover {
    color: var(--bs-secondary);
}

.read-more-link:hover i {
    transform: translateX(4px);
}




/* ================= FLOATING SOCIAL MEDIA ================= */
/* ================= FLOATING SOCIAL MEDIA ================= */
.social-float {
  position: fixed;
  left: 15px;
  bottom: 120px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-float a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

/* Platform Colors */
.social-float a.facebook {
  background: #1877f2;
}

.social-float a.youtube {
  background: #ff0000;
}

.social-float a.whatsapp {
  background: #25D366;
}

/* Hover Effect */
.social-float a:hover {
  transform: translateX(6px) scale(1.12);
  opacity: 0.9;
}





.social-float a.whatsapp {
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}




/* ================= BOTTOM FLOATING SOCIAL MEDIA ================= */
.social-float-bottom {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  display: flex;
  gap: 16px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.65);
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

/* Common Icon Style */
.social-float-bottom a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

/* Platform Colors */
.social-float-bottom a.facebook { background: #1877f2; }
.social-float-bottom a.youtube { background: #ff0000; }
.social-float-bottom a.whatsapp { background: #25D366; }

/* Hover Effect */
.social-float-bottom a:hover {
  transform: translateY(-6px) scale(1.15);
  box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

/* Pulse WhatsApp */
.social-float-bottom a.whatsapp {
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}




/*  ////////////////////////////////////    */
/* ===============================
   VIDEO GALLERY PLAY BUTTON
================================ */
.video-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.video-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.btn-play-gallery {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.65);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.btn-play-gallery span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 15px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}



/* ===============================
   VIDEO GALLERY PLAY ANIMATION
================================ */

.btn-play-gallery {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 2;
}

/* pulse ring */
.btn-play-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  animation: gallery-pulse 1.6s infinite;
  z-index: 0;
}

/* solid circle */
.btn-play-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

/* triangle */
.btn-play-gallery span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 15px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  z-index: 2;
}

/* pulse animation */
@keyframes gallery-pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}


/*   image gallery css start */
/* ================= IMAGE GALLERY ================= */
/* ================= IMAGE GALLERY ================= */

.image-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.image-box img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover Zoom */
.image-box:hover img {
  transform: scale(1.12);
}

/* Overlay */
.image-box .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

.image-box:hover .overlay {
  opacity: 1;
}

/* Icon */
.image-box .overlay i {
  color: #fff;
  font-size: 26px;
  background: var(--bs-primary);
  padding: 16px;
  border-radius: 50%;
}



/*   education css */

.education-section h4{

color:#0d6efd;
font-weight:700;
margin-top:30px;

}

.edu-block{

background:white;
padding:25px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
margin-bottom:25px;

}

.edu-block:hover{

transform:translateY(-5px);
transition:0.3s;

}

.edu-block p{

line-height:1.7;

}



.education-gallery{

background:#f8f9fa;

}

.gallery-grid{

column-count:4;
column-gap:15px;

}

.gallery-grid a{

display:block;
margin-bottom:15px;
overflow:hidden;
border-radius:8px;

}

.gallery-grid img{

width:100%;
border-radius:8px;
transition:0.4s;

}

.gallery-grid img:hover{

transform:scale(1.08);
filter:brightness(1.1);

}



@media (max-width:992px){

.gallery-grid{

column-count:3;

}

}

@media (max-width:600px){

.gallery-grid{

column-count:2;

}

}



/*   gallery umages  */

.image-box img{
width:100%;
height:220px;
object-fit:cover;
}


.image-box{
position:relative;
overflow:hidden;
border-radius:10px;
margin-bottom:25px;
}

.image-box img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}
