@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #faf9f9c7;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

/*========================
        NAVBAR
=========================*/

.navbar {
  position: relative;
  top: 0;
  left: 0;

  width: 100%;
  height: 90px;

  background: #ffffff;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 70px;

  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);

  z-index: 9999;

  transition: 0.4s;
}

/*========================
        BRAND
=========================*/

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo1 {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.logo {
  display: flex;
  flex-direction: column;

  font-size: 25px;
  font-weight: 700;
  color: #061c36;

  line-height: 1.1;
}

.logo span {
  font-size: 12px;
  font-weight: 500;
  color: #0d5fd6;
}

/*========================
        MENU
=========================*/

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;

  color: #061c36;

  transition: 0.3s;

  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover {
  color: #0d5fd6;
}

/* Underline Animation */

.nav-links > li > a:not(.nav-btn)::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: #0d5fd6;

  transition: 0.35s;
}

.nav-links > li:hover > a::after {
  width: 100%;
}

/*========================
        BUTTON
=========================*/

.nav-btn {
  background: #061c36;

  color: #fff !important;

  padding: 13px 28px;

  border-radius: 40px;

  font-weight: 600;

  transition: 0.35s;
}

.nav-btn:hover {
  background: #0d5fd6;

  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(13, 95, 214, 0.25);
}

/*========================
      DROPDOWN
=========================*/

.dropdown-menu {
  position: absolute;

  top: 65px;
  left: 0;

  width: 320px;

  background: #fff;

  border-radius: 12px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

  opacity: 0;
  visibility: hidden;

  transform: translateY(20px);

  transition: 0.35s;

  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu li:last-child {
  border: none;
}

.dropdown-menu a {
  display: block;

  padding: 15px 20px;

  font-size: 14px;

  color: #061c36;
}

.dropdown-menu a:hover {
  background: #061c36;

  color: #fff;
}

.dropdown i {
  font-size: 12px;

  transition: 0.3s;
}

.dropdown:hover i {
  transform: rotate(180deg);
}

/*========================
     MENU BUTTON
=========================*/

.menu-btn {
  display: none;

  font-size: 30px;

  color: #061c36;

  cursor: pointer;
}

/*========================
      RESPONSIVE
=========================*/

@media (max-width: 1150px) {
  .navbar {
    padding: 0 25px;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;

    top: 90px;
    left: 0;

    width: 70%;

    background: #fff;

    display: none;

    flex-direction: column;

    align-items: flex-start;

    padding: 25px;

    gap: 5px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 80%;
  }

  .nav-links a {
    width: 100%;

    padding: 14px 0;

    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;

    opacity: 1;

    visibility: visible;

    transform: none;

    display: none;

    box-shadow: none;

    width: 100%;

    background: #f8f9fb;

    margin-top: 10px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-btn {
    width: 100%;

    justify-content: center;
  }
}

@media (max-width: 600px) {
  .navbar {
    height: 75px;

    padding: 0 18px;
  }

  .logo {
    font-size: 19px;
  }

  .logo span {
    font-size: 12px;
  }

  .logo1 {
    width: 45px;
    height: 45px;
  }
}
/*==========================
        HERO SECTION
==========================*/

.hero {
  position: relative;

  width: 100%;

  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}

/* Video */

.hero-video {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: -2;
}

/* Overlay */

.hero-overlay {
  position: absolute;

  inset: 0;

  background: rgba(5, 18, 38, 0.65);

  z-index: -1;
}

/* Content */

.hero-content {
  max-width: 800px;

  text-align: center;

  padding: 20px;

  color: #fff;

  animation: fadeUp 1s ease;
}

.hero-tag {
  display: inline-block;

  padding: 10px 22px;

  background: #d4a63a;

  color: #fff;

  border-radius: 50px;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 1px;

  margin-bottom: 25px;
}

.hero h1 {
  font-size: 62px;

  line-height: 1.15;

  margin-bottom: 20px;

  font-weight: 700;
}

.hero h1 span {
  color: #d4a63a;
}

.hero p {
  font-size: 18px;

  line-height: 1.8;

  color: #f2f2f2;

  max-width: 650px;

  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;
}

.btn-primary {
  padding: 15px 34px;

  background: #d4a63a;

  color: #fff;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.4s;
}

.btn-primary:hover {
  background: #e0b348;

  transform: translateY(-5px);
}

.btn-secondary {
  padding: 15px 34px;

  border: 2px solid #fff;

  color: #fff;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.4s;
}

.btn-secondary:hover {
  background: #fff;

  color: #082c45;
}

/* Animation */

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(40px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/*==========================
      RESPONSIVE
==========================*/

@media (max-width: 768px) {
  .hero {
    height: 90vh;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;

    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;

    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 85vh;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-tag {
    font-size: 11px;

    padding: 8px 16px;
  }

  .hero p {
    font-size: 14px;

    line-height: 1.6;
  }
}
/*==========================
    FLOATING BUTTONS
==========================*/

.floating-buttons {
  position: fixed;

  right: 25px;
  bottom: 25px;

  display: flex;
  flex-direction: column;

  gap: 15px;

  z-index: 9999;
}

.call-btn,
.whatsapp-btn {
  width: 58px;
  height: 58px;

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  color: #fff;

  font-size: 24px;

  text-decoration: none;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

  transition: 0.35s;

  animation: pulse 2s infinite;
}

.call-btn {
  background: #082c45;
}

.call-btn:hover {
  background: #0d5fd6;

  transform: translateY(-5px) scale(1.08);
}

.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover {
  background: #1ebe5d;

  transform: translateY(-5px) scale(1.08);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .floating-buttons {
    right: 18px;
    bottom: 18px;
  }

  .call-btn,
  .whatsapp-btn {
    width: 52px;
    height: 52px;

    font-size: 22px;
  }
}
/* =====================================
            ABOUT SECTION
===================================== */

.about-section {
  position: relative;

  width: 100%;

  padding: 110px 8%;

  background: #f8f9fa;

  overflow: hidden;
}

/* Decorative Background */

.about-section::before {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  border-radius: 50%;

  background: rgba(8, 44, 69, 0.035);

  top: -180px;
  left: -180px;
}

.about-section::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  border: 1px solid rgba(212, 166, 58, 0.15);

  right: -120px;
  bottom: -100px;
}

/* CONTAINER */

.about-container {
  position: relative;

  z-index: 2;

  max-width: 1250px;

  margin: auto;

  display: grid;

  grid-template-columns: 45% 55%;

  align-items: center;

  gap: 70px;
}

/* =====================================
          IMAGE
===================================== */

.about-image-wrapper {
  position: relative;

  width: 100%;

  max-width: 520px;

  margin: auto;

  padding: 15px;
}

/* Gold Border */

.about-image-border {
  position: absolute;

  width: 100%;
  height: 100%;

  top: 0;
  left: 0;

  border: 2px solid #d4a63a;

  border-radius: 20px;

  transform: rotate(-4deg);

  transition: 0.5s ease;
}

/* Image */

.about-image {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 470px;

  overflow: hidden;

  border-radius: 20px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.7s ease;
}

/* Image Hover */

.about-image-wrapper:hover .about-image img {
  transform: scale(1.07);
}

.about-image-wrapper:hover .about-image-border {
  transform: rotate(0deg);
}

/* Experience Badge */

.about-experience {
  position: absolute;

  z-index: 5;

  right: -25px;
  bottom: 30px;

  background: #082c45;

  color: #fff;

  padding: 20px 25px;

  border-radius: 15px;

  display: flex;

  align-items: center;

  gap: 12px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);

  transition: 0.4s;
}

.about-experience:hover {
  transform: translateY(-8px);
}

.about-experience strong {
  color: #d4a63a;

  font-size: 34px;

  line-height: 1;
}

.about-experience span {
  font-size: 13px;

  line-height: 1.4;
}

/* =====================================
          CONTENT
===================================== */

.about-content {
  animation: aboutReveal 1s ease both;
}

.section-label {
  position: relative;

  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: #d4a63a;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 15px;
}

.section-label::after {
  content: "";

  width: 55px;
  height: 2px;

  background: #d4a63a;
}

/* Heading */

.about-content h2 {
  color: #082c45;

  font-size: 42px;

  line-height: 1.2;

  margin-bottom: 22px;
}

.about-content h2 span {
  display: block;

  color: #d4a63a;
}

/* Paragraph */

.about-content p {
  color: #666;

  font-size: 15px;

  line-height: 1.8;

  margin-bottom: 15px;
}

.about-intro {
  color: #333 !important;

  font-weight: 500;
}

/* =====================================
          HIGHLIGHTS
===================================== */

.about-highlights {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;

  margin: 28px 0;
}

.about-highlight {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  padding: 15px;

  background: #fff;

  border-radius: 12px;

  border-left: 3px solid #d4a63a;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

  transition: 0.35s;
}

.about-highlight:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.09);
}

