@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1d4b4a;
  --secondary: #ffbd24;
  --light-yellow: #fff49a;
  --green-light: #faf6ec;
  --soft-green: #e2a71e;
  --dark: #0e2928;
  --dark-2: #1e3e3d;
  --soft-light: #f5ede0;
  --light: #eae4d8;
  --heading-title: #8b4a3c;
  --para: #333;
  --points-bold: #8b4a3c;
  --muted: #6b6b4a;
  --crem: #f5edd8;
}

body {
  background-color: #faf6f1 !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.nav-main {
  background-color: var(--dark) !important;
}

.nav-link {
  font-family: "Montserrat", sans-serif;
}

.highlight {
  color: var(--secondary);
}

.nav-cta-btn {
  background-color: var(--secondary);
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 30px !important;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

.section-text .heading-title {
  color: var(--heading-title);
  font-weight: 800;
}

.yellow {
  color: var(--secondary);
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(232, 180, 32, 0.25), transparent 15%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.hero :hover {
  transition: transform 0.4s ease;
}

.hero:hover::after {
  opacity: 1;
}

.landing-page {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0rem;
  width: 100%;
  height: 100vh;
  background-color: var(--dark);
  z-index: 0;
}
.landing-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(29, 75, 74, 0.5) 0%, transparent 70%), radial-gradient(ellipse 30% 40% at 20% 80%, rgba(139, 74, 60, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.landing-page .hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(122, 174, 172, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(122, 174, 172, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.landing-page .hero-badge {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  color: var(--secondary);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.landing-page .hero-badge::before,
.landing-page .hero-badge::after {
  content: "✦";
  font-size: 8px;
}
.landing-page .section-text {
  position: relative;
  z-index: 999;
}
.landing-page .section-text h1 {
  color: var(--soft-light);
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
}
.landing-page .section-text p {
  color: var(--light);
  border-left: 3px solid var(--secondary);
  padding-left: 18px;
  margin: 25px 0;
  font-family: "Montserrat", sans-serif;
}

.hero-image-1-absolute {
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 1300px;
}

.counters {
  display: flex;
  gap: 36px;
  margin-bottom: 40px;
  margin: 15px 0;
}
.counters .counter-box {
  text-align: center;
  border: 1px solid rgba(232, 180, 32, 0.3);
  width: 100%;
  height: auto;
  position: relative;
  margin: 15px 0;
}
.counters .counter-box::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--secondary);
  border-left: 2px solid var(--secondary);
}
.counters .counter-box::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--secondary);
  border-right: 2px solid var(--secondary);
}
.counters .counter-num {
  color: var(--white-text);
  font-size: 25px;
  font-weight: 800;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
.counters .counter-text {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.hero-visual-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-image .hero-border-line {
  width: 450px;
  height: 450px;
  border: 2px solid rgba(232, 180, 32, 0.25);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-image .hero-border-line .hero-frame-text-one {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--dark);
  padding: 4px 8px;
  border: 1px solid var(--secondary);
  z-index: 999;
  bottom: -12px;
  right: 20px;
}
.hero-visual-image .hero-border-line .hero-frame-text-two {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--dark);
  padding: 4px 8px;
  border: 1px solid var(--secondary);
  z-index: 999;
  top: -12px;
  left: 20px;
}
.hero-visual-image .hero-border-line .hero-inner-frame {
  width: 390px;
  height: 390px;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
  border: 1px solid rgba(232, 180, 32, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-visual-image .hero-border-line .hero-inner-frame .monitor-svg {
  width: 350px;
  filter: drop-shadow(0 0 30px rgba(232, 180, 32, 0.2));
}

.hero-get-qoute-btn {
  background-color: var(--points-bold);
  color: var(--white-text);
  border-radius: none !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
}
.hero-get-qoute-btn:hover {
  background-color: var(--light);
  color: var(--dark);
}

.hero-btn-service {
  color: var(--dark);
  margin-left: 15px;
  font-family: "Montserrat", sans-serif;
  background-color: #e2a71e;
  padding: 16px 36px;
  text-decoration: none;
  font-weight: 600;
}
.hero-btn-service i {
  font-size: 18px;
}
.hero-btn-service:hover {
  color: var(--light);
}

.nav-cta-btn:hover {
  background-color: var(--light);
  color: var(--dark);
}

.first-section {
  background-color: var(--primary);
  overflow: visible;
  position: relative;
}
.first-section .section-img {
  position: relative;
  z-index: 10;
  aspect-ratio: 1;
  width: 100%;
  min-height: 300px;
  border-radius: 500px;
}
.first-section .section-img::after {
  content: "";
  position: absolute;
  top: -45%;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
}
.first-section .section-img img {
  content: "";
  position: absolute;
  top: -45%;
  left: 0;
  width: 95%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  box-shadow: none;
  border-radius: 100px 100px 400px 500px;
  border: 10px solid #f5ecd7;
}
.first-section .section-text {
  padding: 10px;
}

.section-text h2 {
  color: var(--dark);
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  letter-spacing: 1px;
}
.section-text .heading-h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 45px;
  line-height: 1.2;
  letter-spacing: 1px;
}
.section-text p {
  font-family: "Montserrat", sans-serif;
}

/* Marquee container */
.marquee {
  z-index: 1;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
  padding: 8px 0;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

/* Moving text */
.marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 25s linear infinite;
  position: relative;
}

.marquee-track span {
  color: var(--secondary);
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
  margin-right: 40px;
}

/* Animation */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.second-section .section-card .text h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  letter-spacing: 1px;
  font-weight: 900;
}
.second-section .section-card .text p {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.first-section .btn-one:hover {
  background-color: var(--primary);
}

.high-light {
  color: var(--heading-title);
}

.second-section {
  background: var(--green-light) !important;
  position: relative;
}
.second-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(45, 58, 30, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(45, 58, 30, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.second-section .section-card {
  background-color: var(--crem) !important;
  padding: 40px 25px;
  position: relative;
  border: 1px solid var(--crem) !important;
  border-radius: 25px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}
.second-section .section-card .num {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(45, 58, 30, 0.06);
  line-height: 1;
  position: absolute;
  top: 35px;
  right: 10px;
}
.second-section .section-card .icon i {
  width: 55px;
  height: 55px;
  background: var(--heading-title);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--light);
}
.second-section .section-card .text h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
}
.second-section .section-card .text p {
  font-family: "Montserrat", sans-serif;
  color: var(--para);
  font-size: 16px;
}
.second-section .section-btn .services-cta {
  background-color: var(--crem) !important;
  color: var(--dark-2);
}
.second-section .absolute-column-1 {
  position: absolute;
  top: -205px;
  right: 0px;
  width: 400px;
  height: 350px;
  z-index: 3;
}
.second-section .absolute-column-1::after {
  content: "";
  position: absolute;
  top: -30%;
  left: 0%;
  width: 300px;
  height: 300px;
  border-radius: 100%;
  z-index: -1;
  border: 60px solid rgba(232, 179, 32, 0.185);
}
.second-section .absolute-column-1 img {
  border-radius: 150px 0 0 150px;
  border-bottom: 10px solid #0e2928;
  border-top: 10px solid #0e2928;
  border-left: 10px solid #0e2928;
}
.second-section .absolute-column-img-2 {
  position: absolute;
  bottom: -50px;
  left: 0px;
  width: 600px;
  height: auto;
  z-index: 3;
}

.third-section-index {
  background-color: var(--dark);
  position: relative;
  overflow: visible;
  z-index: 1;
}
.third-section-index::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 100px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 10;
}
.third-section-index::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: -100px;
  width: 500px;
  height: 500px;
  border: 60px solid rgba(232, 179, 32, 0.185);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.third-section-index .section-card {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(232, 180, 32, 0.1);
}
.third-section-index .section-card .num-text {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}
.third-section-index .section-card .text h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.third-section-index .section-card .text p {
  font-size: 18px;
  color: rgba(190, 189, 186, 0.7);
  line-height: 1.8;
}
.third-section-index .section-img {
  position: relative;
  z-index: 0;
}
.third-section-index .section-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  position: absolute;
  z-index: 0;
  left: 80px;
  bottom: -135px;
}

.fourth-section {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.fourth-section:after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 600px;
  background-color: #1e3e3d;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
  clip-path: polygon(0 0, 100% 18%, 100% 100%, 0% 100%);
}
.fourth-section .section-card {
  background: var(--dark-2);
  border: 1px solid var(--primary);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.fourth-section .section-img {
  position: relative;
  z-index: 0;
}
.fourth-section .section-img img {
  position: relative;
  z-index: 1;
  border-radius: 10% 50% 10% 50%;
  box-shadow: none;
  border: 5px solid #fff;
}
.fourth-section .section-img .u-shape {
  border-radius: 50%;
  width: 600px;
  height: 600px;
  border: 3px solid var(--dark);
  background-color: var(--green-light);
  z-index: 0;
}
.fourth-section .circle-card-one {
  transform: translateX(-20px) !important;
}
.fourth-section .circle-card-one .icon i {
  border: 5px solid #faf5f0;
}
.fourth-section .fourth-sec-card {
  position: relative;
  z-index: 1;
}
.fourth-section .fourth-sec-card .circle-card-two {
  top: 15px;
  left: -75px;
}
.fourth-section .fourth-sec-card .circle-card-two .icon i {
  border: 5px solid #faf5f0;
}
.fourth-section .circle-card-third {
  display: flex;
  gap: 45px;
  top: 300px !important;
  left: 35px !important;
  background-color: #fff;
}
.fourth-section .circle-card-third .icon i {
  border: 5px solid #fff;
}
.fourth-section .circle-card-fourth {
  display: flex;
  gap: 35px;
  top: 455px !important;
  left: -45px !important;
  background-color: #fff;
  border: none !important;
}
.fourth-section .circle-card-fourth .icon i {
  border: 5px solid #fff;
}
.fourth-section .section-circle-card {
  display: flex;
  gap: 45px;
  align-items: center;
  border: 2px solid #0e2928;
  padding: 10px;
  border-radius: 20px;
  margin: 20px 0;
  transform: translateX(25px);
}
.fourth-section .section-circle-card:hover .icon {
  transform: translateX(-10px);
  transition: all 0.3s ease-in-out;
}
.fourth-section .section-circle-card:hover .icon i {
  color: var(--soft-light);
}
.fourth-section .section-circle-card .icon {
  margin-left: -100px;
  transition: all 0.3s ease-in-out;
}
.fourth-section .section-circle-card .icon i {
  font-size: 25px;
  width: 70px;
  height: 70px;
  background-color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark);
  border-radius: 50%;
}
.fourth-section .section-circle-card .text h3 {
  font-size: 18px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  letter-spacing: 2px;
  color: var(--primary);
}
.fourth-section .section-circle-card .text p {
  font-size: 16px;
}

.fifth-section {
  background-color: var(--dark-2);
  position: relative;
  z-index: 1;
  padding-bottom: 6em;
}
.fifth-section::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: #fff;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}
.fifth-section .section-text p {
  color: var(--light);
}
.fifth-section h3 {
  color: var(--secondary);
}
.fifth-section .text .points-bold {
  color: var(--light);
}
.fifth-section .text p {
  color: var(--light);
}

.faq-section .faq-list {
  border-top: 1px solid var(--soft-green);
}
.faq-section .faq-item {
  border-bottom: 1px solid var(--soft-green);
  border-radius: 2px !important;
}
.faq-section .faq-item .faq-question {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.5px;
  font-weight: 300;
  text-transform: uppercase;
  gap: 20px;
  background-color: #faf6f1;
}
.faq-section .faq-item .faq-answer {
  background-color: #faf6f1;
}
.faq-section .faq-item .faq-answer p {
  background-color: #faf6f1;
  border-left: 3px solid var(--secondary);
  padding: 0 0 22px;
  line-height: 1.9;
  padding-left: 20px;
}
.faq-section .faq-item .faq-question i {
  font-size: 18px;
  color: var(--secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--light);
}

.cta-section {
  background-color: #fff8c2;
  position: relative;
  z-index: 0;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0, 0, 0, 0.075) 40px, rgba(0, 0, 0, 0.075) 41px);
}
.cta-section .section-text {
  background-color: var(--dark);
  border: 1px solid #0e2928;
}
.cta-section .section-text h2 {
  color: #fff;
}
.cta-section .section-text h3 {
  color: var(--light-yellow);
}
.cta-section .section-text p {
  color: var(--soft-light);
}
.cta-section .cta-section-num {
  background-color: var(--light);
  border-radius: 8px;
}
.cta-section .cta-section-num:hover {
  background-color: var(--heading-title);
}
.cta-section .cta-section-email {
  background-color: var(--heading-title);
  border-radius: 8px;
  color: var(--white-text);
}
.cta-section .cta-section-email:hover {
  background-color: var(--soft-light);
  color: var(--dark);
}

