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

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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
    
}

/* ==================== NAVBAR ==================== */
/* ----------- NAVBAR BASE ----------- */
              /* ----------- 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;
}
.logo1 img{
    width: 53px;
    height: 53px;
}

/* .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;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: #144C4A;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.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:#144C4A;
    font-weight: bold;
    font-size: 18.5px;
    

}
/* 
.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;
    width: 188px;
  font-family: "Dm";
    height: 54px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
}
.arrow-btn {
    display: inline-block;     /* ensures image behaves well */
    vertical-align: middle;    /* aligns with text */
    width: 20px;               /* optional: control size */
    height: 20px;              /* optional: control size */
}

.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) {
    .navbar{
        margin-top: -35px;
        padding: 0px;
    }
  
    .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;
    }
}

/* ===== DEFAULT (DESKTOP / LARGE SCREENS) ===== */
.frame {
    width: 100%;
    max-width: 1243px;
    height: 540px;
    margin: 40px auto;         /* equal gap left + right, + some outside spacing */
    padding: 20px;

    background: #000;
    border-radius: 32px;

    background-image: url(./img/sunset_landscape_1006\ 1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* IMAGE */
.unfilterlogo {
    height: 210px;
    width: 454px;
}

/* TITLE */
.unfilter-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 25px;
    color: white;
    text-align: center;
    margin-top: 10px;
}

/* PARAGRAPH */
.frame p {
    font-size: 18px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    color: white;
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
}

/* BUTTON */
.frame-btn {
    background: white;
    color: #144C4A;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    width: 267px;
    height: 64px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    margin-top: 21px;
}

/* ICON */
.arrow-btn {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
}


/* ========================================================= */
/* ===== TABLETS / MEDIUM DEVICES (MAX-WIDTH: 768PX) ======= */
/* ========================================================= */
@media (max-width: 768px) {
    .frame {
        max-width: 90%;          /* shorter width, keeps equal side gaps */
        height: auto;
        padding: 30px 20px;
    }

    .unfilterlogo {
        width: 300px;
        height: auto;
    }

    .unfilter-title {
        font-size: 22px;
    }

    .frame p {
        font-size: 16px;
    }

    .frame-btn {
        width: 230px;
        height: 55px;
        font-size: 14px;
    }
}


/* ========================================================= */
/* ================ MOBILE (MAX-WIDTH: 480PX) =============== */
/* ========================================================= */
@media (max-width: 480px) {

    .frame {
        width: 100%;
        max-width: 381px;       /* your exact mobile size */
        height: 654px;          /* your exact mobile height */
     
        margin: 12px auto;      /* equal gap left & right + top/bottom */
        padding: 20px;

        border-radius: 24px;

        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .unfilterlogo {
        width: 250px;
        height: auto;
        margin-top: 0;
    }

    .unfilter-title {
        font-size: 20px;
        margin-top: 10px;
        line-height: 1.2;
    }

    .frame p {
        font-size: 14px;
        margin-top: 10px;
        line-height: 1.4;
    }

    .frame-btn {
        width: 220px;
        height: 50px;
        font-size: 14px;
        padding: 10px 20px;
    }

    .arrow-btn {
        width: 14px;
        height: 14px;
    }
}




/* ==================== UNFILTER SECTION ==================== */
/* ====================== DESKTOP (Default) ====================== */
.inline-heading {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-left: 158px;         /* desktop spacing */
    font-size: 56px;
    color: #144C4A;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 45px;
}

.unfilterimg {
    width: 42px;
    height: 42px;
}

.unfilter-section {
    padding: 25px 20px;
}

.unfilter-section p {
    margin-left: 158px;         /* desktop spacing */
    font-family: "DM Sans", sans-serif;
    color: #144C4A;
    font-size: 18px;
    margin-bottom: 55px;
    line-height: 1.6;
}


/* ====================== TABLET (max-width: 992px) ====================== */
@media (max-width: 992px) {

    .inline-heading {
        margin-left: 60px;
        font-size: 44px;
    }

    .unfilter-section p {
        margin-left: 60px;
        font-size: 16px;
    }

    .unfilterimg {
        width: 36px;
        height: 36px;
    }
}


/* ====================== MOBILE (max-width: 480px) ====================== */
@media (max-width: 480px) {

    .inline-heading {
        margin-left: 0;              /* remove big desktop spacing */
        text-align: left;
        justify-content: flex-start;
       
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 25px;
        flex-wrap: wrap;             /* allow title + image to wrap */
    }

    .unfilterimg {
        width: 32px;
        height: 32px;
    }

    .unfilter-section {
        padding: 20px 20px;
    }

    .unfilter-section p {
        margin-left: 0;
        text-align: left;
        font-size: 18px;
        text-align: justify;
        padding: 0px ;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
}


/* ==================== WINTER EDITION ==================== */

        .section {
            max-width: 1400px;
            margin: 0 auto;
        }

        .main-title {
            font-size: 72px;
            font-weight: 600;
            color: #2d6a6d;
            margin-bottom: 40px;
            line-height: 1.1;
        }

        .main-title .emoji {
            color: #d4ff00;
            font-size: 0.8em;
        }

        .description {
            font-size: 18px;
            color: #4a5568;
            margin-bottom: 50px;
            max-width: 900px;
            line-height: 1.7;
        }

        .spacing {
            margin-bottom: 80px;
        }

        .winter-section {
            margin-top: 120px;
            padding-top: 80px;
            border-top: 1px solid #e2e8f0;
        }

        .winter-title {
            font-size: 56px;
            font-weight: 600;
            color: #2d6a6d;
            margin-bottom: 50px;
            text-align: center;
        }

        .winter-description {
            font-size: 18px;
            color: #4a5568;
            margin-bottom: 60px;
            line-height: 1.8;
            text-align: center;
            max-width: 950px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }

        .theme-container {
            background: #ffffff;
            margin-top: 40px;
        }

        .theme-badge {
            display: inline-flex;
            align-items: center;
            background: #d4ff00;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .theme-badge .emoji {
            margin-left: 8px;
        }

        .theme-title {
            font-size: 22px;
            font-weight: 600;
            color: #2d6a6d;
            margin-bottom: 16px;
            font-style: italic;
        }

        .theme-text {
            font-size: 17px;
            color: #4a5568;
            line-height: 1.7;
            max-width: 800px;
        }

        .visual-elements {
            margin-top: 80px;
            display: flex;
            justify-content: space-around;
            align-items: flex-end;
            padding: 60px 0;
            position: relative;
        }

        .element {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            border-radius: 50%;
            box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
        }

        .element.small {
            width: 80px;
            height: 80px;
        }

        .accent-line {
            position: absolute;
            bottom: 0;
            left: 10%;
            width: 25%;
            height: 8px;
            background: #d4ff00;
            border-radius: 4px;
        }

        .accent-line.right {
            left: auto;
            right: 10%;
        }

        @media (max-width: 1024px) {
            body {
                padding: 60px 60px;
            }

            .main-title {
                font-size: 56px;
            }

            .winter-title {
                font-size: 44px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 40px 24px;
            }

            .main-title {
                font-size: 42px;
            }

            .winter-title {
                font-size: 36px;
            }

            .description, .winter-description, .theme-text {
                font-size: 16px;
            }

            .visual-elements {
                flex-wrap: wrap;
                gap: 30px;
            }
         
        }

      





/* winter */

.section-title {
    display: flex;
    align-items: flex-end; /* Align line slightly under text */
    justify-content: center;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 30px;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: "";
    flex: 1;
    height: 0.5px;
    background: #144C4A;
    margin: 0 20px;
    transform: translateY(-6px); /* moves line down so it sits under the text */
}

.section-title h1 {
    font-size: 56px;
    color: #144C4A;
    font-weight: 700;
    line-height: 66px;
    margin: 0;
    white-space: nowrap;
}

.section-description {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #144C4A;
    max-width: 1105px;
    margin: auto;
    text-align: center;
    margin-top: 62px;
    margin-bottom: 55px;
    

}

@media(max-width:480px){
    .section-title{

         text-align: left;        /* left-align heading on small screen */
        justify-content: flex-start;
    }
   .section-title h1{
    color: #144C4A;
    line-height: 42px;
    text-align: center;
    margin-top: -50px;
    font-size: 35px;
    white-space: normal;            /* allow line breaks */
    overflow-wrap: break-word;      /* break long words */
    word-break: break-word;
   } 
   .section-description{
    margin-top: -25px;
    text-align: justify;
    padding: 25px;
   }
   
}


/* ==================== BREAKING SECTION ==================== */

.breaking h4 {
    margin-left: 315px;
    margin-top: -7px;
    font-family: "DM Sans", sans-serif;
    font-style: italic;
    font-weight: 800;
    color: #144C4A;
    font-size: 18px;
    padding-right: 20px;
}
.breaking-img{
    margin-left: 275px;
    width: 112px;
    height: 54px;    
    
    
}

.breaking{
    background-image: url(./img/Group\ 102.png);
}
.breaking p {
    margin-left: 315px;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color: #144C4A;
    font-size: 18px;
    margin-top: 10px;
    padding-right: 20px;
}

@media (max-width: 480px) {
    
    .breaking-img {
        display: block;              /* block so centering works */
        margin: -60px auto -40px 20px;    /* center + 10px bottom spacing */
        width: 100px;                 /* scale down image */
        height: auto;
    }

    .breaking h4 {
        margin-left: 0;              /* remove desktop margin */
        margin-top: 5px;  
        text-align: center;          /* center text */
        font-size: 18px;             /* scale heading */
    }   

    .breaking p {
        margin-left: 0;              /* remove desktop margin */
        padding: 0 0px; 
        text-align: justify;
        font-size: 14px;
        margin-top: 10px;
        line-height: 1.4;
    }
}




/* ==================== VENUE SECTION ==================== */
.venu h1 {
    color: #0d5047;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 56px;
    padding: 0 20px;
}
.row img{
    width: 462px;
    height: 358px;
    margin-bottom: 25px;
    gap: 8px;
}
.arrow{
    width: 18px;
    height: 18px;
    
}

.venu p {
    padding: 0 140px;
    margin-bottom: 55px;
    text-align: center;
    color: #808080;
    margin-top: 30px;
    line-height: 30px;
    font-size: 16px;

}

/* ==================== NEW SECTION (IMAGES) ==================== */
.new-section {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 0 50px;
    justify-content: center;
}

.new-section .row {
    display: flex;
    justify-content: center;
    flex: 1;
}

.new-section .row img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

/* ==================== YOUR SPORT SECTION ==================== */
.your-sport {
    width: 100%;
    max-width: 1413px;
    height: auto;
    min-height: 334px;
    border-radius: 23px;
    background: #144C4A;
    padding: 40px 20px;
    box-sizing: border-box;
}

.yoursport-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    padding: 0 20px;
}

.your-sport h1 {
    color: #FFFFFF;
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    margin-top: 50px;
    text-align: center;
    padding: 0 20px;
}

.your-sport p {
    text-align: center;
    margin-top: 20px;
    color: #ffff;
    font-family: "DM Sans", sans-serif;
    padding: 0 20px;
}
a{
    text-decoration: none;
}
.btn {
    display: inline-flex;       /* makes text and image align horizontally */
    align-items: center;        /* vertically center content */
    justify-content: center;    /* center content horizontally inside button */
    gap: 8px;                 
    text-decoration: none; 

    width: 100%;
    max-width: 278px;
    height: 71px;
    background: #C2F11F;
    border-radius: 40px;
    border: none;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #144C4A;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 241, 31, 0.4);
}


.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    padding: 0 20px;
}

/* ==================== RECAP SECTION ==================== */
.section-line {
    
    width: 100%;
    height: 0;
    border-top: 2px solid #dcdcdc;
    margin: 150px 0 40px;
    position: relative;
}

.section-line::before,
.section-line::after {
    content: "";
    position: absolute;
    top: -2px; /* aligns with the border */
    width: 40px;  /* size of the cut */
    height: 2px;
    background: white; /* page background color */
}

.section-line::before {
    left: 0;
}

.section-line::after {
    right: 0;
}


.reacap h1 {
    text-align: center;
    margin-top: 55px;
    font-family: "DM Sans", sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #808080;
}

.recap-card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    margin-top: -40px;
    padding: 20px 0;
}