.about-highlight > i {
  color: #d4a63a;

  font-size: 22px;

  margin-top: 3px;
}

.about-highlight h4 {
  color: #082c45;

  font-size: 14px;

  margin-bottom: 3px;
}

.about-highlight p {
  font-size: 12px !important;

  margin: 0 !important;

  line-height: 1.5 !important;
}

/* =====================================
             VALUES
===================================== */

.about-value {
  margin-top: 25px;

  padding: 22px;

  background: #082c45;

  border-radius: 18px;

  position: relative;

  overflow: hidden;
}

.about-value::after {
  content: "";

  position: absolute;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  border: 1px solid rgba(212, 166, 58, 0.3);

  right: -60px;
  top: -70px;
}

.about-value h3 {
  color: #d4a63a;

  font-size: 15px;

  letter-spacing: 2px;

  margin-bottom: 18px;
}

.value-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 12px;
}

.value-card {
  text-align: center;

  color: #fff;

  transition: 0.35s;
}

.value-card:hover {
  transform: translateY(-7px);
}

.value-icon {
  width: 48px;
  height: 48px;

  margin: 0 auto 9px;

  display: flex;

  justify-content: center;
  align-items: center;

  border: 1px solid rgba(212, 166, 58, 0.6);

  border-radius: 50%;

  color: #d4a63a;

  font-size: 18px;

  transition: 0.35s;
}

.value-card:hover .value-icon {
  background: #d4a63a;

  color: #082c45;

  transform: rotateY(180deg);
}

.value-card span {
  font-size: 11px;

  display: block;
}

/* =====================================
             BUTTON
===================================== */

.about-btn {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 25px;

  padding: 13px 25px;

  background: #d4a63a;

  color: #fff;

  border-radius: 40px;

  font-size: 14px;

  font-weight: 600;

  transition: 0.4s;
}

