* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  scroll-behavior: smooth;
}

/* Header */
header {
  width: 100%;
  background: #0b0c10;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #66fcf1;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #66fcf1;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background-color: #66fcf1;
  color: #0b0c10;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background-color: #45a29e;
}

/* About Section */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about {
  padding: 100px 0 60px;
  text-align: center;
}

.about h2 {
  color: #0b0c10;
  margin-bottom: 20px;
  font-size: 2rem;
}

.about p {
  line-height: 1.6;
  color: #555;
}

/* Services Section */
.services {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
  color: #0cefd1;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card h3 {
  color: #0b0c10;
  margin-bottom: 10px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
}

.contact input, .contact textarea {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact button {
  background-color: #0b0c10;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact button:hover {
  background-color: #45a29e;
}

/* Footer */
footer {
  background-color: #0b0c10;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer .social-links a {
  color: #66fcf1;
  margin: 0 10px;
  text-decoration: none;
  transition: 0.3s;
}

footer .social-links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    background: #0b0c10;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
  }

  .navbar.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    text-align: right;
    padding: 1rem;
  }

  .navbar ul li {
    margin: 10px 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* About Section Styling */
.about-section {
  background: #f9f9fb;
  padding: 80px 20px;
  color: #222;
  font-family: 'Poppins', sans-serif;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0a1e3d;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #0078ff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
  color: #555;
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.about-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 120, 255, 0.15);
}

.about-card h3 {
  color: #0078ff;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.about-card p, 
.about-card ul {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-card ul li {
  margin-bottom: 10px;
}

.about-bottom {
  margin-top: 50px;
  background: #0a1e3d;
  color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  line-height: 1.8;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.about-bottom p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Animation */
.about-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }
.about-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .intro {
    font-size: 1rem;
  }
  .about-bottom {
    padding: 30px 20px;
  }
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: #0a66c2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Different brand colors */
.social-links a:nth-child(1) { background: #0a66c2; } /* LinkedIn */
.social-links a:nth-child(2) { background: #1877f2; } /* Facebook */
.social-links a:nth-child(3) { background: #e4405f; } /* Instagram */
.social-links a:nth-child(4) { background: #ff0000; } /* YouTube */

/* Hover Effect */
.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}
/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 60px 20px;
  text-align: center;
  background: #f8f9fa;
}

.contact-section .section-title {
  font-size: 32px;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0a66c2;
  outline: none;
}

.contact-form button {
  background: #0a66c2;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #084c94;
}

/* ================= FOOTER ================= */

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

footer .social-links {
  display: flex;
  justify-content: center;  /* CENTER ICONS */
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

footer .social-links a {
  width: 45px;
  height: 45px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}

footer .social-links a:hover {
  background: #0a66c2;
  transform: translateY(-5px);
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}