* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
}

.navbar .logo a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f0a500;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 5px;
    background-color: white;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #333;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}
/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mute Button */
.mute-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 10;
}

.mute-btn img {
    width: 30px;
    height: 30px;
}

/* Content */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 0 20px; /* Added padding for mobile devices */
}

.content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.content p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1200px) {
    .content h1 {
        font-size: 2.5em;
    }

    .content p {
        font-size: 1.2em;
    }

    .mute-btn img {
        width: 25px;
        height: 25px;
    }
}

@media screen and (max-width: 768px) {
    .content h1 {
        font-size: 2em;
    }

    .content p {
        font-size: 1.1em;
    }

    .mute-btn img {
        width: 20px;
        height: 20px;
    }

    .content {
        top: 40%; /* Adjust position for smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .content h1 {
        font-size: 1.6em;
    }

    .content p {
        font-size: 1em;
    }

    .mute-btn img {
        width: 20px;
        height: 20px;
    }

    .content {
        top: 35%; /* Adjust position for very small screens */
    }
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: #fff;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
    max-width:100%;
    margin: 2rem auto;
}

.about-image {
    flex: 1 1  500px;
    padding: 1rem;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 1%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about-content {
    flex: 2 1 400px;
    padding: 1rem;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff0000;
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-content button {
    background-color: #ffd102;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.about-content button:hover {
    background-color: #b38f00;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.service-icon img {
    width: 100px;
    height: 100px;

}
.service-icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.service-details {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 600px) {
    .service-card {
        padding: 15px;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .service-details {
        font-size: 0.95rem;
    }
}


.team-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

.team-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.5em;
    color: #444;
    margin: 10px 0;
}

.team-member p {
    color: #666;
    font-size: 1em;
    margin: 5px 0 10px;
}

.team-member .social-icons {
    margin-top: 15px;
}

.social-icons a {
    margin: 0 5px;
    color: #000000;
    font-size: 1.2em;
    text-decoration: none;
    transition: color 0.3s;
}


.social-icons a:hover {
    color: #f8a304;
}

.social-icon a {
    margin:  20px;
    color: #ffffff;
    font-size: 3rem;
    text-decoration: none;
    transition: color 0.3s;
}


.social-icon a:hover {
    color: #f8a304;
}

@media (max-width: 768px) {
    .team-member {
        width: 90%;
    }
}


.social-media-section{
    padding: 5rem;
    margin: 2rem;
}

.social-media-section h1 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin:2rem;
    
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
  }

  .social-icons a {
    text-decoration: none;
    color: #000000;
    font-size: 2.5rem;
    transition: color 0.3s ease;
    margin: 1rem;
  }

  .social-icons a:hover {
    color: #ffd000;
  }

  /* Responsive Styling */
  @media (max-width: 768px) {
    .social-media-section h1 {
      font-size: 2rem;
    }

    .social-icons a {
      font-size: 2rem;
      margin: 10px;
    }
  }

  @media (max-width: 480px) {
    .social-media-section h1 {
      font-size: 1.8rem;
    }

    .social-icons a {
      font-size: 1.8rem;
    }
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
  }

  footer a {
    color: #4caf50;
    text-decoration: none;
  }

  footer a:hover {
    text-decoration: underline;
  }

  
.topnav {
    background-color: #fda900;
    color: #fff;
    text-align: center;
    padding: 10px 5px;
    font-size: 14px;
}

.topnav a {
    color: #ffffff;
    text-decoration: none;
    text-align: center;
}

.topnav a:hover {
    text-decoration: underline;
  }