.about-btn i {
  transition: 0.3s;
}

.about-btn:hover {
  background: #082c45;

  transform: translateY(-4px);

  box-shadow: 0 10px 25px rgba(8, 44, 69, 0.2);
}

.about-btn:hover i {
  transform: translateX(5px);
}

/* =====================================
            ANIMATION
===================================== */

@keyframes aboutReveal {
  from {
    opacity: 0;

    transform: translateX(50px);
  }

  to {
    opacity: 1;

    transform: translateX(0);
  }
}

/* =====================================
             TABLET
===================================== */

@media (max-width: 1000px) {
  .about-section {
    padding: 80px 5%;
  }

  .about-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .about-image-wrapper {
    max-width: 600px;
  }

  .about-content {
    max-width: 700px;

    margin: auto;
  }

  .about-content h2 {
    font-size: 38px;
  }
}

/* =====================================
             MOBILE
===================================== */

@media (max-width: 600px) {
  .about-section {
    padding: 65px 20px;
  }

  .about-container {
    gap: 45px;
  }

  .about-image-wrapper {
    padding: 10px;
  }

  .about-image {
    height: 320px;

    border-radius: 15px;
  }

  .about-experience {
    right: -5px;

    bottom: 15px;

    padding: 14px 18px;
  }

  .about-experience strong {
    font-size: 27px;
  }

  .about-experience span {
    font-size: 11px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 14px;

    line-height: 1.7;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-value {
    padding: 18px 12px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 18px 10px;
  }

  .about-btn {
    width: 100%;

    justify-content: center;
  }
}

/* =====================================
          SMALL MOBILE
===================================== */

@media (max-width: 380px) {
  .about-content h2 {
    font-size: 27px;
  }

  .about-image {
    height: 280px;
  }

  .about-experience {
    transform: scale(0.9);

    transform-origin: right bottom;
  }
}
.about-section .about-container {
  opacity: 0;

  transform: translateY(40px);

  transition: 1s ease;
}

.about-section.about-visible .about-container {
  opacity: 1;

  transform: translateY(0);
}
/* =========================================
          WELCOME SECTION
========================================= */

.welcome-section {
  position: relative;

  width: 100%;

  padding: 110px 8%;

  background: #ffffff;

  overflow: hidden;
}

/* =========================================
          BACKGROUND SHAPES
========================================= */

.welcome-bg-shape {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.shape-one {
  width: 450px;
  height: 450px;

  right: -200px;
  top: -180px;

  background: rgba(8, 44, 69, 0.045);
}

.shape-two {
  width: 280px;
  height: 280px;

  left: -150px;
  bottom: -130px;

  border: 1px solid rgba(212, 166, 58, 0.18);
}

/* =========================================
          CONTAINER
========================================= */

.welcome-container {
  position: relative;

  z-index: 2;

  max-width: 1250px;

  margin: auto;

  display: grid;

  grid-template-columns: 45% 55%;

  align-items: center;

  gap: 70px;
}

/* =========================================
          IMAGE AREA
========================================= */

.welcome-image-area {
  position: relative;

  max-width: 480px;

  margin: auto;

  padding: 15px;
}

/* Gold Frame */

.welcome-image-area::before {
  content: "";

  position: absolute;

  width: 85px;
  height: 85px;

  left: -5px;
  top: -5px;

  border-left: 3px solid #d4a63a;
  border-top: 3px solid #d4a63a;

  z-index: 1;
}

.welcome-image-area::after {
  content: "";

  position: absolute;

  width: 85px;
  height: 85px;

  right: -5px;
  bottom: -5px;

  border-right: 3px solid #d4a63a;
  border-bottom: 3px solid #d4a63a;

  z-index: 1;
}

/* Image */

.welcome-image-frame {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 520px;

  overflow: hidden;

  border-radius: 18px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.welcome-image-frame img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s ease;
}

/* Image Hover */

.welcome-image-area:hover img {
  transform: scale(1.07);
}

/* =========================================
          FLOATING BADGE
========================================= */

.welcome-badge {
  position: absolute;

  z-index: 5;

  right: -25px;
  top: 50%;

  transform: translateY(-50%);

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 16px 20px;

  background: #082c45;

  color: #fff;

  border-radius: 14px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);

  animation: welcomeFloat 4s ease-in-out infinite;
}

.welcome-badge i {
  width: 45px;
  height: 45px;

  display: flex;

  justify-content: center;
  align-items: center;

  background: #d4a63a;

  color: #fff;

  border-radius: 50%;

  font-size: 19px;
}

.welcome-badge strong {
  display: block;

  color: #d4a63a;

  font-size: 16px;
}

.welcome-badge span {
  display: block;

  color: #fff;

  font-size: 11px;
}

/* =========================================
          CONTENT
========================================= */

.welcome-content {
  opacity: 0;

  transform: translateX(50px);

  transition: 1s ease;
}

.welcome-section.welcome-visible .welcome-content {
  opacity: 1;

  transform: translateX(0);
}

/* Label */

.welcome-label {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: #082c45;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;
}

.welcome-label::before {
  content: "";

  width: 40px;
  height: 3px;

  background: #d4a63a;
}

/* Heading */

.welcome-content h2 {
  margin-top: 15px;

  margin-bottom: 20px;

  color: #082c45;

  font-size: 44px;

  line-height: 1.2;
}

.welcome-content h2 span {
  display: block;

  color: #d4a63a;
}

/* Line */

.welcome-line {
  width: 75px;
  height: 3px;

  background: #d4a63a;

  margin-bottom: 25px;
}

/* Paragraph */

.welcome-content p {
  color: #666;

  font-size: 15px;

  line-height: 1.8;

  margin-bottom: 15px;
}

.welcome-intro {
  color: #333 !important;

  font-size: 16px !important;
}

.welcome-intro strong {
  color: #082c45;
}

.welcome-thanks {
  color: #d4a63a !important;

  font-weight: 600;
}

/* =========================================
          COMMITMENT CARD
========================================= */

.commitment-card {
  position: relative;

  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 28px;

  padding: 20px 22px;

  background: #082c45;

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 15px 35px rgba(8, 44, 69, 0.15);

  transition: 0.4s ease;
}

.commitment-card::after {
  content: "";

  position: absolute;

  width: 150px;
  height: 150px;

  right: -70px;
  top: -80px;

  border: 1px solid rgba(212, 166, 58, 0.3);

  border-radius: 50%;
}

.commitment-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(8, 44, 69, 0.22);
}

