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

:root {
  --heading: #000;
  --para:#333;
  --high-light: #fb6e8d;
  --btn-color:#ffbd00;
  --white-text:#fff;
  --heading-highlight:#b92c54;
  --dark-bg:#1d4b4a;
  --bg-light:#bfd6d3;
  --points-bold: #ac4642;
  --secondary-color:#ffc70f;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --dark:#0e2928;
}

body {
  font-family: "Zalando Sans", sans-serif;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

.section-text h1 {
  font-family: "Zalando Sans", sans-serif;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin: 15px 0;
}
.section-text p {
  font-family: "Zalando Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  margin: 15px 0;
  color: var(--para);
}
.section-text h2 {
  font-family: "Zalando Sans", sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0;
}
.section-text .heading-title {
  color: var(--heading-highlight);
}
.section-text .heading-h3 {
  font-family: "Zalando Sans", sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0;
}

.points-bold {
  font-weight: 600;
  color: var(--points-bold);
}

.high-light {
  font-weight: 700;
  color: var(--high-light);
}

a {
  text-decoration: none;
  font-family: "Zalando Sans", sans-serif;
}

ul {
  list-style: none !important;
  font-family: "Zalando Sans", sans-serif;
}
ul li {
  list-style: none !important;
}

section {
  padding: 4rem 0;
  position: relative;
  z-index: 0;
}

.li::marker {
  content: none !important;
}

img {
  width: 100%;
  display: block;
}

.section-img img {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.cta-heading {
  font-size: 40px !important;
}

.btn-one {
  font-family: "Zalando Sans", sans-serif;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 500;
  background-color: var(--btn-color);
  color: var(--heading);
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.btn-one:hover {
  transform: translateY(-4px);
  background-color: #f43d5d;
  color: var(--white-text);
}

.section-card {
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 16px;
  position: relative;
}
.section-card .text h3 {
  font-family: "Zalando Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 15px 0;
}
.section-card .text p {
  font-family: "Zalando Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin: 15px 0;
  color: var(--para);
}
.section-card .icon i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e6e8f2;
}

.points {
  display: flex;
  gap: 15px;
}
.points .icon i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--heading-highlight);
  color: var(--white-text);
  display: flex;
  justify-content: center;
  align-items: center;
}
.points .text h3 {
  font-family: "Zalando Sans", sans-serif;
  font-size: 24px;
  font-weight: 900;
  margin: 15px 0;
}
.points .text p {
  font-family: "Zalando Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin: 15px 0;
  color: var(--para);
}

.section-img img {
  border-radius: 12px;
}

/* HEADER FIX */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 0;
  background-color: #0e2928;
  border: 1px solid #234f52;
  transition: all 0.3s ease;
  z-index: 9999;
  overflow: visible;
}

/* LOGO */
.navbar-brand .brand-logo {
  height: 40px !important;
}

/* NAVBAR */
.nav-main {
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  z-index: 1045;
}

.nav-main-links {
  gap: 6px;
}

.nav-main-link {
  color: rgba(255, 254, 254, 0.938) !important;
  font-weight: 500 !important;
  font-size: 18px !important;
  padding: 10px 12px !important;
  border-radius: 12px;
}

.nav-main-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12);
}

/* ITEMS */
.dropdown-menu .dropdown-item {
  margin: 4px 0;
  font-weight: 500;
  color: #333;
  transition: 0.2s;
  margin-left: 0px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent !important;
}

/* HOVER OPEN */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}
/* MOBILE FIX */
@media (max-width: 991px) {
  .mega-menu {
    width: 100%;
    padding: 15px;
  }
}
/* MOBILE MENU */
.offcanvas-tophead {
  background: var(--dark);
}

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

.btn-link-mobile {
  text-align: left;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(14, 23, 38, 0.1);
  background: rgba(18, 39, 74, 0.03);
  font-weight: 700;
  margin: 8px 0;
  display: flex;
  align-items: center;
}

/* MEGA MENU */
.mega-menu {
  width: 1000px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  left: -100px;
  top: 65px;
}

/* HOVER OPEN */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}
/* MOBILE */
@media (max-width: 991px) {
  .mega-menu {
    width: 100%;
  }
}
.dropdown-parent {
  display: flex;
  gap: 14px;
  padding: 8px 14px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
}
.dropdown-parent .icon {
  background-color: #fff;
  border: 1px solid rgba(51, 51, 51, 0.1450980392);
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.dropdown-parent .icon img {
  width: 24px;
  height: 24px;
}
.dropdown-parent:hover {
  background: rgba(18, 39, 74, 0.05);
  color: var(--btn-color);
}
.dropdown-parent a {
  text-align: left !important;
  padding: 0;
  margin: 0 !important;
}
.dropdown-parent .di-desc {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.4;
  margin: 0 !important;
}

.dropdown-hr {
  width: 1px;
  height: 100%;
  background: #e5e7eb; /* light gray */
  margin: 0 20px;
}

.drop-down-btns .drop-down-call-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;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  padding: 16px 26px;
}
.drop-down-btns .drop-down-mail-btn {
  color: #fff;
  margin-left: 15px;
  font-family: "Montserrat", sans-serif;
  background-color: #e2a71e;
  padding: 16px 26px;
  text-decoration: none;
}

