/* Center testimonial heading on mobile */
@media (max-width: 600px) {
  .testimonials-section .section-head h2 {
    text-align: center;
    font-size: 2rem;
    word-break: break-word;
    line-height: 1.1;
  }
}

/* =====================================
   styles.css (NO HEADER / NO NAV / NO MEGA MENU)
   Main site styling: layout, hero, sections, footer
   ===================================== */

:root {
  /* Core Branding Colors */
  --primary: #84bcdd;
  --primary-dark: #2c7bac;
  --primary-light: #A3D4EE;
  --secondary: #00E5D4;
  --accent: #FFC107;
  --dark: #000000;
  --light: #FFFFFF;
  --bg-light: #f1f2f4;
  --bg-white: #ffffff;

  /* Text Colors */
  --text-dark: #212121;
  --text-main: #424242;
  --text-medium: #555555;
  --text-light: #757575;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-white: #ffffff;
  --heading-color: var(--text-white);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #84bcdd 0%, #6BA4C5 100%);
  --gradient-secondary: linear-gradient(90deg, #212121 0%, #424242 100%);
  --gradient-hero: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  --gradient-cta: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  --gradient-blue: linear-gradient(135deg, #3949ab, #5c6bc0);

  /* Layout & Spacing */
  --container-max-width: 1400px;
  --section-padding-large: 100px 0;
  --section-padding-medium: 80px 0;
  --section-padding-small: 50px 0;

  /* UI Elements */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-full: 50px;
  --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-medium);
  line-height: 1.7;
  background-color: var(--light);
  overflow-x: hidden;
  scroll-padding-top: 140px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

p {
  font-size: 18px;
  color: var(--text-medium);
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  background: linear-gradient(145deg, #fbf8ff 0%, #f0f7ff 50%, #eef7ff 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--text-white);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 720px;
}

.hero-buttons {
  display: flex;
  gap: 25px;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #2284C3 0%, #1a6da3 100%);
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 132, 195, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1a6da3 0%, #14527d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 132, 195, 0.4);
}

/* Submit Button - Contact Form */
.btn-submit {
  padding: 14px 28px;
  background: #2284C3;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 132, 195, 0.3);
  background: #1a6da3;
}

.btn-submit i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-submit:hover i {
  transform: translateX(5px);
}

.btn-outline {
  background: #fff;
  color: var(--text-white);
  border: 2px solid var(--primary-light);
}

.hero-illustration img {
  width: 100%;
  border-radius: 20px;
}

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

  .hero-illustration {
    margin-top: 20px;
    text-align: center;
  }
}

/* ================= STATS ================= */
.hero-stats {
  display: flex;
  gap: 80px;
  justify-content: center;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 52px;
  font-weight: 900;
  color: var(--secondary);
}

.stat-label {
  font-size: 15px;
  font-weight: 700;
}

/* ================= SERVICES ================= */
.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, .1);
  color: var(--secondary);
  margin-bottom: 20px;
}



/* ================= FOOTER ================= */
footer {
  background: var(--dark);
  color: #fff;
  padding: 100px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  font-size: 14px;
  color: #aaa;
}

/* ================= CONTACT SECTION (GLOBAL) ================= */
.contact-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.section-subtitle {
  display: inline-block;
  background: rgba(132, 188, 221, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
}

.contact-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-field {
  margin-bottom: 25px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  background: var(--bg-white);
  color: var(--text-dark);
  font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  outline: none;
}


/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 40px;
    flex-wrap: wrap;
  }
}

@media(max-width:576px) {
  .hero-title {
    font-size: 36px;
  }

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