/* Icon */

.commitment-icon {
  flex-shrink: 0;

  width: 55px;
  height: 55px;

  display: flex;

  justify-content: center;
  align-items: center;

  border-radius: 50%;

  background: #d4a63a;

  color: #fff;

  font-size: 22px;
}

.commitment-content {
  position: relative;

  z-index: 2;
}

.commitment-content span {
  color: #d4a63a;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1.5px;
}

.commitment-content h3 {
  color: #fff;

  font-size: 17px;

  margin: 4px 0;
}

.commitment-content h3 strong {
  color: #d4a63a;
}

.commitment-content p {
  color: #d5dce2;

  font-size: 12px;

  line-height: 1.5;

  margin: 0;
}

/* =========================================
          BUTTON
========================================= */

.welcome-btn {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 28px;

  padding: 14px 26px;

  background: #d4a63a;

  color: #fff;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  transition: 0.4s ease;
}

.welcome-btn i {
  transition: 0.3s ease;
}

.welcome-btn:hover {
  background: #082c45;

  transform: translateY(-4px);

  box-shadow: 0 12px 25px rgba(8, 44, 69, 0.2);
}

.welcome-btn:hover i {
  transform: translateX(6px);
}

/* =========================================
          ANIMATIONS
========================================= */

@keyframes welcomeFloat {
  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 10px));
  }
}

/* Image reveal */

.welcome-image-area {
  opacity: 0;

  transform: translateX(-50px);

  transition: 1s ease;
}

.welcome-section.welcome-visible .welcome-image-area {
  opacity: 1;

  transform: translateX(0);
}

/* =========================================
          TABLET
========================================= */

@media (max-width: 1000px) {
  .welcome-section {
    padding: 85px 5%;
  }

  .welcome-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .welcome-image-area {
    width: 100%;

    max-width: 600px;
  }

  .welcome-content {
    max-width: 750px;

    margin: auto;
  }

  .welcome-content h2 {
    font-size: 38px;
  }
}

/* =========================================
          MOBILE
========================================= */

@media (max-width: 600px) {
  .welcome-section {
    padding: 65px 20px;
  }

  .welcome-container {
    gap: 45px;
  }

  .welcome-image-area {
    padding: 10px;
  }

  .welcome-image-frame {
    height: 360px;

    border-radius: 15px;
  }

  .welcome-badge {
    right: -5px;

    padding: 12px 15px;
  }

  .welcome-badge i {
    width: 38px;
    height: 38px;

    font-size: 16px;
  }

  .welcome-badge strong {
    font-size: 13px;
  }

  .welcome-badge span {
    font-size: 10px;
  }

  .welcome-content h2 {
    font-size: 30px;
  }

  .welcome-content p {
    font-size: 14px;

    line-height: 1.7;
  }

  .welcome-intro {
    font-size: 15px !important;
  }

  .commitment-card {
    padding: 17px;

    gap: 12px;
  }

  .commitment-icon {
    width: 45px;
    height: 45px;

    font-size: 18px;
  }

  .commitment-content h3 {
    font-size: 14px;
  }

  .commitment-content p {
    font-size: 11px;
  }

  .welcome-btn {
    width: 100%;

    justify-content: center;
  }
}

/* =========================================
          SMALL MOBILE
========================================= */

@media (max-width: 380px) {
  .welcome-content h2 {
    font-size: 27px;
  }

  .welcome-image-frame {
    height: 300px;
  }

  .welcome-badge {
    transform: scale(0.85);

    transform-origin: right center;
  }
}

/* =========================================
        SERVICES SECTION
========================================= */

.services-section {
  position: relative;

  width: 100%;

  padding: 110px 7%;

  background: #f7f8fa;

  overflow: hidden;
}

/* Background circles */

