/* Global Styles */
:root {
  --primary: #0062b0;
  --secondary: #00a0e3;
  --accent: #64d6ff;
  --light: #f5f9fc;
  --dark: #333;
  --success: #4caf50;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: var(--dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--primary);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary);
  color: white;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  color: #777;
  max-width: 700px;
  margin: 0 auto;
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 98, 176, 0.8), rgba(0, 160, 227, 0.8)),
    url("website_header.webp") center/cover no-repeat;
  color: white;
  padding: 150px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Services Section */
.services-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) .service-text {
  direction: ltr;
}

.service-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-text h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-features {
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.2rem;
}

/* Additional Services */
.additional-services {
  background-color: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card-content {
  padding: 25px;
}

.service-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}

/* Process Section */
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--primary);
  z-index: -1;
}

.step {
  text-align: center;
  position: relative;
  width: 120px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 auto 15px;
}

.step h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* CTA Section */
.cta {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn {
  background: white;
  color: var(--primary);
}

.cta .btn:hover {
  background: var(--light);
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--secondary);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .process-steps::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
  }
}

.hidden {
  display: none !important;
}
/* Add these responsive styles to your file */

/* Enhanced Responsive Styles */
@media (max-width: 992px) {
  /* Medium devices (tablets) */
  .page-header h1 {
    font-size: 2.5rem;
  }

  .service-text h3 {
    font-size: 1.8rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .process-steps {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  /* Small devices (landscape phones) */

  /* Page Header */
  .page-header {
    padding: 100px 0 50px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  /* Service Detail */
  .service-detail {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .service-detail:nth-child(even) {
    direction: ltr;
  }

  .service-text h3 {
    font-size: 1.7rem;
  }

  /* Service Features */
  .service-features {
    margin-top: 15px;
  }

  .feature-item {
    margin-bottom: 10px;
  }

  .feature-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Process Steps */
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }

  .step {
    width: 100%;
    max-width: 200px;
  }

  /* CTA Section */
  .cta h2 {
    font-size: 2rem;
  }

  .cta .btn {
    display: block;
    width: 80%;
    margin: 0 auto;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  /* Extra small devices (portrait phones) */

  /* Typography */
  .page-header h1 {
    font-size: 1.8rem;
  }

  .service-text h3 {
    font-size: 1.5rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  /* Sections */
  .section {
    padding: 50px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  /* Service Card */
  .service-card-content {
    padding: 20px;
  }

  .service-card-content h3 {
    font-size: 1.3rem;
  }

  .service-icon {
    font-size: 2.5rem;
  }

  /* Process Steps */
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  /* CTA */
  .cta h2 {
    font-size: 1.7rem;
  }

  .cta .btn {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }
}

/* Dark overlay for mobile menu */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.overlay.active {
  display: block;
}
