/*=========================================
VISHVA RIDE
Registration Page
=========================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:linear-gradient(135deg, rgba(255,153,51,.80),rgba(255,255,255,.30),
rgba(6,3,141,.20), rgba(255,255,255,.30), rgba(19,136,8,.80));
color:#000080;
}


/*================ NAVBAR ================*/

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#fff;
box-shadow:0 2px 15px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:1000;
}

.logo{
display:flex;
flex-direction:column;
align-items: center;
text-decoration: none;
color: inherit;
justify-content: center;
}

.logo img{
   width:120px;
   height:auto;
   display:block;
   cursor: pointer;
}
/*
.logo h2{
font-size:32px;
font-weight:800;
color:#000080;
}*/

.logo p{
font-size:12px;
font-weight:bold;
letter-spacing:2px;
text-transform:uppercase;
color:#000080;
}

/* Hide hamburger menu on Desktop */

.menu-toggle{
    display:none;
    font-size:34px;
    cursor:pointer;
    color:#000080;
}
.menu{
display:flex;
gap:35px;
list-style:none;
}

.menu a{
text-decoration:none;
font-weight:600;
color:#000080;
transition:.3s;
}

.menu a:hover,
.menu .active{
color:#ff671f;
}

.register-btn{
background:#ff671f;
color:white;
padding:13px 30px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.register-btn:hover{
border: 2px solid #ff671f;
background:white;
color: #000080;
}

/*================ HERO ================*/

.hero{
height:650px;
display:flex;
align-items:center;
padding:0 8%;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("../image/registration/banner.png"); background-size:cover;
background-position:center; background-repeat: no-repeat; position: relative;
overflow: hidden; transition: background-image 0.8s ease-in-out;
/*animation: heroslider 25s infinite;*/
}

.hero-content{
max-width:700px;
}

.hero-content h4{
color:white;
letter-spacing:3px;
margin-bottom:20px;
}

.hero-content h1{
font-size:75px;
color:#ff671f;
line-height:0.2;
margin-bottom:25px;
font-weight:800;
}

.hero-content h2{
    font-size:75px;
    color:#06bbf1;
    line-height:1;
    margin-bottom:25px;
    font-weight:800;
}
.hero-content .hero-event .cyclothon{
    color:#FF671F !important;
    font-size:28px !important;
}

.hero-content .hero-event .marathon{
    color:#FFFFFF !important;
    font-size:28px !important;
}

.hero-content .hero-event .walkathon{
    color:#1aec07 !important;
    font-size:28px !important;
}

.hero-content p{
color:white;
font-size:18px;
text-align:left;
line-height:1.5;
margin-bottom:40px;
}

.hero-buttons{
display:flex;
gap:20px;
}

.btn-primary{
background:#ff671f;
color:white;
padding:15px 35px;
border-radius:35px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-primary:hover{
background:white;
border:2px solid #ff671f;
color:#000080;
}

.btn-secondary{
border:2px solid #ff671f;
padding:15px 35px;
border-radius:35px;
text-decoration:none;
font-weight:600;
color:#ff671f;
transition:.3s;
}

.btn-secondary:hover{
background:white;
color:#000080;
}


/*================ SECTION TITLE ================*/

.section{
    padding:50px 6%;
}
.section-title{
padding:80px 8%;
text-align:center;
margin-bottom:none;
}

.section-title h2{
font-size:44px;
font-weight:800;
color:#000080;
margin-bottom:5px;
}

.section-title p{
font-size:18px;
color:black;
margin-bottom:5px;
}

/* ================= fee cards ================= */
.featured{
    padding:10px 8%;
    text-align:center;
    margin-top:80px;
}

.featured h2{
    font-size:45px;
    margin-bottom:15px;
}

.featured p{
    font-size:20px;
    color:black;
}

.subtitle{
    color:#000080;
    margin-bottom:50px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
    justify-items:center;
}

.event-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 10px rgba(6,3,141,.80);
    transition:.3s;
    width:400px;
}

.event-card:hover{
    transform:translateY(-10px);
}

.event-card img{
    width:400px;
    height:400px;
    object-fit:cover;
    display:block;
}

.card-content{
    padding:20px;
    text-align:center;
}

.card-content h3{
    text-align:center;
    margin:15px;
}

.button-group{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.button-group a{
    display:inline-block;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.explore-btn{
    background:#ff671f;
    color:white;
}

.explore-btn:hover{
    background:white;
    color:#ff671f;
    border:2px solid #000080;
}

.payment-btn{
    background:white;
    color:#ff671f;
    border:2px solid #ff671f;
}

.payment-btn:hover{
    background:white;
    color:#000080;
    
}

    /* Event Card Buttons */

.button-group{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
}

.button-group a{
    flex:0 0 calc(50% - 10px); /* Two buttons per row */
    max-width:calc(50% - 10px);
    padding:12px 10px;
    text-align:center;
    font-size:14px;
    box-sizing:border-box;
}

.payment-btn{
    padding:8px 10px;
    font-size:13px;
}

.payment-btn form{
    transform:scale(0.70);     /* 80% of original size */
    transform-origin:center top;
    display:inline-block;
    margin-top:5px;
}


/*================ IMPORTANT DATES =================*/

.important-dates{
background:none;
}

.timeline{
max-width:900px;
margin:auto;
position:relative;
}

.timeline::before{
content:"";
position:absolute;
left:50%;
top:0;
width:4px;
height:100%;
background:#FF671F;
transform:translateX(-50%);
}

.timeline-item{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:10px;
position:relative;
}

.timeline-item:nth-child(even){
flex-direction:row-reverse;
}

.timeline-date{
width:180px;
background:white;
color:#ff671f;
padding:15px;
border: 2px solid #ff671f;
text-align:center;
border-radius:40px;
align-items: left;
font-weight:700;
}

.timeline-content{
width:42%;
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 5px 10px rgba(6,3,141,.80);
}

.timeline-content h3{
color:#000080;
margin-bottom:10px;
}

.timeline-content p{
color:black;
}


/*================ REGISTRATION INCLUDES ================*/

.included{
    padding:20px 4%;
    background:none;
}

.include-grid{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:20px;
}

.include-card{
    background:#fff;
    padding:20px 15px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 10px rgba(6,3,141,.80);
    transition:.35s;
}

.include-card:hover{
    transform:translateY(-8px);
    box-shadow:0 5px 10px rgba(6,3,141,.80);
}

.include-card .icon img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.include-card h3{
    font-size:18px;
    color:#000080;
    margin:15px 0 8px;
    line-height:1.3;
}

.include-card p{
    font-size:14px;
}



/*================ REGISTRATION INCLUDES =================*/
.event-info .important-dates{
    width:52%;
    padding:20px;
    border:3px solid #000080;
    border-radius:20px;
    box-sizing:border-box;
}
.event-info .included{
    width:42%;
    padding:30px;
    border:3px solid #FF671F;
    border-radius:20px;
    background:rgba(255,255,255,0.25);
    box-sizing:border-box;
}

/* Two cards per row */

.event-info .include-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

/* Card */

.event-info .include-card{
    padding:20px;
}

/* Icon */

.event-info .include-card img{
    width:70px;
    height:70px;
    object-fit:contain;
}

/* Heading */

.event-info .include-card h3{
    font-size:18px;
    margin:12px 0 8px;
}

/* Text */

.event-info .include-card p{
    font-size:14px;
}
/* Timeline */

.event-info .timeline{
    max-width:100%;
}

/* Date */

.event-info .timeline-date{
    width:150px;
    padding:10px;
    font-size:15px;
}

/* Content Box */

.event-info .timeline-content{
    width:40%;
    padding:18px;
}

.event-info .timeline-content h3{
    font-size:18px;
    margin-bottom:8px;
}

.event-info .timeline-content p{
    font-size:14px;
}
.event-info .timeline-item{
    margin-bottom:8px;
}

/*================ REFUND =================*/

.refund{
padding:20px 4%;
margin-bottom: 80px;
background:none;
}

.refund-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.refund-card{
background:#F8F9FC;
padding:40px 30px;
text-align:center;
border-radius:20px;
box-shadow:0 5px 10px rgba(6,3,141,.80);
transition:.35s;
}

.refund-card:hover{
transform:translateY(-8px);
box-shadow:0 5px 10px rgba(6,3,141,.80);
}

.refund-card h3{
color:#000080;
margin-bottom:20px;
}

.refund-card h1{
font-size:48px;
color:#FF671F;
margin-bottom:20px;
}

.refund-card p{
color:black;
}

/*================ FAQ =================*/

.faq{
background:#F8F9FC;
}

.faq-container{
max-width:950px;
margin:auto;
}

.faq-item{
background:#fff;
margin-bottom:18px;
padding:25px;
border-radius:15px;
box-shadow:0 5px 10px rgba(6,3,141,.80);
cursor:pointer;
transition:.3s;
}

.faq-item:hover{
border-left:6px solid #FF671F;
}

.faq-item h3{
color:#000080;
margin-bottom:12px;
font-size:22px;
}

.faq-item p{
color:#666;
display:none;
}

/*================ SUPPORT =================*/

.support{
background:#fff;
}

.support-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.support-card{
background:#F8F9FC;
padding:40px 30px;
text-align:center;
border-radius:20px;
box-shadow:0 5px 10px rgba(6,3,141,.80);
transition:.35s;
}

.support-card:hover{
transform:translateY(-8px);
}

.support-icon{
font-size:55px;
margin-bottom:20px;
}

.support-card h3{
font-size:26px;
color:#000080;
margin-bottom:15px;
}

.support-card p{
color:#666;
}

/*================ FINAL CTA =================*/

.cta{
height:400px;
padding:100px 8%;
width: auto-fit;
background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)), 
    url("../image/ctabanner/ctabanner1.png") center;
text-align:center;
padding:90px 8%;
color: #ff671f;
}

.cta h2{
font-size:48px;
color:none;
margin-bottom:20px;
}

.cta p{
color:white;
font-size:18px;
margin-bottom:35px;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

/* ==========================================
      FOOTER
========================================== */

.footer{
    background:#fff;
    padding:25px 60px 10px;
    border-top:1px solid #ddd;
}

/* Top */
.footer-top{
    display:grid;
    grid-template-columns:1fr 2fr 1fr;
    align-items:flex-start;
    gap:5px;
}

/* LEFT */
.footer-left h3{
    color:#ff5b2e;
    margin-bottom:15px;
}

.footer-link{
    display:flex;
    gap:15px;
    list-style:none;
}

.footer-link a{
    text-decoration:none;
    font-weight:none;
    color:#000080;
    transition:.3s;
}

.footer-link a:hover{
    color:#ff671f;
    font-weight:bold;
}

/* CENTER */
.footer-center{
    text-align:center;
}
.brand-row{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-bottom:10px;
}
.brand-row h2{
    color:#ff5b2e;
    font-size:34px;
    margin:0;
}
.footer-center p{
    color: #000080;
}

/* Offline Icons */
.social-icons{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:none;
}
.social-icons a{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 5px 10px rgba(6,3,141,.80);
    transition:.3s;
}
.social-icons img{
    width:24px;
    height:24px;
    display: block;
}
.social-icons a:hover{
    transform:translateY(-5px);
}
/* RIGHT */
.footer-right{
    text-align:right;
}
.footer-right h3{
    color:#ff5b2e;
    margin-bottom:15px;
}
.footer-right p{
    color: #000080;
    margin:8px 0;
}
/* Bottom */
.footer-bottom{
    margin-top:20px;
    text-align:center;
}
.footer-bottom hr{
    border:none;
    border-top:1px solid #000080;
    margin-bottom:12px;
}
.footer-bottom p{
    color:#000080;
    font-size:14px;
}

/*================ SCROLLBAR =================*/

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#f2f2f2;
}

::-webkit-scrollbar-thumb{
background:#FF671F;
border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
background:#000080;
}

/*================ RESPONSIVE =================*/
/* ===================== TABLET (iPad) ===================== */

@media screen and (max-width:992px){

    /* ================= TABLET NAVBAR ================= */
    /* Navbar */
    .navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:15px 5%;
    position:relative;
}

.logo{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:12px;
    flex:1;
}

.logo img{
    width:90px;      /* Bigger than mobile */
    height:auto;
}

/* Tablet Tagline */
.logo .tagline{
    display:block;
    width:100%;
    white-space:nowrap;
    text-align:center;
    font-size:22px;   /* Bigger than mobile (12px) */
    font-weight:700;
    letter-spacing:0.5px;
    line-height:1.2;
    text-transform:uppercase;
}

.logo .tagline .orange{
    color:#FF671F;
}

.logo .tagline .blue{
    color:#000080;
}

.logo .tagline .green{
    color:#138808;
}

/* Hamburger */
    .menu-toggle{
        display:block;
        font-size:36px;
        cursor:pointer;
    }

    .menu{
        position:absolute;
        top:80px;
        right:20px;
        width:150px;
        background:#fff;
        border-radius:12px;
        box-shadow:0 10px 20px rgba(0,0,0,.15);
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        padding:10px 0;
        gap: 0;
        max-height:0;
        overflow:hidden;
        opacity:0;
        transition:.35s ease;
    }

    .menu.active{
        max-height:500px;
        opacity:1;
    }


.menu li{
    width:100%;
    margin:0;
    padding:0;
}

.menu a{
    display:block;
    width:100%;
    padding:4px 9px;   /* Reduced from 14px 20px */
    font-size:15px;
    line-height:1.2;
    text-align: center;
}

.register-btn{
    display:none;
}

    /*=================Hero tablet===================== */

    .hero{
        height:650px;
        padding:0 5%;
        background-size:cover;
        background-position:90% center;
    }

    .hero-content{
        max-width:490px;
    }

    .hero-content h1{
        font-size:75px;
    }

    .hero-content h2{
        font-size:52px;
        color:#06bbf1;
    }
    
    .hero-content p{
        width:56%;
        font-size:16px;
    }

    .hero-buttons{
        display:flex;
        gap:15px;
    }
    .hero-content .hero-event{
        color:inherit;
        font-size:18px;
        font-weight:800;
    }
    
    .hero-content .hero-event .cyclothon{
        color:#FF671F !important;
        font-size:16px !important;
    }

    .hero-content .hero-event .marathon{
        color:#FFFFFF !important;
        font-size:16px !important;
    }

    .hero-content .hero-event .walkathon{
        color:#1aec07 !important;
        font-size:16px !important;
    }

    /* Section Heading */
    section{
        padding:15px 4%;
    }

    .section-title{
        margin-bottom:8px;
    }

    .section-title h2{
        font-size:30px;
        margin-bottom:2px;
    }

    .section-title p{
        font-size:16px;
        margin:0;
    }

    /* =============FEATURED CARDS - TABLET=============== */

    .featured{
        padding:20px 20px;
        margin-top:0;
    }

    .featured h2{
        font-size:30px;
        margin-bottom:1px;
    }

    .featured .subtitle{
        font-size:18px;
        margin-bottom:35px;
    }

    .cards{
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        justify-content:center;
        justify-items:center;
        gap:18px;
    }

    .event-card{
        width:320px;
    }

    .event-card img{
        width:320px;
        height:320px;
    }

    /* Center the third card */
    .event-card:nth-child(3){
        grid-column:1 / 3;
        justify-self:center;
    }

    .card-content{
        padding:18px;
    }

    .card-content h3{
        font-size:18px;
        margin:5px 0;
    }

    .button-group{
        gap:8px;
    }

    .button-group a{
        font-size:13px;
        padding:10px 8px;
    }
    /*================ RAZORPAY BUTTON - TABLET ================*/

    /* Register button */
    .payment-btn{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-align:center;
    }

    /* Razorpay form */
    .payment-btn form{
        display:flex;
        justify-content:center;
        align-items:center;
        width:100%;
        margin-top:6px;
        transform:scale(0.75);     /* 75% of original size */
    }

    /* Razorpay iframe */
    .payment-btn iframe{
        display:block;
        margin:0 auto;
    }
    /*=========================================
        IMPORTANT DATES - TABLET
=========================================*/

.important-dates{
    width:95%;
    margin:10px auto;
    padding:10px;
    background:none;
    box-sizing:border-box;
}

.timeline{
    width:100%;
    max-width:680px;
    margin:0 auto;
    position:relative;
}

.timeline::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:3px;
    height:100%;
    background:#FF671F;
    transform:translateX(-50%);
}

