@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap");
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "poppins";
}

body {
  font-family: "montserrat";
}

/* Global Styles */
:root {
  --primary: #6c55f9;
  --secondary: #dd7109;
  --dark: #0f172b;
  --light: #f8f9fa;
  --text: #5c6a7e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html, body {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: #5a45d8;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(108, 85, 249, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background: #e6681e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 116, 37, 0.3);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
}

header.scrolled {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  color: var(--dark) !important;
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
}

.logo span {
  font-size: 24px;
  font-weight: 700;
  color: var(--light);
  margin-left: 10px;
}

.logo .scrolled {
  color: var(--dark) !important;
}

.nav-menu {
  display: flex;
  list-style: none;
}

#navMenu .scrolled {
  color: var(--dark);
}
.nav-menu li {
  margin: 0 15px;
  position: relative;
}

.nav-menu li a {
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--light);
}

.nav-menu li a:hover {
  color: var(--secondary);
}

.nav-menu li a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-menu li a:hover:after {
  width: 100%;
}

.nav-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.sub-menu li {
  margin: 0;
  padding: 8px 20px;
}

.sub-menu li a {
  color: var(--text);
  font-weight: 400;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--secondary);
  cursor: pointer;
}

.header-actions {
  display: flex;
  align-items: center;
}
/* Mobile Menu Styles */
.nav-menu {
  transition: all 0.3s ease;
}

.nav-menu.active {
  display: flex;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  flex-direction: column;
  background: #fff;
  z-index: 999;
  padding: 20px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.nav-menu.active li a {
  color: #000 !important;
  padding: 10px 20px;
}

.nav-menu.active li a:hover {
  color: var(--secondary);
}

@media screen and (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 999;
    padding: 20px 0;
    border-top: 1px solid #eee;
    height: 100vh;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .nav-menu li a {
    color: #000;
    font-size: 16px;
  }

  .header-actions {
    flex-direction: row-reverse;
    gap: 10px;

    .pay-btn {
      display: none;
    }
  }
}

/* Hero Section  */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #100a08;
  padding: 10% 10% 0 10%;
  background-image: url(images/glitters.webp);
  overflow: hidden;
  position: relative;
  flex-wrap: wrap;

  .btm-fr {
    position: absolute;
    left: 0;
    bottom: -45px;
    width: 100%;
    max-width: 100%;
  }

  .hero-left {
    color: #fff;
    width: 50%;
    h5 {
      color: #ff7b00;
      letter-spacing: 1px;
    }
    h1 {
      font-size: 70px;
    }
    p {
      font-size: 14px;
      margin-bottom: 50px;
    }
    a {
      position: relative;
      z-index: 100;
      background-color: #ff7425;
      padding: 10px 30px;
      border-radius: 48px;
      color: #fff;
      text-decoration: none;
      display: inline-block;
      font-weight: 600;
    }
    a:hover {
      background-color: #1a1a1a;
    }
    .half-progress {
      width: 234px;
      height: 252px;
      left: 651px;
      top: 726px;
      transform-origin: 50% 50% 0px;
      animation: half 3s infinite alternate-reverse;
      z-index: 100;
      position: absolute;
    }
  }

  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    position: relative;

    .heroimg {
      max-width: 100%;
      z-index: 100;
    }
    .growarrow {
      position: absolute;
      max-width: 200px;
      left: 70%;
      top: 20%;
      transform: translateX(-50%);
      animation: arrow 3s infinite alternate-reverse;
    }
    .circle {
      position: absolute;
      max-width: 800px;
      animation: circle 5s infinite alternate-reverse;
    }
    .three-circles {
      position: absolute;
      max-width: 700px;
      animation: three 5s infinite reverse;
    }
  }
}

/* Media Queries */

@media screen and (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
    padding: 10% 5% 0 5%;

    .hero-left,
    .hero-right {
      width: 100%;
    }

    .hero-left {
      text-align: center;
      h1 {
        font-size: 50px;
      }
      p {
        font-size: 13px;
        margin-bottom: 30px;
      }
      a {
        font-size: 14px;
      }
    }

    .hero-right {
      .circle {
        max-width: 800px;
      }
      .three-circles {
        max-width: 700px;
      }
    }

    .half-progress {
      display: none;
    }
  }
}

