/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", Arial, sans-serif;
  overflow-x: hidden;
}

/* HEADER */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  z-index: 1000;
}

.header-container {
  width: 92%;
  height: 100%;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.logo img {
  width: 130px;
  height: auto;
  display: block;
}

/* NAVIGATION */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu a {
  color: #ffffff;

  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;

  padding: 10px 18px;

  border-radius: 30px;

  background: #6f8599;

  box-shadow: 0 0 14px rgba(111, 133, 153, 0.35);

  transition: 0.3s ease;
}

.nav-menu a:hover {
  background: #55697d;

  box-shadow: 0 0 20px rgba(85, 105, 125, 0.55);

  transform: translateY(-2px);
}

/* HAMBURGER */

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background: #ffffff;
  transition: 0.3s ease;
}

/* HERO SECTION */

.hero-section {
  width: 100%;
  height: 100vh;

  background: url("../img/home-1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

/* HERO CONTENT */

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 100%;
  padding: 0 20px;

  text-align: center;
  z-index: 2;
}

.hero-title {
  color: #ffffff;
  font-size: 72px;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

/* BLINKING CURSOR */

.cursor {
  animation: blink 0.8s infinite;
  font-weight: 300;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .main-header {
    height: 90px;
  }

  .logo img {
    width: 110px;
  }

  .hamburger {
    display: block;
    z-index: 2000;
  }

  .nav-menu {
    position: absolute;
    top: 90px;
    left: 0;

    width: 100%;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    flex-direction: column;
    gap: 25px;

    padding: 35px 0;

    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    font-size: 14px;
  }

  .hero-title {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 30px;
  }
}

/* ABOUT SECTION */

.about-section {
  padding: 120px 0;
  background: #f7f7f7;
}

.about-container {
  width: 88%;
  max-width: 1400px;
  margin: auto;
}

/* HEADING */

.about-heading {
  text-align: center;
  margin-bottom: 90px;
}

.about-line {
  width: 1px;
  height: 120px;
  border-left: 2px dashed #cfcfcf;
  margin: 0 auto 30px;
}

.about-subtitle {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #444;
  margin-bottom: 20px;
}

.about-heading h2 {
  font-size: 68px;
  font-weight: 300;
  color: #222;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.about-heading h2 span {
  color: #0077b6;
  font-weight: 600;
}

.about-heading p {
  max-width: 950px;
  margin: auto;
  font-size: 22px;
  line-height: 1.8;
  color: #666;
}

/* ABOUT CONTENT */

/* ABOUT CONTENT */

.about-content {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 60px;
  margin-top: 80px;
}

.about-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-item {
  width: 100%;
  min-height: 360px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-item h3 {
  min-height: 60px;
  margin-bottom: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.about-item p {
  max-width: 520px;
  min-height: 260px;

  font-size: 18px;
  line-height: 1.9;
  color: #666;
}

/* CIRCLES */

.about-circle {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.circle-inner {
  width: 260px;
  height: 260px;

  border: 6px solid #0077b6;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.circle-inner::before {
  content: "";
  position: absolute;

  width: 320px;
  height: 320px;

  border: 3px dashed #d7d7d7;
  border-radius: 50%;
}

.circle-inner img {
  width: 120px;
  height: 120px;
  object-fit: contain;

  mix-blend-mode: multiply;
}

/* CENTER COLUMN FIX */

.center-column {
  padding-top: 0;
}

.center-column .about-item {
  order: 1;
}

.center-column .top-circle {
  order: 2;
  margin-top: 40px;
  margin-bottom: 0;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .about-content {
    flex-direction: column;
    gap: 80px;
  }

  .about-item {
    min-height: auto;
  }

  .about-item h3 {
    min-height: auto;
  }

  .about-item p {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .about-item p {
    font-size: 17px;
  }

  .circle-inner {
    width: 200px;
    height: 200px;
  }

  .circle-inner::before {
    width: 240px;
    height: 240px;
  }
}

/* SERVICES SECTION */

.services-section {
  position: relative;
  background: #f7f7f7;
  padding: 320px 0 120px;
  overflow: hidden;
}

/* TOP WAVE */

.services-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.services-wave svg {
  display: block;
  width: 220%;
  height: 180px;

  animation: waveMove 3s ease-in-out infinite alternate;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

/* CONTAINER */

.services-container {
  width: 88%;
  max-width: 1400px;
  margin: auto;
}

/* HEADING */

.services-heading {
  text-align: center;
}

.services-line {
  width: 1px;
  height: 120px;
  border-left: 2px dashed #cfcfcf;
  margin: 0 auto 30px;
}

.services-heading .services-subtitle {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #444;
  margin-bottom: 22px;
}

.services-heading h2 {
  font-size: 50px;
  font-weight: 300;
  color: #222;
  letter-spacing: 8px;
}

.services-heading h2 span {
  font-size: inherit;
  color: #0077b6;
  font-weight: 700;
  letter-spacing: 5px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .services-heading h2 {
    font-size: 42px;
  }

  .services-wave svg {
    height: 60px;
  }
}

.services-description {
  max-width: 1500px;
  margin: 40px auto 0;

  text-align: center;

  font-size: 22px;
  line-height: 1.9;
  color: #666;
}

@media (max-width: 768px) {
  .services-description {
    font-size: 17px;
    line-height: 1.8;
  }
}

.services-grid {
  margin-top: 80px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 35px;
}

.service-card {
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 230px;

  object-fit: cover;

  display: block;
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
}

.service-card h3 {
  min-height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    max-width: 180px;
    height: 140px;
  }
}

.service-card p {
  margin-top: 18px;

  font-size: 17px;
  line-height: 1.8;
  color: #666;
}

/* TESTIMONIALS SECTION */

.testimonials-section {
  position: relative;
  background: #f7f7f7;
  padding: 320px 0 0px;
  overflow: hidden;
}

/* TOP WAVE */

.testimonials-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.testimonials-wave svg {
  display: block;
  width: 220%;
  height: 180px;

  animation: testimonialWaveMove 3s ease-in-out infinite alternate;
}

@keyframes testimonialWaveMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

/* CONTAINER */

.testimonials-container {
  width: 88%;
  max-width: 1400px;
  margin: auto;
}

/* HEADING */

.testimonials-heading {
  text-align: center;
}

.testimonials-line {
  width: 1px;
  height: 120px;
  border-left: 2px dashed #cfcfcf;
  margin: 0 auto 30px;
}

.testimonials-subtitle {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #444;
  margin-bottom: 22px;
}

.testimonials-heading h2 {
  font-size: 58px;
  font-weight: 300;
  color: #222;
  letter-spacing: 6px;
  margin-bottom: 35px;
}

.testimonials-heading h2 span {
  color: #0077b6;
  font-weight: 700;
}

.testimonials-heading p {
  max-width: 1100px;
  margin: auto;

  font-size: 22px;
  line-height: 1.9;
  color: #666;
}

.stats-section {
  margin-top: -2px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .testimonials-heading h2 {
    font-size: 42px;
  }

  .testimonials-heading p {
    font-size: 17px;
  }

  .testimonials-wave svg {
    height: 120px;
  }
}

/* STATS SECTION */

.stats-section {
  position: relative;
  min-height: 420px;

  background: url("../img/home-13.png") center/cover no-repeat;
  background-attachment: fixed;

  overflow: hidden;

  display: flex;
  align-items: center;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("../img/home-13.png") center/cover no-repeat;

  animation: statsBgMove 5s ease-in-out infinite alternate;

  z-index: 0;
}

.stats-overlay {
  position: absolute;
  inset: 0;

  background: rgba(18, 55, 78, 0.78);

  z-index: 1;
}

/* CONTAINER */

.stats-container {
  position: relative;
  z-index: 2;

  width: 88%;
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;

  align-items: center;
}

/* STAT BOX */

.stat-box {
  text-align: center;
  color: #ffffff;
}

.stat-box h3 {
  font-size: 86px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.stat-box p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* BACKGROUND ANIMATION */

@keyframes statsBgMove {
  0% {
    transform: scale(1) translateX(0);
  }

  100% {
    transform: scale(1.1) translateX(-35px);
  }
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .stat-box h3 {
    font-size: 58px;
  }

  .stat-box p {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .stats-section {
    padding: 80px 0;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }
}

/* FAQ SECTION */

.faq-section {
  background: #f7f7f7;
  padding: 120px 0 100px;
}

.faq-container {
  width: 88%;
  max-width: 1400px;
  margin: auto;
}

.faq-heading {
  text-align: center;
}

.faq-line {
  width: 1px;
  height: 120px;
  border-left: 2px dashed #cfcfcf;
  margin: 0 auto 30px;
}

.faq-subtitle {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #444;
  margin-bottom: 22px;
}

.faq-heading h2 {
  font-size: 50px;
  font-weight: 300;
  color: #222;
  letter-spacing: 8px;
}

.faq-heading h2 span {
  color: #0077b6;
  font-weight: 700;
  letter-spacing: 5px;
}

.faq-list {
  margin-top: 70px;
}

.faq-item {
  margin-bottom: 25px;
}

.faq-question {
  width: 100%;
  padding: 28px 35px;

  border: none;
  background: #ffffff;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-family: "Outfit", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;

  cursor: pointer;
  transition: 0.3s ease;
}

.faq-question:hover,
.faq-item.active .faq-question {
  background: #0077b6;
  color: #ffffff;
}

.faq-question {
  transition: 0.3s ease;
}

.faq-question span {
  font-size: 30px;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 25px 35px 35px;

  font-size: 18px;
  line-height: 1.9;

  color: #222;

  margin-top: 8px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* CONTACT SECTION */

.contact-section {
  background: #f7f7f7;
  padding: 120px 0 100px;
}

.contact-container {
  width: 88%;
  max-width: 1400px;
  margin: auto;
}

/* HEADING */

.contact-heading {
  text-align: center;
}

.contact-line {
  width: 1px;
  height: 120px;
  border-left: 2px dashed #cfcfcf;
  margin: 0 auto 30px;
}

.contact-subtitle {
  display: block;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;

  color: #444;

  margin-bottom: 22px;
}

.contact-heading h2 {
  font-size: 58px;
  font-weight: 300;

  color: #222;

  letter-spacing: 8px;
}

.contact-heading h2 span {
  color: #0077b6;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .contact-heading h2 {
    font-size: 42px;
  }
}

.contact-content {
  margin-top: 70px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: flex-start;
}

.contact-form {
  background: #ffffff;
  padding: 45px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 28px;
  padding: 18px;

  border: 1px solid #ddd;
  outline: none;

  font-family: "Outfit", Arial, sans-serif;
  font-size: 15px;
}

.contact-form textarea {
  height: 160px;
  resize: vertical;
}

.contact-form button {
  padding: 17px 38px;
  border: none;

  background: #55697d;
  color: #ffffff;

  font-family: "Outfit", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;

  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #3f5264;
}

.contact-info h3 {
  font-size: 22px;
  letter-spacing: 6px;
  margin-bottom: 15px;
  color: #111;
}

.contact-info p {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.contact-info strong {
  color: #111;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

.form-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-message {
  font-size: 16px;
  font-weight: 500;
  color: #2e7d32;

  opacity: 0;
  transform: translateY(5px);

  transition: 0.3s ease;
}

.form-message.show {
  opacity: 1;
  transform: translateY(0);
}



/* GROWTH CONTENT */

.growth-content {
  max-width: 1100px;
  margin: 100px auto 0;
  padding: 0 20px;

  text-align: center;
}

.growth-text {
  max-width: 1000px;
  margin: auto;
}

.growth-text h3 {
  font-size: 58px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 3px;
  color: #222;
  margin-bottom: 35px;
}

.growth-text h3 span {
  color: #0077b6;
  font-weight: 700;
}

.growth-text p {
  font-size: 22px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 28px;
}

.growth-image {
  margin-top: 50px;
}

.growth-image img {
  width: 100%;
  max-width: 700px;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: auto;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .growth-content {
    margin-top: 70px;
    padding: 0 25px;
  }

  .growth-text h3 {
    font-size: 34px;
    letter-spacing: 1.5px;
  }

  .growth-text p {
    font-size: 17px;
    line-height: 1.8;
  }

  .growth-image img {
    height: 300px;
  }
}