.timeline-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:4px;
    position:relative;
}

.timeline-item:nth-child(even){
    flex-direction:row-reverse;
}

.timeline-date{
    width:130px;
    padding:10px;
    background:#fff;
    color:#ff671f;
    border:2px solid #ff671f;
    border-radius:30px;
    text-align:center;
    font-size:13px;
    font-weight:700;
}

.timeline-content{
    width:42%;
    background:#fff;
    padding:15px;
    border-radius:14px;
    box-shadow:0 5px 10px rgba(6,3,141,.80);
}

.timeline-content h3{
    font-size:16px;
    color:#000080;
    margin-bottom:5px;
}

.timeline-content p{
    font-size:13px;
    line-height:1.4;
    margin:0;
}
   

   /*================ REGISTRATION INCLUDES - TABLET ================*/

.included{
    padding:5px 2%;
    margin:10px 10px;
    background:none;
}

.include-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;                 /* Reduced gap */
}

.include-card{
    background:#fff;
    padding:12px 8px;         /* Reduced padding */
    border-radius:14px;
    text-align:center;
    box-shadow:0 5px 10px rgba(6,3,141,.80);
    transition:.35s;
}

.include-card:hover{
    transform:translateY(-5px);
}

.include-card .icon img{
    width:50px;
    height:50px;
    object-fit:contain;
}

