@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
  }
  
  

body {
    background: #f2f9ff;
    color: #333;
    line-height: 1.6;
  }

:root {
    --primary: #4285F4;
    --secondary: #34A853;
    --alert: #EA4335;
    --background: #f8f9fa;
    --card-bg: #ffffff;
  }
  
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 0 80px;
  position: fixed;  
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  align-items: center;
  width: 100%;
  max-width: 10000px;
  z-index: 1000;
  margin-bottom: 20px;
  background-color: #3498db;
  transition: .5s ease-in;
}

/* Center nav links */
.navbar .center ul {
  display: flex;
  list-style: none;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  width: fit-content;
  height: fit-content;
}

.navbar .center ul li a {
  color: white;
  text-decoration: none;
  margin: 15px;
  font-size: 1em;
  font-weight: 400;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
}

.center ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #fdfdfd;
  transition: width 0.3s ease;
}

.center ul li a:hover::after {
  width: 100%;
}

/* Left logo */
.left img {
  cursor: pointer;
  font-family: "Righteous";
  margin-top: 5px;
}

.left img:hover {
  text-shadow: 0 0 2px white;
  transition: 0.2s;
}

/* Right buttons */
.right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.right button {
  background-color: transparent;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 1em;
  text-transform: capitalize;
  cursor: pointer;
  white-space: nowrap;
}

.right button:hover {
  color: rgb(0, 255, 255);
}

.right button:nth-child(2) {
  font-weight: 500;
  font-size: 1em;
  padding: 5px;
  margin-left: 15px;
  background-color: white;
  color: black;
  border: none;
  border-radius: 15px;
  width: 120px;
  height: fit-content;
  cursor: pointer;
  text-transform: capitalize;
}

.right button:nth-child(2):hover {
  background-color: rgb(0, 255, 255);
  color: rgb(0, 0, 0);
  transition: 0.5s;
}

/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 30px;
    height: auto;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 35px;
    right: 40px;
    z-index: 1100;
  }

  .navbar .center,
  .navbar .right {
    display: none;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-radius: 10px;
    margin-top: 20px;
  }

  .navbar .center.active,
  .navbar .right.active {
    display: flex;
  }

  .navbar .center ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .navbar .center ul li a {
    margin: 10px 0;
  }

  .navbar .right {
    flex-direction: row; /* Ensure buttons stay in row */
    justify-content: center;
    gap: 15px;
  }

  .navbar .right button {
    margin: 10px 0;
  }
}




/* Video Section Styles */
.video-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    margin-top: 100px;
  }
  
  .section-title {
    text-align: center;
    color: #3498db;
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
  }
  
  .video-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .category-btn {
    padding: 8px 20px;
    background: white;
    border: 1px solid #3498db;
    color: #3498db;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
  }
  
  .category-btn:hover,
  .category-btn.active {
    background: #3498db;
    color: white;
  }
  
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .video-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .video-card:hover {
    transform: translateY(-5px);
  }
  
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .video-info {
    padding: 20px;
  }
  
  .video-info h3 {
    color: #3498db;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  .video-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .video-duration {
    display: inline-block;
    background: #f1f1f1;
    color: #666;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
  }
  
  .load-more {
    text-align: center;
  }
  
  .load-more-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .load-more-btn:hover {
    background: #2980b9;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .video-section {
      padding: 60px 0;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .video-categories {
      justify-content: flex-start;
    }
  }


  
/* footer  */

/* footer  */

.footer {
    background-color: #f0f0f5;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    border-top: 1px solid #ccc;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-about, .footer-links, .footer-contact {
    flex: 1 1 300px;
    margin: 10px;
  }
  
  .footer h3, .footer h4 {
    color: #2a2a72;
    margin-bottom: 15px;
  }
  
  .footer p, .footer li {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li a {
    color: #333;
    text-decoration: none;
  }
  
  .footer-links ul li a:hover {
    color: #007BFF;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #777;
  }
  
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-about, .footer-links, .footer-contact {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .footer {
      text-align: left;
      padding: 30px 15px;
    }
  
    .footer-bottom {
      text-align: center;
    }
  }
  
  