.faq-section .faq-list {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-section .faq-item {
  background: var(--soft-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.faq-section .faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 22px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 23px;
  font-weight: 600;
  color: #1b1b1b;
  text-align: left;
}
.faq-section .faq-question i {
  font-size: 18px;
  color: var(--heading-title);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: height 0.4s ease;
}
.faq-section .faq-answer p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--para);
  padding-bottom: 22px;
}
.faq-section .faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-section .faq-item.active .faq-question i {
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .faq-section .faq-section {
    padding: 60px 0;
  }
  .faq-section .faq-heading h2 {
    font-size: 30px;
  }
  .faq-section .faq-heading p {
    font-size: 15px;
  }
  .faq-section .faq-question {
    font-size: 17px;
    padding: 18px 18px;
  }
  .faq-section .faq-answer {
    padding: 0 18px;
  }
  .faq-section .faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    padding-bottom: 18px;
  }
}

footer {
  background-color: var(--dark);
}
footer .social-media {
  display: flex;
  gap: 15px;
}
footer .social-media span i {
  font-size: 21px;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  border: 1px solid rgba(232, 180, 32, 0.25);
  background-color: var(--dark);
  color: var(--soft-green);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  transition: all 0.3s ease-in-out;
}
footer .social-media span i:hover {
  background-color: #fbdc6e;
  color: var(--heading);
  transform: translateY(-2px);
}
footer .social-media .footer-divider {
  color: var(--white-text);
}
footer h3 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1.5px;
}
footer ul {
  padding: 0;
}
footer ul li {
  margin: 15px 0;
  transition: all 0.3s ease-in-out;
  font-family: "Montserrat", sans-serif;
}
footer ul li:hover {
  transform: translateX(4px);
}
footer ul li:hover span i {
  color: #fbdc6e;
}
footer ul li:hover a {
  color: #fbdc6e;
}
footer ul li span i {
  color: var(--secondary);
}
footer ul li a {
  text-decoration: none;
  color: var(--soft-light);
  font-family: "Montserrat", sans-serif;
}
footer .section-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  margin: 8px 0;
  color: var(--light);
}
footer .footer-cta {
  background-color: var(--dark-2);
  border-radius: 20px;
  padding: 20px;
}
footer .footer-cta h3 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1.5px;
  font-size: 18px;
  color: var(--soft-light);
}
footer .footer-cta .points {
  margin: 15px 0;
  gap: 8px;
  align-items: center;
}
footer .footer-cta .points .icon i {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--dark);
  color: var(--white-text);
}
footer .footer-cta .points .text a {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: var(--white-text);
  font-size: 17px;
  font-weight: 600;
}
footer .footer-cta .btn-one {
  background-color: var(--heading-title);
  color: var(--white-text);
}
footer .footer-cta .btn-one:hover {
  background-color: #fbdc6e;
  color: var(--heading);
}
footer .footer-cpoywrights {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
footer .footer-cpoywrights .section-text p {
  font-size: 0.98rem;
  color: var(--light);
  display: inline-block;
  font-family: "Montserrat", sans-serif;
}
footer .footer-cpoywrights .text {
  display: flex;
  align-items: end;
  justify-content: end;
  margin-top: 15px;
}
footer .footer-cpoywrights .text a {
  font-size: 0.98rem;
  text-decoration: none;
  color: var(--light);
  font-family: "Montserrat", sans-serif;
}

/* ===================== */
/* 🎯 Base setup */
/* ===================== */
.monitor-svg {
  width: 320px;
  display: block;
  margin: auto;
  animation: heroFloat 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transform-origin: center;
}

/* ===================== */
/* 🌊 Smooth floating (premium easing) */
/* ===================== */
@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.01);
  }
}
/* ===================== */
/* 💻 Screen gradient glow */
/* ===================== */
.screen {
  animation: screenPulse 4s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 8px rgba(232, 180, 32, 0.15));
}