.include-card h3{
    font-size:15px;
    color:#000080;
    margin:8px 0 5px;         /* Reduced margin */
    line-height:1.2;
}

.include-card p{
    display:none; /* Hide text on tablet */
}
    /* =================REFUND POLICY - TABLET=============== */

    .refund{
        padding:20px 20px;
        margin-bottom: 0;
    }

    .refund-grid{
        display:grid;
        grid-template-columns:repeat(3, 1fr);
        justify-items:center;
        gap:15px;
    }

    .refund-card{
        width:210px;
        min-height:240px;
        padding:20px 15px;
    }

    .refund-card h3{
        font-size:18px;
        margin-bottom:15px;
    }

    .refund-card h1{
        font-size:34px;
        margin-bottom:15px;
    }

    .refund-card p{
        font-size:14px;
        line-height:1.5;
    }

    /* ================= FOOTER TABLET ================= */

    .footer{
        padding:25px 15px;
    }

    .footer-top{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:25px;
    }

    /* Quick Links */

    .footer-left{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .footer-left h3{
        margin-bottom:15px;
    }

    /* Keep both rows horizontal */

    .footer-link{
        display:flex;
        justify-content:center;
        gap:15px;
        flex-wrap:nowrap;
        margin-bottom:8px;
    }

    .footer-link li{
        list-style:none;
    }

    .footer-link a{
        font-size:14px;
    }

    /* Center */

    .footer-center{
        width:100%;
    }

    .brand-row{
        flex-direction:column;
        gap:10px;
    }

    .brand-row h2{
        font-size:28px;
    }

    .social-icons{
        justify-content:center;
    }

    /* Contact */

    .footer-right{
        width:100%;
        text-align:center;
    }

    .footer-right p{
        font-size:15px;
    }

    /* Copyright */

    .footer-bottom{
        margin-top:20px;
    }

    .footer-bottom hr{
        margin-bottom:10px;
    }

    .footer-bottom p{
        font-size:13px;
    }
}


