/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  color: #0a2463;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Section */
header {
  background: rgba(10, 36, 99, 0.95);
  color: #fff;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .logo a {
  font-size: 24px;
  font-weight: 600;
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

header .logo a:hover {
  color: #fff;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #ffd700;
}

header .cta-buttons {
  display: flex;
  gap: 15px;
}

header .cta-button {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

header .cta-button.primary {
  background: #ffd700;
  color: #0a2463;
}

header .cta-button.primary:hover {
  background: #e6b800;
  transform: translateY(-3px);
}

header .cta-button.secondary {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}

header .cta-button.secondary:hover {
  background: #ffd700;
  color: #0a2463;
  transform: translateY(-3px);
}

/* Mobile Menu Toggle */
header .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

header .menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
  header nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 36, 99, 0.95);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  header nav ul.active {
    display: flex;
  }

  header .cta-buttons {
    display: none;
  }

  header .menu-toggle {
    display: flex;
  }

  header .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  header .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  header .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, #1d4e89, #0a2463);
  color: #fff;
  padding: 150px 0;
  text-align: center;
}

#hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  animation: fadeIn 1.5s ease-in-out;
  color: #e6b800;
}

#hero p {
  font-size: 18px;
  margin-bottom: 40px;
  animation: fadeIn 2s ease-in-out;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeIn 2.5s ease-in-out;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary {
  background: #ffd700;
  color: #0a2463;
}

.btn-primary:hover {
  background: #e6b800;
  transform: translateY(-5px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #0a2463;
  transform: translateY(-5px);
}

/* Services Section */
#services {
  padding: 100px 0;
  text-align: center;
  background: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 40px;
  color: #0a2463;
  margin-bottom: 20px;
}

/* Portfolio Section */
#portfolio {
  padding: 100px 0;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 15px;
  background-color: #f9f9f9;
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item a {
  color: #000000;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease, background-color 0.3s ease;
  padding: 10px;
  display: block;
  border-radius: 5px;
}

.portfolio-item a:hover {
  color: white;
  background-color: #1d4e89;
}

/* Footer Section */
footer {
  background: #0a2463;
  color: #fff;
  padding: 60px 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-column h3 {
  color: #ffd700;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #444;
}

/* Contact Section */
#contact {
  padding: 100px 0;
  background: #f9f9f9;
  text-align: center;
}

#contact h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #0a2463;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0a2463;
  box-shadow: 0 0 8px rgba(10, 36, 99, 0.2);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .btn-primary {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  background: #0a2463;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: #1d4e89;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.social-media-links {
  margin-top: 15px; /* Space above the social media links */
}

.social-icon {
  text-decoration: none; /* Remove underline */
  color: #007bff; /* Icon color */
  font-size: 28px; /* Increase icon size */
  margin-right: 15px; /* Space between icons */
  transition: transform 0.3s, color 0.3s; /* Smooth transition for hover effects */
}

.social-icon:hover {
  color: #0056b3; /* Darker shade on hover */
  transform: scale(1.1); /* Slightly increase size on hover */
}

/* Optional: Add a background for the icons */