@keyframes screenPulse {
  0% {
    opacity: 0.85;
  }
  100% {
    opacity: 1;
  }
}
/* ===================== */
/* ✍️ Typing + shimmer lines */
/* ===================== */
.line {
  transform-origin: left;
  transform: scaleX(0);
  animation: typingPremium 1.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.line1 {
  animation-delay: 0.4s;
}

.line2 {
  animation-delay: 0.7s;
}

.line3 {
  animation-delay: 1s;
}

.line4 {
  animation-delay: 1.3s;
}

@keyframes typingPremium {
  0% {
    transform: scaleX(0);
    opacity: 0.3;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
/* subtle shimmer */
.line::after {
  content: "";
  position: absolute;
}

/* ===================== */
/* 🧩 Cards (parallax float) */
/* ===================== */
.card {
  transform-origin: center;
  animation: cardFloatPremium 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.card1 {
  animation-delay: 0s;
}

.card2 {
  animation-delay: 0.8s;
}

.card3 {
  animation-delay: 1.6s;
}

@keyframes cardFloatPremium {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
}
/* ===================== */
/* ✨ Stars (twinkle + drift) */
/* ===================== */
.star {
  transform-origin: center;
  animation: starTwinkle 3s ease-in-out infinite;
}

.star1 {
  animation-delay: 0s;
}

.star2 {
  animation-delay: 1s;
}

.star3 {
  animation-delay: 2s;
}

@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.8) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.4) rotate(10deg);
  }
}
/* ===================== */
/* 🔵 Dots (soft pulse glow) */
/* ===================== */
.dot {
  animation: dotPulsePremium 3s ease-in-out infinite;
  filter: blur(0.2px);
}