@media screen and (max-width: 600px) {
  .hero-section {
    padding: 30% 5% 0 5%;

    .hero-left {
      padding-bottom: 30px;
      h1 {
        font-size: 34px;
        line-height: 1.2;
      }
      p {
        font-size: 12px;
        margin-bottom: 20px;
      }
      a {
        padding: 8px 20px;
        font-size: 13px;
      }
    }

    .hero-right {
      .heroimg {
        width: 50%;
      }
      .growarrow {
        max-width: 30%;
        bottom: 10%;
        left: 50%;
      }
      .circle {
        max-width: 300px;
      }
      .three-circles {
        max-width: 200px;
      }
    }

    .btm-fr {
      bottom: -20px;
      width: 100%;
    }

    .half-progress {
      display: none;
    }
  }
}

@keyframes arrow {
  0% {
    transform: translate3d(0px, 10px, 0px);
  }
  100% {
    transform: translate3d(0px, -10px, 0px);
  }
}

@keyframes half {
  0% {
    transform: translate3d(10px, 0px, 0px);
  }
  100% {
    transform: translate3d(-10px, 0px, 0px);
  }
}

@keyframes circle {
  0% {
    transform: rotate(-40deg);
  }
  100% {
    transform: rotate(40deg);
  }
}

@keyframes three {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* End Hero Section  */

.site-footer {
  background-color: #111;
  color: #fff;
  padding: 20px 30px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  margin-bottom: 10px;
}

.footer-right a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #00aaff;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
}

.footer-right li {
  display: inline;
  margin: 0;
  padding: 0;
}

.footer-right li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 20px;
  background: #fff;
  margin-left: 12px;
  vertical-align: middle;
  border-radius: 1px;
}

@media screen and (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    margin-top: 10px;
  }

  .footer-right a {
    display: block;
    margin: 5px 0;
  }
}

/* process section */
.section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #fff7f0, #ffffff);
}

.section h5 {
  color: #ff7f00;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}

.section h5 i {
  margin-right: 8px;
}

.section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.step {
  flex: 1 1 22%;
  min-width: 200px;
  position: relative;
}

.step .circle {
  width: 150px;
  height: 150px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  position: relative;
}
.step .circle:hover{
  animation: flips 1s ease;
}

@keyframes flips {
  0%{
     transform: rotateX(0) rotateZ(0);
  }
  50%{
     transform: rotateX(180deg) rotateZ(180deg);
  }
  100%{
    transform: rotateX(0) rotateZ(0);
  }
}
.bdr-top {
  position: absolute;
  max-width: 100%;
  left: 15px;
  top: -20px;
}
.bdr-btm {
  position: absolute;
  max-width: 100%;
  left: 15px;
  top: 70px;
}
.step .circle i {
  color: #ff7f00;
  font-size: 30px;
}

.step-number {
  font-weight: bold;
  color: #ff7f00;
  background: linear-gradient(
    180deg,
    rgba(255, 123, 0, 1) 0%,
    rgba(16, 10, 8, 0) 100%
  );
  opacity: calc(10 / 10);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 30px;
  margin: 30px 0 5px;
}

.step-text {
  font-size: 14px;
  color: #555;
  line-height: 1.4em;
}

.arrow {
  position: absolute;
  top: 35px;
  right: -50px;
  font-size: 24px;
  color: #ffddb0;
}

.step:last-child .arrow {
  display: none;
}
@media (max-width: 930px) {
  .bdr-top,
  .bdr-btm {
    display: none;
  }
}
@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step {
    margin-bottom: 40px;
  }

  .arrow {
    display: none;
  }
}

