/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header Styles */
header {
    background-color: #0d47a1;
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffca28;
}

/* Hero Section */
#hero {
    background: url('./hero.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    background-color: #ffca28;
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #ffc107;
}

/* About Section */
#about {
    padding: 60px 0;
    background-color: #fff;
}

#about h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
    color: #0d47a1;
}

#about p {
    max-width: 700px;
    margin: 20px auto;
    text-align: center;
    font-size: 18px;
}

/* Services Section */
#services {
    padding: 60px 0;
}

#services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: #0d47a1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    margin-bottom: 10px;
    color: #0d47a1;
}

/* Contact Section */
#contact {
    padding: 60px 0;
    background-color: #fff;
}

#contact h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
    color: #0d47a1;
}

#contact-form {
    max-width: 600px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact-form input, 
#contact-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

#contact-form button {
    background-color: #0d47a1;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#contact-form button:hover {
    background-color: #1565c0;
}

/* Footer */
footer {
    background-color: #0d47a1;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin-top: 50px;
}

/* Responsive */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-links {
      flex-direction: column;
      width: 100%;
      background-color:skyblue;
      position: absolute;
      top: 70px;
      left: 0;
      display: none;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      margin: 10px 0;
      padding: 10px;
      text-align: center;
    }
  
    .nav-container {
      position: relative;
    }
  }
  


