 :root {
   --custom-primary: #017fcc;
   --custom-secondary: #fdb912;
   --custom-light: #f5f3f3;
   --clr-red: #ed1c24;
   --clr-blue: #007cc2;
   --clr-green: #006536;
 }

 li {
   list-style: none;
 }

 body {
   font-family: 'Inter', 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
   font-size: 16px;
   font-weight: 400;
   line-height: 1.7;
   color: #333;
   background-color: #fff;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
   font-family: 'Inter', 'Roboto', sans-serif;
   font-weight: 600 !important;
 }


 a {
   text-decoration: none;
 }

 .bg-custom-primary {
   background-color: var(--custom-secondary);
 }

 .text-custom-secondary {
   color: var(--custom-secondary);
 }

 /* Prevent overflow breaking layout */
 img {
   transition: transform 0.5s ease, filter 0.4s ease, box-shadow 0.4s ease;
 }

 /* Make sure parent doesn't cut the zoom */
 img .imglogo:hover {
   transform: scale(1.06);
   filter: brightness(1.05);
 }

 /* Apply to all Bootstrap buttons */
 .btn {
   position: relative;
   /* needed for ::before positioning */
   overflow: hidden;
   /* prevent the pseudo-element from overflowing */
   z-index: 1;
   /* ensure button content stays above ::before */
 }

 .btn::before {
   content: "";
   position: absolute;
   top: 100%;
   left: 0;
   width: 120%;
   height: 300%;
   background: white;
   /* you can change color if needed */
   border-radius: 40%;
   transition: all 0.6s ease;
   z-index: -1;
   /* behind the button text */
 }

 .btn:hover::before {
   top: -50%;
 }

 .btn:hover {
   color: black !important;
 }

 /************************ Hero Banner ************************/

 .hero-slider {
   position: relative;
   height: 100vh;
   overflow: hidden;
   margin-top: -100px;
 }

 swiper-container,
 swiper-slide {
   height: 100%;
 }

 .hero-slide {
   position: relative;
   height: 100%;
   background-size: cover;
   background-position: center;
   display: flex;
   align-items: center;
   text-align: center;
   color: #fff;
 }

 /* Smooth overlay (no glitch) */
 .overlay {
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.55);
   z-index: 1;
 }

 /* Content */
 .hero-content {
   position: relative;
   z-index: 2;
   max-width: 800px;
   opacity: 0;
   transform: translateY(40px);
   transition: opacity 0.8s ease, transform 0.8s ease;
 }

 /* Fade animation */
 swiper-slide.swiper-slide-active .hero-content {
   opacity: 1;
   transform: translateY(0);
 }


 swiper-container::part(pagination) {
   display: none;
 }

 /* ---------- Extra Small Devices (≤ 576px) ---------- */
 @media (max-width: 576px) {

   /* Reduce hero height slightly for mobile */
   .hero-slider {
     height: 90vh;
   }

   /* Better navbar spacing */
   .navbar {
     padding: 8px 0;
   }

   /* Adjust latest event box */
   .latest-event-box {
     width: 95%;
     font-size: 14px;
     padding: 10px 15px;
   }

 }


 /*****************Banner End*********************/

 /* Latest event box */
 .latest-event-box {
   position: absolute;
   bottom: 20px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 10;
   background: rgba(0, 0, 0, 0.7);
   padding: 12px 25px;
   border-radius: 8px;
   color: #fff;
   width: 90%;
   max-width: 900px;
 }


 /************************ Latest Events ************************/

 .latest-event-box {
   position: absolute;
   left: 50%;
   bottom: 24px;
   transform: translateX(-50%);
   width: 720px;
   max-width: 95%;
   background: rgba(0, 0, 0, 0.55);
   backdrop-filter: blur(8px);
   padding: 16px 20px;
   border-radius: 10px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
   z-index: 5;
   color: #fff;
   overflow: hidden;
   display: flex;
   align-items: center;
   gap: 20px;
 }

 /* TITLE */
 .latest-event-title {
   font-size: 0.85rem;
   font-weight: 600;
   letter-spacing: 1px;
   text-transform: uppercase;
   white-space: nowrap;
   color: var(--custom-secondary);
 }

 /* MARQUEE WRAPPER */
 .latest-event-marquee {
   overflow: hidden;
   position: relative;
   flex: 1;
 }

 /* MARQUEE CONTENT */
 .latest-event-marquee ul {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   gap: 50px;
   white-space: nowrap;
   animation: marqueeLeft 16s linear infinite;
 }

 .latest-event-marquee li {
   font-size: 0.9rem;
   line-height: 1.6;
   white-space: nowrap;
   opacity: 0.9;
 }

 /* HOVER PAUSE */
 .latest-event-box:hover .latest-event-marquee ul {
   animation-play-state: paused;
 }

 /* HORIZONTAL ANIMATION */
 @keyframes marqueeLeft {
   0% {
     transform: translateX(100%);
   }

   100% {
     transform: translateX(-100%);
   }
 }

 /* MOBILE TWEAK */
 @media (max-width: 768px) {
   .latest-event-box {
     width: 100%;
     bottom: 16px;
     padding: 14px 16px;
     flex-direction: column;
     gap: 10px;
   }

   .latest-event-title {
     font-size: 0.8rem;
   }

   .latest-event-marquee ul {
     animation-duration: 20s;
   }

   .latest-event-marquee li {
     font-size: 0.85rem;
   }
 }


 /******************Mission, Vision, Values***********************/
 .vmv-card {
   background: #fff;
   border: 1px solid #e5f3ef;
   border-radius: 14px;
   padding: 28px;
   transition: all 0.3s ease;
 }

 .vmv-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
 }

 .icon-box {
   width: 52px;
   height: 52px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 24px;
 }


 /******************About Us***********************/
 .tag-headline {
   position: relative;
   display: inline-block;
 }

 .tag-headline::after {
   content: "";
   height: 2px;
   width: 70%;
   background-color: var(--custom-secondary);
   position: absolute;
   bottom: -5px;
   left: 50%;
   transform: translateX(-50%);
 }

 .tag-headline.white::after {
   background-color: white !important;
 }


 /******************Custom Image style***********************/
 .custom-image-style {
   position: relative;
   z-index: 1;
 }

 .custom-image-style::before {
   content: "";
   position: absolute;
   width: 200px;
   height: 200px;
   background-color: #f5f3f3;
   top: -50px;
   left: -50px;
   z-index: -1;
   border-radius: 50%;
 }

 .custom-image-style::after {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   top: -10px;
   left: -10px;
   z-index: -1;
   border-radius: 10px;
   border: 1px dashed var(--custom-secondary);
   background-color: white;
 }


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

 /* IMAGE FIX */
 .about-visual .about-image {
   height: 100%;
 }

 @media (max-width: 991.98px) {
   .about-visual .about-image {
     height: auto;
   }
 }

 .object-fit-cover {
   object-fit: cover;
   width: 100%;
   height: 100%;
 }

 /* STAT CARDS */
 .stat-card {
   height: 100%;
   padding: 24px;
   border-radius: 16px;
   color: #fff;
   display: flex;
   flex-direction: column;
   justify-content: center;
 }

 .stat-card h3 {
   font-size: 2rem;
   font-weight: 700;
   margin-bottom: 6px;
 }

 .stat-card p {
   font-size: 0.9rem;
   margin: 0;
   line-height: 1.4;
 }

 .stat-card.dark {
   background: #1f1f1f;
 }

 .stat-card.primary {
   background: var(--custom-secondary);
 }


 /**************** Responsive Fixes ****************/

 @media (max-width: 575.98px) {

   .about-visual .col-lg-6.position-relative {
     overflow: hidden;
   }

   .about-visual .position-absolute {
     width: 45%;
   }

   .about-visual .position-absolute img {
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
   }

   .stat-card {
     padding: 16px;
   }

   .stat-card h3 {
     font-size: 1.5rem;
   }

   .stat-card p {
     font-size: 0.8rem;
   }

   .custom-image-style::before {
     width: 120px;
     height: 120px;
     top: -30px;
     left: -30px;
   }

   .custom-image-style::after {
     top: -6px;
     left: -6px;
   }
 }

 @media (min-width: 768px) and (max-width: 991.98px) {
   .stat-card h3 {
     font-size: 1.75rem;
   }
 }


 /* ================= WHY JES SECTION ================= */

 .why-jes-section {
   background-color: #fff;
 }

 .why-item {
   position: relative;
   margin-bottom: 5rem;
 }

 .why-item h5 {
   font-weight: 600;
   margin-bottom: 1rem;
 }


 /* ================= Common List with Icons ================= */

 .common-list {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .common-list li {
   display: flex;
   align-items: flex-start;
   gap: 8px;
   margin-bottom: 10px;
   font-size: 18px;
   line-height: 1.6;
 }

 .common-list i {
   font-size: 1rem;
   color: var(--custom-secondary);
   margin-top: 3px;
 }


 /* ================= IMAGE BOX ================= */

 .why-image {
   width: 100%;
   height: 260px;
   background-color: #f1f1f1;
   border-radius: 18px;
 }


 /* ================= TIMELINE ================= */
 .timeline {
   position: relative;
   display: flex;
   justify-content: center;
 }

 .timeline::after {
   content: "";
   position: absolute;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 2px;
   height: 100%;
   background-color: var(--custom-secondary);
 }

 /* Sticky dot */
 .timeline-dot {
   position: sticky;
   top: 120px;
   /* Adjust based on header height */
   width: 80px;
   height: 80px;
   border-radius: 50%;
   /* border: 1.5px dashed var(--custom-secondary); */
   background-color: #fff;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 2;
 }


 /* ================= RESPONSIVE ================= */

 @media (max-width: 767.98px) {

   .why-item {
     margin-bottom: 3rem;
   }

   .why-image {
     margin-top: 1.5rem;
     height: 200px;
   }

   .timeline {
     display: none;
   }
 }

 @media (min-width: 768px) {
   .why-image {
     height: 280px;
   }
 }

 @media (min-width: 992px) {
   .why-image {
     height: 300px;
   }
 }


 /* ================= PRINCIPAL TABS ================= */

 .principal-tabs {
   border-radius: 10px;
   background: #f7f7f7;
   padding: 6px;
 }

 .principal-tabs .nav-link {
   border: 0;
   border-radius: 8px;
   padding: 10px 22px;
   font-size: 0.9rem;
   font-weight: 500;
   color: #666;
 }

 .principal-tabs .nav-link.active {
   background: #fff;
   color: #000;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 }

 .principal-content {
   border: 1px solid #f2c27b;
   border-radius: 16px;
   padding: 28px;
 }

 .principal-card {
   border: 1px solid #f2c27b;
   border-radius: 16px;
   padding: 16px;
   background: #fff;
 }

 @media (max-width: 575.98px) {
   .principal-content {
     padding: 20px;
   }

   .principal-tabs {
     flex-wrap: nowrap;
     overflow-x: auto;
   }
 }


 /* ================= GALLERY ================= */
 .gallery-item {
   position: relative;
   overflow: hidden;
   border-radius: 20px;
 }

 .gallery-item img {
   width: 100%;
   height: 220px;
   object-fit: cover;
   transition: transform 0.4s ease;
   border-radius: 20px;
 }

 /* Zoom effect */
 .gallery-item:hover img {
   transform: scale(1.08);
 }

 /* Overlay */
 .gallery-overlay {
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.35);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: opacity 0.4s ease;
   border-radius: 20px;
 }

 /* Show overlay on hover */
 .gallery-item:hover .gallery-overlay {
   opacity: 1;
 }

 /* Icon styling */
 .gallery-overlay i {
   font-size: 40px;
   color: var(--custom-secondary);
   background: #ffffff;
   width: 70px;
   height: 70px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: transform 0.3s ease;
 }

 /* Icon animation */
 .gallery-item:hover .gallery-overlay i {
   transform: scale(0.7);
 }

 /* ================= WHY DESC ================= */

 .why-desc {
   max-width: 700px;
 }


 /* ================= TESTIMONIAL ================= */

 /* Swiper Equal Height Fix */
 .testimonial-swiper-slide {
   display: flex;
   height: auto;
 }

 .testimonial-card {
   position: relative;
   background: linear-gradient(145deg, #ffffff, #fff3cd);
   border-radius: 20px;
   border: 1px solid #e9ecef;
   padding: 40px;
   transition: all 0.35s ease;
   overflow: hidden;

   /* Important for equal height */
   display: flex;
   flex-direction: column;
   height: 100%;
 }

 /* Decorative top accent */
 .testimonial-card::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 4px;
   background: linear-gradient(to right, #fdb912, #ffcf40);
 }

 /* Subtle quote mark */
 .testimonial-card::after {
   content: "“";
   position: absolute;
   top: 18px;
   left: 28px;
   font-size: 65px;
   color: rgba(253, 185, 18, 0.15);
   font-family: serif;
   z-index: 0;
 }

 /* Hover */
 .testimonial-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
   border-color: #fdb912;
 }

 /* Text */
 .testimonial-text {
   font-size: 1.05rem;
   line-height: 1.9;
   color: #6c757d;
   position: relative;
   z-index: 1;
   margin-bottom: 30px;
 }

 /* Bottom Section Alignment */
 .testimonial-card .mt-auto {
   margin-top: auto;
 }

 /* Parent Name */
 .testimonial-card h6 {
   font-size: 0.95rem;
   letter-spacing: 1px;
   color: #212529;
   margin-bottom: 5px;
 }

 /* Class */
 .testimonial-card small {
   font-size: 0.85rem;
   letter-spacing: 0.5px;
   color: #6c757d;
 }


 .footer-section {
   background: rgba(0, 0, 0, 0.80);
   color: #e5e7eb;
   position: relative;
 }

 /* Logo */
 .footer-logo {
   font-weight: 700;
   color: #ffffff;
 }

 /* Section Titles */
 .footer-title {
   font-weight: 600;
   margin-bottom: 18px;
   color: #ffffff;
   position: relative;
   padding-bottom: 8px;
 }

 /* Yellow underline accent */
 .footer-title::after {
   content: "";
   position: absolute;
   left: 0;
   bottom: 0;
   width: 40px;
   height: 3px;
   background: var(--custom-secondary);
   /* #fdb912 */
   border-radius: 2px;
 }

 /* Paragraph text */
 .footer-text {
   color: #b0b3b8;
   line-height: 1.8;
 }

 /* Footer Links */
 .footer-links li {
   margin-bottom: 10px;
 }

 .footer-links a {
   text-decoration: none;
   color: #b0b3b8;
   transition: all 0.3s ease;
   font-size: 0.95rem;
 }

 .footer-links a:hover {
   color: var(--custom-secondary);
   padding-left: 6px;
 }

 /* Contact Info */
 .footer-contact {
   color: #b0b3b8;
   display: flex;
   align-items: flex-start;
   gap: 10px;
   margin-bottom: 14px;
   font-size: 0.95rem;
 }

 .footer-contact i {
   color: var(--custom-secondary);
   margin-top: 4px;
 }

 /* Social Icons */
 .social-links a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 42px;
   height: 42px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.08);
   color: #ffffff;
   margin-right: 10px;
   transition: all 0.3s ease;
   font-size: 18px;
 }

 .social-links a:hover {
   background: var(--custom-secondary);
   color: #000;
   transform: translateY(-4px);
 }

 /* Divider */
 .footer-divider {
   border-color: rgba(255, 255, 255, 0.15);
 }

 /* Bottom small text */
 .footer-section .small {
   color: #9ca3af;
 }

 /* Academic Card Styling */
 .academic-card {
   border-radius: 16px;
 }


 /* .swiper-button-next,
 .swiper-button-prev {
   display: none !important;
 } */

 .icon-box {
   width: 50px;
   height: 50px;
   background-color: var(--custom-secondary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   color: #fff;
   box-shadow: 0 8px 20px rgba(222, 181, 73, 0.35);
   transition: all 0.3s ease;
 }

 .icon-box:hover {
   transform: translateY(-5px);
   box-shadow: 0 12px 25px rgba(222, 181, 73, 0.45);
 }


 .clr-red .timeline-dot,
 .clr-red .timeline::after {
   background-color: var(--clr-red) !important;
 }

 .clr-red .bi-check-circle {
   color: var(--clr-red);
 }


 .clr-red .timeline-dot,
 .clr-red .timeline::after {
   background-color: var(--clr-red) !important;
 }

 .clr-red .bi-check-circle {
   color: var(--clr-red);
 }


 .clr-blue .timeline-dot,
 .clr-blue .timeline::after {
   background-color: var(--clr-blue) !important;
 }

 .clr-blue .bi-check-circle {
   color: var(--clr-blue);
 }


 .clr-green .timeline-dot,
 .clr-green .timeline::after {
   background-color: var(--clr-green) !important;
 }

 .clr-green .bi-check-circle {
   color: var(--clr-green);
 }

 /*******************************Navbar*****************************/

 /* ===== GLOBAL ADDITIONS (Sticky + Logo Responsive) ===== */

 header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   transition: 0.3s ease;
 }

 header.scrolled {
   background: rgba(0, 0, 0, 0.80);
 }

 header.scrolled .logo-container img {
   height: 60px;
   transition: all 0.2s ease-in-out;
 }

  header.scrolled-1 {
   top: 30 !important;
   position: relative;
   background: rgba(0, 0, 0, 0.80);
 }

 header.scrolled-1 .logo-container img {
   height: 60px;
   transition: all 0.2s ease-in-out;
 }

 .logo-container img {
   max-width: 100%;
   height: auto;
   display: block;
 }

 @media (min-width: 768px) {
   .logo-container img {
     height: 90px;
   }
 }

 @media (max-width: 767px) {
   .logo-container img {
     height: 48px;
   }
 }

 /* Prevent content jump */
 body {
   padding-top: 100px;
 }

 /* ================= DESKTOP ================= */
 @media (min-width: 768px) {
   header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 60px !important;
     position: fixed;
     top: 0;
     left: 0;
     z-index: 10;
   }

   .header-left {
     display: flex;
     align-items: center;
     gap: 40px;
   }

   .toggle-btn {
     display: none;
   }

   nav {
     position: relative;
     margin: auto;
     display: flex;
   }

   .back-btn {
     display: none;
   }

   .nav-list {
     display: flex;
     /* gap: 10px; */
     margin: auto;
   }

   .nav-list>li {
     position: relative;
   }

   .nav-list>li>a {
     display: inline-block;
     text-decoration: none;
     padding: 10px 22px;
     border-radius: 10px;
     color: white;
     transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
       transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
       color 0.3s ease;
   }

   .nav-list>li>a i {
     display: none;
   }

   .nav-list>li:hover>a {
     background: rgba(0, 0, 0, 0.90);
     transform: translateY(-3px);
     color: white;
   }

   /* ===== DROPDOWN ===== */

   .nav-list>li .sub-nav-list {
     position: absolute;
     top: 30px;
     left: 0;
     background: rgba(0, 0, 0, 0.90);
     padding: 20px;
     border-radius: 10px;
     min-width: 420px;
     margin-top: 5px;
     display: grid;
     grid-auto-flow: column;
     grid-template-rows: repeat(3, auto);
     gap: 10px;
     opacity: 0;
     visibility: hidden;
     transform: translateY(20px) scale(0.96);
     transform-origin: top left;
     transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
       transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
       visibility 0s linear 0.45s;
   }

   .nav-list>li .sub-nav-list li {
     white-space: nowrap;
   }

   .nav-list>li .sub-nav-list li:last-child {
     margin-bottom: 0;
   }

   .nav-list>li .sub-nav-list li a {
     display: block;
     text-decoration: none;
     color: #fff;
     transition: transform 0.3s ease, opacity 0.3s ease;
     padding: 10px;
     border-radius: 10px;
   }

   .nav-list>li .sub-nav-list li a:hover {
     transform: translateX(4px);
     opacity: 0.85;
     background: rgba(163, 163, 163, 0.212);
   }

   .nav-list>li .sub-nav-list li a strong {
     display: block;
     font-size: 16px;
     font-weight: 600;
     color: var(--custom-secondary);
   }

   .nav-list>li .sub-nav-list li a span {
     font-size: 14px;
     opacity: 0.85;
   }

   .nav-list>li:hover .sub-nav-list {
     opacity: 1;
     visibility: visible;
     transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
       transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
   }

   .nav-list>li>a.active {
     background-color: var(--custom-secondary) !important;
   }


 }

 /* ================= MOBILE ================= */
 @media (max-width: 767px) {
   header {
     width: 100%;
     padding: 15px 20px;
     position: fixed;
     z-index: 10;
     background: rgba(0, 0, 0, 0.80);
   }

   .header-left {
     display: flex;
     justify-content: space-between;
     align-items: center;
   }

   .toggle-btn i {
     font-size: 28px;
     cursor: pointer;
     color: var(--custom-secondary);
   }

   nav {
     position: fixed;
     top: 67px;
     left: 0;
     width: 100%;
     height: calc(100vh - 67px);
     background: rgba(0, 0, 0, 0.80);
     transform: translateX(-100%);
     transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
     will-change: transform;
   }

   nav.nav-active {
     transform: translateX(0);
   }

   .back-btn {
     background: rgba(163, 163, 163, 0.212);
     display: none;
     opacity: 0;
     transform: translateX(-15px);
     transition: opacity 0.35s ease, transform 0.35s ease;
     pointer-events: none;
   }

   .back-btn.active-backbtn {
     display: block;
     opacity: 1;
     transform: translateX(0);
     pointer-events: auto;
   }

   .back-btn a {
     display: block;
     padding: 16px 20px;
     color: #fff;
     text-decoration: none;
   }

   .nav-list li a {
     display: flex;
     justify-content: space-between;
     align-items: start;
     padding: 18px 20px;
     color: #fff;
     text-decoration: none;
     transition: background 0.3s ease;
   }

   .nav-list li a strong {
     color: var(--custom-secondary);
   }

   .nav-list li a i {
     color: var(--custom-secondary);
   }

   ul {
     padding-left: 0px !important;
   }

   .nav-list li.active-list>a {
     background: #4e4a47;
   }

   .nav-list li .sub-nav-list {
     max-height: 0;
     overflow: hidden;
     opacity: 0;
     transform: translateY(-8px);
     background: rgba(163, 163, 163, 0.212);
     transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
       opacity 0.3s ease,
       transform 0.3s ease;
   }

   .nav-list li .sub-nav-list.sub-active {
     max-height: 600px;
     opacity: 1;
     transform: translateY(0);
   }

   .nav-list li .sub-nav-list li a {
     padding: 10px 20px;
     display: flex;
     flex-direction: column;
   }

   .nav-list.submenu-open>li {
     display: none;
   }

   .nav-list.submenu-open>li.active-list {
     display: block;
   }

   .nav-list.submenu-open>li.active-list>a {
     display: none;
   }
 }

 .back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  background: var(--custom-secondary)!important; /* #fdb912 */
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

/* Show Button */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover Effect */
.back-to-top:hover {
  background: #ffffff;
  color: var(--custom-secondary);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

/* Icon size */
.back-to-top i {
  font-size: 20px;
}


#spinner {
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  margin-top: -1px;
}

#spinner.hide {
  opacity: 0;
  visibility: hidden;
}

section{
  scroll-margin-top: 90px;
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}
