/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #101010;
    color: #fff;
}

/* Header Section */
header {
    background: #101010;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #bb86fc;
}

/* Call to Action Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-buttons a {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.login {
    color: #bb86fc;
    border: 2px solid #bb86fc;
}

.login:hover {
    background: #bb86fc;
    color: #101010;
}

.contact-us {
    background: #bb86fc;
    color: #101010;
}

.contact-us:hover {
    background: #fff;
    color: #101010;
}

/* Hero Section */
.hero-section {
    background: url('images/55fe31608321d1104ea0596e8d12a458.gif') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
}

.hero-content .highlight {
    color: #bb86fc;
}

.hero-content p {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #ccc;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #151515;
    margin-top: -20px;
    font-size: 0.9rem;
    color: #777;
}



/* Services Section */
.services-section {
    padding: 60px 20px;
    background-color: #181818;
    text-align: center;
    color: #fff;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #bb86fc;
}

.services-intro {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: #202020;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.service-card img {
    height: 80px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #bb86fc;
}

.service-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
}


/* About Hero Section */
.about-hero {
    background: url('about-hero.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #bb86fc;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 1.2rem;
    color: #ccc;
}

/* About Us Section */
.about-us {
    padding: 60px 20px;
    background-color: #181818;
    color: #fff;
    text-align: center;
}

.about-container {
    margin-bottom: 40px;
}

.about-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #bb86fc;
}

.about-container p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

/* Team Section */
.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member {
    background: #202020;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 20px;
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.2rem;
    color: #bb86fc;
}

.team-member p {
    font-size: 0.9rem;
    color: #ccc;
}




/* Contact Us */

.contact-hero {
    background: url('about-hero.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #bb86fc;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #ccc;
}








footer a {
    color: white;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  footer form input:focus {
    border-color: #8a2be2;
    outline: none;
  }

  


  .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  .social-icons a img {
    width: 30px;
    height: 30px;
  }
  
  .social-icons a {
    text-decoration: none;
  }
  


