*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#f4f4f4;
  font-family: "Roboto", sans-serif;
}
.container{
     width: 70%;
     margin: 0px auto;
}

/* ===== HEADER ===== */
header{
  width: 100%;
  background: #000;
  padding: 5px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo{
  width: 40%;
  float: left;
}
.logo img{
    max-width: 20%;
}

/* ===== NAVIGATION ===== */
nav{
    width: 60%;
    float: right;
}
nav ul{
  list-style:none;
  display:flex;
  justify-content: flex-end;
  gap:40px;
  padding-top: 40px;
}

nav ul li a{
  color:#fff;
  text-decoration:none;
  font-family: "Roboto", sans-serif;
  font-size:20px;
  font-weight: 700;
  text-transform: uppercase;
  transition:0.3s;
}

nav ul li a:hover{
  color:#ff3c3c;
}

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

.hamburger span{
  width:25px;
  height:3px;
  background:#fff;
  transition:0.3s ease;
}

.home-banner{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}

/* Banner Image */
.home-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Overlay */
.home-banner::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
}

/* Banner Content */
.banner-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  text-align:center;
  color:#fff;
  padding:20px;
  width:90%;
  max-width:800px;
  animation:fadeIn 1.2s ease;
}

.banner-content h1{
  font-size:50px;
  margin-bottom:20px;
  line-height:1.2;
}

.banner-content p{
  font-size:20px;
  margin-bottom:30px;
}
.point-table{
    width: 100%;
    float: left;
    font-family: "Roboto", sans-serif;
    margin: 40px 0;
}

.section-title{
  text-align:center;
  font-size:28px;
  font-weight:700;
  margin-bottom:25px;
}

.table-wrapper{
  overflow-x:auto;
  background:#fff;
  border-radius:12px;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

table{
  width:100%;
  min-width:1000px;
  border-collapse:collapse;
}

thead{
  background:#f8fafc;
}

th, td{
  padding:14px 12px;
  text-align:center;
  font-size:14px;
}

th{
  font-weight:600;
  color:#555;
  text-transform:uppercase;
  letter-spacing:0.5px;
}

tbody tr{
  border-top:1px solid #eee;
  transition:0.2s ease;
}

tbody tr:hover{
  background:#f9fafb;
}

.position{
  font-weight:600;
}

.team-cell{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:flex-start;
}

.team-cell img{
  width:32px;
  height:32px;
  border-radius:50%;
}

.team-name{
  font-weight:600;
  color:#111;
}

/* Points highlight */
.points{
  font-weight:700;
  color:#000;
}

/* Recent form circles */
.form{
  display:flex;
  gap:6px;
  justify-content:center;
}

.form span{
  width:26px;
  height:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:12px;
  font-weight:600;
  border:1px solid #ccc;
}

.win{
  color:green;
  border-color:green;
}

.loss{
  color:red;
  border-color:red;
}

.nr{
  color:gray;
  border-color:gray;
}

.blog-section{
  width:100%;
  float: left;
  font-family: "Roboto", sans-serif;
  margin: 40px 0;
}

.section-header{
  text-align:center;
  margin-bottom:40px;
}

.section-header h2{
  font-size:32px;
  font-weight:700;
  margin-bottom:10px;
}

.section-header p{
  color:#666;
  font-size:16px;
}

/* Blog Grid */

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:25px;
}

/* Blog Card */

.blog-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,0.06);
  transition:0.3s ease;
  display:flex;
  flex-direction:column;
}

.blog-card:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 25px rgba(0,0,0,0.1);
}

/* Blog Image */

.blog-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

/* Blog Content */

.blog-content{
  padding:20px;
  flex:1;
  display:flex;
  flex-direction:column;
}

.blog-category{
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  color:#ff3c3c;
  margin-bottom:10px;
}

.blog-content h3{
  font-size:20px;
  margin-bottom:12px;
  line-height:1.3;
}

.blog-content p{
  font-size:14px;
  color:#555;
  margin-bottom:20px;
  flex:1;
}

.blog-btn{
  width: 40%;
  text-align: center;
  display:inline-block;
  padding:10px 18px;
  background:#111;
  color: #fff !important;
  text-decoration:none;
  border-radius:6px;
  font-size:14px;
  transition:0.3s ease;
}

.blog-btn:hover{
  background:#ff3c3c;
  color: #fff;
}
.blog-more{
  text-align:center;
  margin-top:40px;
}

.more-btn{
  display:inline-block;
  padding:14px 30px;
  background:#ff3c3c;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  border-radius:8px;
  transition:0.3s ease;
}

.more-btn:hover{
  background:#111;
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}


.teams-section{
  width:100%;
  margin: 40px 0;
  text-align:center;
}

.teams-section h2{
  font-size:30px;
  margin-bottom:40px;
  font-weight:700;
}

/* SLIDER */
.slider-container{
  position:relative;
  overflow:hidden;
}

.slider{
  display:flex;
  transition:0.5s ease;
}

.team-logo-card{
  min-width:20%;
  float: left;
  padding:20px;
}