.service-bg-circle {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.circle-one {
  width: 450px;
  height: 450px;

  background: rgba(8, 44, 69, 0.035);

  top: -200px;
  left: -180px;
}

.circle-two {
  width: 350px;
  height: 350px;

  border: 1px solid rgba(212, 166, 58, 0.18);

  bottom: -180px;
  right: -150px;
}

/* =========================================
        CONTAINER
========================================= */

.services-container {
  position: relative;

  z-index: 2;

  max-width: 1250px;

  margin: auto;
}

/* =========================================
        HEADING
========================================= */

.services-heading {
  max-width: 720px;

  margin: 0 auto 60px;

  text-align: center;
}

.services-label {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: #d4a63a;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;
}

.services-label::before,
.services-label::after {
  content: "";

  width: 35px;

  height: 2px;

  background: #d4a63a;
}

.services-heading h2 {
  margin-top: 15px;

  margin-bottom: 18px;

  color: #082c45;

  font-size: 44px;

  line-height: 1.2;
}

.services-heading h2 span {
  color: #d4a63a;
}

.services-heading p {
  color: #666;

  font-size: 15px;

  line-height: 1.8;

  max-width: 650px;

  margin: auto;
}

/* =========================================
        GRID
========================================= */

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

/* =========================================
        CARD
========================================= */

.service-card {
  position: relative;

  background: #fff;

  padding: 30px;

  border-radius: 18px;

  border: 1px solid #e7e9ec;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* Top Gold Line */

.service-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 4px;

  background: #d4a63a;

  transition: 0.45s ease;
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-10px);

  border-color: rgba(212, 166, 58, 0.5);

  box-shadow: 0 20px 45px rgba(8, 44, 69, 0.12);
}

/* =========================================
        FEATURED CARD
========================================= */

.featured-service {
  border: 1px solid rgba(212, 166, 58, 0.5);
}

.popular-badge {
  position: absolute;

  top: 18px;
  right: -35px;

  padding: 5px 35px;

  background: #d4a63a;

  color: #fff;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1px;

  transform: rotate(45deg);
}

/* =========================================
        TOP
========================================= */

.service-top {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 20px;
}

.service-icon {
  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: #082c45;

  color: #d4a63a;

  font-size: 23px;

  transition: 0.4s ease;
}

.service-card:hover .service-icon {
  background: #d4a63a;

  color: #082c45;

  transform: rotate(-5deg) scale(1.08);
}

.service-number {
  color: #d8dadd;

  font-size: 32px;

  font-weight: 700;

  transition: 0.4s;
}

.service-card:hover .service-number {
  color: rgba(212, 166, 58, 0.35);
}

/* =========================================
        TITLE
========================================= */

.service-card h3 {
  color: #082c45;

  font-size: 21px;

  margin-bottom: 12px;
}

.service-description {
  color: #777;

  font-size: 13px;

  line-height: 1.7;

  min-height: 66px;

  margin-bottom: 20px;
}

/* =========================================
        LIST
========================================= */

.service-list {
  display: flex;

  flex-direction: column;

  gap: 10px;

  margin-bottom: 20px;
}

.service-list div {
  display: flex;

  align-items: center;

  gap: 9px;

  color: #444;

  font-size: 13px;
}

.service-list i {
  color: #d4a63a;

  font-size: 11px;
}

/* =========================================
        VIEW DETAILS
========================================= */

.service-more {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 0;

  border: none;

  background: transparent;

  color: #082c45;

  font-family: "Poppins", sans-serif;

  font-size: 13px;

  font-weight: 600;

  cursor: pointer;
}

.service-more i {
  transition: 0.3s;
}

.service-more:hover {
  color: #d4a63a;
}

.service-more:hover i {
  transform: translateX(5px);
}

/* =========================================
        EXTRA CONTENT
========================================= */

.service-extra {
  max-height: 0;

  overflow: hidden;

  opacity: 0;

  transition:
    max-height 0.5s ease,
    opacity 0.4s ease;
}

.service-card.show-details .service-extra {
  max-height: 150px;

  opacity: 1;

  margin-top: 15px;

  padding-top: 15px;

  border-top: 1px solid #eee;
}

.service-extra p {
  color: #666;

  font-size: 12px;

  line-height: 1.7;

  margin: 0;
}

/* =========================================
        CTA
========================================= */

.services-cta {
  margin-top: 60px;

  padding: 28px 35px;

  background: #082c45;

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  position: relative;

  overflow: hidden;
}

.services-cta::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  border: 1px solid rgba(212, 166, 58, 0.3);

  border-radius: 50%;

  right: -70px;
  top: -80px;
}

.services-cta span {
  color: #d4a63a;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;
}

.services-cta h3 {
  color: #fff;

  font-size: 22px;

  margin-top: 5px;
}

.services-cta a {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 13px 23px;

  background: #d4a63a;

  color: #fff;

  border-radius: 40px;

  font-size: 13px;

  font-weight: 600;

  white-space: nowrap;

  transition: 0.35s;
}

.services-cta a:hover {
  background: #fff;

  color: #082c45;

  transform: translateY(-3px);
}

.services-cta a i {
  transition: 0.3s;
}

.services-cta a:hover i {
  transform: translateX(5px);
}

/* =========================================
        SCROLL ANIMATION
========================================= */

.service-card {
  opacity: 0;

  transform: translateY(40px);
}

.services-visible .service-card {
  animation: serviceReveal 0.7s ease forwards;
}

