/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
}

html, body {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* HEADER */
header {
  background-color: #ffffff;
  padding: 20px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  width: 300px;
  height: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  font-size: 18px;
  color: #FF5722;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  background-color: #FF5722;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}

/* PAGE CONTAINER */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO SECTION */
.hero-section {
  background: #ffffff;
  color: #000;
  padding: 80px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 50%;
  padding-right: 30px;
}

.hero-text h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
  font-family: Georgia, serif;
  color: #000;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
}

.subtext {
  font-size: 1rem;
  font-weight: bold;
  color: #FF5722;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  height: auto;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #FF5722;
  color: white;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

.cta-button:hover {
  background: #e64a19;
  transform: scale(1.05);
}

/* SERVICES SECTION */
.services-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 2rem;
  color: #FF5722;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-item {
  background: #fff;
  border: 2px solid #FF5722;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: #FF5722;
  color: white;
  transform: scale(1.05);
}

.service-item img {
  width: 48px;
  margin-bottom: 10px;
}

/* ISP Feature Grid Cleanup */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.topic-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
  min-height: 80px;
}

.topic-card:hover {
  transform: translateY(-3px);
}

.topic-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0;
}

.topic-card span {
  font-size: 1.1rem;
  color: #000;
}

/* CONTACT PAGE */
.contact-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
  color: #FF5722;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #FF5722;
}

.contact-form button {
  width: 100%;
}

/* FOOTER */
footer {
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

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

  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }

  .nav-menu li {
    margin-right: 0;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    width: 100%;
    padding: 0;
  }

  .hero-image {
    margin-top: 30px;
    width: 100%;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }

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

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