.team-box{
  background:#fff;
  border-radius:12px;
  padding:25px 15px;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.team-box:hover{
  transform:translateY(-8px);
}

.team-box img{
  width:80px;
  height:80px;
  object-fit:contain;
  margin-bottom:15px;
}

.team-box h4{
  font-size:16px;
  font-weight:600;
}

/* ARROWS */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#111;
  color:#fff;
  border:none;
  width:40px;
  height:40px;
  border-radius:50%;
  cursor:pointer;
}

.arrow.left{
  left:10px;
  z-index: 9;
}

.arrow.right{
  right:10px;
}

.arrow:hover{
  background:#ff3c3c;
}

/* DOTS */
.dots{
  margin-top:20px;
}

.dots span{
  display:inline-block;
  width:10px;
  height:10px;
  margin:5px;
  background:#ccc;
  border-radius:50%;
  cursor:pointer;
}

.dots .active{
  background:#ff3c3c;
}
.footer-bottom{
  background:#0d0d0d;
  text-align:center;
  padding:20px 10px;
  color:#aaa;
  font-size:14px;
  border-top:1px solid #222;
}

.footer-bottom p{
  margin:0;
}

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

.footer-bottom a:hover{
  text-decoration:underline;
}


/* =====Blog HEADER ===== */
.page-header{
  background:linear-gradient(90deg,#0d1b4c,#1e3c72);
  color:#fff;
  padding:40px 20px;
  text-align:center;
}

.page-header h1{
  font-size:32px;
  font-weight:700;
}

/* ===== LAYOUT ===== */
.blog-container{
  width:90%;
  max-width:1200px;
  margin:40px auto;
  display:grid;
  grid-template-columns:3fr 1fr;
  gap:30px;
}

.page-point{
    width: 100%;
    float: left;
    padding: 40px 0;
    background: #fff;
}

.section-title{
    text-align:center;
    font-size:40px;
    font-weight:700;
    margin-bottom:60px;
    color:#111;
    position:relative;
}

.section-title::after{
    content:"";
    width:70px;
    height:4px;
    background:#ff6b00;
    display:block;
    margin:12px auto 0;
    border-radius:10px;
}

/* ===== Grid Layout ===== */

.teams-container{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:35px;
}

/* ===== Team Card ===== */

.team-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.4s ease;
    display:flex;
    flex-direction:column;
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.team-image{
    text-align:center;
    margin-bottom:20px;
}

.team-image img{
    max-width: 100%;
    object-fit:contain;
}

.team-name{
    text-align:center;
    font-size:22px;
    font-weight:600;
    margin-bottom: 10px;
    color: #111;
    padding-top: 15px;
}

.team-card p{
    font-size:14px;
    color:#555;
    line-height:1.7;
    margin-bottom:12px;
    text-align:center;
}

.read-btn{
    margin-top:auto;
    align-self:center;
    padding:10px 22px;
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-size:14px;
    font-weight:500;
    transition:0.3s;
}

.read-btn:hover{
    background:#e55d00;
}

/* .team-card{
  background:#fff;
  border-radius:14px;
  padding:30px;
  margin-bottom:30px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  display:flex;
  gap:30px;
  align-items:flex-start;
  transition:0.3s ease;
}

.team-card:hover{
  transform:translateY(-5px);
}

.team-logo{
  flex:0 0 120px;
}

.team-logo img{
  width:100%;
  max-width:120px;
  height:auto;
}

.team-content h2{
  margin-bottom:15px;
  color:#0d1b4c;
}

.team-content p{
  margin-bottom:12px;
  font-size:15px;
  color:#444;
  line-height:1.7;
} */

.matches-container{
    max-width:800px;
    padding:40px 20px;
    z-index:2;
    height: 81.5vh;
    margin: 0px auto;;
}

/* Countdown */

.countdown{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.time-box{
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    padding:20px;
    border-radius:15px;
    width:120px;
}

.time-box h2{
    font-size:32px;
    margin-bottom:5px;
}

.time-box span{
    font-size:13px;
    opacity:0.8;
}

.section-head::after{
content: "";
width: 70px;
height: 4px;
background: #ff6b00;
display: block;
margin: 12px auto 0;
border-radius: 10px;
}





/* Animation */
@keyframes fadeIn{
  from{
    opacity:0;
    transform:translate(-50%, -40%);
  }
  to{
    opacity:1;
    transform:translate(-50%, -50%);
  }
}





@media(max-width:992px){
  .blog-grid{
    grid-template-columns:repeat(2, 1fr);
  }
  .team-card{
    min-width:33.33%;
  }
  
  .blog-container{
    grid-template-columns:1fr;
  }
}

/* ===== BLOG CARDS ===== */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.blog-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.blog-card:hover{
  transform:translateY(-5px);
}

.blog-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.blog-content{
  padding:20px;
}

.blog-content h3{
  font-size:18px;
  margin-bottom:10px;
  color:#0d1b4c;
}

.blog-content p{
  font-size:14px;
  color:#666;
  margin-bottom:15px;
}

.blog-content a{
  text-decoration:none;
  color:#ff6b00;
  font-weight:600;
}

/* ===== PAGINATION ===== */
.pagination{
  margin-top:40px;
  text-align:center;
}

.pagination button{
  padding:8px 14px;
  margin:5px;
  border:none;
  background:#0d1b4c;
  color:#fff;
  border-radius:6px;
  cursor:pointer;
}

.pagination button.active{
  background:#ff6b00;
}

/* ===== SIDEBAR ===== */
.sidebar{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  height:fit-content;
}

/* Latest Blog */
.latest-blog{
  margin-bottom:30px;
}

.latest-blog h3{
  margin-bottom:15px;
  color:#0d1b4c;
}

.latest-item{
  margin-bottom:15px;
  border-bottom:1px solid #eee;
  padding-bottom:10px;
}

.latest-item a{
  text-decoration:none;
  font-size:14px;
  color:#333;
  font-weight:500;
}

/* Categories */
.categories h3{
  margin-bottom:15px;
  color:#0d1b4c;
}

.categories ul{
  list-style:none;
}

.categories ul li{
  margin-bottom:10px;
}

.categories ul li a{
  text-decoration:none;
  color:#555;
  font-size:14px;
  transition:0.3s;
}

.categories ul li a:hover{
  color:#ff6b00;
}


.blog-content-wrapper{
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.meta{
  font-size:14px;
  color:#777;
  margin-bottom:20px;
}

.blog-image{
  width:100%;
  border-radius:12px;
  margin-bottom:25px;
}

.blog-text h2{
  margin:20px 0 10px;
  color:#0d1b4c;
}

.blog-text p{
  margin-bottom:15px;
  color:#444;
}

/* ===== SHARE ===== */
.share{
  margin:30px 0;
}

.share button{
  padding:8px 15px;
  margin-right:10px;
  border:none;
  border-radius:6px;
  cursor:pointer;
  background:#0d1b4c;
  color:#fff;
  font-size:13px;
}

/* ===== PREV NEXT ===== */
.post-nav{
  display:flex;
  justify-content:space-between;
  margin-top:30px;
}

.post-nav a{
  text-decoration:none;
  color:#ff6b00;
  font-weight:600;
  font-size:14px;
}

/* ===== COMMENTS ===== */
.comment-section{
  margin-top:40px;
}

.comment-section h3{
  margin-bottom:20px;
  color:#0d1b4c;
}

.comment-form input,
.comment-form textarea{
  width:100%;
  padding:10px;
  margin-bottom:15px;
  border:1px solid #ddd;
  border-radius:6px;
}

.comment-form button{
  padding:10px 20px;
  background:#ff6b00;
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

/* ===== SIDEBAR ===== */
.sidebar{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  height:fit-content;
}

.sidebar h3{
  margin-bottom:15px;
  color:#0d1b4c;
}

.sidebar ul{
  list-style:none;
}

.sidebar ul li{
  margin-bottom:10px;
}

.sidebar ul li a{
  text-decoration:none;
  color:#555;
  font-size:14px;
}

.sidebar ul li a:hover{
  color:#ff6b00;
}
/* .team-card{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .team-logo{
    margin-bottom:20px;
  } */

.teams-container{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:32px;
    }



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

.container{
    width: 95%;
}

.logo{
    width: auto;
}
.logo img{
    max-width: 15%;
}

  nav{
    position: absolute;
    top: -300px;
    left: 0;
    width: 100%;
    background: #111;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    transform: translateY(-300px);
  }

  nav ul{
    flex-direction:column;
    padding:20px 0;
    text-align:center;
  }

  nav ul li{
    padding:12px 0;
  }

  nav.active{
    max-height: 300px;
    z-index: 2;
    top: 70px;
    transition: max-height 0.4s ease;
    transform: translateY(0px);
  }

  .hamburger{
    display:flex;
    padding-top: 15px;
  }

  nav ul{
    gap:0;
  }

.banner-content h1{
    font-size:34px;
  }

  .banner-content p{
    font-size:16px;
  }

.section-title{
    font-size:22px;
  }
  th, td{
    padding:10px 8px;
    font-size:12px;
  }
  .team-cell img{
    width:26px;
    height:26px;
  }

  .blog-grid{
    grid-template-columns:1fr;
  }

  .section-header h2{
    font-size:24px;
  }
  .team-card{
    min-width:50%;
  }
  .team-logo-card{
        min-width: 100% !important;
        float: left;
    }

  .time-box{
        width:90px;
        padding:15px;
    }

    .time-box h2{
        font-size:24px;
    }

}

@media (max-width:480px){

  .home-banner{
    height:85vh;
  }

  .banner-content h1{
    font-size:26px;
  }

  .banner-content .btn{
    display:inline-block;
    width:100%;
  }
  .team-card{
    min-width:100%;
  }

}

/* ===== HAMBURGER ANIMATION ===== */
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

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

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(5px,-5px);
}