.header-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-img img {
  width: 400px;
  height: 400px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10001;
  margin-left: 12px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 5px;
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE DRAWER */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0f1724;
  z-index: 9998;
  padding: 20px 20px 40px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
}

.btn-link-mobile {
  color: #fff !important;
  padding: 13px 16px !important;
  border-radius: 12px;
  font-weight: 500;
  display: block;
  padding: 13px 16px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}
.btn-link-mobile:hover {
  background: rgba(255, 255, 255, 0.07) !important;
}

.navbar-toggler {
  padding: 13px !important;
  border-radius: 12px !important;
  border: none;
  color: #000000 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  background: rgb(255, 255, 255) !important;
}

.mob-accordion-btn.open {
  background: rgba(255, 255, 255, 0.07);
}

.mob-accordion-btn svg {
  transition: transform 0.25s;
}

.mob-accordion-btn.open svg {
  transform: rotate(180deg);
}

.mob-sub {
  display: none;
  padding: 4px 0 4px 16px;
  flex-direction: column;
  gap: 2px;
}

.mob-sub.open {
  display: flex;
}

.mob-sub a {
  padding: 10px 16px;
  border-radius: 10px;
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.mob-sub a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.mob-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.mob-ctas a {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.mc-enquiry {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.mc-enquiry span i {
  color: #ffbd24;
}

.mc-phone {
  background: #ffbd24;
  color: #0f1724;
}
.mc-phone span i {
  color: #0f1724;
  font-size: 16px;
  margin-left: 15px;
  font-weight: 700;
}

.dropdown-mobile-link {
  color: #c4c4c4 !important;
}

/* MOBILE ONLY */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
  .navbar-collapse {
    display: none !important;
  }
  .mobile-drawer {
    display: flex;
  }
}
.offcanvas-header .mobile-brand-text {
  color: #fffde6 !important;
  font-size: 28px;
}
.offcanvas-header .mobile-brand-small-text {
  color: #fff !important;
}

.btn-close {
  filter: invert(1) brightness(2);
}

footer {
  padding: 4rem 0;
  background-color: var(--dark-bg);
}
footer .footer-info {
  padding: 8px;
}
footer .footer-logo img {
  width: 80%;
}
footer h3 {
  color: var(--btn-color);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block !important;
}
footer .section-text p {
  font-size: 17px;
  margin: 8px 0;
  color: var(--white-text);
}
footer ul {
  padding: 0;
}
footer ul li {
  margin: 15px 0;
  transition: all 0.3s ease-in-out;
}
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: #f43d5d;
}
footer ul li a {
  text-decoration: none;
  color: var(--white-text);
}
footer .points {
  margin: 15px 0;
  gap: 8px;
}
footer .points .icon i {
  width: 40px;
  height: 40px;
}
footer .points .text a {
  text-decoration: none;
  color: var(--white-text);
  font-size: 18px;
  font-weight: 600;
}
footer .footer-cta {
  background-color: var(--white-text);
  border-radius: 20px;
  padding: 20px;
}
footer .footer-cta h3 {
  font-size: 18px;
  color: var(--heading-highlight);
  position: relative;
  display: inline-block !important; /* IMPORTANT */
  padding-bottom: 10px;
}
footer .footer-cta h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 189, 36, 0.5), transparent);
}
footer .footer-cta .points {
  margin: 15px 0;
  gap: 8px;
  align-items: center;
}
footer .footer-cta .points .icon i {
  width: 40px;
  height: 40px;
}
footer .footer-cta .points .text a {
  text-decoration: none;
  color: var(--heading);
  font-size: 18px;
  font-weight: 600;
}
footer .footer-cta .btn-one {
  background-color: #f43d5d;
  color: var(--white-text);
}
footer .footer-cta .btn-one:hover {
  background-color: #fbdc6e;
  color: var(--heading);
}
footer .social-media {
  display: flex;
  gap: 15px;
}
footer .social-media span i {
  font-size: 21px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--heading-highlight);
  color: var(--white-text);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
}
footer .social-media span i:hover {
  background-color: #fbdc6e;
  color: var(--heading);
}
footer .social-media .footer-divider {
  color: var(--white-text);
  display: inline-block;
}

