:root {
  --primary-color: #00B0F0;
  --secondary-color: #3498db;
  --tertiary-color: #05426b;
  --text-color: #333;
  --background-color: #fff;
  --section-padding: 2rem 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: 0.95rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
nav {
  background-color: var(--primary-color);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 0 0;
}

.logo {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary-color);
}

/* Dropdown Menu */
.nav-links li {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary-color);
  min-width: 250px;
  padding: 0.5rem 0;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.nav-links li:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
}

.dropdown-menu a {
  color: white;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)),
              url('assets/img/main-1.jpeg');
  background-size: cover;
  background-position: center;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 80px 20px 20px;
  margin-bottom: 0;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .hero {
    min-height: auto; /* Let content determine height on mobile */
    padding: 130px 15px 20px; /* Reduced padding for mobile */
  }
}

.hero-content {
  max-width: 700px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: white;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

/* Services Section */
#services {
  padding: 1rem 0;
  background-color: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}


.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.service-content p {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

/* Differentiators Section */
.differentiators {
  margin: 1.5rem 0;
  padding: 1rem 0;
  background: linear-gradient(to right, rgba(0, 176, 240, 0.05), rgba(0, 176, 240, 0.1), rgba(0, 176, 240, 0.05));
}

.differentiators-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.differentiator-item {
  flex: 1;
  padding: 1rem 0.75rem;
  text-align: center;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.differentiator-item:hover {
  transform: translateY(-5px);
}

.differentiator-item h4 {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.differentiator-item p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.3;
}

/* Talk to Us Button */
.talk-to-us {
  text-align: center;
  margin-top: 1.5rem;
}

.talk-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.talk-button:hover {
  background-color: #3d5871;
}

/* Service Page */
.service-page {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.service-page h1 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.service-page .service-content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 2rem;
}

.service-content h2 {
  color: var(--primary-color);
  margin: 2rem 0 1rem;
  font-size: 1.6rem;
}

.service-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.service-content ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-content li {
  margin-bottom: 0.5rem;
}

.service-content p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Swiper Carousel */
.swiper {
  width: 100%;
  max-width: 800px;
  height: 300px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem 2rem 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-bottom: 1rem;
}

.footer-section h3 {
  font-size: 1.0rem;
  margin-bottom: 1.5rem;
  color: var(--tertiary-color);
}

.footer-section p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #ecf0f1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #bdc3c7;
}

/* Contact Page Styles */
.contact-page {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.contact-page h1 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.detail-item .icon {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.detail-item h4 {
  margin-bottom: 0.3rem;
  color: var(--primary-color);
}

.detail-item p {
  margin: 0;
  font-size: 0.9rem;
}

.map-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #4a5568;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 176, 240, 0.1);
}

.submit-button {
  width: 100%;
  padding: 0.9rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #0091c7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  section {
    padding: 4rem 1rem;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    background-color: rgba(44, 62, 80, 0.9);
  }

  .nav-links li:hover .dropdown-menu {
    display: block;
  }

  .swiper {
    height: 200px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .map-container {
    height: 250px;
  }

  .differentiators-container {
    flex-direction: column;
  }
}