/* ===================== MOBILE ===================== */

@media screen and (max-width:576px){

 .navbar{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:8px;
        padding:4px 12px;
        min-height:50px;
    }

    .logo{
        display:flex;
        flex-direction:row;
        align-items:center;
        gap:10px;
        flex:1;
    }

    .logo img{
        width:75px;
        height:auto;
    }

    .logo p{
        display:block;
        font-size:10px;
        font-weight:700;
        color:#000080;
        letter-spacing:1px;
        text-transform:uppercase;
        line-height:1.3;
        white-space:normal;
    }

    .menu-toggle{
        display:block;
        cursor:pointer;
        font-size:32px;
    }

    .menu{
        position:absolute;
        top:50px;
        right:20px;
        width:150px;
        background:#fff;
        border-radius:12px;
        box-shadow:0 10px 20px rgba(0,0,0,.15);
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        padding:10px 0;
        gap: 0;
        max-height:0;
        overflow:hidden;
        opacity:0;
        transition:.35s ease;
    }

    .menu.active{
        max-height:500px;
        opacity:1;
    }

    /* Mobile Tricolour Tagline */

    .logo .tagline{
    display:block;
        width:100%;          /* Take available space */
        max-width:none;      /* Remove width restriction */
        white-space:nowrap;  /* Keep text on one line */
        text-align:center;
        font-size:14px;
        font-weight:bold;
        letter-spacing:0.3px;

        
        line-height:1.2;
        text-transform:uppercase;
    }

    .logo .tagline .orange{
        color:#FF671F;
        font-size:14px;
        font-weight:bold;
    }

    .logo .tagline .blue{
        color:#000080;
        font-size:14px; 
        font-weight:bold;
    }

    .logo .tagline .green{
        color:#15be06;
        font-size:14px;
        font-weight:bold;
    }

/* Hero */

.hero{
    height:600px;
    padding:30px 5%;
    background-size:cover;
    background-position:92% center;
}

.hero-content{
    max-width:100%;
}

.hero-content h4{

    font-size:13px;

}

.hero-content h1{

    font-size:42px;

}

.hero-content h2{

    font-size:30px;
    color:#06bbf1;

}

.hero-content h3{

    font-size:18px;

}

.hero-content p{

    width:100%;

    font-size:15px;

    line-height:1.5;

}
/* Mobile Hero Event Colors */

.hero-content .hero-event{
    color:inherit;
    font-size:18px;
    font-weight:800;
}

.hero-content .hero-event .cyclothon{
    color:#FF671F !important;
    font-size: 18px !important;
}

.hero-content .hero-event .marathon{
    color:#FFFFFF !important;
    font-size: 18px !important;
}

.hero-content .hero-event .walkathon{
    color:#1aec07 !important;
    font-size: 18px !important;
}
.hero-buttons{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:8px;
    flex-wrap:nowrap;
}

.btn-primary,
.btn-secondary{
    flex:1;
    padding:12px 10px;
    font-size:13px;
    text-align:center;
}

/* Section Titles */
.section-title{
    padding:5px 10px;
    margin-bottom:5px;
}

.section-title h2{
    font-size:24px;
}

.section-title p{
    font-size:15px;
}

/* Featured Cards */

.featured{
    padding:20px 10px;
}

.featured h2{
    font-size:23px;
}

.featured .subtitle{
    font-size:15px;
}

.cards{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

.event-card{
    width:300px;
}

.event-card img{
    width:300px;
    height:300px;
}

.card-content h3{
    font-size:16px;
}

.button-group a{
    font-size:12px;
    padding:8px;
}

/* Important Dates */

.important-dates{
    padding:30px 10px;
    margin: 10px;
}

.timeline{
    width:100%;
    max-width:100%;
}

.timeline::before{
    width:2px;
}

.timeline-date{
    width:100px;
    padding:8px;
    font-size:11px;
}

.timeline-content{
    width:42%;
    padding:8px;
}

.timeline-content h3{
    font-size:13px;
}

.timeline-content p{
    display:none;
}
/*================ RAZORPAY BUTTON - TABLET ================*/

    /* Register button */
    .payment-btn{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-align:center;
    }

    /* Razorpay form */
    .payment-btn form{
        display:flex;
        justify-content:center;
        align-items:center;
        width:100%;
        margin-top:6px;
        transform:scale(0.65);    /* 65% of original size */
    }

    /* Razorpay iframe */
    .payment-btn iframe{
        display:block;
        margin:0 auto;
    }


/* Registration Includes */

.included{
    padding:30px 10px;
}

.include-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:6px;
}

.include-card{
    width:100px;
    padding:10px;
}

.include-card .icon img{
    width:50px;
    height:50px;
}

.include-card h3{
    font-size:12px;
}

.include-card p{
    display: none;
}

/* Refund */

.refund{
    padding:30px 10px;
}

.refund-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

.refund-card{
    width:105px;
    padding:10px;
    min-height:160px;
}

.refund-card h3{
    font-size:12px;
}

.refund-card h1{
    font-size:16px;
}

.refund-card p{
    font-size:10px;
}

/* ======================CTA MOBILE==================*/

.cta{
    background-position:23% center;
}

.cta h2{
    font-size:32px;
}

.cta p{
    font-size:14px;
}
/* ================= FOOTER MOBILE ================= */

    .footer{
        padding:10px 5px;
    }

    .footer-top{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:25px;
    }

    /* Quick Links */

    .footer-left{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .footer-left h3{
        margin-bottom:1px;
        font-size:25px;
    }

    /* Keep both rows horizontal */

    .footer-link{
        display:flex;
        justify-content:center;
        gap:8px;
        flex-wrap:nowrap;
        margin-bottom:1px;
    }

    .footer-link li{
        list-style:none;
    }

    .footer-link a{
        font-size:14px;
    }

    /* Center */

    .footer-center{
        width:100%;
    }

    .brand-row{
        flex-direction:column;
        gap:10px;
    }

    .brand-row h2{
        font-size:30px;
        line-height:0.8;
    }
    .brand-row p{
        font-size:18px;
        line-height:0.8;
        margin-bottom:1px;
    }
    .social-icons{
        justify-content:center;
    }

    /* Contact */

    .footer-right{
        width:100%;
        text-align:center;
    }
    .footer-right h3{
        font-size:25px;
        line-height:0.8;
    }
    .footer-right p{
        font-size:18px;
        line-height:0.8;
    }

    /* Copyright */

    .footer-bottom{
        margin-top:5px;
    }

    .footer-bottom hr{
        margin-bottom:5px;
    }

    .footer-bottom p{
        font-size:18px;
    }
}
