/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

/* GENERAL CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  width: 100%;
  background: #f9f5f2;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 95px;
}

/* LOGO */
.logo img {
  height: 68px;
  display: block;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.nav a.active {
  color: #ff4d6d;
  font-weight: 700;
}

.nav a:hover {
  color: #ff4d6d;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #000;
  margin: 4px 0;
  display: block;
  border-radius: 2px;
}

/* MOBILE */
@media (max-width: 768px) {
  .header-container {
    height: 85px;
  }

  .logo img {
    height: 58px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 85px;
    left: -100%;
    width: 100%;
    background: #f9f5f2;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    transition: 0.3s;
    border-top: 1px solid #e0e0e0;
  }

  .nav a {
    display: block;
    padding: 12px 0;
  }

  .nav.active {
    left: 0;
  }
}

/* HERO */
.hero {
  background: #f4f4f6;
  padding: 100px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero {
    padding: 70px 0;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
    padding: 0 10px;
  }
}

/* SERVICES SECTION */
.services-section {
  padding: 100px 0;
  background: #ffffff;
}

.services-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT IMAGE */
.services-image img {
  width: 100%;
  max-width: 500px;
}

/* RIGHT BOX */
.services-content {
  background: linear-gradient(135deg, #ff4d6d, #ff7a18);
  color: white;
  padding: 60px 40px;
  border-radius: 25px;
  max-width: 500px;
}

.services-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.services-content p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    text-align: center;
  }

  .services-content {
    padding: 40px 20px;
  }

  .services-content h2 {
    font-size: 32px;
  }
}

/* FEATURES SECTION */
.features {
  padding: 100px 0;
  background: #f4f4f6;
  text-align: center;
}

.features-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.features-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
  line-height: 1.6;
}

/* GRID */
.features-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}

/* BOX */
.feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-box p {
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-box {
    margin-bottom: 20px;
  }
}

/* FOOTER */
.footer {
  background: #f4f4f6;
  padding: 60px 0;
  border-top: 1px solid #e0e0e0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* MAKE ALL COLUMNS EQUAL */
.footer-left,
.footer-middle,
.footer-right {
  flex: 1;
}

/* LEFT */
.footer-left img {
  height: 75px;
  display: block;
}

/* MIDDLE (ADDRESS) */
.footer-middle {
  text-align: center;
}

.footer-middle h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-middle p {
  max-width: 300px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}

/* RIGHT (CONTACT) */
.footer-right {
  text-align: right;
}

.footer-right h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-right p {
  color: #555;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ABOUT SECTION */
.about-section {
  padding: 80px 0;
  background: #ffffff;
}

.about-wrapper {
  max-width: 800px;
  margin: auto;
}

.about-wrapper p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-wrapper h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 20px;
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* CONTACT HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-header p {
  color: #555;
  font-size: 16px;
}

/* CARD STYLE */
.contact-card {
  background: #f4f4f6;
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 350px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

/* TEXT */
.contact-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.contact-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-header h2 {
  background: linear-gradient(90deg, #ff4d6d, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for compatibility */
  color: transparent;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}

/* FORM SECTION */
.form-section {
  padding: 80px 0;
  background: #f4f4f6;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.form-header p {
  color: #555;
}

/* FORM */
.contact-form {
  max-width: 700px;
  margin: auto;
}

/* ROW */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff4d6d;
}

/* BUTTON */
.contact-form button {
  background: linear-gradient(90deg, #ff4d6d, #ff7a18);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.contact-form button:hover {
  opacity: 0.9;
}

.form-message {
  margin-top: 15px;
  font-size: 14px;
  color: green;
  display: none;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

.services-hero {
  padding: 80px 0;
  text-align: center;
  background: #f4f4f6;
}

.services-hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.services-hero p {
  max-width: 700px;
  margin: auto;
  color: #555;
  line-height: 1.6;
}

.service-light {
  background: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.service-light h3 {
  font-size: 28px;
  margin: 20px 0;
}

.service-light p {
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
  color: #555;
}

/* Gradient title stays (nice touch) */
.gradient-title {
  font-size: 40px;
  background: linear-gradient(90deg, #ff4d6d, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Gradient title like screenshot */
.gradient-title {
  font-size: 40px;
  background: linear-gradient(90deg, #ff4d6d, #6a8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient title like screenshot */
.gradient-title {
  font-size: 40px;
  background: linear-gradient(90deg, #ff4d6d, #6a8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-image {
  margin-top: 40px;
  text-align: center;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}

/* SPLIT SECTION */
.service-split {
  padding: 100px 0;
  background: #f4f4f6;
}

.split-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* TEXT */
.split-text {
  flex: 1;
}

.split-text h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.split-text h2 span {
  font-size: 20px;
  display: block;
  margin-top: 5px;
  color: #777;
}

.split-text p {
  color: #555;
  line-height: 1.7;
}

/* IMAGE */
.split-image {
  flex: 1;
  text-align: center;
}

.split-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
    text-align: center;
  }

  .split-text h2 {
    font-size: 26px;
  }
}

/* REVERSE LAYOUT */
.split-container.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .split-container,
  .split-container.reverse {
    flex-direction: column;
    text-align: center;
  }
}

/* SECTION */
.audit-section {
  padding: 100px 0;
  background: #ffffff;
}

/* HEADER */
.audit-header {
  text-align: center;
  margin-bottom: 60px;
}

.audit-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.audit-header h2 span {
  background: linear-gradient(90deg, #ff4d6d, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* ADD THIS */
  color: transparent; /* ADD THIS */
}

.audit-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
}

/* GRID */
.audit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.audit-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  border-radius: 20px;
  background: #f4f4f6;

  /* Gradient border trick */
  border: 2px solid transparent;
  background-image:
    linear-gradient(#f4f4f6, #f4f4f6), linear-gradient(90deg, #ff4d6d, #ff7a18);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* IMAGE */
.audit-card img {
  width: 120px;
  border-radius: 10px;
}

/* TEXT */
.audit-card h3 {
  margin-bottom: 8px;
}

.audit-card p {
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .audit-grid {
    grid-template-columns: 1fr;
  }

  .audit-card {
    flex-direction: column;
    text-align: center;
  }

  .audit-card img {
    margin: auto;
  }
}


/* TRAINING HIGHLIGHTS */
.training-highlights {
  padding: 100px 0;
  background: #ffffff;
}

.training-header {
  text-align: center;
  margin-bottom: 50px;
}

.training-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.training-header h2 span {
  background: linear-gradient(90deg, #ff4d6d, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.training-header p {
  max-width: 750px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}

/* GRID */
.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.training-card {
  background: #f4f4f6;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  border: 2px solid transparent;
  background-image: linear-gradient(#f4f4f6, #f4f4f6),
                    linear-gradient(90deg, #ff4d6d, #ff7a18);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.training-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.training-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.training-card p {
  color: #555;
  line-height: 1.6;
}



@media (max-width: 992px) {
  .training-grid {
    grid-template-columns: 1fr;
  }

  .training-card img {
    height: 220px;
  }
}


/* CTA SECTION */
.cta-section {
  padding: 100px 0;
  background: #f4f4f6;
  text-align: center;
}

/* TITLE */
.cta-section h2 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cta-section h2 span {
  background: linear-gradient(90deg, #ff4d6d, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* SUBTITLE */
.cta-section h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

/* TEXT */
.cta-section p {
  max-width: 750px;
  margin: auto;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: 500;

  background: linear-gradient(90deg, #ff4d6d, #ff7a18);
  transition: 0.3s;
}

.cta-btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section h4 {
    font-size: 16px;
  }
}