/* About Section  */
.about-us-section {
  padding: 60px 20px;
  background: #f9f8f6;
  font-family: "Segoe UI", sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.about-left {
  background-image: url(images/bg-pattern-img.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}
.about-left,
.about-right {
  flex: 1 1 50%;
}

.image-wrapper {
  position: relative;
  text-align: center;
}

.about-img {
  max-width: 80%;
  height: auto;
}

.ranking-box {
  position: absolute;
  bottom: 0;
  left: 20%;
  transform: translateX(-50%);
  background: #e26a00;
  color: #fff;
  padding: 20px;
  border-radius: 14px;
  width: 260px;
  text-align: center;
}

.ranking-box h2 {
  font-size: 32px;
  margin: 0;
}

.ranking-box p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.section-label {
  text-transform: uppercase;
  color: #e26a00;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-right h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: left;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

.info-boxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 10px;
  border-radius: 12px;
}

.custom-box {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 16px;
  flex: 1 1 240px;
}

.custom-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.custom-box p {
  font-size: 14px;
  margin-bottom: 15px;
}

.learn-more-btn {
  background: #e26a00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 24px;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.features-list li {
  margin-bottom: 15px;
  font-size: 14px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.features-list li i {
  color: #e26a00;
  position: absolute;
  left: 0;
  top: 2px;
}

.chat-box {
  background: #fff;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 14px;
  font-size: 14px;
  color: #111;
  position: relative;
}

.chat-box i {
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: 20px;
  color: #e26a00;
}

@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-left,
  .about-right,
  .info-boxes {
    flex: 1 1 100%;
  }
  .section-label {
    text-align: left;
  }
  .ranking-box {
    position: static;
    transform: none;
    margin-top: 20px;
    width: 100%;
  }

  .features-list {
    margin-top: 20px;
  }

  .about-right h2 {
    font-size: 24px;
    text-align: left;
  }

  .description {
    font-size: 14px;
    text-align: left;
  }

  .custom-box,
  .features-list {
    width: 100%;
  }
  .features-list {
    text-align: left;
  }
}
/* service section  */
.services-section {
  background: #000000;
  background-image: url(images/2c72c316-1851-43cd-9145-fae5f176f7b6.png);
  color: #fff;
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .sub-heading {
  color: #ff8a00;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 62px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(5, minmax(320px, 1fr));
  gap: 30px;
  justify-content: center;
  padding: 10px 20%;
  margin-top: 200px;
  z-index: 1000;
}

.service-card {
  /* From https://css.glass */
  background: rgb(255 255 255 / 14%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(5px);
  padding: 25px;
  border-radius: 16px;
  position: relative;
  text-align: left;
  height: 320px;
  z-index: 99;
}
.service-card:nth-child(1) {
  transform: translateY(90px);
}
.service-card:nth-child(3) {
  transform: translateY(-90px);
}

.service-card:nth-child(5) {
  transform: translateY(90px);
}

.service-card:hover {
  transform: translateY(-8px);
  border: 1px solid #ff7425;

  .card-number {
    color: #fff;
  }
}

.card-number {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #ff8a00;
  font-weight: bold;
}

.icon {
  font-size: 24px;
  color: #ff8a00;
  margin-bottom: 15px;
  display: inline-block;
}

.service-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 10px 0;
}

.service-card p {
  font-size: 18px;
  line-height: 1.5;
  color: #ccc;
}

.service-card img {
  width: 68px;
  height: 68px;
}

.rocket-image {
  margin-top: 50px;
  text-align: center;
}

.rocket-image img {
  max-width: 220px;
  animation: rocket 3s infinite ease alternate-reverse;
  z-index: 9;
  position: relative;
}

.bgs {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  content: "";
  background-image: url(images/rocket-bg-img1.png);
  background-position: bottom;
  background-repeat: no-repeat;
  bottom: 0;
}

.btm-shape {
  position: absolute;
  height: 200px;
  width: 100%;
  bottom: 0;
  svg {
    position: absolute;
    fill: #fff;
    width: 110%;
    transform: rotate(180deg);
    bottom: 0;
  }
}

@keyframes rocket {
  0% {
    transform: translatey(0);
  }
  100% {
    transform: translatey(30px);
  }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 24px;
  }
  .rocket-image:after {
    bottom: -30%;
  }
  .rocket-image img {
    display: none;
  }
  .btm-shape {
    display: none;
  }
  .cards-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 16px;
  }
  .service-card:nth-child(1) {
    transform: translateY(0);
  }
  .service-card:nth-child(2) {
    transform: translateY(0);
  }
  .service-card:nth-child(3) {
    transform: translateY(0);
  }
  .service-card:nth-child(4) {
    transform: translateY(0);
  }
  .service-card:nth-child(5) {
    transform: translateY(0);
  }
  .bgs{
    opacity: 0.2;
  }
}

/* Privacy Policy Page */
.policy-page {
  padding: 80px 20px;
}
.policy-page h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
.policy-page h2 {
  margin-top: 30px;
  font-size: 24px;
  color: #222;
}
.policy-page p,
.policy-page ul {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.policy-page ul {
  padding-left: 20px;
}
/* Faq Section */

.faq-section {
  padding: 90px 20px;
}

.faq-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  /* overflow: hidden; */
  flex-wrap: wrap;
}

/* LEFT COLUMN */
.faq-left {
  flex: 1 1 40%;
  background: #fef6ed;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url(images/2c72c316-1851-43cd-9145-fae5f176f7b6.png);
  background-size: contain;
}

.faq-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
  background: #fff;
  border-radius: 20px;
  padding: 50px 10px;
  margin-top: -30%;
  border: 1px solid #f1f1f1;
}

.subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.assistance-title {
  font-size: 18px;
  margin: 20px 0 10px;
}

.contact-boxes {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-card {
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 45%;
  font-weight: 500;
  color: #222;
}

.contact-card i {
  color: #f7921e;
  font-size: 20px;
}

/* RIGHT COLUMN */
.faq-right {
  flex: 1 1 60%;
  padding: 40px;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question h4 {
  font-size: 18px;
  font-weight: 500;
  flex: 1;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.faq-question .number {
  background: linear-gradient(45deg, #f7921e, #ef8e58);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 20px;
}

.faq-question i {
  font-size: 16px;
  color: #f7921e;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 10px;
}

.faq-item.active .faq-question h4 {
  color: #f7921e;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-left,
  .faq-right {
    padding: 20px;
  }

  .contact-boxes {
    flex-direction: column;
  }

  .contact-card {
    justify-content: center;
    text-align: center;
  }

  .faq-question {
    align-items: center;
  }
}

/* Contact section  */

.contact-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 10%;
}

.info-box {
  background-color: #fffdfb;
  padding: 30px 20px;
  flex: 1;
  border-radius: 12px;
  border: 1px solid #f0ece7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.info-box:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-box i {
  font-size: 24px;
  color: white;
  background: #000;
  padding: 12px;
  border-radius: 8px;
  position: absolute;
  top: -20px;
  left: 50%;
  width: 20%;
  transform: translateX(-50%);
}

.info-box.orange i {
  background: #f7931e;
}

.info-box h3 {
  margin-top: 20px;
  font-size: 18px;
}

.info-box p {
  margin: 10px 0;
  color: #555;
  font-size: 14px;
}

.contact-bottom {
  display: flex;
  margin: 10px 10%;
}

.contact-form {
  flex: 1;
  background: #f6f3ed;
  padding: 40px;
  border-radius: 20px 0 0 20px;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.form-grid input,
textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background-color: white;
  resize: vertical;
}

textarea {
  grid-column: span 2;
  min-height: 120px;
}

.form-button {
  margin-top: 15px;
}

.form-button button {
  background: linear-gradient(to right, #f7931e, #eb7924);
  border: none;
  padding: 12px 25px;
  color: white;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.form-button button:hover {
  background: linear-gradient(to right, #eb7924, #f7931e);
}

.contact-image {
  flex: 1;
}

.contact-image img {
  width: 100%;
  border-radius: 0 20px 20px 0;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .contact-form{
    border-radius: 20px 20px 0 0;
  }

  .contact-top {
    flex-direction: column;
  }

  .contact-bottom {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  textarea {
    grid-column: span 1;
  }
  .contact-image img{
    border-radius: 0 0 20px 20px;
  }
}

/* Payment Page  */
.payment-container {
  max-width: 500px;
  margin: 60px auto;
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
h2 {
  text-align: center;
  margin-bottom: 25px;
}
label {
  font-weight: bold;
}
input,
select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.price {
  font-size: 18px;
  font-weight: bold;
  color: #008000;
  margin-bottom: 20px;
}
button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
button:hover {
  background-color: #0056b3;
}

/* Contact Page */

.contact-page {
  h2 {
    margin-top: 50px;
    font-size: 2rem;
  }
}
.cont-container {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;

  .email,
  .phone {
    border: 1px solid #000;
    padding: 20px 50px;
    margin: 10px;
    background-color: #d8e6f5;
  }
}
@media screen and (max-width: 600px) {
  .cont-container {
    flex-direction: column;
  }
}

/* custom popup */

.custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.custom-alert-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.custom-alert-content h4 {
  margin: 0 0 10px;
  color: #2e7d32;
}

.custom-alert-content p {
  margin: 0 0 20px;
  font-size: 16px;
}

.custom-alert-content button {
  background: #2e7d32;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.custom-alert-content button:hover {
  background: #1b5e20;
}

.hidden {
  display: none;
}
