* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      color: #333;
    }
    header {
      background-color: #06414f;
      color: white;
      padding: 30px;
      text-align: center;
      height: 90vh;
  background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("./assets/headernew.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
    }
    header nav {
  position: absolute;
  top: 40px;   /* below top header */
  width: 100%;
  padding: 10px 40px;
  background-color: transparent;
}
    .logo img {
      height: 800px;
    }
    nav {
      background-color: #ffffff;
      padding: 10px;
      text-align: center;
    }
    nav a {
      color: #ff7700;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
    }
    nav {
  display: flex;
  align-items: center;        /* vertically center items */
  justify-content: space-between;
  padding: 10px 40px;
}

.logo img {
  height: 100px;               /* adjust as needed */
}

.nav-links {
  display: flex;
  gap: 25px;                  /* space between links */
}

    .hero {
      padding: 60px 20px;
      text-align: center;
      background-color: #e3f2fd;
    }
    .hero h1 {
      font-size: 2.5em;
    }
    .section {
      padding: 40px 20px;
      max-width: 1000px;
      margin: auto;
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      margin-top: 40px;
    }
    .section h2 {
      color: #06414f;
      margin-bottom: 20px;
      border-bottom: 2px solid #ff7700;
      padding-bottom: 10px;
    }
    .section ul {
      list-style: none;
      padding: 0;
    }
    .section ul li {
      background-color: #e3f2fd;
      margin-bottom: 10px;
      padding: 10px 15px;
      border-radius: 5px;
      border-left: 5px solid #06414f;
    }
    
    footer {
      background-color: #06414f;
      color: white;
      text-align: center;
      padding: 20px;
    }
.top-header {
  background: #ff7700;
  color: #fff;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

/* Left side */
.top-left {
  display: flex;
  gap: 25px;
}

.top-left a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.top-left a:hover {
  opacity: 0.8;
}

/* Right side */
.top-right {
  display: flex;
  gap: 10px;
}

.social {
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover animation */
.social:hover {
  background: #fff;
  color: #06414f;
  transform: translateY(-2px);
}

.approach {
  padding: 80px 40px;
  text-align: center;
  background: #f8fbff;
}

.approach h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 650px;
  margin: 0 auto 50px;
  color: #666;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step span {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #ff7700;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: bold;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services {
  padding: 90px 40px;
  background: #ffffff;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.services .section-subtitle {
  max-width: 650px;
  margin: 0 auto 60px;
  color: #666;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  background: #f8fbff;
  padding: 40px 30px;
  border-radius: 14px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.service-card i {
  font-size: 38px;
  color: #ff7700;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: #555;
  line-height: 1.6;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  background: #ffffff;
}

.why-choose-us {
  padding: 90px 40px;
  background: #f0f7ff;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.why-choose-us .section-subtitle {
  max-width: 650px;
  margin: 0 auto 60px;
  color: #555;
}

/* Grid Layout */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.expertise-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card i {
  font-size: 36px;
  color: #ff7700;
  margin-bottom: 20px;
}

.expertise-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.expertise-card p {
  color: #555;
  line-height: 1.6;
}

/* Hover Effect */
.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

.testimonials {
  padding: 90px 40px;
  background: #ffffff;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.testimonials .section-subtitle {
  max-width: 650px;
  margin: 0 auto 60px;
  color: #555;
}

/* Slider grid (simple version, scrollable) */
.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.testimonial-card {
  flex: 0 0 320px;
  background: #f0f7ff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-card h3 {
  font-weight: 600;
  font-size: 16px;
  color: #ff7700;
}

/* Hover effect */
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Hide scrollbar in modern browsers */
.testimonial-slider::-webkit-scrollbar {
  display: none;
}
.testimonial-slider {
  -ms-overflow-style: none;  /* IE & Edge */
  scrollbar-width: none;     /* Firefox */
}

.contact {
  padding: 90px 40px;
  background: #f0f7ff;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info */
.contact-info h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-info .section-subtitle {
  max-width: 500px;
  margin-bottom: 30px;
  color: #555;
}

.contact-details p {
  font-size: 16px;
  margin: 12px 0;
  color: #333;
}

.contact-details i {
  color: #ff7700;
  margin-right: 10px;
}

.contact-details a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #ff7700;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff7700;
}

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

.contact-form button:hover {
  background: #06414f;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
}


/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 992px) {
  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .approach-steps {
    grid-template-columns: 1fr;
  }
}

/* 🔹 Mobile styles */
@media (max-width: 768px) {
  .top-header {
    padding: 6px 20px;     /* smaller bar */
    font-size: 12px;
  }

  .top-left {
    gap: 15px;
  }

  .top-left a {
    color: #fff;           /* force white on mobile */
  }

  .social {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}

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

/* Top Header */
.top-header {
  display: flex;
  justify-content: space-between;
  /* padding: 10px 20px; */
  /* background-color: #00aaff; example color */
  color: white;
  flex-wrap: wrap;
}

.top-left a,
.top-right a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
  font-size: 14px;
}

/* Header Nav */
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-wrap: wrap;
  /* background: rgba(255, 255, 255, 0.9); semi-transparent background */
}

.logo img {
  max-width: 150px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #ff7700;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #06414f;
}

/* Hero Section */
.hero-content {
  text-align: center;
  padding: 60px 20px;
  background: url('./assets/it-hero.jpg') no-repeat center/cover;
  color: white;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .nav-links {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }
}