.dot1 {
  animation-delay: 0s;
}

.dot2 {
  animation-delay: 1s;
}

@keyframes dotPulsePremium {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
/* ===================== */
/* 💡 Frame glow (premium) */
/* ===================== */
.monitor-frame {
  animation: frameGlowPremium 5s ease-in-out infinite alternate;
}

@keyframes frameGlowPremium {
  0% {
    stroke-opacity: 0.5;
    filter: drop-shadow(0 0 2px rgba(232, 180, 32, 0.2));
  }
  100% {
    stroke-opacity: 1;
    filter: drop-shadow(0 0 8px rgba(232, 180, 32, 0.4));
  }
}
/* ===================== */
/* 🟨 Mini box flicker */
/* ===================== */
.mini-box {
  animation: miniFlicker 4s ease-in-out infinite;
}

@keyframes miniFlicker {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.7;
  }
}
/* ===================== */
/* 🖱️ Hover interaction (premium touch) */
/* ===================== */
.monitor-svg:hover {
  transform: translateY(-18px) scale(1.02);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.monitor-svg:hover .card {
  transform: translateY(-14px) scale(1.02);
}

/* ===================== */
/* 🎬 Smooth entrance animation */
/* ===================== */
.monitor-svg {
  opacity: 0;
  animation: heroFloat 6s cubic-bezier(0.4, 0, 0.2, 1) infinite, fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
#cursor {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
#typingText {
  position: absolute;
}

@media (max-width: 425px) {
  .absolute-column-img-2 {
    position: relative !important;
    width: 100% !important;
    height: auto;
    z-index: 3;
  }
  .third-section-index .section-img img {
    position: relative !important;
    left: 0px;
    bottom: 0px;
  }
  .fourth-section .section-circle-card .icon {
    margin-left: 0px;
  }
  .fourth-section .section-circle-card {
    display: block !important;
    gap: 45px;
    align-items: center;
    border: 2px solid #0e2928;
    padding: 10px;
    border-radius: 20px;
    margin: 20px 0;
    transform: translateX(0px);
  }
  .fourth-section .circle-card-one {
    transform: translateX(0px) !important;
  }
  .third-section-index .section-card {
    flex-direction: column;
  }
  .second-section .absolute-column-1 {
    display: none;
  }
  .first-section .section-img {
    min-height: unset;
  }
  .first-section .section-img img {
    content: "";
    position: unset;
    top: -45%;
    left: 0;
    width: 95%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    box-shadow: none;
    border-radius: 100px 100px 400px 500px;
    border: 10px solid #f5ecd7;
  }
  .landing-page .section-text h1 {
    color: var(--soft-light);
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
  }
  .hero-image-1-absolute {
    position: relative;
    width: 100%;
    right: 0;
  }
}/*# sourceMappingURL=style-2.css.map */