:root {
  --primary: #0066ff;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #94a3b8;
  --accent: #00d9ff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
  /* color: white; */
} /* Navbar */

/* Header */
.main-header {
  background-color: #1C1C25;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.main-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  margin-top: 50px;
}

.main-header p {
  font-size: 1.2rem;
  color: #cbd5e1;
}
/* Projects Section */
.projects {
  background: #f1f5f9;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-img {
  height: 200px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  margin-bottom: 10px;
}

.project-stats {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.stat {
  background: #e2e8f0;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: black;
}

/* Why Choose Us */
.why-us {
  background: white;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature {
  text-align: center;
  padding: 30px;
}

.feature-icon {
  font-size: 2.5rem;
  color: #1C1C25;
  margin-bottom: 20px;
}

/* Global Styles */
:root {
  --primary: #0066ff;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #94a3b8;
  --accent: #00d9ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}


h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  /* background: var(--primary); */
  background-color: #00539c;
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 15px;
  color: var(--gray);
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #0052cc;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.text-center {
  text-align: center;
}

.text-primary {
  color: #00539c;
}

.text-accent {
  color: var(--accent);
}




/* Projects Section */
.projects {
  background: #f1f5f9;
  padding: 60px 20px;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-img {
  height: 200px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  margin-bottom: 10px;
}

.project-stats {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.stat {
  background: #e2e8f0;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Why Choose Us */
.why-us {
  background: white;
  padding: 60px 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature {
  text-align: center;
  padding: 30px;
}

.feature-icon {
  font-size: 2.5rem;
  color: #00539c;
  margin-bottom: 20px;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--dark) 0%, #00539c 100%);
  color: white;
}

.contact h2 {
  color: white;
}


.contact p {
  color: #cbd5e1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-method {
  text-align: center;
}

.contact-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #1C1C25;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid black;
  padding: 10px 16px;
  margin-top: 12px;
  border-radius: 25px;
}

.project-link:hover {
  color: white;
  background-color: #1C1C25;
  gap: 10px;
}
.m-whatsapp {
  color: white;
  font-weight: 300;
}