/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#0b2a45;
}

/* HEADER */
.top-header{
    background:#fff;
    padding:20px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-header nav{
    background: #0b2a45;
    border-radius:30px;
    padding:10px 40px;
    display:flex;
    align-items:center;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}
.logo{
    font-size:22px;
    font-weight:800;
    color:#0b2a45;
}

.logo span{
    color:#ff7a00;
}

nav a{
    margin:0 15px;
    color:#ffffff;
    font-size:18px;
    text-decoration:none;
    font-weight:600;
}

nav a:hover{
    color: #ff7a00;
}

.btn-contact{
    background:#0b2a45;
    color:#fff;
    padding:10px 24px;
    border-radius:25px;
    text-decoration:none;
}



nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

/* Dropdown wrapper */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}


/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);  
  background:#0b2a45; 
  min-width: 140px;
  border-radius: 6px;
  padding: 10px 0;
  z-index: 999;
}


/* Dropdown links */
.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  align-items: center;
}



/* Show on hover */
.nav-dropdown:hover .dropdown-menu {
  display: block;
}




/* HERO */
.hero{
    padding:50px;
}

.hero-container{
    background:#0f3556;
    border-radius:30px;
    padding:20px;
    display:flex;
    align-items:center;
    color:#fff;
}

.hero-left{width:20%;}
.hero-image{width:30%; text-align:left;}
.hero-right{width:50%; padding-left:40px;}

.hero2{
   
   padding:20px 50px;
  
    
    background:#fff;
    
}

.feature-box{
    background:#123f66;
    padding:20px;
    border-radius:20px;
    margin-bottom:30px;
    text-align:center;
    font-size:14px;
}

.hero-image img{
    width:100%;
    max-height:480px;
    object-fit:contain;
}

.badge{
    background:#123f66;
    padding:8px 18px;
    border-radius:20px;
    font-size:12px;
    display:inline-block;
    margin-bottom:20px;
}