.recap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.recap h1 {
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    color: #808080;
    margin-bottom: 60px;
    font-family: "DM Sans", sans-serif;
}

.recap-card-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.camp-card {
    width: 336px;
    min-width: 336px;
    height: 500px;
   
    background: #DFDFDF;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.camp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.camp-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px 24px 24px;
    border-radius: 30px 30px 0px 0px;
    background: #DFDFDF;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #0d5c5f;
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
    max-width: 288px;
    padding: 10px;
    height: 44px;
    background: #F6F6F6;
    border-radius: 26px;
    font-family: "DM Sans", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.card-description {
    font-size: 13px;
    line-height: 1.7;
    color: #758a8e;
    text-align: justify;
    margin-bottom: 20px;
}

.arrow-button {
    width: 48px;
    height: 48px;
    background: #0d7377;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 115, 119, 0.3);
    margin-left: auto;
}

.arrow-button:hover {
    background: #0a5c5f;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(13, 115, 119, 0.4);
}

.arrow-button:active {
    transform: scale(0.95);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: -55px;
}

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

.dot.active {
    background: #0d7377;
    width: 30px;
    border-radius: 5px;
}

/* ==================== 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-card-container{
        
    }
    .recap{
        padding: 0px;
    }

   
    
}



/* FOOTER */
footer {
    background: #1D1D1D;
    padding: 80px 20px 30px;
    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 h4 {
    color: #ffffff;
    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 {
    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 {
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-bottom p:hover {
    color: #a855f7;
}

.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;
    }
}



        /* Popup background */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup content */
.popup-content img {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

