* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0027dc, #0f54ea, #5184f1);
  color: #ffffff;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  opacity: 3;
}

/* BACKGROUND IMAGE */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/hero.png") center/cover no-repeat;
  z-index: 1;
}

/* BLUE OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0027dc, #0f54ea, #5184f1);
  opacity: 0.3;
  z-index: 2;
}

/* CONTENT LAYER */
.hero > * {
  position: relative;
  z-index: 3;
}

/* LOGO TOP-LEFT */
.logo {
  position: absolute;
  top: 90px;
  left: 60px;
  width: 620px;
}

/* FORM CARD */
.form-container {
  background: #f5f7ff;
  color: #000000;
  padding: 52px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  max-width: 620px;
  justify-self: end;
}

.form-container h2 {
  color: #0027dc;
  margin-bottom: 10px;
  font-size: 24px;
}

.form-container p {
  color: #000000;
  margin-bottom: 25px;
  font-size: 14px;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #5184f1;
  outline: none;
  font-size: 14px;
}

input:focus,
select:focus {
  border-color: #0027dc;
  box-shadow: 0 0 0 2px rgba(0, 39, 220, 0.2);
}

button {
  margin-top: 12px;
  padding: 14px;
  background: linear-gradient(135deg, #0027dc, #0f54ea);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background: linear-gradient(135deg, #0f54ea, #5184f1);
  transform: translateY(-2px);
}

/* SECTION 2 */
.section2 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 80px 100px;
  background: linear-gradient(135deg, #0027dc, #0f54ea);
  color: #ffffff;
}

/* BACKGROUND BLOCK IMAGE */
.section2-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.section2-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* CONTENT LAYER */
.section2-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT SIDE */
.section2-left h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 40px;
}

.section2-image {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* RIGHT SIDE */
.section2-right p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 30px;
}

/* BUTTON */
.section2-btn {
  padding: 14px 32px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s ease;
}

.section2-btn:hover {
  background: #ffffff;
  color: #0027dc;
}

/* USP SECTION */
.usp-section {
  background: #0f54ea;
  padding: 40px 0;
  color: #ffffff;
}

/* EACH BAR */
.usp-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 22px 60px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.usp-item:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* HEADER */
.usp-header {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.usp-icon {
  font-size: 26px;
  opacity: 0.8;
}

.usp-header h3 {
  font-size: 22px;
  font-weight: 600;
}

.usp-header p {
  font-size: 16px;
  text-align: right;
  opacity: 0.9;
}

/* DROPDOWN CONTENT */
.usp-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin-left: 46px;
  margin-top: 10px;
}

/* ACTIVE STATE */
.usp-item.active .usp-content {
  max-height: 200px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .usp-header {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .usp-header p {
    text-align: left;
  }

  .usp-item {
    padding: 20px 30px;
  }
}

/* CTA SECTION */
.cta-section {
  background: #0027dc;
  color: #ffffff;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
}

/* HEADING */
.cta-section h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* PARAGRAPH */
.cta-section p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 50px;
  opacity: 0.95;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  gap: 30px;
}

.cta-buttons button {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-buttons button:hover {
  background: #ffffff;
  color: #0027dc;
}


/* FEATURE SECTION */
.feature-section {
  background: #5184f1;
  text-align: center;
  padding-bottom: 200px;
  padding-top: auto;
}

/* IMAGE */
.feature-image img {
  width: 100%;
  max-width: 1100px;
  border-radius: 6px;
  margin-bottom: 50px;
}

/* CARDS */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: -8rem auto;
}

.feature-card {
  background: #0027dc;
  padding: 30px 20px;
  border-radius: 4px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card img {
  width: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.feature-card h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* FEEDBACK SECTION */
.feedback-section {
  background: #f6ecde;
  color: #222;
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.feedback-left h1 {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}

.feedback-left p {
  font-size: 18px;
  max-width: 400px;
}

/* RIGHT */
.feedback-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feedback-right button {
  background: #70695e;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.feedback-right button:hover {
  background: #da9b2e;
}

.feedback-right small {
  margin-top: 10px;
  font-size: 12px;
  color: #555;
}



/* FOOTER */
footer {
  background: linear-gradient(135deg, #000000, #0027dc);
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #ffffff;
}

.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 80px 100px 40px;
}

/* TOP SECTION */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LOGO */
.footer-logo {
  width: 360px;
  height: 320px;
  overflow: hidden;
}

/* TEXT BLOCKS */
.footer-info h4,
.footer-hours h4 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 500;
}

.footer-info p,
.footer-hours p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: #ffffff;
  margin: 50px 0 30px;
  opacity: 0.4;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 18px;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social img {
  width: 24px;
  filter: invert(1);
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Fade from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Fade from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Zoom in */
.reveal-zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.reveal-zoom.active {
  opacity: 1;
  transform: scale(1);
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .site-footer {
    padding: 60px 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 30px;
    text-align: center;
  }

  .logo {
    position: static;
    margin: 0 auto 20px;
  }

  .form-container {
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .section2 {
    padding: 60px 30px;
  }

  .section2-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section2-left h1 {
    font-size: 36px;
  }

  .section2-image {
    margin: 0 auto;
  }

  .section2-right p {
    margin: 0 auto 30px;
  }
}

@media (max-width: 768px) {
  .cta-section h1 {
    font-size: 36px;
  }

  .cta-section p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 20px;
  }
}


@media (max-width: 900px) {
  .feedback-section {
    grid-template-columns: 1fr;
    padding: 60px 30px;
    text-align: center;
  }

  .feedback-left h1 {
    font-size: 48px;
  }

  .feedback-right button {
    text-align: center;
  }
}