/* Resource.css */


 /* * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Poppins', sans-serif;
      padding: 20px;
  } */

  html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
   font-family: poppins, sans-serif;
}
* {
  box-sizing: border-box;
}




/* ********************************** Hero Section *******************************    */

.hero__image {
  /* position: relative;
  width: 100%;
  height: auto;
  
  height: 100vh; 
  max-height: 100vh; 

  overflow: hidden; 
  margin: 0;
  padding: 0;
  max-height: 100%; */
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__image .img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers container without distortion */
  object-position: center;
  display: block;
}

.hero__image .carousel-caption {
  position: absolute; /* Fixed typo: was 'postion' */
  top: 40%;
  left: 55%;
  transform: translateX(-50%); /* Centers the caption horizontally */
  text-align: start;
  color: white;
  z-index: 10;
  width: 90%; /* Prevents text from going off-screen on mobile */
  /* max-width: 800px; */
}

.hero__image .carousel-caption h1 {
  font-size: 5.7rem;
  font-weight: 400;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
  margin: 0;
  line-height: 1.2;
}

/* Responsive text sizing */
@media (max-width: 768px) {
  .hero__image .carousel-caption h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero__image .carousel-caption h1 {
    font-size: 2rem;
  }
}

/* ************************** Section - 2 ************************** */
     /* .carousel-wrapper {
            width: 100%;
            max-width: 100vw;
            padding:0 2rem;
            overflow-x: hidden;
            position: relative;
        }

        .carousel {
            display: flex;
            flex-direction: column;
            margin-top: 6rem;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            gap: 0.5vw;
            scroll-snap-type: x mandatory;
            padding-bottom: 10px;
            overflow-x: hidden;
            width: 100%;
            justify-content: center;
            max-width: 100vw;
        }

        .card {
            position: relative;
            color: white;
            border-radius: 20px;
            overflow: hidden;
            scroll-snap-align: start;
            transition: all 0.3s ease;
            flex: 0 0 auto;
            cursor: pointer;
        }

        .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            pointer-events: none;
        }

        .card:hover img {
            pointer-events: auto;
        }

        .card-title {
            position: absolute;
            color: #fff;
            font-size: 1.5vw;
            top: 3.5rem;
            right: 2.5rem;
            width: 100%;
            text-align: center;
            pointer-events: none;
        }

        .card-title a,
        .card-title button {
            pointer-events: auto;
        }

        .plus-btn {
            position: absolute;
            bottom: 2.5rem;
            right: 2.5rem;
            font-size: 2.5vw;
            pointer-events: auto;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .card.expanded {
            width: 65vw;
            height: auto;
            writing-mode: vertical-rl;
        }

        .card.expanded .plus-btn {
            opacity: 0;
            pointer-events: none;
        }

        .card.collapsed {
            width: 7vw;
            height: auto;
            writing-mode: vertical-rl;
            text-orientation: mixed;
        }

        .card.collapsed:hover {
            transform: none !important;
            box-shadow: none !important;
            background: inherit !important;
        }

        .carousel-nav {
            display: flex;
            justify-content: flex-end;
            gap: 6px;
            padding-right: 500px;
        }

       .button-container {
            display: flex;
            justify-content: end;
            margin-top: 20px;
            padding: 0 1rem;
            width: 100%;
            box-sizing: border-box;
        }

        .carousel-btn {
            background-color: #2E2E2E;
            color: white;
            border: none;
            padding: 5px 20px;
            font-size: 16px;
            border-radius: 12px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: end;
            white-space: nowrap;
            max-width: calc(100vw - 2rem);
            box-sizing: border-box;
        }

        @media (max-width: 768px) {
            .carousel-btn {
                padding: 5px 15px;
                font-size: 14px;
            }

            .card {
              border-radius: 5px;
            }

             .carousel {
                margin-top: 2rem;
            }
        }

        @media (max-width: 480px) {
            .carousel-btn {
                padding: 5px 10px;
                font-size: 12px;
            }
            
            .btn-icon {
                width: 20px;
                height: 20px;
            }

             .card {
              border-radius: 5px;
            }

             .carousel {
                margin-top: 2rem;
            }
        }

        .carousel-btn:hover {
            background-color: #0f3d7a;
        }

        .carousel-bottom-btn:hover {
            background-color: #0f3d7a;
        }

        .btn-icon {
            width: 30px;
            height: 30px;
            object-fit: contain;
        }
        @media (max-width: 1024px) {
            .card.expanded {
                width: 70vw;
            }
            
            .card.collapsed {
                width: 6vw;
            }
            
            .card-title {
                font-size: 2vw;
                top: 2rem;
                right: 1rem;
            }
            
            .plus-btn {
                bottom: 1.5rem;
                right: 1.5rem;
                font-size: 3vw;
            }
            
            .carousel-track {
                gap: 0.3vw;
            }

             .card {
              border-radius: 15px;
            }

             .carousel {
                margin-top: 3rem;
            }
        }

        @media (max-width: 768px) {
            .card.expanded {
                width: 75vw;
            }
            
            .card.collapsed {
                width: 5vw;
            }
            
            .card-title {
                font-size: 2.5vw;
                top: 1.5rem;
                right: 1rem;
            }
            
            .plus-btn {
                bottom: 1rem;
                right: 1rem;
                font-size: 4vw;
            }
            
            .carousel-track {
                gap: 0.2vw;
            }


             .card {
              border-radius: 5px;
            }

             .carousel {
                margin-top: 2rem;
            }
        }

        @media (max-width: 480px) {
            .card.expanded {
                width: 78vw;
            }
            
            .card.collapsed {
                width: 4.5vw;
            }
            
            .card-title {
                font-size: 3vw;
                top: 1rem;
                right: 0.5rem;
            }
            
            .plus-btn {
                bottom: 0.5rem;
                right: 0.5rem;
                font-size: 5vw;
            }
            
            .carousel-track {
                gap: 0.1vw;
            }

             .card {
              border-radius: 5px;
            }

             .carousel {
                margin-top: 2rem;
            }
        }

        @media (hover: none) and (pointer: coarse) {
            .card:hover img {
                pointer-events: none;
            }
            
            .card img {
                pointer-events: auto;
            }
        } */

        .carousel-wrapper {
    width: 100%;
    max-width: 100vw;
    padding: 0 2rem;
    overflow-x: hidden;
    position: relative;
}

