/*==========================================================
                INDIAN FIBRE SHEETS
                HERO.CSS
==========================================================*/

/*==========================================================
                    HERO SECTION
==========================================================*/

.hero {
  min-height: 100vh;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  position: relative;

  overflow: hidden;

  background: url("../images/hero/hero.jpg") center/cover no-repeat;
}

/* Dark Overlay */

.hero::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(5, 20, 60, 0.92),
    rgba(5, 20, 60, 0.7)
  );
}

/*==========================================================
                    HERO CONTENT
==========================================================*/

.hero-content {
  position: relative;

  z-index: 2;

  width: min(850px, 90%);
}

.hero h1 {
  color: #ffffff;

  font-size: 65px;

  font-weight: 800;

  line-height: 1.1;

  margin-bottom: 25px;
}

.hero h1 span {
  color: #ff8c1a;
}

.hero p {
  color: #dddddd;

  font-size: 22px;

  line-height: 1.7;

  margin-bottom: 40px;
}

/*==========================================================
                    HERO BUTTONS
==========================================================*/

.hero-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

.btn-primary {
  padding: 18px 38px;

  background: #f58220;

  color: #ffffff;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.35s;
}

.btn-primary:hover {
  transform: translateY(-6px);

  box-shadow: 0 15px 35px rgba(245, 130, 32, 0.45);
}

.btn-secondary {
  padding: 18px 38px;

  border: 2px solid #ffffff;

  color: #ffffff;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.35s;
}

.btn-secondary:hover {
  background: #ffffff;

  color: #0b3d91;

  transform: translateY(-5px);
}

/*==========================================================
                    FLOATING SHAPE
==========================================================*/

.hero::after {
  content: "";

  width: 500px;

  height: 500px;

  border-radius: 50%;

  background: rgba(245, 130, 32, 0.1);

  position: absolute;

  top: -180px;

  right: -120px;

  animation: heroFloat 10s infinite linear;
}

@keyframes heroFloat {
  50% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0);
  }
}

/*==========================================================
                    HERO RESPONSIVE
==========================================================*/

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 55px;
  }

  .hero p {
    font-size: 20px;
  }
}

/* Tablet */

@media (max-width: 992px) {
  .hero {
    min-height: 90vh;

    padding-top: 100px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero p {
    font-size: 18px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
  }

  .hero h1 {
    font-size: 36px;

    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;

    max-width: 300px;

    text-align: center;
  }

  .hero::after {
    width: 300px;

    height: 300px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 15px;
  }
}
/* =====================================
   PARTNER QUOTE SECTION
===================================== */

.partner-section {
  padding: 90px 0;
  background: #f7f9fc;
}

.partner-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.partner-section .section-title h2 {
  font-size: 38px;
  color: #0b3d91;
  font-weight: 700;
}

.partner-section .section-title p {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
}

/* PARTNER GRID */

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */

.partner-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* IMAGE */

.partner-image {
  width: 100%;
  height: 330px;
  overflow: hidden;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.partner-card:hover .partner-image img {
  transform: scale(1.08);
}

/* CONTENT */

.partner-content {
  padding: 35px;
  text-align: center;
}

.partner-content i {
  font-size: 40px;
  color: #f58220;
  margin-bottom: 20px;
}

.partner-content p {
  font-size: 18px;
  line-height: 2;
  color: #444;
  font-weight: 500;
}

.partner-content h3 {
  margin-top: 25px;
  font-size: 18px;
  color: #0b3d91;
  font-weight: 600;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 992px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-image {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .partner-section {
    padding: 60px 0;
  }

  .partner-section .section-title h2 {
    font-size: 28px;
  }

  .partner-content {
    padding: 25px;
  }

  .partner-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .partner-image {
    height: 240px;
  }
}
