/* =========================
FILE: style.css
========================= */

:root {
  /* --primary: #eb3237; */
  --primary: #ff0000;
  --secondary: #f58320;

  --dark: #101010;
  --text: #444;
  --white: #fff;

  --gradient: linear-gradient(135deg, #ff0000, #f58320);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 130px 0;
}

img {
  width: 100%;
  display: block;
}

/* =========================
HEADER
========================= */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.4s;
  padding: 20px 0;
}

.header.scrolled {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
}
.logo img {
  /* width: 100px; */
  height: 65px;
}

.logo span {
  color: var(--primary);
}

.navbar {
  display: flex;
  gap: 35px;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: var(--gradient);
  transition: 0.4s;
}

.navbar a:hover::after {
  width: 100%;
}

.header.scrolled .navbar a,
.header.scrolled .logo {
  color: #111;
}

/* =========================
HAMBURGER
========================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #111;
  border-radius: 10px;
}

/* =========================
HERO
========================= */

.hero {
  height: 100vh;

  background:
    /* linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), */ url("./assets/images/hero-banner2.png")
    center/cover no-repeat;

  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  /* background: linear-gradient(
    135deg,
    rgba(235, 50, 55, 0.25),
    rgba(245, 131, 32, 0.15)
  ); */
  background: linear-gradient(135deg, rgb(184 0 0 / 55%), rgb(38 38 39 / 86%));
  width: 50%;
  filter: blur(80px);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-glow-1 {
  width: 300px;
  height: 300px;
  background: #ff0000;
  top: 10%;
  left: -5%;
  opacity: 0.25;
}

.hero-glow-2 {
  width: 350px;
  height: 350px;
  background: #f58320;
  bottom: -10%;
  right: -5%;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-bottom: 100px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  color: #fff;
  margin-bottom: 20px;
  animation: fadeUp 1s ease;
}

.hero h1 {
  font-size: 75px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line {
  animation: slideUp 1s ease forwards;
}

.hero h1 .highlight {
  color: var(--secondary);
}

.hero p {
  max-width: 650px;
  color: #ddd;
  line-height: 1.9;
  margin-bottom: 0px;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;

  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
  cursor: pointer;
  border: none;
}

.primary-btn {
  background: var(--gradient);
  color: #fff;
}

.secondary-btn {
  background: #fff;
  color: #111;
}

.btn:hover {
  transform: translateY(-6px);
}

/* =========================
STATS
========================= */

.hero-stats {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  /* background: #fff; */
  /* background: linear-gradient(90deg, #ff4d00, #ff8c00); */
  background: linear-gradient(135deg, #c40000 0%, #8b0000 50%, #5a0000 100%);

  z-index: 10;

  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
}

.stat-box {
  padding: 30px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  color: #fff;
}

.stat-box:last-child {
  border-right: none;
}

.stat-box i {
  font-size: 35px;
  margin-bottom: 15px;
  /* color: var(--primary); */
}

.stat-box h3 {
  font-size: 32px;
  margin-bottom: 5px;
}

.stat-box img {
  height: 85px;
  width: auto;
  margin: auto;
}

/* =========================
SECTION TITLE
========================= */

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 48px;
  margin-top: 12px;
}

/* =========================
ABOUT
========================= */

.about {
  background: linear-gradient(180deg, #fff, #fff8f4);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-content p {
  line-height: 2;
  color: var(--text);
  margin-bottom: 20px;
}

/* =========================
FEATURES
========================= */

.feature-grid {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 40px;
  border-radius: 25px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: var(--gradient);

  opacity: 0;
  transition: 0.4s;
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 70px;
  height: 70px;

  background: var(--gradient);

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;
}

/* .feature-icon i, */
.feature-icon img {
  /* color: #fff; */
  /* font-size: 30px; */
  width: 45px;
  height: auto;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: #ff5a00;
}

.feature-card p {
  line-height: 1.8;
  color: var(--text);
}

.feature-card ul {
  padding-left: 18px;
  margin: 0;
}

.feature-card ul li {
  margin-bottom: 14px;
  line-height: 1.5;
  color: #555;
}

.feature-card ul li strong {
  color: #ff2a2a;
  font-weight: 700;
}

/* =========================
SERVICES
========================= */

.services {
  position: relative;

  background: linear-gradient(
    135deg,
    rgba(235, 50, 55, 0.04),
    rgba(245, 131, 32, 0.08)
  );
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;

  padding: 45px 35px;

  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 90px;
  height: 90px;

  background: var(--gradient);

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 25px;
}

.service-icon i {
  color: #fff;
  font-size: 38px;
}

.service-card h3 {
  margin-bottom: 18px;
}

.service-card p {
  color: var(--text);
  line-height: 1.8;
}

/* =========================
   SERVICES SECTION UPDATE
========================= */

.services-top-text {
  max-width: 900px;
  margin: 20px auto 0;
  font-size: 17px;
  line-height: 1.9;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card h3 {
  font-size: 28px;
  margin: 20px 0;
  color: #ff5a00;
  line-height: 1.4;
}

.service-card p {
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-card ul {
  padding-left: 20px;
  margin: 0;
}

.service-card ul li {
  margin-bottom: 18px;
  color: #555;
  line-height: 1.5;
  text-align: left;
}

.service-card ul li strong {
  color: #ff2a2a;
  font-weight: 700;
}

/* .service-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7b00, #ff2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
} */

.service-icon img {
  width: 55px;
  height: auto;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card h3 {
    font-size: 24px;
  }
}

/* =========================
CLIENTS
========================= */

.clients {
  /* background: #fff; */
  background: #f8f8f8;
}

/* .clients-slider {
  overflow: hidden;
  position: relative;
} */

/* .clients-track {
  display: flex;
  gap: 30px;

  width: max-content;

  animation: scroll 30s linear infinite;
  padding: 30px 0;
}

.clients-track:hover {
  animation-play-state: paused;
} */

.clients-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.clients-track {
  display: flex;
  gap: 30px;

  width: max-content;

  animation: scroll 35s linear infinite;

  will-change: transform;
  padding: 30px 0;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 15px));
  }
}

.client-card {
  width: 320px;

  background: #fff;

  border-radius: 25px;

  padding: 45px 30px;

  text-align: left;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.4s;

  border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-card:hover {
  transform: translateY(-10px);

  background: var(--gradient);
  color: #fff;
  cursor: pointer;
}

.client-card:hover .client-icon {
  background: #fff;
  color: var(--primary);
}
.client-card:hover .client-icon i {
  color: var(--gradient);
}

.client-card:hover .client-content h3,
.client-card:hover .client-content p {
  color: #fff !important;
}

.client-icon {
  width: 90px;
  height: 90px;

  margin-bottom: 24px;

  border-radius: 50%;

  background: var(--gradient);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.4s;
}

.client-icon i {
  color: #fff;
  font-size: 35px;
}

/* CONTENT */

.client-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ff5a00;

  line-height: 1.3;
  margin-bottom: 18px;

  text-transform: uppercase;
}

.client-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

/* =========================
CONTACT
========================= */

.contact {
  background: linear-gradient(180deg, #fff, #fff5ef);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-content span {
  color: var(--primary);
  font-weight: 600;
}

.contact-content h2 {
  font-size: 50px;
  margin: 20px 0;
}

.contact-content p {
  color: var(--text);
  line-height: 1.9;
  /* margin-bottom: 35px; */
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  display: flex;
  gap: 18px;
  align-items: center;

  background: #fff;

  padding: 20px;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-box i {
  width: 55px;
  height: 55px;

  border-radius: 15px;

  background: var(--gradient);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  background: #fff;

  padding: 50px;

  border-radius: 30px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.input-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 18px;

  border: none;

  background: #f5f5f5;

  border-radius: 15px;

  font-family: "Poppins", sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 2px solid var(--primary);
}
/* =========================
   FOOTER
========================= */

.footer {
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("./assets/images/footer-banner.png");

  background-size: cover;
  background-position: center;

  padding: 90px 0 30px;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    135deg,
    rgba(235, 50, 55, 0.25),
    rgba(245, 131, 32, 0.15)
  ); */
  background: linear-gradient(
    135deg,
    rgb(235 50 55 / 1%),
    rgb(245 131 32 / 0%)
  );
}

.footer .container {
  position: relative;
  z-index: 2;
}

/* =========================
   FOOTER WRAPPER
========================= */

.footer-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}

/* =========================
   LOGO & ABOUT
========================= */

.footer-logo img {
  width: 140px;
  margin-bottom: 25px;
}

.footer-text {
  color: #fff;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 25px;
  max-width: 360px;
}

/* =========================
   CONTACT
========================= */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;

  display: flex;
  align-items: center;
  gap: 12px;

  transition: 0.3s ease;
}

.footer-contact a:hover {
  transform: translateX(6px);
  color: #ffe1c4;
}

.footer-contact i {
  width: 40px;
  height: 40px;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   LINKS
========================= */

.footer-links h3,
.footer-social h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 28px;
  font-weight: 700;
}

.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 16px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;

  transition: 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ffe1c4;
  padding-left: 8px;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 55px;
  height: 55px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 20px;
  text-decoration: none;

  transition: 0.4s ease;
}