.footer-cpoywrights {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-cpoywrights .section-text p {
  font-size: 0.98rem;
  color: var(--white-text);
  display: inline-block;
}
.footer-cpoywrights .text {
  display: flex;
  align-items: end;
  justify-content: end;
  margin-top: 15px;
}
.footer-cpoywrights .text a {
  font-size: 0.98rem;
  text-decoration: none;
  color: var(--white-text);
}

@media (max-width: 768px) {
  .inner-landing-page {
    height: auto !important;
  }
  .inner-landing-page::after {
    right: 0px !important;
    top: 350px !important;
    width: 400px !important;
    height: 400px !important;
  }
}
@media (max-width: 425px) {
  .hero-section {
    height: auto !important;
  }
  .section-text h1 {
    font-size: 40px;
  }
  .section-text p {
    font-size: 18px;
  }
  .section-text h2 {
    font-size: 31px;
  }
  .section-text .heading-h3 {
    font-size: 31px !important;
  }
  section {
    padding: 2rem 0 !important;
  }
  .brand-logo {
    height: 40px !important;
  }
  .hero-section .counters p {
    font-size: 16px !important;
  }
  .cta-section .card-right {
    margin-left: 0px !important;
  }
  .cta-section .section-text {
    padding: 15px !important;
  }
  .cta-section .section-text h2 {
    color: var(--high-light);
    font-size: 25px !important;
  }
  .cta-section-btn {
    display: flex;
    justify-content: space-between;
  }
  .btn-one {
    font-size: 14px;
    padding: 12px;
  }
  .circle-btn {
    top: 0 !important;
    right: 0 !important;
  }
  .third-section .section-card .num {
    top: 0px !important;
    right: 0px !important;
  }
  .inner-landing-page {
    height: auto !important;
    padding: 4rem 1rem !important;
  }
  .about-us-fourth-section .section-card {
    flex-direction: column;
  }
  .cta-section .section-img img {
    display: none !important;
  }
  .third-section-index::after {
    display: none !important;
  }
  .hero-btn-service {
    padding: 16px 18px !important;
  }
  .hero-get-qoute-btn {
    padding: 16px 18px !important;
  }
  .section-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .hero-image img {
    height: auto !important;
  }
  .inner-landing-page::after {
    display: none !important;
  }
  .hero-image {
    height: auto !important;
  }
  .service-section-section .section-card {
    padding: 15px !important;
  }
  .footer-cpoywrights .col-lg-6 {
    display: flex;
    justify-content: center;
  }
  .contact-us-section .contact-us-card {
    flex-direction: column !important;
  }
  .contact-form {
    padding: 20px !important;
  }
  .brochure-desinging-second-section {
    height: auto !important;
    margin-bottom: 0 !important;
  }
}
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0rem;
  width: 100%;
  height: 100vh;
  background-color: #1D4B4A;
}
.hero-section .section-text h1 {
  color: var(--white-text);
}
.hero-section .section-text p {
  color: var(--white-text);
}
.hero-section .counters {
  background-color: #216769;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 15px;
  border-radius: 8px;
  margin: 20px 0;
}
.hero-section .counters p {
  color: #ffe432;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.hero-section .section-img img {
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .hero-get-qoute-btn {
  background-color: var(--btn-color);
}
.hero-section .hero-btn-service {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white-text);
}

.first-section .section-img {
  position: relative;
  z-index: 0;
}
.first-section .section-img .circle-btn {
  position: absolute;
  top: -35px;
  right: -19px;
  width: 180px;
  height: 180px;
  display: block;
}
.first-section .section-img {
  /* Rotating text */
}
.first-section .section-img .circle-text {
  width: 100%;
  height: 100%;
  animation: rotateText 12s linear infinite;
}
.first-section .section-img {
  /* SVG text style */
}
.first-section .section-img .circle-text text {
  font-size: 9px;
  letter-spacing: 3px;
  fill: var(--white-text);
  font-weight: 800;
}
.first-section .section-img {
  /* Red circular background */
}
.first-section .section-img .circle-text svg {
  width: 100%;
  height: 100%;
  background: #C6453B;
  background: linear-gradient(0deg, rgb(198, 69, 59) 0%, rgb(181, 61, 53) 100%);
  border-radius: 50%;
}
.first-section .section-img {
  /* Center logo */
}
.first-section .section-img .circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: #fff8e0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.first-section .section-img .circle-center p {
  font-size: 33px;
  font-weight: 900;
  margin: 0;
  color: var(--dark-bg);
}
.first-section .section-img {
  /* Animation */
}
@keyframes rotateText {
  100% {
    transform: rotate(360deg);
  }
}
.first-section .section-text {
  padding: 10px;
}

.second-section {
  background: #216769;
  background: linear-gradient(56deg, rgb(33, 103, 105) 0%, rgb(29, 75, 74) 60%, rgb(9, 89, 89) 100%);
}
.second-section .section-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  background-color: #216769;
  border: 1.5px solid #21777a;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  transition: all 0.3s ease-in-out;
}
.second-section .section-card:hover {
  transform: scale(1.02);
}
.second-section .section-card:hover .icon i {
  transform: rotateY(180deg);
}
.second-section .services-btn {
  background-color: #fbdc6e;
  color: var(--heading);
  border: 1px solid #f5deb4;
}
.second-section .services-btn:hover {
  box-shadow: 0 4px 20px rgba(88, 105, 179, 0.4);
}
.second-section .icon i {
  width: 60px !important;
  height: 60px !important;
  font-size: 28px;
  background-color: #e2f1f4;
  color: var(--heading);
}
.second-section .text h3 {
  color: #e6e8f2;
}
.second-section .text p {
  color: #e6e8f2;
}