.hero-right h1{
    font-size:52px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-text{
    color:#cbd7e3;
    max-width:420px;
    margin-bottom:30px;
}

.btn-primary{
    background:#ff7a00;
    color:#fff;
    padding:14px 32px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
}

/* FOOTER */
.site-footer{
    text-align:center;
    padding:20px;
    color:#cbd7e3;
    font-size:14px;
}


/* LIVE SCORE */
.live-score{
    margin-top:30px;
    background:#0b2a45;
    border-radius:20px;
    padding:20px;
    max-width:360px;
    box-shadow:0 0 20px rgba(0,0,0,0.3);
    
}

.live-header{
    font-size:13px;
    font-weight:bold;
    margin-bottom:10px;
    display:flex;
    align-items:center;
}

.live-dot{
    width:8px;
    height:8px;
    background:red;
    border-radius:50%;
    margin-right:8px;
    animation:blink 1s infinite;
}

@keyframes blink{
    0%{opacity:1}
    50%{opacity:0.3}
    100%{opacity:1}
}

.live-score h4{
    font-size:16px;
    margin-bottom:5px;
}

.teams{
    font-size:13px;
    color:#cbd7e3;
    margin-bottom:10px;
}

.score{
    font-size:22px;
    margin-bottom:5px;
}

.score span{
    font-size:14px;
    color:#cbd7e3;
}

.score.sub{
    font-size:16px;
}

.match-info{
    font-size:12px;
    color:#cbd7e3;
    margin-top:8px;
}

/* HERO IMAGE SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 480px;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.tag{
    background:#123f66;
    padding:14px 18px;
    border-radius:18px;
    margin-bottom:15px;
    font-size:14px;
}

.tag.highlight{
    background:#ff7a00;
    color:#fff;
    font-weight:bold;
}


/* ===========================
   RESPONSIVE HERO (MOBILE)
   =========================== */

/* Default desktop layout (already exists, shown for clarity) */
.hero-container{
    display:flex;
    align-items:center;
}

/* -------- TABLET & BELOW -------- */
@media (max-width: 992px){

    .hero-container{
        flex-direction:column;
        padding:30px;
    }

    .hero-left,
    .hero-image,
    .hero-right{
        width:100%;
    }

    /* LEFT TAGS */
    .hero-left{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        margin-bottom:30px;
    }

    .hero-left .tag{
        margin:8px;
        font-size:14px;
    }

    /* IMAGE */
    .hero-image{
        margin-bottom:30px;
    }

    .hero-slider{
        height:360px;
    }

    /* RIGHT CONTENT */
    .hero-right{
        text-align:center;
        padding-left:0;
    }

    .hero-right h1{
        font-size:38px;
    }

    .hero-text{
        margin:0 auto 25px;
    }

    .live-score{
        margin:25px auto 0;
    }
}

/* -------- MOBILE ONLY -------- */
@media (max-width: 576px){

    .hero{
        padding:20px;
    }

    .hero-container{
        padding:25px 20px;
        border-radius:20px;
    }

    /* TAGS STACK NEATLY */
    .hero-left{
        flex-direction:column;
        align-items:center;
        margin-bottom:25px;
    }

    .hero-left .tag{
        width:100%;
        max-width:260px;
        text-align:center;
        font-size:13px;
        padding:12px;
    }

    /* IMAGE SMALLER */
    .hero-slider{
        height:280px;
    }

    /* HEADINGS */
    .hero-right h1{
        font-size:30px;
        line-height:1.2;
    }

    .badge{
        font-size:11px;
        padding:6px 14px;
    }

    .hero-text{
        font-size:14px;
        line-height:1.6;
    }

    .btn-primary{
        padding:12px 26px;
        font-size:14px;
    }

    /* LIVE SCORE */
    .live-score{
        max-width:100%;
        padding:16px;
        margin-top:20px;
    }

    .score{
        font-size:20px;
    }

    .score.sub{
        font-size:15px;
    }

    .match-info{
        font-size:11px;
    }
}


/* =========================
   SECTION 2 – CARD SLIDER
   ========================= */

.section2{
    padding: 20px 50px;
    background:#ffffff;     
    display:flex;
    align-items:center;
    color:#fff;
    overflow:hidden;
    width: 100%;
    align-self: center;
}


.section2-header{
    max-width:320px;
    margin-bottom:40px;
}

.section2-header h2{
    font-size:36px;
    font-weight:800;
    color:#0b2a45;
    margin-bottom:15px;
}

.section2-header p{
    color:#5f6f82;
    font-size:14px;
}

/* SLIDER WRAPPER */
.card-slider-wrapper{
    overflow:hidden;       
    border-radius: 30px;   
    width: 100%;     
    align-content: center;
    position: relative;
    
}

.card-slider{
    display:flex;
    gap:20px;
    transition:transform 0.6s ease;
    will-change: transform;
}

/* EVENT CARD */
.event-card{
    min-width:320px;
    height: 340px;
    border-radius:30px;
    padding:20px;
    display:flex;
    flex-direction:column;
    flex-shrink: 0;
    justify-content:space-between;
    color:#0b2a45;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    cursor:pointer;
    transition:transform 0.3s ease;
}



.event-card:hover{
    transform:translateY(-8px);
}

/* CARD COLORS */
.event-card.light{ background:#e6f1fa; }
.event-card.orange{ background:#ff914d; color:#fff; }
.event-card.blue{ background:#2f80ed; color:#fff; }
.event-card.cyan{ background:#43d5ff; }
.event-card.dark{ background:#0b2a45; color:#fff; }

/* TAG */
.card-tag{
    background:rgba(255,255,255,0.8);
    color:#0b2a45;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
    width:fit-content;
}

/* TEXT */
.event-card h3{
    font-size:22px;
    font-weight:700;
}

.event-card p{
    font-size:14px;
    opacity:0.9;
}

/* FOOTER */
.card-footer{
    font-size:14px;
    font-weight:600;
}





@media (max-width:768px){
    .section2{
        padding:50px 20px;
    }

    .section2-header h2{
        font-size:28px;
    }

    .event-card{
        min-width:260px;
        height:320px;
    }
}




/* =========================
   SECTION 7 – CARD SLIDER
   ========================= */

   
.section7-bg{
    padding: 20px 50px;
    background:#ffffff;     
    align-items:center;
    
    overflow:hidden;
    width: 100%;
    align-self: center;
}


.section7 {
  position: relative;
  padding: 120px 20px;
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  margin: 10px auto;
  max-width: 100%;
  overflow: hidden;
}

.section7-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgb(7, 32, 65),
    rgb(2, 16, 35)
  );
}

.section7-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: auto;
  color: #fff;
}

.section7-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section7 h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.section7 p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 35px;
}

.section7-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #ff7a18;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all .3s ease;
}

.section7-btn:hover {
  background: #ff9a3c;
  transform: translateY(-2px);
}


.footer-bg{
    padding: 20px 50px;
    background:#ffffff;     
    align-items:center;
    
    overflow:hidden;
    width: 100%;
    align-self: center;
}



.site-footer {
  background: linear-gradient(180deg,#071b30,#051527);
  color: #fff;
  padding: 80px 60px 40px;
  border-radius: 40px 40px 0 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.footer-brand h2 {
  font-size: 32px;
  font-weight: 800;
}

.footer-brand p {
  opacity: .7;
  max-width: 280px;
}

.footer-newsletter h4 {
  margin-bottom: 12px;
}

.footer-newsletter form {
  display: flex;
  background: #0c2745;
  border-radius: 50px;
  overflow: hidden;
}

.footer-newsletter input {
  border: none;
  background: transparent;
  padding: 14px 20px;
  color: #fff;
  width: 240px;
}

.footer-newsletter button {
  background: #ff7a18;
  border: none;
  color: #fff;
  padding: 0 22px;
  cursor: pointer;
  font-size: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h5 {
  margin-bottom: 18px;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}



.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  font-size: 13px;
  opacity: .6;
}

.section4 {
  padding: 60px 60px;
  background: #ffffff;
}

.section4-header {
  text-align: center;
  margin-bottom: 60px;
}

.section4-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0c2745;
}

.section4-header p {
    color: #0c2745;
  opacity: .7;
  max-width: 400px;
  margin: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.blog-card {
  background: #1a133a6e;
  border-radius: 20px;
  overflow: hidden;
  transition: all .3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-category {
  font-size: 12px;
  font-weight: 600;
  color: #ff7a18;
}

.blog-content h3 {
  margin: 12px 0;
  font-size: 20px;
}

.blog-content p {
  opacity: .75;
  font-size: 15px;
  line-height: 1.6;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 13px;
  opacity: .6;
}



.social-icons {
  display: inline-flex;
  gap: 14px;
}


.social-icons a {
    display: inline-block;
    margin: 0 8px;
    font-size: 20px;
    color: #fff;
    width: 40px;
    place-items: center;
    height: 40px;
    display: grid;
    line-height: 40px;
    background: #111;
    border-radius: 50%;
    text-align: center;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #e10600; /* sports red */
    transform: scale(1.1);
}


