/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent horizontal scroll */
body {
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background-color: #f7f9fb;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Make all images responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Navbar */
.navbar {
  background: linear-gradient(to right, #0d1b2a, #1b263b);
  color: white;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.navbar .logo {
  display: flex;
  align-items: center;
}

.navbar .logo img {
  height: 55px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #1b263b, #415a77);
  color: white;
  text-align: center;
  padding: 100px 20px;
  width: 100%;
  overflow: hidden;
}

.hero-content h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1em;
  margin-bottom: 25px;
}

.btn {
  background: #e0e1dd;
  color: #0d1b2a;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #778da9;
  color: white;
}

/* Sections */
section {
  padding: 60px 20px;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: #0d1b2a;
  margin-bottom: 20px;
  border-left: 4px solid #415a77;
  padding-left: 10px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Contact */
.contact-info {
  margin-bottom: 20px;
}

.contact-info a {
  color: #1b263b;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Social Media Section */
#social {
  background: #e0e1dd;
  text-align: center;
  padding: 60px 20px;
  border-top: 3px solid #415a77;
  border-bottom: 3px solid #415a77;
}

#social h2 {
  color: #0d1b2a;
  margin-bottom: 15px;
}

#social p {
  color: #333;
  margin-bottom: 25px;
}

.social-links a {
  display: inline-block;
  margin: 10px 15px;
  text-decoration: none;
  font-weight: 600;
  color: #1b263b;
  font-size: 1.1em;
  transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
  color: #415a77;
  transform: scale(1.1);
}

/* Footer */
footer {
  background: #0d1b2a;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

.social-icons a {
  color: white;
  font-size: 1.3em;
  margin: 0 10px;
  text-decoration: none;
}

.social-icons a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {

  .navbar .container {
    flex-direction: column;
    align-items: center;
  }

  .navbar .logo img {
    height: 45px;
    margin-bottom: 10px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
  }

  .nav-links li {
    list-style: none;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero-content h2 {
    font-size: 1.5em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: 95%;
  }

}
