
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d1117;
  color: #ffffff;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
header {
  padding: 1.5rem 0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 45px;
}
nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
}
nav .cta {
  background-color: #0ea5e9;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  color: white;
}
.hero {
  text-align: center;
  margin-top: 3rem;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
}
.cta.large {
  background-color: #0ea5e9;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
}
.cta.large:hover {
  background-color: #0284c7;
}
.services {
  margin-top: 4rem;
}
.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.card {
  background-color: #161b22;
  padding: 1.5rem;
  border-radius: 10px;
  width: 240px;
}
.card h3 {
  margin-bottom: 0.5rem;
}
.about {
  margin-top: 4rem;
}
.about h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.about-flex {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-flex .text {
  flex: 1;
  font-size: 1rem;
}
.about-flex .image {
  flex: 1;
}
.about-flex img {
  max-width: 100%;
  border-radius: 10px;
}
.cta-section {
  margin-top: 4rem;
  text-align: center;
}
.cta-section h2 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}
footer {
  margin-top: 4rem;
  padding: 2rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


/* Make logo larger */
.logo img {
  height: 65px;
}

/* Center About Us layout */
.about-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-flex .text {
  max-width: 600px;
}
.about-flex .image {
  margin-top: 1rem;
}

.about-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-centered .about-text {
  max-width: 600px;
  margin-bottom: 1rem;
}
.about-centered .about-image img {
  max-width: 100%;
  border-radius: 10px;
}


/* Enlarged logo */
.logo {
    width: 180px;
    height: auto;
}

/* Center About section */
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.about-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Contact Form Styling */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #111;
    color: #eee;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background-color: #007BFF;
    border: none;
    color: white;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Services Grid Styling */
.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #ddd;
    text-align: center;
}
.services-grid h2 {
    margin-bottom: 30px;
}
.service-item {
    background: #111;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    display: inline-block;
    width: 45%;
    vertical-align: top;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.05);
}
.service-item img {
    height: 60px;
    margin-bottom: 15px;
}
.service-item h3 {
    color: #f94b4b;
    margin-bottom: 10px;
}

/* About Page Styling */
.about-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    color: #ddd;
}
.about-section h2 {
    color: #f94b4b;
    margin-bottom: 20px;
}
.about-section img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
}

/* Enhanced CTA Button */
.cta {
  display: inline-block;
  background-color: #0ea5e9;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cta:hover {
  background-color: #0284c7;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