.third-section .section-card {
  border: 1px solid #FEE42A;
  position: relative;
  z-index: 0;
  height: 250px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.third-section .section-card .num {
  background-color: var(--dark);
  color: #fbdc6e;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 20px;
  font-weight: 800;
  animation: pulse-animation 2s infinite;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.third-section .section-card .text h3 {
  color: #1b1b1b !important;
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 189, 36, 0.4);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 189, 36, 0);
  }
}
.third-section .section-img img {
  height: 250px;
}

.fifth-section .points {
  margin: 20px 0;
}
.fifth-section .points .icon i {
  background-color: #ffbd00;
  width: 40px;
  height: 40px;
  color: var(--heading);
}
.fifth-section .points .text p {
  margin: 0;
  font-size: 21px;
}
.fifth-section .points .text p .heading-title {
  color: var(--high-light);
  font-weight: 800;
}

.fourth-section .section-card {
  background: #1D4B4A;
  background: linear-gradient(155deg, rgb(29, 75, 74) 0%, rgb(39, 148, 153) 100%);
  border: 1.5px solid #57b4bc;
  border-radius: 12px;
  position: relative;
  z-index: 0;
}
.fourth-section .section-card .step p {
  content: "";
  position: absolute;
  top: -20px;
  left: 15px;
  z-index: 1;
  background-color: #fff8e0;
  width: 80px;
  height: 40px;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.fourth-section .section-card .text h3 {
  color: #ffc70f;
}
.fourth-section .section-card .text p {
  color: var(--white-text);
}

.cta-section {
  background-color: #ffef70 !important;
  position: relative;
  z-index: 0;
}
.cta-section .card-right {
  margin-left: -100px;
}
.cta-section .section-text {
  background: #216769;
  background: linear-gradient(56deg, rgb(33, 103, 105) 0%, rgb(29, 75, 74) 60%, rgb(9, 89, 89) 100%);
  border: 1.5px solid #216769 !important;
  border-radius: 16px;
  z-index: 1;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  padding: 30px 40px;
  border-radius: 25px;
}
.cta-section .section-text h2 {
  color: var(--high-light);
  font-size: 45px;
}
.cta-section .section-text p {
  color: var(--white-text);
  font-size: 18px;
}
.cta-section .section-text h3 {
  color: #e6efe8;
  font-size: 22px;
  font-weight: 700;
}
.cta-section .btn-one:hover {
  background-color: #f43d5d;
  color: var(--white-text);
}
.cta-section .section-img {
  position: relative;
  z-index: 0;
}
.cta-section .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: 0px;
  top: -325px;
  border-top-left-radius: 25%;
  border-bottom-left-radius: 75%;
  border: 10px solid #ffef70;
}

.webdesign-service .section-card .num {
  background-color: #fff !important;
  border: none !important;
}

.faq-section .faq-list {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-section .faq-item {
  background: #fff;
  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: #b92c54;
  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;
  }
}

.inner-landing-page {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
  padding: 0rem;
  width: 100%;
  height: 80vh;
  background-color: var(--dark);
}
.inner-landing-page .section-text h1 {
  color: var(--white-text);
}
.inner-landing-page .section-text p {
  color: var(--white-text);
}
.inner-landing-page::after {
  content: "";
  position: absolute;
  right: 150px;
  top: 100px;
  width: 500px;
  height: 500px;
  border: 100px solid rgba(232, 179, 32, 0.185);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.hero-image {
  position: relative;
  z-index: 10;
  aspect-ratio: 1;
  width: 100%;
  min-height: 400px;
  height: 700px;
}
.hero-image img {
  border: 10px solid #ffbd00;
  height: 700px;
  position: absolute;
  top: 8%;
  left: 0;
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  box-shadow: none;
  border-bottom-left-radius: 45%;
  border-top-right-radius: 25px;
}

.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;
}

.aboutus-second-section {
  background-color: var(--dark);
}
.aboutus-second-section .section-text {
  color: var(--white-text);
}
.aboutus-second-section .section-card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.aboutus-second-section .section-card .text p {
  color: var(--white-text);
}

.about-us-third-section .section-card .icon i {
  background-color: #437370;
  width: 60px;
  height: 60px;
  font-size: 24px;
  color: #fff;
}
.about-us-third-section .section-card {
  background-color: var(--bg-light);
}