.services-visible .service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.services-visible .service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.services-visible .service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.services-visible .service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.services-visible .service-card:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes serviceReveal {
  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* =========================================
        TABLET
========================================= */

@media (max-width: 1050px) {
  .services-section {
    padding: 90px 5%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child {
    grid-column: span 2;

    max-width: 500px;

    width: 100%;

    margin: auto;
  }
}

/* =========================================
        MOBILE
========================================= */

@media (max-width: 650px) {
  .services-section {
    padding: 70px 20px;
  }

  .services-heading {
    margin-bottom: 40px;
  }

  .services-heading h2 {
    font-size: 31px;
  }

  .services-heading p {
    font-size: 13px;
  }

  .services-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .service-card:last-child {
    grid-column: auto;

    max-width: none;
  }

  .service-card {
    padding: 25px;
  }

  .service-description {
    min-height: auto;
  }

  .services-cta {
    flex-direction: column;

    align-items: flex-start;

    padding: 25px;

    margin-top: 40px;
  }

  .services-cta h3 {
    font-size: 18px;
  }

  .services-cta a {
    width: 100%;

    justify-content: center;
  }
}

/* =========================================
        SMALL MOBILE
========================================= */

@media (max-width: 380px) {
  .services-heading h2 {
    font-size: 27px;
  }

  .service-card {
    padding: 22px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
  }

  .service-card h3 {
    font-size: 19px;
  }
}

/* =========================================
        GALLERY SECTION
========================================= */

.gallery-section {

    position: relative;

    width: 100%;

    padding: 110px 7%;

    background: #ffffff;

    overflow: hidden;

}


/* Background decoration */

.gallery-section::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(8, 44, 69, .035);

    top: -180px;
    right: -180px;

}


.gallery-section::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    border: 1px solid rgba(212, 166, 58, .15);

    bottom: -120px;
    left: -100px;

}


/* =========================================
        CONTAINER
========================================= */

.gallery-container {

    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: auto;

}


/* =========================================
        HEADING
========================================= */

.gallery-heading {

    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;

}


.gallery-label {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #D4A63A;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}


.gallery-label::before,
.gallery-label::after {

    content: "";

    width: 35px;

    height: 2px;

    background: #D4A63A;

}


.gallery-heading h2 {

    margin-top: 14px;

    margin-bottom: 15px;

    color: #082C45;

    font-size: 44px;

    line-height: 1.2;

}


.gallery-heading h2 span {

    color: #D4A63A;

}


.gallery-heading p {

    color: #666;

    font-size: 14px;

    line-height: 1.8;

    max-width: 620px;

    margin: auto;

}


/* =========================================
        GALLERY GRID
========================================= */

.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


/* =========================================
        SQUARE CARD
========================================= */

.gallery-card {

    position: relative;

    width: 100%;

    aspect-ratio: 1 / 1;

    border-radius: 18px;

    overflow: hidden;

    cursor: pointer;

    background: #082C45;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .08);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

}


/* Image */

.gallery-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .7s ease,
        filter .5s ease;

}


/* Dark image overlay */

.gallery-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(3, 25, 40, .9),
            rgba(3, 25, 40, .15) 65%,
            transparent
        );

    opacity: .75;

    transition: .5s;

}


/* =========================================
        HOVER
========================================= */

.gallery-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(8, 44, 69, .18);

}


.gallery-card:hover img {

    transform: scale(1.1);

    filter: brightness(.8);

}


.gallery-card:hover::after {

    opacity: .95;

}


/* =========================================
        OVERLAY CONTENT
========================================= */

.gallery-overlay {

    position: absolute;

    z-index: 3;

    inset: 0;

    padding: 22px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

}


/* Number */

.gallery-overlay > span {

    position: absolute;

    top: 20px;
    left: 20px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.9);

    color: #082C45;

    font-size: 12px;

    font-weight: 700;

    transition: .4s;

}


.gallery-card:hover
.gallery-overlay > span {

    background: #D4A63A;

    color: #fff;

    transform: rotate(360deg);

}


/* Text */

.gallery-overlay h3 {

    color: #fff;

    font-size: 19px;

    margin-bottom: 4px;

    transform: translateY(15px);

    opacity: .9;

    transition: .4s;

}


.gallery-overlay p {

    color: rgba(255,255,255,.75);

    font-size: 12px;

    transform: translateY(15px);

    opacity: 0;

    transition: .4s .05s;

}


.gallery-card:hover
.gallery-overlay h3 {

    transform: translateY(0);

}


.gallery-card:hover
.gallery-overlay p {

    transform: translateY(0);

    opacity: 1;

}


/* =========================================
        OPEN BUTTON
========================================= */

.gallery-overlay a {

    position: absolute;

    right: 20px;
    bottom: 20px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #D4A63A;

    color: #fff;

    font-size: 13px;

    transform:
        translateY(15px)
        scale(.8);

    opacity: 0;

    transition: .4s;

}


.gallery-card:hover
.gallery-overlay a {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);

}


.gallery-overlay a:hover {

    background: #fff;

    color: #082C45;

    transform:
        translateY(-3px)
        scale(1.08) !important;

}


/* =========================================
        BUTTON
========================================= */

.gallery-button {

    display: flex;

    justify-content: center;

    margin-top: 50px;

}


.gallery-button a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 28px;

    border-radius: 50px;

    background: #082C45;

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    transition: .35s;

}


.gallery-button a i {

    transition: .3s;

}


.gallery-button a:hover {

    background: #D4A63A;

    transform: translateY(-4px);

    box-shadow:
        0 12px 25px rgba(212,166,58,.25);

}


.gallery-button a:hover i {

    transform: translateX(5px);

}


