/* ===== IT Services Page Styling ===== */
/*
 Theme Name: Astra Child
 Theme URI: https://example.com/
 Description: Child theme for Astra
 Author: Your Name
 Author URI: https://example.com/
 Template: astra
 Version: 1.0.0
*/

/* Hero */
.it-hero {
  background: linear-gradient(135deg, #0073e6, #00c6ff);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.it-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.it-hero p {
  font-size: 20px;
  max-width: 700px;
  margin: auto;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

/* Services Grid */
.it-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.it-services .service-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: all .3s ease;
}
.it-services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.it-services .service-card i {
  font-size: 40px;
  color: #0073e6;
  margin-bottom: 15px;
}
.it-services .service-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

/* Why Choose Us */
.it-why {
  background: #f8f9fb;
  padding: 80px 20px;
  text-align: center;
}
.it-why .why-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
}
.it-why .why-list li {
  font-size: 18px;
  margin: 15px 0;
  color: #444;
}
.it-why .why-list i {
  color: #28a745;
  margin-right: 10px;
}

/* CTA */
.it-cta {
  background: #0073e6;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.it-cta p {
  font-size: 18px;
  margin-bottom: 20px;
}
.it-cta .btn-cta {
  background: #fff;
  color: #0073e6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}
.it-cta .btn-cta:hover {
  background: #005bb5;
  color: #fff;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .it-hero h1 {
    font-size: 32px;
  }
  .section-title {
    font-size: 26px;
  }
}
/* ===== Global Container Fix ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== Hero Section Full Width ===== */
.it-hero {
  background: linear-gradient(135deg, #0073e6, #00c6ff);
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  width: 100%;
}

/* ===== Service Section Clean Layout ===== */
.it-services {
  padding: 100px 20px;
  background: #f9f9f9;
}
.it-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.it-services .service-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: all .3s ease;
}
.it-services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* ===== Why Choose Us ===== */
.it-why {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}
.it-why .why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.it-why .why-list li {
  font-size: 18px;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
}
.it-why .why-list i {
  color: #28a745;
  margin-right: 10px;
}

/* ===== Call to Action Full Width ===== */
.it-cta {
  background: #0073e6;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  width: 100%;
}
.it-cta .btn-cta {
  background: #fff;
  color: #0073e6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all .3s;
}
.it-cta .btn-cta:hover {
  background: #005bb5;
  color: #fff;
}

