/* =========================
   Root Variables
========================= */

:root {
  --primary-blue: #0d376f;
  --primary-green: #397d4a;

  --dark: #44484b;
  --white: #ffffff;

  --border: rgba(13, 55, 111, 0.12);

  --header-height: 120px;
  --container: 1450px;
}

/* =========================
   Reset
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;

  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;

  color: var(--dark);
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* =========================
   Header
========================= */

.site-header {
  position: sticky;
  top: 0;
  left: 0;

  width: 100%;

  background: #fff;

  z-index: 1000;

  border-bottom: 1px solid var(--border);

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

/* =========================
   Top Line
========================= */

.header-top-line {
  width: 100%;
  height: 6px;

  background: linear-gradient(
    90deg,
    var(--primary-blue) 0%,
    var(--primary-blue) 50%,
    var(--primary-green) 50%,
    var(--primary-green) 100%
  );
}

/* =========================
   Header Container
========================= */

.header-container {
  width: min(var(--container), calc(100% - 140px));

  height: var(--header-height);

  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   Logo
========================= */

.header-logo {
  display: flex;
  align-items: center;

  flex-shrink: 0;
}

.header-logo img {
  width: 270px;
  height: auto;

  transition: 0.3s;
}

.header-logo:hover img {
  transform: translateY(-2px);
}

/* =========================
   Desktop Navigation
========================= */

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 45px;
}

.nav-link {
  position: relative;

  display: inline-block;

  color: var(--primary-blue);

  font-size: 16px;
  font-weight: 700;

  transition: 0.3s;
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 100%;
  height: 2px;

  background: var(--primary-green);

  transform: scaleX(0);
  transform-origin: right;

  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* =========================
   Hamburger
========================= */

.menu-toggle {
  display: none;

  flex-direction: column;
  justify-content: center;

  gap: 6px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;

  border-radius: 20px;

  background: var(--primary-blue);

  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   Mobile Menu
========================= */

.mobile-menu {
  position: absolute;

  top: 100%;
  left: 0;

  width: 100%;

  background: #fff;

  max-height: 0;

  overflow: hidden;

  transition: max-height 0.35s ease;

  border-top: 1px solid var(--border);

  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.mobile-menu.active {
  max-height: 320px;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;

  padding: 18px 0;
}

.mobile-nav-link {
  padding: 16px 40px;

  color: var(--primary-blue);

  font-size: 18px;
  font-weight: 700;

  transition: 0.3s;
}

.mobile-nav-link:hover {
  color: var(--primary-green);

  padding-left: 50px;
}

.mobile-nav-link.active {
  color: var(--primary-green);
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  :root {
    --header-height: 110px;
  }

  .header-container {
    width: calc(100% - 50px);
  }

  .header-logo img {
    width: 240px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 576px) {
  :root {
    --header-height: 90px;
  }

  .header-top-line {
    height: 5px;
  }

  .header-container {
    width: calc(100% - 28px);
  }

  .header-logo img {
    width: 200px;
  }

  .menu-toggle span {
    width: 24px;
  }

  .mobile-nav-link {
    padding: 15px 25px;

    font-size: 17px;
  }

  .mobile-nav-link:hover {
    padding-left: 35px;
  }
}

/* =========================
   Utilities
========================= */

.container {
  width: min(var(--container), calc(100% - 100px));

  margin: auto;
}

section {
  position: relative;
}

::selection {
  background: var(--primary-green);
  color: #fff;
}

/* =========================
   Smooth Transition
========================= */

a,
button,
img {
  transition: 0.3s;
}

/* =========================
   Hero Section
========================= */

.hero-section {
  position: relative;

  min-height: calc(100vh - var(--header-height));

  display: flex;
  align-items: center;

  padding: 90px 0 110px;

  overflow: hidden;
}

.hero-video {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: translate(-50%, -50%);

  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.48) 45%,
    rgba(0, 0, 0, 0.22) 100%
  );

  z-index: 1;
}

.hero-container {
  position: relative;

  z-index: 2;

  width: min(var(--container), calc(100% - 140px));

  margin: auto;
}

.hero-content {
  max-width: 700px;

  padding-top: 70px;

  color: #fff;
}

.hero-subtitle {
  display: inline-block;

  margin-bottom: 18px;

  color: #7fd487;

  font-size: 14px;
  letter-spacing: 2.5px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-content h1 {
  margin-bottom: 24px;

  font-size: clamp(42px, 4vw, 62px);

  line-height: 1.12;
  letter-spacing: -1.5px;
}

.hero-content p {
  max-width: 640px;

  margin-bottom: 38px;

  font-size: 21px;
  line-height: 1.75;

  color: rgba(255, 255, 255, 0.92);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 58px;

  padding: 0 38px;

  border-radius: 4px;

  background: var(--primary-green);

  color: #fff;

  font-size: 17px;
  font-weight: 700;

  transition: 0.3s;
}

.hero-btn:hover {
  background: var(--primary-blue);

  transform: translateY(-3px);
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .hero-container {
    width: calc(100% - 50px);
  }

  .hero-content h1 {
    font-size: clamp(42px, 7vw, 58px);
  }

  .hero-content p {
    font-size: 19px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 650px;
  }

  .hero-container {
    width: calc(100% - 28px);
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-btn {
    width: 100%;
  }
}

/* =========================
   Solutions Section
========================= */

.solutions-section {
  padding: 100px 0;

  background: #f7f8fa;
}

/* =========================
   Heading
========================= */

.solutions-heading {
  max-width: 760px;

  margin: 0 auto 60px;

  text-align: center;
}

.solutions-heading h2 {
  margin-bottom: 18px;

  color: var(--primary-blue);

  font-size: clamp(38px, 3.5vw, 52px);
  font-weight: 800;

  line-height: 1.15;
}

.solutions-heading p {
  color: #666;

  font-size: 18px;
  line-height: 1.8;
}

/* =========================
   Grid
========================= */

.solutions-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 35px;
}

/* =========================
   Card
========================= */

.solution-card {
  background: #fff;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.solution-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* =========================
   Image
========================= */

.solution-image {
  height: 250px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #fff;
}

.solution-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.45s;
}

.solution-card:hover .solution-image img {
  transform: scale(1.08);
}

/* =========================
   Content
========================= */

.solution-content {
  padding: 32px;
}

.solution-content h3 {
  margin-bottom: 18px;

  color: var(--primary-blue);

  font-size: 28px;
  font-weight: 800;

  line-height: 1.25;
}

.solution-content p {
  color: #666;

  font-size: 17px;
  line-height: 1.85;
  text-align: justify;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .solutions-section {
    padding: 80px 0;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .solution-image {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .solution-content {
    padding: 28px;
  }
}

@media (max-width: 576px) {
  .solutions-section {
    padding: 70px 0;
  }

  .solutions-heading {
    margin-bottom: 45px;
  }

  .solutions-heading h2 {
    font-size: 32px;
  }

  .solutions-heading p {
    font-size: 16px;
  }

  .solution-image {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .solution-content {
    padding: 24px;
  }

  .solution-content h3 {
    font-size: 23px;
  }

  .solution-content p {
    font-size: 15px;
  }
}

/* =========================
   About Us Section
========================= */

.about-section {
  padding: 100px 0;
  background: #fff;
}

.about-container {
  width: min(var(--container), calc(100% - 140px));
  margin: auto;

  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: 90px;
}

/* =========================
   Content
========================= */

.about-content h2 {
  margin-bottom: 32px;

  color: var(--primary-blue);

  font-size: clamp(42px, 4vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.about-content p {
  max-width: 880px;
  margin-bottom: 30px;
  text-align: justify;
  color: #44484b;

  font-size: 18px;
  line-height: 1.9;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* =========================
   Image
========================= */

.about-image {
  width: 100%;
  height: 580px;

  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  filter: grayscale(100%);

  transition: 0.45s;
}

.about-image:hover img {
  transform: scale(1.04);
  filter: grayscale(35%);
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
  }

  .about-container {
    width: calc(100% - 50px);

    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-content h2 {
    margin-bottom: 25px;
    font-size: 44px;
  }

  .about-content p {
    font-size: 17px;
  }

  .about-image {
    height: 480px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 70px 0;
  }

  .about-container {
    width: calc(100% - 28px);
    gap: 38px;
  }

  .about-content h2 {
    margin-bottom: 22px;
    font-size: 34px;
  }

  .about-content p {
    margin-bottom: 22px;

    font-size: 15px;
    line-height: 1.8;
  }

  .about-image {
    height: 360px;
  }
}

/* =========================
   Numbers Section
========================= */

.numbers-section {
  position: relative;

  padding: 100px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 255, 255, 0.09),
      transparent 30%
    ),
    linear-gradient(
      120deg,
      var(--primary-blue) 0%,
      #164f78 48%,
      var(--primary-green) 100%
    );

  color: #fff;
}

.numbers-section::before,
.numbers-section::after {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.numbers-section::before {
  top: -210px;
  left: -100px;
}

.numbers-section::after {
  right: -110px;
  bottom: -230px;
}

.numbers-container {
  position: relative;
  z-index: 2;

  width: min(var(--container), calc(100% - 140px));

  margin: auto;
}

/* =========================
   Heading
========================= */

.numbers-heading {
  max-width: 760px;

  margin: 0 auto 65px;

  text-align: center;
}

.numbers-heading span {
  display: inline-block;

  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.numbers-heading h2 {
  margin-bottom: 16px;

  color: #fff;

  font-size: clamp(38px, 3.8vw, 56px);
  font-weight: 800;
  line-height: 1.12;
}

.numbers-heading p {
  color: rgba(255, 255, 255, 0.78);

  font-size: 18px;
  line-height: 1.8;
}

/* =========================
   Numbers Grid
========================= */

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.number-item {
  position: relative;

  min-height: 190px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 30px 20px;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition: 0.35s;
}

.number-item::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 55px;
  height: 3px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.82);

  transform: translateX(-50%);
}

.number-item:hover {
  transform: translateY(-8px);

  background: rgba(255, 255, 255, 0.13);

  border-color: rgba(255, 255, 255, 0.3);
}

.counter {
  margin-bottom: 10px;

  color: #fff;

  font-size: clamp(42px, 4vw, 62px);
  font-weight: 800;
  line-height: 1;
}

.number-item span {
  color: rgba(255, 255, 255, 0.84);

  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .numbers-section {
    padding: 80px 0;
  }

  .numbers-container {
    width: calc(100% - 50px);
  }

  .numbers-heading {
    margin-bottom: 50px;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .number-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .numbers-section {
    padding: 70px 0;
  }

  .numbers-container {
    width: calc(100% - 28px);
  }

  .numbers-heading {
    margin-bottom: 42px;
  }

  .numbers-heading h2 {
    font-size: 34px;
  }

  .numbers-heading p {
    font-size: 16px;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .number-item,
  .number-item:last-child {
    grid-column: auto;
  }

  .number-item {
    min-height: 160px;
  }

  .counter {
    font-size: 46px;
  }

  .number-item span {
    font-size: 15px;
  }
}

/* =========================
   Mission Section
========================= */

.mission-section {
  padding: 100px 0;
  background: #fff;
}

.mission-content {
  max-width: 900px;
}

.mission-subtitle {
  display: inline-block;

  margin-bottom: 16px;

  color: var(--primary-green);

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mission-content h2 {
  margin-bottom: 28px;

  color: var(--primary-blue);

  font-size: clamp(40px, 3.8vw, 56px);
  font-weight: 800;

  line-height: 1.15;
}

.mission-content p {
  color: #555;

  font-size: 18px;
  line-height: 1.9;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .mission-section {
    padding: 80px 0;
  }

  .mission-content {
    max-width: 100%;
  }

  .mission-content h2 {
    font-size: 42px;
  }

  .mission-content p {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .mission-section {
    padding: 70px 0;
  }

  .mission-content h2 {
    font-size: 32px;
  }

  .mission-content p {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* =========================
   Values Section
========================= */

.values-section {
  padding: 100px 0;
  background: #f7f8fa;
}

.values-box {
  padding: 55px;

  background: #fff;

  border: 1px solid rgba(13, 55, 111, 0.12);
  border-radius: 18px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

/* =========================
   Heading
========================= */

.values-heading {
  margin-bottom: 45px;
}

.values-heading::before {
  content: "";

  display: block;

  width: 80px;
  height: 4px;

  margin-bottom: 24px;

  border-radius: 30px;

  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
}

.values-heading h2 {
  margin-bottom: 14px;

  color: var(--primary-blue);

  font-size: clamp(38px, 3.5vw, 52px);
  font-weight: 800;

  line-height: 1.15;
}

.values-heading p {
  max-width: 700px;

  color: #666;

  font-size: 18px;
  line-height: 1.8;
}

/* =========================
   Values List
========================= */

.values-list {
  display: flex;
  flex-direction: column;

  gap: 30px;
}

.value-item {
  display: grid;

  grid-template-columns: 24px 1fr;

  gap: 20px;
}

.value-check {
  margin-top: 6px;

  color: var(--primary-green);

  font-size: 18px;
}

.value-item h3 {
  margin-bottom: 8px;

  color: var(--primary-blue);

  font-size: 24px;
  font-weight: 800;
}

.value-item p {
  color: #555;

  font-size: 17px;
  line-height: 1.8;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .values-section {
    padding: 80px 0;
  }

  .values-box {
    padding: 40px;
  }

  .value-item h3 {
    font-size: 22px;
  }

  .value-item p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .values-section {
    padding: 70px 0;
  }

  .values-box {
    padding: 28px 22px;
  }

  .values-heading {
    margin-bottom: 35px;
  }

  .values-heading h2 {
    font-size: 32px;
  }

  .values-heading p {
    font-size: 16px;
  }

  .values-list {
    gap: 24px;
  }

  .value-item {
    grid-template-columns: 20px 1fr;
    gap: 14px;
  }

  .value-check {
    font-size: 16px;
  }

  .value-item h3 {
    font-size: 20px;
  }

  .value-item p {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* =========================
   Footer
========================= */

.footer {
  padding: 55px 0;

  background: #ffffff;

  border-top: 1px solid rgba(13, 55, 111, 0.12);
}

.footer-container {
  width: min(1450px, calc(100% - 140px));

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr 1fr;

  align-items: center;

  gap: 60px;
}

/* Logo */

.footer-logo img {
  width: 240px;

  display: block;
}

/* Address */

.footer-info:nth-child(2) {
  text-align: center;
}

/* Contact */

.footer-info:last-child {
  text-align: right;
}

.footer-info h4 {
  margin-bottom: 14px;

  color: var(--primary-blue);

  font-size: 20px;

  font-weight: 800;
}

.footer-info p {
  color: #666;

  font-size: 16px;

  line-height: 1.9;
}

.footer-info a {
  display: block;

  margin-bottom: 8px;

  color: #666;

  font-size: 16px;

  text-decoration: none;

  transition: 0.3s ease;
}

.footer-info a:hover {
  color: var(--primary-green);
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .footer {
    padding: 45px 0;
  }

  .footer-container {
    width: min(1450px, calc(100% - 60px));

    grid-template-columns: 1fr;

    gap: 40px;

    text-align: center;
  }

  .footer-logo {
    display: flex;

    justify-content: center;
  }

  .footer-logo img {
    width: 210px;
  }

  .footer-info,
  .footer-info:nth-child(2),
  .footer-info:last-child {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 40px 0;
  }

  .footer-container {
    width: min(1450px, calc(100% - 40px));
  }

  .footer-logo img {
    width: 180px;
  }

  .footer-info h4 {
    font-size: 18px;
  }

  .footer-info p,
  .footer-info a {
    font-size: 15px;
  }
}

/* =========================
   Page Title
========================= */

.page-title {
  position: relative;

  overflow: hidden;

  padding: 175px 0 70px;

  background: linear-gradient(
    90deg,
    #143f78 0%,
    #1f5c82 45%,
    #2f756e 75%,
    #4b8c63 100%
  );
}

.page-title-container {
  position: relative;
  z-index: 2;

  width: min(1450px, calc(100% - 140px));

  margin: 0 auto;

  text-align: center;
}

.page-title h1 {
  position: relative;

  display: inline-block;

  padding-bottom: 18px;

  color: #fff;

  font-size: clamp(46px, 4.5vw, 64px);

  font-weight: 800;

  letter-spacing: -1px;

  line-height: 1.1;
}

.page-title h1::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  transform: translateX(-50%);

  width: 90px;
  height: 4px;

  border-radius: 20px;

  background: #fff;
}

/* Decorative circles */

.page-title::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: -300px;
  left: -180px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 50%;
}

.page-title::after {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -250px;
  bottom: -340px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;
}

/* Responsive */

@media (max-width: 991px) {
  .page-title {
    padding: 155px 0 60px;
  }

  .page-title-container {
    width: min(1450px, calc(100% - 60px));
  }
}

@media (max-width: 576px) {
  .page-title {
    padding: 140px 0 50px;
  }

  .page-title-container {
    width: min(1450px, calc(100% - 40px));
  }

  .page-title h1 {
    font-size: 38px;
  }
}

/* =========================
   Brands Section
========================= */

.brands-section {
  padding: 100px 0;
  background: #f4f5f6;
}

.brands-container {
  width: min(1380px, calc(100% - 140px));
  margin: 0 auto;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

/* =========================
   Brand Card
========================= */

.brand-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(13, 55, 111, 0.1);
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(15, 28, 45, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.brand-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 55px rgba(15, 28, 45, 0.13);
}

/* =========================
   Card Image
========================= */

.brand-card-image {
  height: 370px;
  margin: 10px 10px 0;
  overflow: hidden;
  background: #e9ecef;
}

.brand-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.brand-card:hover .brand-card-image img {
  transform: scale(1.04);
}

/* =========================
   Card Content
========================= */

.brand-card-content {
  padding: 36px 42px 42px;
}

.brand-category {
  display: block;
  margin-bottom: 12px;
  color: var(--primary-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.brand-card-content h2 {
  margin-bottom: 18px;
  color: var(--primary-blue);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.brand-card-content > p {
  margin-bottom: 14px;
  color: #505965;
  font-size: 16px;
  line-height: 1.85;
}

.brand-card-content > p:last-of-type {
  margin-bottom: 26px;
}

/* =========================
   Product Details
========================= */

.brand-details {
  padding-top: 23px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 24px;
  border-top: 1px solid rgba(13, 55, 111, 0.11);
}

.brand-details span {
  position: relative;
  padding-left: 17px;
  color: #283746;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.brand-details span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--primary-green);
  border-radius: 50%;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .brands-section {
    padding: 80px 0;
  }

  .brands-container {
    width: min(1380px, calc(100% - 60px));
  }

  .brands-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .brand-card-image {
    height: 360px;
  }
}

@media (max-width: 576px) {
  .brands-section {
    padding: 65px 0;
  }

  .brands-container {
    width: min(1380px, calc(100% - 40px));
  }

  .brands-grid {
    gap: 26px;
  }

  .brand-card-image {
    height: 235px;
    margin: 7px 7px 0;
  }

  .brand-card-content {
    padding: 27px 22px 30px;
  }

  .brand-card-content h2 {
    font-size: 23px;
  }

  .brand-card-content > p {
    font-size: 15px;
    line-height: 1.75;
  }

  .brand-details {
    grid-template-columns: 1fr;
    gap: 11px;
  }
}

/* =========================
   Page Title
========================= */

.page-title {
  position: relative;

  overflow: hidden;

  padding: 175px 0 70px;

  background: linear-gradient(
    90deg,
    #143f78 0%,
    #1f5c82 45%,
    #2f756e 75%,
    #4b8c63 100%
  );
}

.page-title-container {
  position: relative;
  z-index: 2;

  width: min(1450px, calc(100% - 140px));

  margin: 0 auto;

  text-align: center;
}

.page-title h1 {
  position: relative;

  display: inline-block;

  padding-bottom: 18px;

  color: #fff;

  font-size: clamp(46px, 4.5vw, 64px);

  font-weight: 800;

  line-height: 1.1;

  letter-spacing: -1px;
}

.page-title h1::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  transform: translateX(-50%);

  width: 90px;
  height: 4px;

  border-radius: 20px;

  background: #fff;
}

/* Decorative Circles */

.page-title::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: -300px;
  left: -180px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 50%;
}

.page-title::after {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -250px;
  bottom: -340px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .page-title {
    padding: 155px 0 60px;
  }

  .page-title-container {
    width: min(1450px, calc(100% - 60px));
  }
}

@media (max-width: 576px) {
  .page-title {
    padding: 140px 0 50px;
  }

  .page-title-container {
    width: min(1450px, calc(100% - 40px));
  }

  .page-title h1 {
    font-size: 38px;
  }
}

/* =========================
   Contact Intro
========================= */

.contact-intro {
  padding: 100px 0 80px;
  background: #fff;
}

.contact-intro-container {
  width: min(900px, calc(100% - 140px));
  margin: auto;
  text-align: center;
}

.contact-subtitle {
  display: inline-block;
  margin-bottom: 18px;

  color: var(--primary-green);

  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-intro h2 {
  margin-bottom: 26px;

  color: var(--primary-blue);

  font-size: clamp(48px, 4vw, 64px);
  font-weight: 800;

  line-height: 1.1;
}

.contact-intro p {
  max-width: 760px;
  margin: auto;

  color: #5d6775;

  font-size: 20px;
  line-height: 1.8;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .contact-intro {
    padding: 80px 0 70px;
  }

  .contact-intro-container {
    width: min(900px, calc(100% - 60px));
  }

  .contact-intro p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .contact-intro {
    padding: 70px 0 60px;
  }

  .contact-intro-container {
    width: min(900px, calc(100% - 40px));
  }

  .contact-intro h2 {
    font-size: 40px;
  }

  .contact-intro p {
    font-size: 16px;
  }
}

/* =========================
   Contact Information
========================= */

.contact-info-section {
  padding: 0 0 100px;
  background: #fff;
}

.contact-info-container {
  width: min(1450px, calc(100% - 140px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* =========================
   Contact Card
========================= */

.contact-card {
  position: relative;

  overflow: hidden;

  min-height: 255px;

  padding: 40px 35px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  background: #fff;

  border: 1px solid rgba(13, 55, 111, 0.08);
  border-radius: 18px;

  box-shadow: 0 10px 35px rgba(13, 55, 111, 0.06);

  transition: 0.35s ease;
}

.contact-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
}

.contact-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 22px 55px rgba(13, 55, 111, 0.12);
}

/* =========================
   Icon
========================= */

.contact-icon {
  width: 72px;
  height: 72px;

  margin-bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-green)
  );

  box-shadow: 0 12px 30px rgba(13, 55, 111, 0.18);
}

.contact-icon i {
  color: #fff;

  font-size: 28px;

  line-height: 1;
}

/* =========================
   Typography
========================= */

.contact-card h3 {
  margin-bottom: 18px;

  color: var(--primary-blue);

  font-size: 22px;
  font-weight: 800;
}

.contact-card p,
.contact-card a {
  color: #566274;

  font-size: 17px;

  line-height: 1.9;

  text-decoration: none;

  transition: 0.3s;
}

.contact-card a:hover {
  color: var(--primary-green);
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .contact-info-section {
    padding: 0 0 80px;
  }

  .contact-info-container {
    width: min(1450px, calc(100% - 60px));

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .contact-card {
    min-height: 230px;
  }
}

@media (max-width: 576px) {
  .contact-info-section {
    padding: 0 0 70px;
  }

  .contact-info-container {
    width: min(1450px, calc(100% - 40px));
  }

  .contact-card {
    padding: 35px 22px;

    min-height: 210px;
  }

  .contact-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 20px;
  }

  .contact-icon i {
    font-size: 22px;
  }

  .contact-card h3 {
    font-size: 20px;
  }

  .contact-card p,
  .contact-card a {
    font-size: 15px;
  }
}

/* =========================
   Contact Form
========================= */

.contact-form-section {
  padding: 100px 0;

  background: #f7f8fa;
}

.contact-form-container {
  width: min(1100px, calc(100% - 140px));

  margin: auto;
}

.contact-form-heading {
  text-align: center;

  margin-bottom: 55px;
}

.contact-form-heading span {
  display: inline-block;

  margin-bottom: 15px;

  color: var(--primary-green);

  font-size: 14px;

  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.contact-form-heading h2 {
  margin-bottom: 18px;

  color: var(--primary-blue);

  font-size: clamp(42px, 4vw, 56px);

  font-weight: 800;
}

.contact-form-heading p {
  max-width: 650px;

  margin: auto;

  color: #666;

  font-size: 18px;

  line-height: 1.8;
}

/* Form */

.form-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 28px;
}

.form-group {
  display: flex;

  flex-direction: column;
}

.form-group label {
  margin-bottom: 10px;

  color: var(--primary-blue);

  font-size: 15px;

  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 16px 18px;

  border: 1px solid rgba(13, 55, 111, 0.12);

  border-radius: 12px;

  background: #fff;

  color: #444;

  font-size: 16px;

  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;

  border-color: var(--primary-green);

  box-shadow: 0 0 0 4px rgba(57, 125, 74, 0.08);
}

.message-group {
  margin-top: 28px;
}

.form-group textarea {
  resize: vertical;

  min-height: 180px;
}

.error {
  margin-top: 8px;

  color: #d62828;

  font-size: 13px;

  min-height: 18px;
}

/* Button */

.form-bottom {
  display: flex;

  align-items: center;

  gap: 20px;

  margin-top: 35px;
}

.form-bottom button {
  padding: 16px 38px;

  border: none;

  border-radius: 12px;

  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));

  color: #fff;

  font-size: 16px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.35s;
}

.form-bottom button:hover {
  transform: translateY(-3px);
}

#successMessage {
  display: none;

  color: #228b22;

  font-weight: 700;
}

/* Responsive */

@media (max-width: 991px) {
  .contact-form-section {
    padding: 80px 0;
  }

  .contact-form-container {
    width: min(1100px, calc(100% - 60px));
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .contact-form-section {
    padding: 70px 0;
  }

  .contact-form-container {
    width: min(1100px, calc(100% - 40px));
  }

  .form-bottom {
    flex-direction: column;

    align-items: flex-start;
  }
}

/* =========================
   Page Title
========================= */

.page-title {
  position: relative;

  overflow: hidden;

  padding: 175px 0 70px;

  background: linear-gradient(
    90deg,
    #143f78 0%,
    #1f5c82 45%,
    #2f756e 75%,
    #4b8c63 100%
  );
}

.page-title-container {
  position: relative;
  z-index: 2;

  width: min(1450px, calc(100% - 140px));

  margin: 0 auto;

  text-align: center;
}

.page-title h1 {
  position: relative;

  display: inline-block;

  padding-bottom: 18px;

  color: #ffffff;

  font-size: clamp(46px, 4.5vw, 64px);

  font-weight: 800;

  line-height: 1.1;

  letter-spacing: -1px;
}

.page-title h1::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  transform: translateX(-50%);

  width: 90px;
  height: 4px;

  border-radius: 20px;

  background: #ffffff;
}

/* Decorative Circles */

.page-title::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: -300px;
  left: -180px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 50%;
}

.page-title::after {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -250px;
  bottom: -340px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .page-title {
    padding: 155px 0 60px;
  }

  .page-title-container {
    width: min(1450px, calc(100% - 60px));
  }
}

@media (max-width: 576px) {
  .page-title {
    padding: 140px 0 50px;
  }

  .page-title-container {
    width: min(1450px, calc(100% - 40px));
  }

  .page-title h1 {
    font-size: 38px;
  }
}

/* =========================
   Products Introduction
========================= */

.products-intro-section {
  padding: 100px 0;

  background: #fff;
}

.products-intro-container {
  width: min(1450px, calc(100% - 140px));

  margin: 0 auto;
}

.products-intro-content {
  max-width: 900px;
}

.section-subtitle {
  display: inline-block;

  margin-bottom: 16px;

  color: var(--primary-green);

  font-size: 14px;

  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.products-intro-content h2 {
  margin-bottom: 20px;

  color: var(--primary-blue);

  font-size: clamp(38px, 3.8vw, 54px);

  font-weight: 800;

  line-height: 1.15;

  letter-spacing: -1px;
}

.section-line {
  width: 120px;

  height: 4px;

  margin-bottom: 35px;

  border-radius: 20px;

  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
}

.products-intro-content p {
  margin-bottom: 22px;

  color: #5d6778;

  font-size: 18px;

  line-height: 1.9;
}

.products-intro-content p:last-child {
  margin-bottom: 0;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .products-intro-section {
    padding: 80px 0;
  }

  .products-intro-container {
    width: min(1450px, calc(100% - 60px));
  }

  .products-intro-content {
    max-width: 100%;
  }

  .products-intro-content p {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .products-intro-section {
    padding: 70px 0;
  }

  .products-intro-container {
    width: min(1450px, calc(100% - 40px));
  }

  .section-subtitle {
    font-size: 12px;

    letter-spacing: 1.5px;
  }

  .products-intro-content h2 {
    font-size: 32px;
  }

  .section-line {
    width: 90px;

    margin-bottom: 28px;
  }

  .products-intro-content p {
    font-size: 15px;

    line-height: 1.8;
  }
}

/* =========================
   Product Category
========================= */

.product-category-section {
  padding: 100px 0;

  background: #f7f7f8;
}

.product-category-container {
  width: min(1450px, calc(100% - 140px));

  margin: 0 auto;
}

/* Heading */

.product-category-heading {
  max-width: 850px;

  margin-bottom: 55px;
}

.product-category-heading span {
  display: inline-block;

  margin-bottom: 14px;

  color: var(--primary-green);

  font-size: 14px;

  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.product-category-heading h2 {
  margin-bottom: 20px;

  color: var(--primary-blue);

  font-size: clamp(38px, 3.8vw, 54px);

  font-weight: 800;

  line-height: 1.15;

  letter-spacing: -1px;
}

.product-category-heading p {
  color: #5d6778;

  font-size: 18px;

  line-height: 1.9;
}

/* Card */

.product-category-card {
  display: grid;

  grid-template-columns: 520px 1fr;

  gap: 55px;

  align-items: center;

  padding: 35px;

  background: #fff;

  border-radius: 22px;

  border: 1px solid rgba(0, 0, 0, 0.06);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

/* Image */

.product-image img {
  width: 100%;

  height: 500px;

  object-fit: cover;

  border-radius: 18px;
}

/* Details */

.product-details h3 {
  margin-bottom: 28px;

  color: var(--primary-blue);

  font-size: 30px;

  font-weight: 800;
}

.product-details ul {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px 35px;

  list-style: none;

  padding: 0;

  margin: 0;
}

.product-details li {
  position: relative;

  padding-left: 26px;

  color: #5d6778;

  font-size: 17px;

  line-height: 1.7;
}

.product-details li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--primary-green);

  font-weight: 700;
}

/* Responsive */

@media (max-width: 991px) {
  .product-category-section {
    padding: 80px 0;
  }

  .product-category-container {
    width: min(1450px, calc(100% - 60px));
  }

  .product-category-card {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .product-image img {
    height: 380px;
  }

  .product-details ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .product-category-section {
    padding: 70px 0;
  }

  .product-category-container {
    width: min(1450px, calc(100% - 40px));
  }

  .product-category-card {
    padding: 22px;
  }

  .product-image img {
    height: 260px;
  }

  .product-category-heading h2 {
    font-size: 32px;
  }

  .product-category-heading p {
    font-size: 15px;
  }

  .product-details h3 {
    font-size: 24px;
  }

  .product-details li {
    font-size: 15px;
  }
}

.product-category-card {
  margin-bottom: 70px;
}

.product-category-card:last-child {
  margin-bottom: 0;
}

.product-category-card.reverse .product-image {
  order: 2;
}

.product-category-card.reverse .product-details {
  order: 1;
}

@media (max-width: 991px) {
  .product-category-card.reverse .product-image,
  .product-category-card.reverse .product-details {
    order: initial;
  }
}