.carousel {
    display: flex;
    flex-direction: column;
    margin-top: 6rem;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 0.5vw;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    overflow-x: hidden;
    width: 100%;
    justify-content: center;
    max-width: 100vw;
    /* ADD: Consistent height to prevent jumps */
    align-items: stretch;
    min-height: 60vh;
}

.card {
    position: relative;
    color: white;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
    /* CHANGE: Smoother transition with better timing */
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 0 0 auto;
    cursor: pointer;
    /* ADD: Fixed height to prevent layout shifts */
    height: 70vh;
    min-height: 350px;
    /* ADD: GPU acceleration */
    will-change: width, transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    /* ADD: Smooth image transitions */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover img {
    pointer-events: auto;
}

.card-title {
    position: absolute;
    color: #fff;
    font-size: 1.5vw;
    top: 3.5rem;
    right: 2.5rem;
    width: 100%;
    text-align: center;
    pointer-events: none;
    /* ADD: Smooth title transitions */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-title a,
.card-title button {
    pointer-events: auto;
}

.plus-btn {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    font-size: 2.5vw;
    pointer-events: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Expanded Card */
.card.expanded {
    width: 65vw;
    height: 70vh; /* Keep consistent height */
    writing-mode: vertical-rl;
    /* ADD: Higher z-index for expanded card */
    z-index: 10;
}

/* Hide plus button on expanded cards */
.card.expanded .plus-btn {
    opacity: 0;
    pointer-events: none;
}

/* Collapsed Cards */
.card.collapsed {
    width: 7vw;
    height: 70vh; /* Keep consistent height */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    /* ADD: Lower z-index for collapsed cards */
    z-index: 1;
}

/* Override hover effects for collapsed cards */
.card.collapsed:hover {
    transform: none !important;
    box-shadow: none !important;
    background: inherit !important;
}

/* Navigation dots */
.carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    padding-right: 500px;
}

.button-container {
    display: flex;
    justify-content: end;
    margin-top: 20px;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.carousel-btn {
    background-color: #2E2E2E;
    color: white;
    border: none;
    padding: 5px 20px;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: end;
    white-space: nowrap;
    max-width: calc(100vw - 2rem);
    box-sizing: border-box;
}

.carousel-btn:hover {
    background-color: #0f3d7a;
}

.carousel-bottom-btn:hover {
    background-color: #0f3d7a;
}

.btn-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Mobile and tablet responsive adjustments */
@media (max-width: 1024px) {
    .card.expanded {
        width: 70vw;
    }
    
    .card.collapsed {
        width: 6vw;
    }
    
    .card-title {
        font-size: 2vw;
        top: 2rem;
        right: 1rem;
    }
    
    .plus-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 3vw;
    }
    
    .carousel-track {
        gap: 0.3vw;
        min-height: 50vh; /* Adjust height for tablet */
    }
    
    .card {
        border-radius: 15px;
        height: 50vh; /* Consistent height for tablet */
    }
    
    .carousel {
        margin-top: 3rem;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    .carousel-btn {
        padding: 5px 15px;
        font-size: 14px;
    }
    
    .card {
        border-radius: 5px;
        height: 400px !important; /* Fixed height for mobile */
    }
    
    .carousel {
        margin-top: 2rem;
    }
    
    .carousel-track {
        min-height: 400px; /* Match card height */
    }
    
    .card.expanded {
        width: 75vw;
        height: 400px !important;
    }
    
    .card.collapsed {
        width: 5vw;
        height: 400px !important;
    }
    
    .card-title {
        font-size: 2.5vw;
        top: 1.5rem;
        right: 1rem;
    }
    
    .plus-btn {
        bottom: 1rem;
        right: 1rem;
        font-size: 4vw;
    }
    
    .carousel-track {
        gap: 0.2vw;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .carousel-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .btn-icon {
        width: 20px;
        height: 20px;
    }
    
    .card {
        border-radius: 5px;
        height: 350px !important;
    }
    
    .carousel {
        margin-top: 2rem;
    }
    
    .carousel-track {
        min-height: 350px;
    }
    
    .card.expanded {
        width: 78vw;
        height: 350px !important;
    }
    
    .card.collapsed {
        width: 4.5vw;
        height: 350px !important;
    }
    
    .card-title {
        font-size: 3vw;
        top: 1rem;
        right: 0.5rem;
    }
    
    .plus-btn {
        bottom: 0.5rem;
        right: 0.5rem;
        font-size: 5vw;
    }
    
    .carousel-track {
        gap: 0.1vw;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .card:hover img {
        pointer-events: none;
    }
    
    .card img {
        pointer-events: auto;
    }
}

/* ********************************** Section - 3 ****************************************** */
 /* Blue Section Styles */
        .blue-section-rev {
            background-color: #175ebc;
            padding: 3rem 0;
            min-height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .content-center-rev {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .section-text-rev {
            color: white;
            font-size: clamp(2rem, 8vw, 7rem);
            font-weight: 600;
            font-family: 'poppins', sans-serif;
            letter-spacing: 0.5px;
            margin: 0;
            text-align: center;
            flex-shrink: 0;
        }

        .cube-icon-rev {
            display: flex;
            align-items: bottom;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 12rem;
        }

        .cube-image-rev {
            width: clamp(60px, 15vw, 250px);
            height: clamp(60px, 15vw, 250px);
            object-fit: contain;
        }

        /* Desktop - side by side layout */
        @media (min-width: 992px) {
            .content-center-rev {
                flex-direction: row;
                gap: 3rem;
            }
            
            .blue-section-rev {
                padding: 4rem 0;
            }
        }

        /* Tablet adjustments */
        @media (max-width: 991px) and (min-width: 768px) {
            .content-center-rev {
                flex-direction: row;
                gap: 2rem;
            }
            
            .blue-section-rev {
                padding: 3rem 0;
            }
            
            .section-text-rev {
                font-size: clamp(2.5rem, 6vw, 4rem);
            }

          .cube-icon-rev {
              margin-top: 5rem;
          }
        }

        /* Mobile adjustments */
        @media (max-width: 767px) {
            .blue-section-rev {
                padding: 2rem 0;
                min-height: auto;
            }
            
            .content-center-rev {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
            
            .section-text-rev {
                font-size: clamp(1.8rem, 8vw, 3rem);
                order: 1;
            }
            
            .cube-icon-rev {
                order: 2;
                margin-top: 0;
                
            }
            
            .cube-image-rev {
                width: clamp(50px, 12vw, 80px);
                height: clamp(50px, 12vw, 80px);
            }

           
        }

        /* Very small screens */
        @media (max-width: 480px) {
            .blue-section-rev {
                padding: 1.5rem 0;
            }
            
            .content-center-rev {
                gap: 1rem;
            }
            
            .section-text-rev {
                font-size: clamp(1.5rem, 10vw, 2.5rem);
                letter-spacing: 0.2px;
            }
            
            .cube-image-rev {
                width: clamp(40px, 10vw, 60px);
                height: clamp(40px, 10vw, 60px);
            }
        }

        /* Landscape mobile */
        @media (max-width: 767px) and (orientation: landscape) {
            .blue-section-rev {
                padding: 1rem 0;
            }
            
            .content-center-rev {
                flex-direction: row;
                gap: 1.5rem;
            }
        }

        /* Extra responsiveness for very wide screens */
        @media (min-width: 1400px) {
            .section-text-rev {
                font-size: 6rem;
            }
            
            .cube-image-rev {
                width: 300px;
                height: 300px;
            }
        }
/* ********************************** Section - 4 ****************************************** */
/* Custom styles for vertical carousel */
        .vert-carousel {
            width: 100%;
            /* max-width: 1600px; */
            max-width: 90vw;
            margin: 50px auto;
            position: relative;
            padding-left: 50px; /* Add this line - makes room for sidebar */
        }

        /* Side navigation labels - Now scrollable with HIDDEN scrollbar */
        .vert-side-labels {
            position: absolute;
            left: -120px; /* Changed from -180px to -120px */
            top: 0;
            height: 100%;
            width: 6.25rem; /* Changed from 120px to 100px */
            overflow-y: scroll;
            overflow-x: hidden;
            padding: 20px 0;
            /* background: rgba(255, 255, 255, 0.95); */
            border-radius: 8px;
            /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
            /* border: 1px solid #e0e0e0; */
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            font-family: 'Poppins', sans-serif;
            /* Hide scrollbar completely */
            scrollbar-width: none;
            -ms-overflow-style: none;
            scrollbar-color: transparent transparent;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Hide scrollbar for WebKit browsers */
        .vert-side-labels::-webkit-scrollbar {
            width: 0 !important;
            height: 0 !important;
            background: transparent !important;
            display: none !important;
            -webkit-appearance: none !important;
        }

        .vert-side-labels::-webkit-scrollbar-track {
            background: transparent !important;
            display: none !important;
        }

        .vert-side-labels::-webkit-scrollbar-thumb {
            background: transparent !important;
            display: none !important;
        }

        .vert-side-labels::-webkit-scrollbar-corner {
            background: transparent !important;
            display: none !important;
        }

        .vert-side-label {
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: rotate(180deg);
            font-size: 1rem; /* Changed from 0.9rem to 0.8rem */
            color: #525252;
            text-transform: uppercase;
            letter-spacing: 0.3px; /* Changed from 0.5px to 0.3px */
            max-height: 90px; /* Changed from 100px to 90px */
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 5px 2px; /* Changed from 8px 5px to 5px 2px */
            padding: 6px 2px; /* Changed from 8px 4px to 6px 2px */
            border-radius: 4px;
            flex-shrink: 0;
            user-select: none;
            font-weight: 500;
        }

        .vert-side-label:hover {
            color: #1e5cbe;
        }

        .vert-side-label.active {
            /* background-color: #1e5cbe; */
            font-weight: 700;
        }

        /* Dots navigation */
        .vert-dots-container {
            position: absolute;
            left: -20px; /* Changed from -40px to -20px */
            top: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px 0;
            z-index: 10; /* Ensure dots are above other elements */
        }

        .vert-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 10px 0;
        }

        .vert-dot.vert-active {
            background-color: #1e5cbe;
            transform: scale(1.3);
        }

        .vert-dot:hover {
            background-color: #999;
        }

        /* Carousel track */
        .vert-carousel-track {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Card styles */
        .vert-event-card {
            background: transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            display: none; /* Initially hidden */
        }

        .vert-event-card.visible {
            display: block; /* Show when visible */
        }

        /* Collapsed state */
        .vert-event-card.vert-collapsed {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 10px 0;
        }

        .vert-event-card.vert-collapsed.visible {
            display: flex;
        }

        .vert-event-card.vert-collapsed .vert-collapsed-card {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .vert-event-card.vert-collapsed .vert-small-card {
            width: 450px;
            height: 80px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            flex-shrink: 0;

        }

        .vert-event-card.vert-collapsed .vert-small-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .vert-event-card.vert-collapsed .vert-collapsed-info {
            display: flex;
            align-items: center;
            gap: 30px;
            flex: 1;
        }

        .vert-event-card.vert-collapsed .vert-collapsed-text {
            flex: 1;
        }

        .vert-event-card.vert-collapsed .vert-collapsed-title {
            font-size: 2rem;
            font-weight: 400;
            font-style: normal;
            color: #525252;
            margin-bottom: 4px;
            margin-left: 2rem;
        }

        .vert-event-card.vert-collapsed .vert-collapsed-date {
            font-size: 0.9rem;
            color: #666;
        }

        .vert-event-card.vert-collapsed .vert-rsvp-link {
            color: #185EBC;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .vert-event-card.vert-collapsed .vert-rsvp-link:hover {
            color: #1650a0;
            text-decoration: underline;
        }

        .vert-event-card.vert-collapsed .vert-expanded-content {
            display: none;
        }

        /* Active/Expanded state */
        .vert-event-card.vert-active .vert-collapsed-card {
            display: none;
        }

        .vert-event-card.vert-active .vert-expanded-content {
            display: block;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .vert-event-card.vert-active .vert-card-inner {
            display: flex;
            min-height: 200px;
        }

        /* Image section for expanded */
        .vert-card-image {
            width: 450px;
            flex-shrink: 0;
            overflow: hidden;
        }

        .vert-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Content section for expanded */
        .vert-card-content {
            flex: 1;
            padding: 25px 35px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #1e5cbe;
            color: white;
            position: relative;
        }

        .vert-event-title {
            font-size: 4rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .vert-event-date {
            font-size: 2.3rem;
            margin-bottom: 5px;
            opacity: 0.9;
        }

        .vert-event-location {
            font-size: 2.2rem;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .vert-event-description {
            font-size: 1.5rem;
            margin-bottom: 20px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .vert-event-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 20px;
        }

        .vert-event-details {
            font-size: 0.85rem;
            opacity: 0.8;
            display: flex;
            gap: 20px;
            margin: 0;
        }

        .vert-event-details span {
            white-space: nowrap;
        }

        .vert-button-with-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .vert-client-only-text {
            font-size: 0.85rem;
            opacity: 0.8;
            white-space: nowrap;
        }

        /* Buttons */
        .vert-button-group {
            display: flex;
            gap: 15px;
            margin-top: auto;
        }

        .vert-btn-event {
            padding: 10px 24px;
            border: none;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .vert-btn-become {
            background-color: #609AE9;
            color: white;
            display: flex;
            font-weight: 600;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }

         .vert-btn-become  svg{
            width: 1.92656rem;
            height: 1.87494rem;
            flex-shrink: 0;
         }
        .vert-btn-become:hover {
            background-color: #f0f0f0;
        }

        /* Tag styles */
        .vert-event-tag {
            position: absolute;
            top: 20px; /* Moved higher to avoid overlap */
            right: 20px; /* Moved further right */
            background-color: white;
            color: #1e5cbe;
            padding: 8px 16px; /* Reduced padding */
            border-radius: 8px; /* Smaller radius */
            font-size: 1rem; /* Smaller font */
            font-weight: 600;
            z-index: 5; /* Ensure it's above content */
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Added shadow for better visibility */
        }

        /* Filter info */
        .filter-info {
            position: absolute;
            top: -40px;
            left: 0;
            font-size: 1.2rem;
            color: #1e5cbe;
            font-weight: 500;
        }


        /* Responsive - ADD THIS NEW SECTION */
        @media (max-width: 1800px) {
           
            .vert-carousel {
                padding-left: 120px; /* Adjust padding for smaller screens */
            }
            .vert-side-labels {
                left: 0; /* Adjust position */
                width: 90px; /* Smaller width */
            }
            
            .vert-dots-container {
                left: 80px; /* Adjust dots position */
            }
            .vert-card-image {
              max-width: 400px;
            }
        }



         /* Responsive breakpoints for better sizing */
        @media (max-width: 1920px) {
            .vert-card-image {
                width: 400px; /* Smaller image on smaller screens */
            }
            
            .vert-event-card.vert-collapsed .vert-small-card {
                width: 400px; /* Smaller collapsed card image */
            }
            
            .vert-event-title {
                font-size: 3.5rem; /* Smaller title */
            }
            
            .vert-event-date {
                font-size: 2rem; /* Smaller date */
            }
            
            .vert-event-location {
                font-size: 1.8rem; /* Smaller location */
            }
            
            .vert-event-description {
                font-size: 1.3rem; /* Smaller description */
            }
            
            .vert-event-tag {
                top: 15px; /* Move tag higher */
                right: 15px; /* Move tag left */
                font-size: 0.9rem; /* Smaller tag */
                padding: 6px 12px; /* Smaller padding */
            }
        }

        @media (max-width: 1600px) {
            .vert-card-image {
                width: 350px; /* Even smaller image */
            }
            
            .vert-event-card.vert-collapsed .vert-small-card {
                width: 350px; /* Smaller collapsed card image */
            }
            
            .vert-event-title {
                font-size: 3rem; /* Smaller title */
            }
            
            .vert-event-date {
                font-size: 1.8rem; /* Smaller date */
            }
            
            .vert-event-location {
                font-size: 1.6rem; /* Smaller location */
            }
            
            .vert-event-description {
                font-size: 1.2rem; /* Smaller description */
            }
            
            .vert-card-content {
                padding: 20px 25px; /* Smaller padding */
            }
        }

        @media (max-width: 1400px) {
            .vert-card-image {
                width: 320px; /* Even smaller for 1400px screens */
            }
            
            .vert-event-card.vert-collapsed .vert-small-card {
                width: 320px; /* Smaller collapsed card image */
            }
            
            .vert-event-title {
                font-size: 2.5rem; /* Smaller title */
            }
            
            .vert-event-date {
                font-size: 1.6rem; /* Smaller date */
            }
            
            .vert-event-location {
                font-size: 1.4rem; /* Smaller location */
            }
            
            .vert-event-description {
                font-size: 1.1rem; /* Smaller description */
            }
            
            .vert-collapsed-title {
                font-size: 1.6rem !important; /* Smaller collapsed title */
            }
        }

         
        


        /* Tablet Layout (Below 900px) */
        @media (max-width: 1100px) {

           .vert-card-image {
              max-width: 250px;
            }

            .vert-carousel {
                display: flex;
                flex-direction: column;
                padding-left: 0;
                gap: 20px;
            }

            /* First row - Months horizontal */
            .vert-side-labels {
                position: static;
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                overflow-x: auto;
                overflow-y: hidden;
                padding: 10px 0;
                gap: 10px;
                order: 1;
            }

            .vert-side-label {
                writing-mode: initial;
                text-orientation: initial;
                transform: none;
                font-size: 0.9rem;
                min-width: 80px;
                max-height: none;
                height: 35px;
                flex-shrink: 0;
                text-align: center;
                margin: 0;
                padding: 8px 12px;
                white-space: nowrap;
                background: rgba(255, 255, 255, 0.9);
                border: 1px solid #e0e0e0;
                border-radius: 20px;
            }

            .vert-side-label.active {
                background-color: #1e5cbe;
                color: white;
            }

            /* Second row - Events */
            .vert-carousel-track {
                order: 2;
            }

            /* Third row - Dots horizontal */
            .vert-dots-container {
                position: static;
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                padding: 10px 0;
                gap: 15px;
                order: 3;
            }

            .vert-dot {
                margin: 0;
            }

            .filter-info {
                position: static;
                text-align: center;
                margin-bottom: 10px;
                order: 0;
            }
        }

        @media (max-width: 992px) {
            .vert-carousel {
                margin: 20px;
                margin-left: 20px;
            }
        }

        @media (max-width: 768px) {
            /* Mobile adjustments */
            .vert-side-labels {
                padding: 5px 0;
                gap: 5px;
            }

            .vert-side-label {
                font-size: 0.8rem;
                min-width: 70px;
                height: 30px;
                padding: 6px 8px;
            }

            .vert-event-card.vert-collapsed {
                flex-direction: column;
                align-items: flex-start;
            }

            .vert-event-card.vert-collapsed .vert-collapsed-card {
                flex-direction: column;
                width: 100%;
            }

            .vert-event-card.vert-collapsed .vert-small-card {
                width: 100%;
                height: 120px;
            }

            .vert-event-card.vert-collapsed .vert-collapsed-info {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                margin-top: 10px;
            }

            .vert-card-inner {
                flex-direction: column;
            }
            
            .vert-card-image {
                width: 100%;
                height: 150px;
            }

            .vert-carousel {
                margin: 10px;
            }

            .vert-event-title {
                font-size: 2.5rem;
            }

            .vert-event-date {
                font-size: 1.8rem;
            }

            .vert-event-location {
                font-size: 1.6rem;
            }

            .vert-event-description {
                font-size: 1.2rem;
            }
        }

           @media (max-width: 768px) {
             .vert-event-title {
                margin-top:3rem
            }
            .vert-card-image {
              max-width: 100%;
            }


            

           }



           
/* ********************************** Section - 5 ****************************************** */

/* Blue Section Styles - Fully Responsive */
.white-section {
  background-color: #FFFFFF;
  height: 50vh;
  min-height: 300px; /* Ensure minimum height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem; /* Add padding for better spacing */
}

.content-center {
  min-height: 150px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 2rem; 
  width: 100%;
  /* max-width: 1200px;  */
}

.cube-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cube-image {
  width: 600px;
  height: auto; /* Maintain aspect ratio */
  max-width: 100%; /* Ensure it doesn't overflow */
  object-fit: contain; /* Maintain aspect ratio */
}

.section-text {
  color: #1650A0;
  font-family: 'poppins', sans-serif !important;
  font-size: 5rem;
  font-weight: 700;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.5px;
  margin: 0; /* Remove default margins */
  line-height: 1.2; /* Better line height */
  text-align: left;
}

/* Large Desktop (1920px+) */
@media (min-width: 1920px) {
  .section-text {
    font-size: 6rem;
  }
  
  .cube-image {
    width: 700px;
  }
}

/* Desktop (1600px - 1920px) */
@media (max-width: 1600px) {
  .section-text {
    font-size: 4.5rem;
  }
  
  .cube-image {
    width: 550px;
  }
}

/* Medium Desktop (1400px - 1600px) */
@media (max-width: 1400px) {
  .section-text {
    font-size: 4rem;
  }
  
  .cube-image {
    width: 500px;
  }
  
  .content-center {
    gap: 1.5rem;
  }
}

/* Small Desktop (1200px - 1400px) */
@media (max-width: 1200px) {
  .section-text {
    font-size: 3.5rem;
  }
  
  .cube-image {
    width: 450px;
  }
  
  .white-section {
    height: 45vh;
    min-height: 250px;
  }
}

/* Laptop (992px - 1200px) */
@media (max-width: 992px) {
  .section-text {
    font-size: 3rem;
  }
  
  .cube-image {
    width: 400px;
  }
  
  .content-center {
    gap: 1rem;
  }
  
  .white-section {
    height: 40vh;
    min-height: 200px;
  }
}

/* Tablet (768px - 992px) */
@media (max-width: 768px) {
  .section-text {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .cube-image {
    width: 300px;
  }
  
  .content-center {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .white-section {
    height: auto;
    min-height: 300px;
    padding: 3rem 1rem;
    
  }
}

/* Mobile Large (576px - 768px) */
@media (max-width: 576px) {
  .section-text {
    font-size: 2rem;
    text-align: center;
  }
  
  .cube-image {
    width: 250px;
  }
  
  .content-center {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .white-section {
    height: auto;
    min-height: 250px;
    padding: 2rem 1rem;
  }
}

/* Mobile Small (480px - 576px) */
@media (max-width: 480px) {
  .section-text {
    font-size: 1.8rem;
  }
  
  .cube-image {
    width: 200px;
  }
  
  .white-section {
    min-height: 200px;
    padding: 1.5rem 0.5rem;
  }
}

/* Mobile Extra Small (320px - 480px) */
@media (max-width: 320px) {
  .section-text {
    font-size: 1.5rem;
    letter-spacing: 0.3px;
  }
  
  .cube-image {
    width: 150px;
  }
  
  .white-section {
    min-height: 180px;
    padding: 1rem 0.5rem;
  }
  
  .content-center {
    gap: 0.5rem;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  .white-section {
    height: auto;
    min-height: 200px;
    padding: 1rem;
  }
  
  .content-center {
    flex-direction: row;
    gap: 1rem;
  }
  
  .section-text {
    font-size: 2rem;
  }
  
  .cube-image {
    width: 150px;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .cube-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cube-image {
    transition: none;
  }
}

/* Print styles */
@media print {
  .white-section {
    background-color: white !important;
    height: auto;
    min-height: auto;
  }
  
  .section-text {
    color: #000 !important;
    font-size: 2rem;
  }
  
  .cube-image {
    width: 200px;
  }
}


/* ********************************** Section - 6 ****************************************** */
/* Second Carousel Styles - All classes prefixed with 'v2-' */
.v2-carousel-wrapper {
    width: 90vw;
    max-width: 90vw;
    overflow-x: hidden;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.v2-carousel {
    display: flex;
    flex-direction: column;
    /* margin-top: 6rem; */
    width: 100%;
}

.v2-carousel-track {
    display: flex;
    gap: 0.5vw;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    overflow-x: hidden;
    width: 100%;
    justify-content: center;
    max-width: 100vw;
}

.v2-card {
    position: relative;
    color: white;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    cursor: pointer;
    z-index: 1;
}

.v2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    cursor: pointer;
}

.v2-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    position: relative;
    z-index: 1;
}



/* Specific positioning for each card if needed */
.v2-card[data-index="0"] img {
    object-position: left center;
}

.v2-card[data-index="1"] img {
    object-position: center right;
}

.v2-card[data-index="2"] img {
    object-position: right center;
}

.v2-card[data-index="3"] img {
    object-position: center;
}



.v2-card-title {
    position: absolute;
    color: #fff;
    font-size: 1.5vw;
    top: 3.5rem;
    right: 2.5rem;
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 5;
}

.v2-plus-btn {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    font-size: 2.5vw;
    pointer-events: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 5;
}

/* Expanded Card */
.v2-card.v2-expanded {
    width: 65vw;
    height: auto;
    writing-mode: vertical-rl;
}

/* Hide plus button on expanded cards */
.v2-card.v2-expanded .v2-plus-btn {
    opacity: 0;
    pointer-events: none;
}

/* Collapsed Cards */
.v2-card.v2-collapsed {
    width: 7vw;
    height: auto;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Override hover effects for collapsed cards */
.v2-card.v2-collapsed:hover {
    transform: none !important;
    box-shadow: none !important;
    background: inherit !important;
}

/* Person info section */
.v2-person-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    padding: 0 2rem;
    gap: 3rem;
    margin-left: 10rem;
}

.v2-person-details {
    flex: 1;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.v2-person-details.v2-active {
    opacity: 1;
    transform: translateY(0);
}

.v2-person-name {
    font-size: 2rem;
    font-weight: 600;
    color: #175EBC;
    margin-bottom: 0.5rem;
}

.v2-person-text {
    font-size: 1.3rem;
    color: #525252;
    line-height: 1.6;
}



.v3-person-name {
    font-size: 2rem;
    font-weight: 600;
    color: #175EBC;
    margin-bottom: 0.5rem;
}

.v3-person-text {
    font-size: 1.3rem;
    color: #525252;
    line-height: 1.6;
}

/* Navigation dots */
.v2-carousel-nav {
    display: flex;
    justify-content: start;
    gap: 10px;
    align-items: start;
    margin-bottom: 4rem;
    margin-left: 10rem;
}

.v2-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.v2-nav-dot.v2-active {
    background-color: #1C61BE;
    transform: scale(1.2);
}

/* Mobile and tablet responsive adjustments for v2 */
@media (max-width: 1024px) {
    .v2-card.v2-expanded {
        width: 70vw;
    }

    .v2-card {
      border-radius: 15px;
    }
    
    .v2-card.v2-collapsed {
        width: 6vw;
    }
    
    .v2-card-title {
        font-size: 2vw;
        top: 2rem;
        right: 1rem;
    }
    
    .v2-plus-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 3vw;
    }
    
    .v2-carousel-track {
        gap: 0.3vw;
    }

    .v2-person-info {
        margin-left: 2rem;
        gap: 2rem;
    }

    .v2-carousel-nav {
        margin-left: 2rem;
    }
}

/* Mobile phones for v2 */
@media (max-width: 768px) {
    .v2-card.v2-expanded {
        width: 75vw;
    }

    .v2-card {
      border-radius: 5px;
    }
    
    
    .v2-card.v2-collapsed {
        width: 5vw;
        height: 40vh;
    }
    
    .v2-card-title {
        font-size: 2.5vw;
        top: 1.5rem;
        right: 1rem;
    }
    
    .v2-plus-btn {
        bottom: 1rem;
        right: 1rem;
        font-size: 4vw;
    }
    
    .v2-carousel-track {
        gap: 0.2vw;
    }
    
    .v2-person-info {
        flex-direction: column;
        gap: 1rem;
        margin-left: 1rem;
    }

    .v3-person-info {
        flex-direction: column;
        gap: 1rem;
        margin-left: 1rem;
    }
    
    .v2-person-name {
        font-size: 1.5rem;
    }
    .v3-person-name {
        font-size: 1.5rem;
    }
    
    .v2-person-text {
        font-size: 0.9rem;
    }

    .v3-person-text {
        font-size: 0.9rem;
    }

    .v2-carousel-nav {
        margin-left: 1rem;
        justify-content: center;
    }

    .v3-carousel-nav {
        margin-left: 1rem;
        justify-content: center;
    }
}

/* Very small screens for v2 */
@media (max-width: 480px) {
    .v2-card.v2-expanded {
        width: 78vw;
    }
    
    .v2-card.v2-collapsed {
        width: 4.5vw;
    }
    
    .v2-card-title {
        font-size: 3vw;
        top: 1rem;
        right: 0.5rem;
    }
    
    .v2-plus-btn {
        bottom: 0.5rem;
        right: 0.5rem;
        font-size: 5vw;
    }
    
    .v2-carousel-track {
        gap: 0.1vw;
    }

    .v2-person-info {
        margin-left: 0.5rem;
    }

    .v2-carousel-nav {
        margin-left: 0.5rem;
    }
}
 
/* ********************************** Section - 7 ****************************************** */

/* White Section Styles */
.white-section {
    background-color: #ffffff;
    height: auto;
    padding: 4rem 0;
}

.event-text {
    color: #175EBC;
    text-align: center;
    margin: 0;
    font-family: 'poppins', 'sans-sarif';
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Blue Section Styles */
.blue-section {
    /* background: linear-gradient(135deg, #6fa8dc 0%, #4285f4 100%); */
    background: #1C61BE;
    height: 70vh;
    position: relative;
}

/* .blue-section {
    background-color: #2563EB; 
    padding: 3rem 2rem;
} */

.newsletter-container {
    width: 100%;
    text-align: center;
    max-width: 500px;

}

.newsletter-heading {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.newsletter-form {
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.newsletter-input {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    width: 300px; /* Fixed width for inputs */
    max-width: 100%;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.newsletter-input:focus {
    background-color: transparent;
    border-color: white;
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.newsletter-btn {
    background-color: white;
    color: #175EBC;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 300px; /* Same width as inputs */
    max-width: 100%;
}

.newsletter-btn:hover {
    background-color: #f0f0f0;
    color: #2563EB;
}

.newsletter-text {
    color: white;
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 0;
}


@media (max-width: 1900px) and (min-width: 1601px) {
    .event-text {
        font-size: 3.5rem;
    }
}

@media (max-width: 1600px) and (min-width: 1201px) {
    .event-text {
        font-size: 2.8rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) and (min-width: 991px) {
    .blue-section {
        min-height: 60vh;
    }
    
    .white-section {
        min-height: auto;
        padding: 2rem 0;
    }
 
    .event-text {
        font-size: 2.2rem;
    }
  
    
}

@media (max-width: 991px) and (min-width: 768px) {
    .blue-section {
        min-height: 60vh;
    }
    
    .white-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .feature-text p {
        font-size: 1rem;
    }

    .event-text {
        font-size: 1.8rem;
    }

    .newsletter-text {
        font-size: 1.1rem;
    }
    
}

@media (max-width: 767px) and (min-width: 576px) {
    .blue-section {
        min-height: 40vh;
    }

    .event-text {
        font-size: 2.5rem;
    }
 
}

@media (max-width: 575px) and (min-width: 350px) {
    .blue-section {
        min-height: 40vh;
    }

    .event-text {
        font-size: 1.2rem;
    }

    .newsletter-text {
        font-size: 1rem;
    }
 
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* <!-- ********************************** Footer ********************************** --> */


ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
  background: #2E2E2E;
  position: relative;
}
.footer-cta {
  /* border-bottom: 1px solid #373636; */
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  /* padding-left: 15px; */
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #FFFFFF;
  font-size: 1.2rem;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}

.footer-content {
  font-size: 1.2rem;
  color: #ffffff !important;
  line-height: 28px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 25px;
}

.footer-social-icon {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Adjust spacing between rows */
    margin-left: 3rem;
    /* margin-top: 3rem; */
}

.footer-social-icon img {
    width: 75%;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
  display: block;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.legacy-cta-footer {
  background: linear-gradient(to right, #1a61be, #5c96e6) !important;
  color: white !important;
  padding: 12px 140px !important;
  border: none;
  border-radius: 16px !important;
  font-size: 1.2rem !important;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  /* margin-left: 1rem; */
}

.legacy-cta-footer:hover {
    background: linear-gradient(to right, #1558a6, #5289d6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}


.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: auto;
  padding: 14px 28px;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #fff !important;
  margin-top: 0.5rem;
}
/* .subscribe-form button {
    position: relative;
    right: 0;
    background: linear-gradient(to right, #1a61be, #5c96e6);
    padding: 6px 70px;
/    top: 0;
    margin-left: 0 !important;
} */
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 1.5rem;
  color: #ffffff;
}
.copyright-text p a{
  color: #fff;
  text-decoration: none;
}

.footer-menu {
    margin-left: 2rem;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
  margin-bottom: 0.8rem !important;
  
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 1.5rem;
  color: #ffffff !important;
  text-decoration: none !important;
  text-transform: none !important;
  
}





/* ========================================
   CORNER LOGO - ZERO GAP (TOUCHES CORNER)
   ======================================== */

.corner-logo {
  width: 120px;
  height: auto;
  max-width: 120px;
  display: block;
  
  position: absolute !important;
  bottom: 0 !important;
  right: 0 !important;
  z-index: 999;
  padding: 0 !important;
  margin: 0 !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
}

.corner-logo:hover {
  cursor: pointer;
  transform: scale(1.05);
}

/* SVG Container for animations */
.logo-container {
  position: relative;
  width: 120px;
  height: auto;
}

.corner-logo .legacy-logo {
  position: static !important;
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  font-family: 'Poppins', sans-serif;
  bottom: auto !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  margin: 0 !important;
}


/* Main SVG Logo */
.logo-svg {
  width: 100%;
  height: auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom right;
}












