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

 body,
 html {
     overflow-x: hidden;
 }

 .dm-sans {
     font-family: 'DM Sans', sans-serif;
 }

 /* ----------- NAVBAR BASE ----------- */
 .navbar {
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     padding: 1rem 2rem;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     /* position: fixed; */
 }

 .nav-container {
     max-width: 1400px;
     margin: auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo img {
     width: 53px;
     height: 53px;
 }

 .arrow-btn {
     display: inline-block;
     vertical-align: middle;
     width: 20px;
     height: 20px;
 }

 /* .logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    background: linear-gradient(135deg, #0d5047 0%, #144C4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

 /* ----------- NAV MENU ----------- */

 .nav-menu {
     display: flex;
     gap: 2.5rem;
    margin-left: 10rem;

     list-style: none;
     align-items: center;
     font-family: 'DM Sans', sans-serif;
 }

 .nav-link {
     color: #374151;
     font-size: 18px;
     font-weight: 500;
     text-decoration: none;
     position: relative;
     font-family: 'DM Sans', sans-serif;
 }

 .nav-link::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: -2px;
     width: 0;
     height: 2px;
     background: linear-gradient(135deg, #0d5047 0%, #144C4A 100%);
     transition: width 0.3s ease;
 }

 .nav-link:hover {
     color: #0d5047;
 }

 .nav-link:hover::after {
     width: 100%;
 }


 /* ----------- DROPDOWN ----------- */
 .dropdown {
     position: relative;
 }

 .dropdown-menu {
     position: absolute;
     top: 120%;
     left: 0;
     background: white;
     border-radius: 14px;
     min-width: 20px;
     min-height: 22px;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: all 0.3s ease;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
 }

 .dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .dropdown-menu li a {
     display: block;
     padding: 12px 24px;
     color: #4b5563;
     text-decoration: none;

 }

 .dropdown-menu ul {
     list-style-type: none;
 }

 /* ----------- DOWNLOAD BUTTON ----------- */
 .download-btn {
     background: linear-gradient(135deg, #0d5047 0%, #144C4A 100%);
     color: white;
     border: none;
     padding: 12px 28px;
     border-radius: 50px;
     font-size: 15px;
     font-weight: 600;
     cursor: pointer;
 }

 .mobile-btn-wrapper {
     display: none;
 }

 /* ----------- HAMBURGER ----------- */
 .hamburger {
     display: none;
     flex-direction: column;
     gap: 6px;
     cursor: pointer;
 }

 .hamburger span {
     width: 28px;
     height: 3px;
     background: #0d5047;
     border-radius: 5px;
     transition: 0.3s;
 }

 /* HAMBURGER ANIMATION */
 .hamburger.active span:nth-child(1) {
     transform: translateY(9px) rotate(45deg);
 }

 .hamburger.active span:nth-child(2) {
     opacity: 0;
 }

 .hamburger.active span:nth-child(3) {
     transform: translateY(-9px) rotate(-45deg);
 }

 /* ----------- MOBILE RESPONSIVE ----------- */
 @media (max-width: 768px) {

     .desktop-btn {
         display: none;
     }

     .mobile-btn-wrapper {
         display: block;
         padding: 20px;
     }

     .hamburger {
         display: flex;
     }

     /* MOBILE MENU */
     .nav-menu {
         position: absolute;
         top: 100%;
         right: 0;
         width: 100%;
         background: white;
         flex-direction: column;
         gap: 1rem;
         padding: 20px 0;
         display: none;
         text-align: center;
     }

     .nav-menu.active {
         display: block;
     }

     /* MOBILE DROPDOWN (Click) */
     .dropdown-menu {
         position: relative;
         top: 0;
         left: 0;
         opacity: 1;
         visibility: visible;
         transform: translateY(0);
         box-shadow: none;
         display: none;
     }

     .dropdown.open .dropdown-menu {
         display: block;
     }

     .dropdown-toggle {
         cursor: pointer;
     }
 }




 /* ==================== TESTIMONIAL CAROUSEL ==================== */
 .carousel-wrapper {
     max-width: 1328px;
     margin-left: auto;
     margin-right: auto;
     display: flex;
     align-items: flex-start;
     gap: 25px;
     position: relative;
     margin-top: 45px;
     margin-bottom: 60px;
 }

 /* FIXED CARD */
 .fixedcard {
     width: 332px;
     height: 341px;
     background: #EBEBEB;
     border-radius: 30px;
     padding: 45px;
     z-index: 10;
     flex-shrink: 0;
     margin-left: -50px;

 }

 .fixedcard img {
     margin-top: 10px;
     margin-left: 10px;
 }

 .fixedcard p {
     font-family: "DM Sans", sans-serif;
     font-weight: 700;
     font-size: 30px;
     color: #808080;
     margin-top: 95px;
     margin-bottom: 45px;
 }

 .underline-row {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-top: -25px;

 }

 .underline-arrow {
     width: 35px;
     height: 35px;
     display: block;
     transform: translateY(-3px);
     /* adjust this 0–3px */
 }



 .underline-base {
     width: 250px;
     /* BASE LINE SIZE (fixed) */
     height: 3px;
     background: #4BB0AD;
     border-radius: 3px;
     position: relative;
     overflow: hidden;
 }

 .underline-fill {
     height: 100%;
     width: 40px;
     /* starts small */
     background: #144C4A;
     border-radius: 3px;
     transition: width 0.08s linear;
 }


 .underline {
     width: 40px;
     height: 3px;
     background: #4BB0AD;
     border-radius: 1px;
     transition: width 0.2s linear;
 }

 .fixedcard svg {
     color: #808080;
     cursor: pointer;
 }

 /* CAROUSEL SECTION (VIEWPORT) */
 .carousel-section {
     max-width: 1328px;
     min-width: 1328px;
     height: 341px;
     overflow: hidden;
     border-radius: 30px;
     flex-grow: 1;
 }

 .carousel-track {
     display: flex;
     gap: 25px;
     padding: 0;
     height: 100%;
 }

 .carousel-container::before,
 .carousel-container::after {
     content: '';
     position: absolute;
     top: 0;
     bottom: 0;
     width: 100px;
     z-index: 2;
     pointer-events: none;
 }

 .carousel-container::before {
     left: 0;
     background: linear-gradient(to right, #f7f7f7, rgba(247, 247, 247, 0));
 }

 .carousel-container::after {
     right: 0;
     background: linear-gradient(to left, #f7f7f7, rgba(247, 247, 247, 0));
 }

 .carousalcardcontainer {
     min-width: 654px;
     flex-shrink: 0;
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .carousalcard {
     width: 654px;
     height: 341px;
     padding: 0px 50px 0px 50px;
     border-radius: 30px;
     background: #EBEBEB;
     box-sizing: border-box;
 }

 .vertical-line {
     width: 5px;
     /* thickness of the line */
     height: 16px;
     /* height of the line */
     background-color: #144C4A;
     /* color of the line */
     display: inline-block;
     border-radius: 18px;

 }

 .carousalcard p {
     font-family: "DM Sans", sans-serif;
     font-weight: 400;
     margin-top: 95px;
     font-size: 20px;
     color: #464646;
     line-height: 27px;
     letter-spacing: 0px;
 }

 .carousalcard .name {
     font-family: "DM Sans", sans-serif;
     font-weight: 400;
     font-style: Regular;
     font-size: 18px;
     color: #808080;
     line-height: 27px;
     letter-spacing: 0px;
     display: flex;
     align-items: center;
     gap: 8px;


 }

 /* CONTENT BLOCK */
 .content-section {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
     margin-bottom: 60px;
 }

 .image-group {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }

 .image-placeholder {
     width: 100%;
     max-width: 292px;
     height: 390px;
     border-radius: 14px;
     overflow: hidden;
 }

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

 .text-content p {
     color: #808080;
     line-height: 30px;
     text-align: justify;
 }

 .container1 {

     max-width: 1240px;
     margin: 0 auto;
     text-align: center;

 }

 /* Grid wrapper */
 .sticky-grid {
     margin-top: 123px;
     display: flex;
     justify-content: center;
     gap: 69px;
     flex-wrap: wrap;
     margin-bottom: 120px;
 }

 /* Sticky Card (Outer white frame) */
 /* Remove default rotation from all cards */
 .sticky-card {
     position: relative;
     width: 367px;
     height: 386px;
     background: #FFFFFF;
     border-radius: 32px;
     border: 1px solid #E6E6E6;
     transition: transform 0.3s ease;
     display: flex;
     justify-content: center;
     align-items: center;
     /* box-shadow: 10px 10px rgb(185, 189, 191); */
     box-shadow:
         8px 10px 5px rgba(185, 189, 191, 0.3),
         12px 8px 10px rgba(185, 189, 191, 0.2),
         6px 12px 15px rgba(185, 189, 191, 0.15);

 }

 /* Slight tilt for visual appeal (exactly as you requested) */
 .sticky-card:nth-child(1) {
     transform: rotate(-4deg);
 }

 .sticky-card:nth-child(2) {
     transform: rotate(3deg);
 }

 .sticky-card:nth-child(3) {
     transform: rotate(-2deg);
 }

 /* Hover: straighten and lift */
 .sticky-card:hover {
     transform: rotate(0deg) translateY(-12px) !important;
 }


 /* Blue Pin */
 .pin {
     position: absolute;
     top: -5px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 20;
     width: 50px;
     height: 50px;
 }

 /* Soft drop shadow */
 /* .sticky-shadow {
    position: absolute;
    bottom: -1px;
    width: 300px;
    height: 40px;
    background: rgba(0, 0, 0, 0.12);
    filter: blur(20px);
    border-radius: 20px;
    z-index: -99;
} */

 /* Outer grey soft area */
 .sticky-inner-wrapper {
     width: 310px;
     height: 310px;
     background: #F6F7F7;
     border-radius: 36px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 /* Lime green actual sticky */
 .sticky-inner {
     width: 234px;
     height: 234px;
     background: #C2F11F;
     border-radius: 28px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 22px;
 }

 /* Icon */
 .icon img {
     width: 80px;
     height: 80px;
 }

 /* Sticky text */
 .sticky-text {
     font-size: 20px;
     font-weight: 700;
     color: #144C4A;
     text-align: center;
 }

 .sticky-text-p {
     font-size: 18px;
     font-weight: 500;
     color: #808080;
     margin-top: -18px;
     text-align: center;
 }

 /* Responsive */
 @media (max-width: 1024px) {
     .sticky-grid {
         gap: 40px;
     }

     .sticky-card {
         width: 290px;
         height: 360px;
     }

     .pin {
         width: 40px;
         height: 40px;
         top: 18px;
     }
 }

 @media (max-width: 768px) {
     .sticky-grid {
         flex-direction: column;
         align-items: center;
         gap: 60px;
     }

     .sticky-card:nth-child(1) {
         transform: rotate(-4deg);
     }

     .sticky-card:nth-child(2) {
         transform: rotate(3deg);
     }

     .sticky-card:nth-child(3) {
         transform: rotate(-2deg);
     }

     .sticky-card {
         width: 320px;
         max-width: 90%;
     }

     .sticky-card:hover {
         transform: translateY(-10px);
     }
 }





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

 /* Large Tablets / Small Laptops - 1300px */
 @media (max-width: 1360px) {
     .carousel-section {
         width: calc(100vw - 332px - 25px - 40px);
         max-width: 100%;
         min-width: 300px;
     }
 }

 @media (max-width: 1300px) {}

 /* Tablets Landscape - 1024px */
 @media (max-width: 1024px) {

     .winter-edition h1 {
         font-size: 48px;
         margin-top: 80px;
     }

     .winter-edition p {
         padding: 0 60px;
     }

     .venu h1 {
         font-size: 48px;
     }

     .venu p {
         padding: 0 150px;
     }

     .new-section {
         padding: 0 30px;
         gap: 15px;
     }

     .breaking h4 {
         margin-left: 60px;
         margin-top: 60px;
     }

     .breaking p {
         margin-left: 60px;
     }

     .content-section {
         gap: 25px;
         margin-bottom: 50px;
     }

     .image-placeholder {
         height: 340px;
     }

     .carousel-wrapper {
         flex-direction: column;
         gap: 40px;
     }

     .carousel-section,
     .fixedcard {
         width: 100%;
         max-width: 100%;
         min-width: 100%;
         margin: 0 auto;
     }

     .carousalcardcontainer {
         min-width: calc(10% - 20px);
     }
 }

 /* Tablets Portrait / Large Phones - 768px */
 @media (max-width: 760px) {
     .container {
         padding: 30px 15px;
     }

     h1 {
         font-size: 32px;
         margin-bottom: 30px;
     }





     .winter-edition h1 {
         font-size: 36px;
         margin-top: 60px;
     }

     .winter-edition p {
         font-size: 16px;
         padding: 0 30px;
     }

     .breaking h4 {
         margin-left: 30px;
         margin-top: 50px;
         font-size: 17px;
     }

     .breaking p {
         margin-left: 30px;
         margin-right: 30px;
         font-size: 16px;
     }

     .venu h1 {
         font-size: 36px;
     }

     .venu p {
         padding: 0 40px;
         margin-bottom: 40px;
     }

     .new-section {
         flex-direction: column;
         padding: 0 20px;
         gap: 15px;
     }

     .new-section .row {
         width: 100%;
     }

     .your-sport {
         border-radius: 18px;
         padding: 30px 20px;
         min-height: 300px;
     }

     .your-sport h1 {
         font-size: 28px;
         margin-top: 30px;
     }

     .your-sport p {
         font-size: 16px;
         margin-top: 15px;
     }

     .btn {
         height: 60px;
         font-size: 18px;
     }

     .btn-container {
         margin-top: 20px;
     }

     .reacap h1 {
         font-size: 36px;
         margin-top: 40px;
     }

     .content-section {
         grid-template-columns: 1fr;
         gap: 30px;
         margin-bottom: 40px;
     }

     .image-group {
         justify-items: center;
     }

     .image-placeholder {
         max-width: 100%;
         height: 320px;
     }

     .text-content p {
         font-size: 16px;
         line-height: 26px;
     }

     /* RECAP CAROUSEL MOBILE */
     .recap h1 {
         font-size: 28px;
         margin-bottom: 30px;
     }

     .recap-card-container {
         overflow-x: visible;
         overflow-y: hidden;
         padding: 20px 0;
         -webkit-overflow-scrolling: touch;
         scrollbar-width: none;
         -ms-overflow-style: none;
     }

     .recap-card-container::-webkit-scrollbar {
         display: none;
     }

     .carousel-wrapper {
         display: flex;
         gap: 20px;
         padding: 0 20px;
         transition: none;
         transform: none !important;
     }

     .camp-card {
         width: 280px;
         min-width: 280px;
         height: 460px;
     }

     .card-image {
         height: 240px;
     }

     .card-content {
         padding: 18px 20px 20px;
     }

     .card-title {
         font-size: 16px;
         max-width: 240px;
         height: 40px;
     }

     .card-description {
         font-size: 12px;
         margin-bottom: 16px;
     }

     .arrow-button {
         width: 44px;
         height: 44px;
         font-size: 20px;
     }

     .dots {
         display: none;
     }

     .camp-card:hover {
         transform: none;
         box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     }

     .camp-card:hover .card-image img {
         transform: none;
     }

     /* TESTIMONIAL CAROUSEL MOBILE */
     .carousalcardcontainer {
         min-width: 85% !important;
         max-width: 85%;
         height: auto;
     }

     .carousalcard {
         width: 100%;
         height: auto;
         padding: 20px !important;
         border-radius: 20px;
     }

     .carousalcard p {
         margin-top: 30px !important;
         font-size: 16px !important;
         line-height: 22px !important;
     }

     .carousalcard .name {
         margin-top: 15px;
         font-size: 14px !important;
     }

     .fixedcard {
         width: 90% !important;
         height: auto !important;
         padding: 25px !important;
         margin-left: 0 !important;
         display: none;
     }

     .fixedcard p {
         margin-top: 40px !important;
         font-size: 22px !important;
     }

     .underline {
         width: 120px !important;
     }
 }

 /* Medium Phones - 600px */
 @media (max-width: 600px) {


     .reg-btn {
         height: 52px;
         font-size: 14px;
         max-width: 220px;
     }

     .unfilter img {
         max-width: 280px;
         margin-top: 50px;
     }

     .title {
         font-size: 20px;
     }

     .content p {
         font-size: 15px;
         line-height: 24px;
         margin-bottom: 25px;
     }
 }


 /* Extra Small Phones - 400px */
 @media (max-width: 435px) {
     .camp-card {
         width: 240px;
         min-width: 240px;
         height: 420px;
     }


     .carousel-wrapper {
         padding: 0px;
     }

     .card-image {
         height: 200px;
     }

     .venu p {
         text-align: justify;
         padding: 25px;
         color: #144C4A;
     }

     .camp-card {
         width: 336px;
         margin: 0px;
         height: 500px;

     }

     .card-description {
         font-size: 15px;
         font-weight: 400;
         color: #144C4A;
     }

     .card-title {
         font-size: 16px;
         font-weight: 800;
         width: 288px;
         height: 44px;

     }

     .recap {
         padding: 0px;
     }



 }


 .container {
     padding: 0px 55px 0px 55px;
 }

 .header {
     text-align: center;

     margin-bottom: 40px;

     margin-top: 35px;

 }

 .header h1 {
     color: #144C4A;
     font-family: 'DM Sans', sans-serif;
     font-weight: 700;
     font-size: 56px;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .header .date {
     color: #144C4A;
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 20px;
     font-family: 'DM Sans', sans-serif;
 }

 .theme-tag {
     display: inline-block;
     margin-bottom: 15px;
     display: flex;
     justify-content: flex-start;
     margin-left: 245px;
     font-family: 'DM Sans', sans-serif;


 }

 .subtitle {
     color: #1a5f5f;
     font-size: 18px;
     font-weight: 800;
     font-style: italic;
     margin-bottom: 10px;
     margin-top: -3px;
     display: flex;
     justify-content: flex-start;
     margin-left: 245px;
     font-family: 'DM Sans', sans-serif;
 }

 .description {
     color: #144C4A;
     font-size: 18px;
     line-height: 1.6;
     display: flex;
     margin-left: 245px;
     font-family: 'DM Sans', sans-serif;
 }

 .gallery {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-bottom: 40px;
 }

 .image-container {
     position: relative;
     border-radius: 16px;
     overflow: hidden;
     aspect-ratio: 1;
     background: #f0f0f0;
 }

 .image-container.large {
     grid-row: span 2;
     aspect-ratio: auto;
 }

 .image-slot {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 1s ease-in-out;
 }

 .image-slot.active {
     opacity: 1;
 }

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

 .view-more {
     text-align: center;
 }

 .view-more-btn {
     background: #1a5f5f;
     color: white;
     border: none;
     padding: 14px 40px;
     border-radius: 30px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     transition: all 0.3s ease;
 }

 .view-more-btn:hover {
     background: #145050;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(26, 95, 95, 0.3);
 }

 .arrow {
     font-size: 1.2rem;
 }

 @media (max-width: 768px) {

     .container {
         padding: 0px 30px;

     }

     .gallery {
         grid-template-columns: repeat(2, 1fr);
         gap: 15px;
         margin-left: 0px;
     }

     .header {
         text-align: center;

     }

     .header h1 {
         font-size: 20px;
         text-align: center;
         margin-bottom: 22px;
     }

     .theme-tag {
         display: none;
     }

     .subtitle {
         text-align: center;
         font-size: 18px;
         margin-left: 5px;
         margin-bottom: 25px;
         margin-top: 25px;
     }

     .description {
         text-align: center;
         font-size: 16px;
         margin-left: 1px;
     }
 }



 /* FOOTER */
 footer {
     background: #1D1D1D;
     padding: 30px 0px 0px;
     border-top: 1px solid rgba(99, 102, 241, 0.2);
     margin-top: 40px;

     width: 100%;
     /* IMPORTANT FIX */
 }

 .footer-container {

     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 20px;
 }

 .footer-column h2 {
     color: #ffffff;
     font-family: sans-serif;
     font-weight: 700;
     font-size: 18px;
     margin-bottom: 20px;
     background: #ffffff;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .footer-column ul {
     list-style: none;
 }

 .footer-column ul li {
     margin-bottom: 12px;
 }

 .footer-column ul li a {
     font-family: sans-serif;
     color: #ffffff;
     text-decoration: none;
     font-size: 14px;
     transition: all 0.3s ease;
 }

 .footer-column ul li a:hover {
     color: #10b981;
     padding-left: 5px;
 }

 .footerbtn {
     background: #C2F11F;
     color: black;
     padding: 16px 28px;
     border-radius: 30px;
     border: none;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.3s ease;
     /* box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4); */
 }

 .footerbtn:hover {
     transform: translateY(-2px);
     /* box-shadow: 0 6px 25px rgba(168, 85, 247, 0.6); */
 }

 .footer-bottom {
     max-width: 1400px;
     margin: 60px auto 0;
     padding: 30px 0;
     border-top: 1px solid rgba(99, 102, 241, 0.2);
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
     justify-content: center;
     color: #FFFFFF;
     font-size: 14px;
 }

 .footer-bottom p {
     font-family: sans-serif;
     cursor: pointer;
     transition: color 0.3s ease;
 }

 .footer-bottom a {
     text-decoration: none;
     color: white;
 }

 .footer-bottom p:hover {
     color: #10b981;

 }

 .copy {
     color: #6b7280 !important;
 }

 /* Footer Responsive */
 @media (max-width: 768px) {
     .footer {
         padding: 60px 20px 30px;
     }

     .footer-container {
         grid-template-columns: 1fr;
         text-align: center;
         gap: 30px;
     }

     .footer-bottom {
         flex-direction: column;
         text-align: center;
         gap: 15px;
         padding: 20px 0;
     }
 }