/* =========================================
        TABLET
========================================= */

@media(max-width:950px) {

    .gallery-section {

        padding: 90px 5%;

    }


    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .gallery-heading h2 {

        font-size: 38px;

    }

}


/* =========================================
        MOBILE
========================================= */

@media(max-width:600px) {

    .gallery-section {

        padding: 70px 20px;

    }


    .gallery-heading {

        margin-bottom: 35px;

    }


    .gallery-heading h2 {

        font-size: 30px;

    }


    .gallery-heading p {

        font-size: 13px;

    }


    .gallery-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .gallery-card {

        border-radius: 15px;

    }


    .gallery-overlay {

        padding: 20px;

    }


    .gallery-overlay h3 {

        font-size: 18px;

        transform: translateY(0);

    }


    .gallery-overlay p {

        opacity: 1;

        transform: translateY(0);

    }


    .gallery-overlay a {

        opacity: 1;

        transform: scale(1);

    }

}


/* =========================================
        SMALL MOBILE
========================================= */

@media(max-width:380px) {

    .gallery-heading h2 {

        font-size: 27px;

    }


    .gallery-card {

        border-radius: 13px;

    }

}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =========================
        GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fa;
    color:#082c45;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}


/* =========================
      HERO
========================= */

.services-hero{

    min-height:62vh;

    position:relative;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(
        110deg,
        #ffffff 0%,
        #ffffff 58%,
        #082c45 58%,
        #082c45 100%
    );

    padding:100px 8% 70px;

}


/* gold decorative circle */

.hero-shape{

    position:absolute;

    width:480px;
    height:480px;

    border:1px solid rgba(212,166,58,.5);

    border-radius:50%;

    right:-120px;
    top:-100px;

    animation:rotateShape 18s linear infinite;

}

.hero-shape::before{

    content:"";

    position:absolute;

    inset:30px;

    border:1px solid rgba(212,166,58,.3);

    border-radius:50%;

}

@keyframes rotateShape{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}


.services-hero-content{

    max-width:720px;

    position:relative;

    z-index:2;

    animation:heroReveal 1s ease forwards;

}