.social-icons a:hover {
  background: #fff;
  color: #ff5a00;
  transform: translateY(-6px);
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);

  padding-top: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.footer-bottom p {
  color: #fff;
  font-size: 17px;
  margin: 0;
}

/* =========================
   SCROLL TOP
========================= */

.scroll-top {
  position: absolute;
  right: 0;

  width: 65px;
  height: 65px;

  border-radius: 50%;

  background: linear-gradient(135deg, #ff8a00, #ff2a2a);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 22px;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

  transition: 0.4s ease;
}

.scroll-top:hover {
  transform: translateY(-8px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 70px 0 25px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links h3,
  .footer-social h3 {
    font-size: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .scroll-top {
    position: relative;
    right: auto;
  }
}
/* =========================
REVEAL
========================= */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
ANIMATION
========================= */

@keyframes slideUp {
  from {
    transform: translateY(120%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 992px) {
  .about-wrapper,
  .feature-grid,
  .services-grid,
  .contact-wrapper,
  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 55px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    background: url(./assets/images/mobile-hero-banner.png) no-repeat;
  }
  .navbar a {
    color: #111;
  }
  .navbar {
    height: 100vh;
    position: absolute;

    top: 100%;
    right: -100%;

    width: 260px;

    background: #fff;

    flex-direction: column;

    padding: 30px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    transition: 0.4s;
  }

  .navbar.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .contact-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .hero {
    flex-direction: column;
    height: auto;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    position: relative;
  }
  .hero-content {
    padding-top: 200px;
  }
  .contact-form {
    padding: 40px 20px;
  }
}

/* custom CSS */
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}