.about-us-fourth-section .section-card {
  display: flex;
  gap: 15px;
  background: #1D4B4A;
  background: linear-gradient(155deg, rgb(29, 75, 74) 0%, rgb(39, 148, 153) 100%);
}
.about-us-fourth-section .section-card .num {
  position: relative;
  display: block;
  font-size: 80px;
  line-height: 80px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #cacaca;
  counter-increment: count;
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.about-us-fourth-section .section-card .text h3 {
  color: #fff8e0;
}
.about-us-fourth-section .section-card .text p {
  color: var(--white-text);
}

.about-us-fifth-section {
  background-image: url(../img/about/abt-img-1.webp);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
  position: relative;
  z-index: 0;
  background-attachment: fixed;
}
.about-us-fifth-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0E2928;
  background: linear-gradient(180deg, rgb(14, 41, 40) 0%, rgba(67, 115, 112, 0.4) 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.about-us-fifth-section .section-text {
  position: relative;
  z-index: 2;
}
.about-us-fifth-section .section-text h2 {
  color: var(--white-text);
}
.about-us-fifth-section .section-text p {
  color: var(--white-text);
}
.about-us-fifth-section .section-card {
  position: relative;
  z-index: 2;
  background-color: var(--white-text);
}
.about-us-fifth-section .section-card .text h3 {
  color: var(--points-bold);
}

.brochure-desinging-second-section {
  background-color: var(--dark);
  height: 570px;
  margin-bottom: 270px;
  overflow: visible;
}
.brochure-desinging-second-section .brochure-container {
  margin-top: 35px;
}
.brochure-desinging-second-section .section-card {
  background-color: var(--white-text);
  border: 3px solid var(--secondary-color);
}

.brochure-third-section .section-card {
  background-color: #ffeab2;
}
.brochure-third-section .section-card .text p {
  font-size: 20px;
}

.brochure-fourth-section .section-card {
  padding: 0px;
  background-color: var(--white-text);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.brochure-fourth-section .section-card .card-img {
  position: relative;
  z-index: 0;
}
.brochure-fourth-section .section-card .card-img img {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.brochure-fourth-section .section-card .card-img .num {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: #fe6806;
  color: var(--white-text);
  z-index: 9;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
}
.brochure-fourth-section .section-card .text {
  padding: 4px 15px;
}
.brochure-fourth-section .section-card .text h3 {
  color: #C6453B;
}

.brochure-fifth-section {
  background-color: var(--dark);
}
.brochure-fifth-section .section-card {
  background-color: #216769;
}
.brochure-fifth-section .section-card .steps {
  background-color: var(--secondary-color);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
}
.brochure-fifth-section .section-card .text h3 {
  color: var(--secondary-color);
}
.brochure-fifth-section .section-card .text p {
  color: var(--white-text);
}

.ecommerce-second-section {
  background-color: var(--dark);
}
.ecommerce-second-section .section-img {
  border: 8px solid #fff;
  border-radius: 25px;
}

.ecommerce-third-section .section-text h3 {
  font-size: 45px;
  font-weight: 900;
  color: var(--heading-highlight);
}

.ecommerce-fourth-section .section-card {
  background: #1D4B4A;
  background: linear-gradient(155deg, rgb(29, 75, 74) 0%, rgb(39, 148, 153) 100%);
}
.ecommerce-fourth-section .section-card .text h3 {
  color: var(--btn-color);
}
.ecommerce-fourth-section .section-card .text p {
  color: var(--white-text);
}

.ecommerce-fifth-section {
  background-image: url(../img/about/abt-img-1.webp);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
  position: relative;
  z-index: 0;
  background-attachment: fixed;
}
.ecommerce-fifth-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0E2928;
  background: linear-gradient(180deg, rgb(14, 41, 40) 0%, rgba(67, 115, 112, 0.4) 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ecommerce-fifth-section .section-text {
  position: relative;
  z-index: 2;
}
.ecommerce-fifth-section .section-text h2 {
  color: var(--white-text);
}
.ecommerce-fifth-section .section-text p {
  color: var(--white-text);
}
.ecommerce-fifth-section .points .icon i {
  background-color: var(--btn-color);
  color: var(--heading);
}
.ecommerce-fifth-section .section-img {
  position: relative;
  z-index: 2;
  border: 8px solid #fff;
  border-radius: 25px;
}

.ecommerce-eight-section .section-card {
  background-color: #ffdd80;
  transition: transform 0.3s ease;
}
.ecommerce-eight-section .section-card:hover {
  background-color: var(--bg-light);
}
.ecommerce-eight-section .section-card:hover .icon i {
  transform: scale(1.2);
  background-color: #86c9d1;
}
.ecommerce-eight-section .section-card .icon i {
  background-color: #ffc525;
}

.logo-design-section-two {
  background-color: var(--dark);
}
.logo-design-section-two .section-card {
  background-color: #1e3e3d;
  padding: 25px;
}
.logo-design-section-two .section-card p {
  font-size: 20px;
}

.logo-design-fourth-section {
  background-color: var(--dark);
}
.logo-design-fourth-section .section-card {
  background-color: #1e3e3d;
}
.logo-design-fourth-section .section-card .num {
  position: relative;
  display: block;
  font-size: 80px;
  line-height: 80px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #cacaca;
  counter-increment: count;
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.logo-design-fourth-section .section-card .text h3 {
  color: var(--btn-color);
}
.logo-design-fourth-section .section-card .text p {
  color: var(--white-text);
}

.logo-design-fifth-section .section-text h3 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
}

.outsource-second-section {
  background-image: url(../img/about/abt-img-1.webp);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
  position: relative;
  z-index: 0;
  background-attachment: fixed;
}
.outsource-second-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0E2928;
  background: linear-gradient(180deg, rgb(14, 41, 40) 0%, rgba(67, 115, 112, 0.4) 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.outsource-second-section .section-text {
  position: relative;
  z-index: 2;
}
.outsource-second-section .section-text h2 {
  color: var(--white-text);
}
.outsource-second-section .section-text p {
  color: var(--white-text);
}
.outsource-second-section .section-img {
  position: relative;
  z-index: 2;
  border: 10px solid #fff;
  border-radius: 25px;
}
.outsource-second-section .section-card {
  background-color: #216769;
  position: relative;
  z-index: 2;
  padding: 25px;
}
.outsource-second-section .section-card p {
  font-size: 20px;
}

.out-source-third-section .section-card {
  background: #24878B;
  background: linear-gradient(129deg, rgb(36, 135, 139) 0%, rgb(39, 148, 153) 100%);
}
.out-source-third-section .section-card .text h3 {
  color: var(--btn-color);
}
.out-source-third-section .section-card .text p {
  color: var(--white-text);
}

.outsource-sixth-section {
  background-color: var(--dark-bg);
}
.outsource-sixth-section .points .text p {
  color: var(--white-text);
}
.outsource-sixth-section .points-bold {
  color: var(--btn-color);
}

.out-soucre-why-dos .section-card {
  height: 100%;
}

.seo-modern-era-section {
  height: 100% !important;
}

.seo-fifth-section .section-card h3 {
  color: #fffde6 !important;
}

.seo-second-section {
  background-color: var(--dark);
  height: 600px;
  position: relative;
  z-index: 0;
}
.seo-second-section .section-text-2 {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 25px;
}
.seo-second-section .section-text-2 p {
  color: var(--white-text);
  font-size: 20px;
}

.seo-third-section .section-text h3 {
  font-size: 45px;
  font-weight: 800;
}
.seo-third-section .section-card {
  background-color: #fbdc6e;
}

.fourth-seo-section .section-card {
  background: #FFDD80;
  background: linear-gradient(129deg, rgb(255, 221, 128) 0%, rgb(255, 234, 178) 100%);
}
.fourth-seo-section .section-card:hover {
  background: #24878B;
  background: linear-gradient(129deg, rgb(36, 135, 139) 0%, rgb(39, 148, 153) 100%);
}
.fourth-seo-section .section-card:hover .text h3 {
  color: var(--white-text);
}
.fourth-seo-section .section-card:hover .text p {
  color: var(--white-text);
}
.fourth-seo-section .section-card .text h3 {
  color: var(--dark-bg);
}
.fourth-seo-section .section-card .text p {
  color: var(--dark-bg);
}

.fifth-seo-section .section-card {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.fifth-seo-section .section-card .text h3 {
  color: var(--btn-color);
}
.fifth-seo-section .section-card .text p {
  color: var(--white-text);
}

.seventh-section-seo .section-card {
  padding: 0px;
  background-color: var(--white-text);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.seventh-section-seo .section-card .card-img {
  position: relative;
  z-index: 0;
}
.seventh-section-seo .section-card .card-img img {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.seventh-section-seo .section-card .card-img .phase {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  z-index: 1;
}
.seventh-section-seo .section-card .card-img .phase p {
  display: block;
  background-color: var(--btn-color);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 700;
}
.seventh-section-seo .section-card .text {
  padding: 8px 20px;
}
.seventh-section-seo .section-card .text h3 {
  color: #b92c54;
}

.webdesing-third-sec-continue {
  margin-top: -300px;
}
.webdesing-third-sec-continue .section-card {
  background-color: #f5deb4;
  transition: all 0.3s ease-in-out;
}
.webdesing-third-sec-continue .section-card:hover {
  transform: translateY(-7px);
}
.webdesing-third-sec-continue .section-card .text h3 {
  font-weight: 900;
}

.webdesing-third-section .section-card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #fff;
}
.webdesing-third-section .section-card .num {
  font-size: 64px;
  line-height: 80px;
  font-weight: 900;
  display: block;
  color: #de7a00;
  background-color: #fbf2e1;
  border: 1px solid #f0c981;
}
.webdesing-third-section .section-card .text h3 {
  color: var(--dark);
}

.service-section-section {
  background-color: var(--dark);
}
.service-section-section .section-card {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 25px 35px;
}
.service-section-section .section-card h3 {
  color: var(--btn-color);
  font-size: 35px;
  font-weight: 700;
}
.service-section-section .section-card p {
  color: var(--white-text);
  font-size: 20px;
}
.service-section-section .card-right {
  margin-right: -100px;
}
.service-section-section .card-left {
  margin-right: -100px;
}

.service-third-section .section-card .num {
  font-size: 24px;
  line-height: 25px;
  background-color: #fbf2e1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.webdesign-fifth-section .section-text {
  position: relative;
  z-index: 9;
}
.webdesign-fifth-section .section-img {
  position: relative;
  z-index: 9;
}

.webdesing-seventh-section .section-card {
  background-color: #f5deb4;
}

.webdesign-eigth-section {
  background-color: var(--dark);
}

.web-development-second-section {
  background-color: var(--dark);
  position: relative;
  z-index: 0;
}

.web-development-fourth-section {
  background-color: var(--dark);
}
.web-development-fourth-section .section-card {
  background-color: var(--dark-bg);
}
.web-development-fourth-section .section-card .text h3 {
  color: var(--btn-color);
}
.web-development-fourth-section .section-card .text p {
  color: var(--white-text);
}

.web-development-fifth-section .section-card {
  background: #24878B;
  background: linear-gradient(129deg, rgb(36, 135, 139) 0%, rgb(39, 148, 153) 100%);
}
.web-development-fifth-section .section-card .text h3 {
  color: var(--btn-color);
}
.web-development-fifth-section .section-card .text p {
  color: var(--white-text);
}

.web-development-sixth-section .section-card {
  background-color: #f5deb4;
}

.web-maintenance-second-section .section-img {
  position: relative;
  z-index: 9;
}
.web-maintenance-second-section .points {
  position: relative;
  z-index: 9;
}
.web-maintenance-second-section .points .text p {
  color: var(--white-text);
}
.web-maintenance-second-section .points .text .points-bold {
  color: var(--btn-color);
}

.web-maintenance-third-section .section-card {
  background-color: #0e2928;
}
.web-maintenance-third-section .section-card .text h3 {
  color: var(--btn-color);
}
.web-maintenance-third-section .section-card .text p {
  color: var(--white-text);
}

.web-maintenance-sixth-section {
  background-color: var(--dark-bg);
}
.web-maintenance-sixth-section .section-card {
  background-color: #216769;
}
.web-maintenance-sixth-section .section-card .text h3 {
  color: var(--btn-color);
}
.web-maintenance-sixth-section .section-card .text p {
  color: var(--white-text);
}

.why-us-second-section {
  background-color: var(--dark);
}
.why-us-second-section .section-card {
  background-color: #1e3e3d;
}
.why-us-second-section .section-card .text h3 {
  color: var(--btn-color);
}
.why-us-second-section .section-card .text p {
  color: var(--white-text);
}

.why-us-third-section .section-card {
  background-color: #f5deb4;
  transition: all 0.3s ease-in-out;
}
.why-us-third-section .section-card:hover {
  transform: translateY(-7px);
}
.why-us-third-section .section-card .text h3 {
  color: var(--heading-highlight);
}
.why-us-third-section .section-card .text p {
  color: var(--heading);
}

.why-us-fifth-section {
  background-color: var(--dark);
}
.why-us-fifth-section .section-card {
  background-color: #f5deb4;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.why-us-fifth-section .section-card .step {
  background-color: #fff8e0;
  width: 110px;
  height: 40px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-us-fifth-section .section-card .step p {
  margin: 0px;
  color: var(--dark-bg);
  font-size: 20px;
  font-weight: 600;
}
.why-us-fifth-section .section-card:hover {
  transform: translateY(-7px);
}
.why-us-fifth-section .section-card .text h3 {
  color: var(--heading-highlight);
}
.why-us-fifth-section .section-card .text p {
  color: var(--heading);
}

.contact-us-section .contact-us-card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 0;
  display: flex;
  gap: 15px;
  align-items: center;
  border-radius: 16px;
}
.contact-us-section .contact-us-card .info-card {
  background: var(--dark-bg);
  border-radius: 14px;
  padding: 66px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-us-section .contact-us-card .info-card .section-text .subheading {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--btn-color) !important;
  font-weight: 500;
  margin-bottom: 10px;
}
.contact-us-section .contact-us-card .info-card .section-text h2 {
  color: #fffde6;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0px;
}
.contact-us-section .contact-us-card .info-card .section-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.7;
  margin-top: 8px;
}
.contact-us-section .contact-us-card .info-card::after {
  content: "";
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 189, 36, 0.08);
  pointer-events: none;
}
.contact-us-section .contact-us-card .social-media {
  display: flex;
  gap: 28px;
  align-items: end;
}
.contact-us-section .contact-us-card .social-media h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}
.contact-us-section .contact-us-card .social-media span i {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.contact-us-section .contact-us-card .social-media span i:hover {
  color: var(--btn-color);
  transform: translateY(-7px);
  background: rgba(255, 189, 36, 0.14);
}
.contact-us-section .contact-details .points {
  margin-bottom: 20px;
}
.contact-us-section .contact-details .points .icon i {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 20px;
  background: rgba(255, 189, 36, 0.14);
  border: 1px solid rgba(255, 189, 36, 0.25);
  color: var(--btn-color);
}
.contact-us-section .contact-details .points .text h3 {
  display: block;
  font-size: 21px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2px;
}
.contact-us-section .contact-details .points .text a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  text-decoration: none;
}
.contact-us-section .contact-details .points .text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.contact-form {
  overflow: hidden;
  padding: 36px 32px;
}
.contact-form .form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #607d7c;
  margin-bottom: 7px;
  transition: color 0.2s var(--ease);
}
.contact-form .form-group ::-moz-placeholder {
  color: #b0c8c7;
}
.contact-form .form-group ::placeholder {
  color: #b0c8c7;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  background: #faf6f1;
  border: 1.5px solid #d4e4e3;
  border-radius: 8px;
  color: #1a2e2d;
  font-size: 0.91rem;
  padding: 12px 14px 12px 40px;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  -webkit-appearance: none;
}
.contact-form .form-group {
  position: relative;
  margin-bottom: 15px;
}
.contact-form .msg-group {
  position: relative;
}
.contact-form .msg-group .fi {
  position: absolute;
  left: 13px;
  top: 35%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  fill: #b0c8c7 !important;
  pointer-events: none;
  transition: fill 0.2s var(--ease);
}
.contact-form .fi {
  position: absolute;
  left: 13px;
  top: 65%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  fill: #b0c8c7 !important;
  pointer-events: none;
  transition: fill 0.2s var(--ease);
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--dark-bg);
  box-shadow: 0 0 0 3px rgba(5, 53, 104, 0.096);
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form button {
  padding: 13px;
  background: #FEE42A;
  background: linear-gradient(129deg, rgb(254, 228, 42) 0%, rgb(255, 189, 36) 100%);
  color: var(--heading);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.contact-form button:hover {
  background: #FEE42A;
  background: linear-gradient(290deg, rgb(254, 228, 42) 0%, rgb(255, 189, 36) 100%);
  color: var(--heading);
}

.contact-form .section-text {
  margin: 15px 0;
}
.contact-form .section-text .subheading {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--btn-color);
  margin-bottom: 6px;
}
.contact-form .section-text h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-bg);
}

.enquiry-section {
  margin-top: 65px;
  background-color: var(--dark-bg);
  background-image: radial-gradient(ellipse 60% 50% at 80% 10%, rgba(223, 218, 152, 0.075) 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 10% 90%, rgba(223, 218, 152, 0.075) 0%, transparent 70%);
}
.enquiry-section .enquiry-form {
  width: 100%;
  max-width: 650px;
  height: 100%;
}
.enquiry-section .enquiry-form .section-text .sub-heading {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--btn-color);
  font-weight: 500;
  margin-bottom: 10px;
}
.enquiry-section .enquiry-form .section-text h2 {
  color: #fffde6;
}
.enquiry-section .enquiry-form .section-text p {
  margin-top: 10px;
  color: var(--white-text);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}
.enquiry-section .enquiry-form .section-card {
  background-color: #216769;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.enquiry-section .enquiry-form .section-card .form-group {
  margin-bottom: 18px;
}
.enquiry-section .enquiry-form .section-card .form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff49a;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.enquiry-section .enquiry-form .section-card .form-group ::-moz-placeholder {
  color: var(--white-text);
}
.enquiry-section .enquiry-form .section-card .form-group ::placeholder {
  color: var(--white-text);
}
.enquiry-section .enquiry-form .section-card .form-group input,
.enquiry-section .enquiry-form .section-card .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #279499;
  border-radius: 8px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.082);
  outline: none;
  transition: 0.3s ease;
}
.enquiry-section .enquiry-form .section-card .form-group input:focus,
.enquiry-section .enquiry-form .section-card .form-group textarea:focus {
  border-color: var(--dark-bg);
  box-shadow: 0 0 0 3px rgba(5, 53, 104, 0.096);
}
.enquiry-section .enquiry-form .section-card .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.enquiry-section .enquiry-form .section-card button {
  padding: 13px;
  background: #FEE42A;
  background: linear-gradient(129deg, rgb(254, 228, 42) 0%, rgb(255, 189, 36) 100%);
  color: var(--heading);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.enquiry-section .enquiry-form .section-card button:hover {
  background: #FEE42A;
  background: linear-gradient(290deg, rgb(254, 228, 42) 0%, rgb(255, 189, 36) 100%);
  color: var(--heading);
}

.pagination-pill {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap; /* ✅ allows wrapping on small screens */
  padding: 0 10px;
}

.pagination-pill a {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
  font-size: 14px;
}

.pagination-pill a:hover {
  background: #1d4a49;
  color: #fff;
  border-color: #1d4a49;
}

.pagination-pill a.active {
  background: #1d4a49;
  color: #fff;
  border-color: #1d4a49;
  pointer-events: none;
}

.pagination-pill a.disabled {
  pointer-events: none;
  opacity: 0.64;
  cursor: not-allowed;
  background: #f5f5f5;
  border-color: #ddd;
  color: #999;
}

/* 🔽 Tablet */
@media (max-width: 768px) {
  .pagination-pill {
    gap: 8px;
  }
  .pagination-pill a {
    padding: 7px 14px;
    font-size: 13px;
  }
}
/* 🔽 Mobile */
@media (max-width: 480px) {
  .pagination-pill {
    gap: 6px;
  }
  .pagination-pill a {
    padding: 6px 10px;
    font-size: 12px;
  }
  /* Optional: hide text and show only arrows for prev/next */
  .pagination-pill a.prev::after {
    content: "←";
    font-size: 17px;
    color: #1e3e21;
  }
  .pagination-pill a.next::after {
    content: "→";
    font-size: 17px;
    color: #1e3e21;
  }
  .pagination-pill a.prev,
  .pagination-pill a.next {
    font-size: 0; /* hide text */
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
#image-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#image-viewer img {
  max-width: 60%;
  max-height: 80%;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}

.website-portfolio .section-img {
  height: 500px;
  overflow: hidden;
  border: 3px solid #1e3e3d;
  padding: 20px;
  border-radius: 12px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.website-portfolio .section-img img {
  border-radius: 0;
}/*# sourceMappingURL=style.css.map */