/* Fonts  */
@font-face {
  font-family: 'Nupuram-color-0';
  src: url('../fonts/Nupuram-Color.colrv0.ttf') format('truetype');
}

@font-face {
  font-family: 'Nupuram-Calligraphy-Bold';
  src: url('../fonts/Nupuram-Calligraphy-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'AnjaliOldLipi';
  src: url('../fonts/AnjaliOldLipi-Regular.ttf') format('truetype');
}

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

body {
    font-family: 'AnjaliOldLipi','Noto Sans Malayalam', sans-serif;
    background:#ffffff;
    margin: 0;
    padding: 0;
    color: #ffffff;
  }

  section{
    height: 100dvh;
    background-color: #fff1f1;
  }
  
  header {
    background-color:#ff0019;
    justify-content: space-evenly;
    text-align: center;
    display:flex;
    line-height: 0;
  
  }

  .header-logo{
    width: 100px;
    height: 100px;
    display: block;
  }
  
  nav {
    background:#F5F5F5;
    padding: 1.5rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.532);
  }
  
  nav a {
    color: rgb(0, 0, 0);
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #ff0000;
  }
  

  .hero-title{
    background:url('../images/title-background1.jpg') center/cover no-repeat;
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center;
    height: 80dvh;
    margin-top: 0px;
  }

  .hero-title h1{
    font-family:'Nupuram-Calligraphy-Bold';
    font-size: 70px;
    color: white;

  }

  
/* home about  */
.home-about{
  background-color:#ffffff;
}



  /* Video Row Styling */
  .video-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2rem;
    padding: 6rem;
  }
  
  .video-row video {
    width: 48%;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    border: 4px solid #00695c;
    transition: transform 0.3s ease;
  }
  
  .video-row video:hover {
    transform: scale(1.02);
  }
  
  /* Footer Styling */
  footer {
    background: linear-gradient(135deg, #000000, #333333);
    padding: 2.5rem 1rem;
    color: white;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-brand h2 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
  }
  
  .footer-brand p {
    font-size: 1rem;
    color: #f0f0f0;
  }
  
  .footer-links h4,
  .footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ff0000;
  }
  
  .footer-links a {
    display: block;
    color: #f0f0f0;
    margin: 0.3rem 0;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ff0000;
  }
  
  .footer-social .social-icons a img {
    width: 28px;
    margin-right: 10px;
    filter: brightness(1.2);
    transition: transform 0.3s;
  }
  
  .footer-social .social-icons a:hover img {
    transform: scale(1.1);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #cfcfcf;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
    header {
      padding: 2rem;
    }
  
    nav a {
      display: block;
      margin: 0.5rem 0;
    }
  
    main {
      padding: 1rem;
    }
  
    main h3 {
      font-size: 1.5rem;
    }
  
    .video-row video {
      width: 100%;
    }
  
    .carousel-images {
      width: 300%;
    }
  }
  