@keyframes heroReveal{

    from{
        opacity:0;
        transform:translateY(35px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


.section-tag{

    display:inline-block;

    color:#d4a63a;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

}

.services-hero h1{

    font-size:58px;

    line-height:1.1;

    color:#082c45;

    margin-bottom:20px;

}

.services-hero h1 span{

    color:#d4a63a;

    display:block;

}

.services-hero-content > p{

    max-width:620px;

    color:#58636c;

    font-size:16px;

    line-height:1.8;

}


/* =========================
      STATS
========================= */

.hero-mini-stats{

    display:flex;

    gap:45px;

    margin-top:35px;

}

.hero-mini-stats div{

    display:flex;

    flex-direction:column;

}

.hero-mini-stats strong{

    font-size:25px;

    color:#082c45;

}

.hero-mini-stats span{

    font-size:11px;

    color:#777;

}


/* =========================
      SERVICES
========================= */

.services-section{

    padding:100px 7%;

    background:#fff;

}

.section-heading{

    text-align:center;

    max-width:700px;

    margin:0 auto 45px;

}

.section-heading > span{

    font-size:12px;

    letter-spacing:2px;

    color:#d4a63a;

    font-weight:700;

}

.section-heading h2{

    font-size:42px;

    margin:8px 0 15px;

    color:#082c45;

}

.section-heading h2 strong{

    color:#d4a63a;

}

.section-heading p{

    color:#6c757d;

    font-size:15px;

    line-height:1.7;

}


/* =========================
       FILTER
========================= */

.service-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:50px;

}

.filter-btn{

    border:1px solid #dfe5e8;

    background:#fff;

    color:#082c45;

    padding:11px 20px;

    border-radius:30px;

    cursor:pointer;

    font-family:inherit;

    font-size:13px;

    font-weight:600;

    transition:.3s;

}

.filter-btn:hover,
.filter-btn.active{

    background:#082c45;

    color:#fff;

    border-color:#082c45;

    transform:translateY(-2px);

}


/* =========================
       GRID
========================= */

.services-grid{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:25px;

}


/* =========================
       CARD
========================= */

.service-card{

    position:relative;

    background:#fff;

    border:1px solid #e6eaed;

    border-radius:22px;

    padding:35px 30px;

    overflow:hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

    animation:cardShow .7s ease both;

}

@keyframes cardShow{

    from{
        opacity:0;
        transform:translateY(35px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#d4a63a;

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#d4a63a;

    box-shadow:
        0 25px 60px rgba(8,44,69,.12);

}


/* number */

.card-number{

    position:absolute;

    top:20px;
    right:25px;

    font-size:12px;

    font-weight:700;

    color:#c8ced2;

}


/* icon */

.service-icon{

    width:62px;
    height:62px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:17px;

    background:#082c45;

    color:#d4a63a;

    font-size:25px;

    margin-bottom:22px;

    transition:.4s;

}

.service-card:hover .service-icon{

    background:#d4a63a;

    color:#082c45;

    transform:
        rotate(-5deg)
        scale(1.08);

}


.service-card h3{

    font-size:22px;

    color:#082c45;

    margin-bottom:12px;

}

.service-card > p{

    font-size:13px;

    line-height:1.7;

    color:#707b82;

    margin-bottom:22px;

}


/* list */

.service-card ul{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:9px 15px;

    margin-bottom:25px;

}

.service-card li{

    position:relative;

    padding-left:15px;

    font-size:11px;

    color:#4e5960;

    line-height:1.4;

}

.service-card li::before{

    content:"";

    position:absolute;

    width:5px;
    height:5px;

    border-radius:50%;

    background:#d4a63a;

    left:0;
    top:6px;

}


/* link */

.service-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#082c45;

    font-size:13px;

    font-weight:700;

    transition:.3s;

}

.service-link i{

    transition:.3s;

}

.service-link:hover{

    color:#d4a63a;

}

.service-link:hover i{

    transform:translateX(6px);

}


/* =========================
/* =========================
          CTA
========================= */

.services-cta {
    margin: 20px 7% 90px;

    border-radius: 30px;

    padding: 70px 40px;

    background: linear-gradient(
        135deg,
        #082c45,
        #0b405d
    );

    position: relative;

    overflow: hidden;

    /* Center everything */
    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}


/* Decorative Circle */

.services-cta::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(212,166,58,.3);

    border-radius: 50%;

    right: -100px;
    bottom: -150px;

    pointer-events: none;
}


/* CTA CONTENT */

.cta-content {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 800px;

    display: flex;
    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    margin: 0 auto;
}


/* Small Heading */

.cta-content > span {

    display: block;

    color: #d4a63a;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-align: center;

    margin-bottom: 8px;
}


/* Main Heading */

.cta-content h2 {

    color: #fff;

    font-size: 38px;

    line-height: 1.3;

    margin: 10px 0;

    text-align: center;

    width: 100%;
}


/* Gold Text */

.cta-content h2 strong {

    color: #d4a63a;

}


/* Paragraph */

.cta-content p {

    color: #cbd5da;

    font-size: 14px;

    line-height: 1.7;

    margin: 0 auto 28px;

    max-width: 600px;

    text-align: center;
}


/* Buttons Container */

.cta-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    width: 100%;
}


/* Buttons */

.cta-primary,
.cta-whatsapp {

    padding: 14px 25px;

    border-radius: 40px;

    font-size: 13px;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    transition: .3s;

}


/* Primary */

.cta-primary {

    background: #d4a63a;

    color: #082c45;
}


/* Primary Hover */

.cta-primary:hover {

    background: #fff;

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}


/* WhatsApp */

.cta-whatsapp {

    background: #fff;

    color: #082c45;
}


/* WhatsApp Hover */

.cta-whatsapp:hover {

    background: #d4a63a;

    color: #082c45;

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}


/* =========================
       MOBILE
========================= */

@media (max-width: 600px) {

    .services-cta {

        margin: 20px 20px 60px;

        padding: 55px 20px;

        border-radius: 22px;
    }

    .cta-content {

        width: 100%;

        align-items: center;

        text-align: center;
    }

    .cta-content h2 {

        font-size: 28px;

        line-height: 1.3;

        text-align: center;
    }

    .cta-content p {

        font-size: 13px;

        text-align: center;

        max-width: 100%;
    }

    .cta-buttons {

        flex-direction: column;

        width: 100%;

        align-items: center;
    }

    .cta-primary,
    .cta-whatsapp {

        width: 100%;

        max-width: 280px;

        justify-content: center;
    }

}

/* =========================
       TABLET
========================= */

@media(max-width:1100px){

    .services-grid{

        grid-template-columns:
            repeat(2,1fr);

    }

    .services-hero h1{

        font-size:48px;

    }

}


/* =========================
       MOBILE
========================= */

@media(max-width:700px){

    .services-hero{

        min-height:auto;

        padding:120px 25px 70px;

        background:#fff;

    }

    .hero-shape{

        opacity:.25;

        width:300px;
        height:300px;

        right:-150px;

    }

    .services-hero h1{

        font-size:38px;

    }

    .services-hero-content > p{

        font-size:14px;

    }

    .hero-mini-stats{

        gap:20px;

        flex-wrap:wrap;

    }

    .hero-mini-stats strong{

        font-size:20px;

    }

    .hero-mini-stats span{

        font-size:9px;

    }


    .services-section{

        padding:70px 20px;

    }

    .section-heading h2{

        font-size:32px;

    }

    .section-heading p{

        font-size:13px;

    }


    .service-filter{

        justify-content:flex-start;

        overflow-x:auto;

        flex-wrap:nowrap;

        padding-bottom:10px;

    }

    .filter-btn{

        white-space:nowrap;

    }


    .services-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .service-card{

        padding:30px 22px;

    }


    .service-card h3{

        font-size:20px;

    }

    .service-card ul{

        grid-template-columns:1fr 1fr;

    }


    .services-cta{

        margin:0 20px 60px;

        padding:50px 20px;

        border-radius:22px;

    }

    .cta-content h2{

        font-size:28px;

    }

    .cta-buttons{

        flex-direction:column;

    }

    .cta-primary,
    .cta-whatsapp{

        justify-content:center;

        width:100%;

    }

}


/* =========================
       SMALL MOBILE
========================= */

@media(max-width:400px){

    .services-hero h1{

        font-size:32px;

    }

    .hero-mini-stats{

        display:grid;

        grid-template-columns:1fr 1fr;

    }

    .service-card ul{

        grid-template-columns:1fr;

    }

}
