/* =========================================================
   01. RESET & GLOBAL
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background: #fff;
  color: #2a2a2a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none !important;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

p {
  color: #555;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
}

::selection {
  background: #fa65b1;
  color: #fff;
}


/* =========================================================
   02. COMMON
========================================================= */

.section-heading {
  position: relative;
  z-index: 2;
}

.section-heading h6,
.section-title h6 {
  margin-bottom: 15px;
  color: #726ae3;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading h4 {
  margin-bottom: 25px;
  color: #2a2a2a;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
}

.section-heading h4 em,
.section-title h2 em,
.top_cat__area em {
  color: #726ae3;
  font-style: normal;
}

.line-dec {
  width: 50px;
  height: 2px;
  background: #726ae3;
}

.border-first-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.border-first-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 42px;
  padding: 0;
  margin: 0;
  line-height: 1;
  text-align: center;
  text-decoration: none;

  border: 1px solid #fa65b1;
  border-radius: 6px;
  color: #fa65b1;
  background: transparent;

  transition: all 0.3s ease;
}

.border-first-button a:hover {
  background: #fa65b1;
  color: #fff !important;
}


/* =========================================================
   03. PRELOADER
========================================================= */

.js-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: #fff;
}

.preloader-inner .dot,
.preloader-inner .dots span {
  width: 16px;
  height: 16px;
  background: #fa65b1;
  border-radius: 50%;
}

.preloader-inner .dot {
  position: absolute;
  top: 12px;
  left: 15px;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  margin-top: 12px;
  margin-left: 31px;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  margin-left: 16px;
}

@keyframes dot {
  50% {
    transform: translateX(96px);
  }
}

@keyframes dots {
  50% {
    transform: translateX(-31px);
  }
}


/* =========================================================
   04. HEADER
========================================================= */

.header-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  height: 100px;
  background: #fff;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.03);

  transition: all 0.3s ease;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area .main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 100px;
  background: transparent;
}

.header-area .main-nav .logo {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #1a1a1a;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.header-area .main-nav .logo img {
  width: 70px;
  max-width: 70px;
  height: auto;
  object-fit: contain;
}

/* Navigation */

.header-area .main-nav .nav {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 0;
}

.header-area .main-nav .nav li {
  padding: 0 12px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0;
  padding-left: 25px;
}

.header-area .main-nav .nav li a {
  display: block;

  height: 40px;
  line-height: 40px;

  color: #2a2a2a;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;

  transition: all 0.3s ease;
}

.header-area .main-nav .nav li:hover > a,
.header-area .main-nav .nav li a.active {
  color: #fa65b1 !important;
}

/* Fixed header */

.background-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;

  height: 80px !important;
  background: #fff !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);

  transition: all 0.3s ease;
}

.background-header .main-nav {
  min-height: 80px;
}

.background-header .main-nav .logo {
  color: #1a1a1a;
}

.background-header .main-nav .nav li a {
  color: #2a2a2a;
}

.background-header .main-nav .nav {
  margin-top: 0 !important;
}


/* =========================================================
   05. MOBILE MENU
========================================================= */

.menu-trigger {
  display: none;
  position: absolute;

  top: 30px;
  right: 25px;

  width: 32px;
  height: 40px;

  cursor: pointer;
  z-index: 999;
  text-indent: -9999px;
}

.menu-trigger span,
.menu-trigger span::before,
.menu-trigger span::after {
  position: absolute;
  left: 0;

  display: block;

  width: 30px;
  height: 2px;

  background: #2a2a2a;

  transition: all 0.3s ease;
}

.menu-trigger span {
  top: 16px;
}

.menu-trigger span::before,
.menu-trigger span::after {
  content: "";
}

.menu-trigger span::before {
  top: -10px;
}

.menu-trigger span::after {
  top: 10px;
}

.menu-trigger.active span {
  background: transparent;
}

.menu-trigger.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-trigger.active span::after {
  top: 0;
  transform: rotate(-45deg);
}


/* =========================================================
   06. MAIN BANNER
========================================================= */

.main-banner {
  position: relative;
  overflow: hidden;

  padding: 226px 0 120px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.main-banner::after {
  content: "";

  position: absolute;
  top: 60px;
  left: 0;

  width: 262px;
  height: 625px;

  background: url("../images/slider-left-dec.jpg") no-repeat;
  z-index: 1;
}

.main-banner::before {
  content: "";

  position: absolute;
  top: 60px;
  right: 0;

  width: 1159px;
  height: 797px;

  background: url("../images/slider-right-dec.jpg") no-repeat;
  z-index: 0;
}

.main-banner .container {
  position: relative;
  z-index: 2;
}

.main-banner .left-content {
  margin-right: 15px;
}

.main-banner .left-content h6 {
  margin-bottom: 15px;

  color: #fa65b1;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-banner .left-content h2 {
  position: relative;

  margin-bottom: 20px;

  color: #2a2a2a;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}

.main-banner .left-content p {
  margin-right: 45px;
  margin-bottom: 30px;
}

.main-banner .right-image {
  position: relative;
  z-index: 2;
  text-align: right;
}

.main-banner .right-image img {
  width: 100%;
  max-width: 593px;
  margin-left: auto;
}


/* =========================================================
   07. ABOUT
========================================================= */

#about {
  padding-top: 130px;
  padding-bottom: 60px;
}

.about-left-image img {
  width: 100%;
  margin-right: 45px;
}

.about-right-content p {
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-right-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   08. SERVICE CATEGORY
========================================================= */

.top_cat__area {
  padding: 80px 0 60px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-title {
  margin-bottom: 55px;
  text-align: center;
}

.section-title h2 {
  margin: 0;

  color: #2a2a2a;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
}

.section-title .line-dec {
  margin: 20px auto 0;
}

.cat_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;

  text-align: center;
}

.cat_list li {
  display: flex;
  align-items: center;

  margin: 0;

  background: #fff;
  border: 1px solid #ddd;
  border-radius: 100px;

  transition: all 0.3s ease;
}

.cat_list li a {
  display: flex;
  align-items: center;

  min-height: 65px;
  padding: 8px 22px 8px 10px;

  color: #6d7193;
  font-size: 14px;
  font-weight: 500;

  transition: all 0.3s ease;
}

.cat_list li a img {
  width: 48px;
  height: 48px;
  margin-right: 10px;

  object-fit: contain;

  background: #fff;
  border: 4px solid #ecedff;
  border-radius: 50%;
}

.cat_list li:hover {
  background: #525fe1;
  border-color: #525fe1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(82, 95, 225, 0.2);
}

.cat_list li:hover a {
  color: #fff;
}


/* =========================================================
   09. PORTFOLIO
========================================================= */

.our-portfolio {
  position: relative;
  overflow: hidden;

  padding-top: 130px;
  padding-bottom: 30px;
}

.our-portfolio::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 414px;
  height: 861px;

  background: url("../images/portfolio-right-dec.jpg") no-repeat;
  z-index: 0;
}

.our-portfolio::after {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 677px;
  height: 759px;

  background: url("../images/portfolio-left-dec.jpg") no-repeat;
  z-index: 0;
}

.our-portfolio .container,
.our-portfolio .container-fluid {
  position: relative;
  z-index: 2;
}

.our-portfolio .section-heading {
  margin-bottom: 70px;
}

.our-portfolio .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
}

.our-portfolio .item {
  position: relative;
  z-index: 2;
}

.portfolio-item {
  overflow: hidden;

  margin: 15px;

  background: #fff;
  border-radius: 25px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.portfolio-item .thumb {
  position: relative;
  overflow: hidden;

  height: 300px;

  border-radius: 23px 23px 0 0;
}

.portfolio-item .thumb img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.portfolio-item:hover .thumb img {
  transform: scale(1.05);
}

.portfolio-item .down-content {
  padding: 20px 15px;

  background: #fff;
  text-align: center;

  border-radius: 0 0 23px 23px;
}

.portfolio-item .down-content h4 {
  margin-bottom: 8px;

  color: #2a2a2a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;

  transition: color 0.3s ease;
}

.portfolio-item .down-content span {
  color: #999;
  font-size: 14px;
  font-weight: 500;

  transition: color 0.3s ease;
}

.portfolio-item:hover .down-content h4,
.portfolio-item:hover .down-content span {
  color: #fa65b1;
}

.our-portfolio .owl-nav {
  position: absolute;
  top: -115px;
  right: 10%;

  display: flex !important;
  gap: 10px;
}

.our-portfolio .owl-nav span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  background: #eee;
  border-radius: 50%;

  color: #fff;
  font-size: 30px;

  transition: all 0.3s ease;
}

.our-portfolio .owl-nav span:hover {
  background: #fa65b1;
}


/* =========================================================
   10. CONTACT
========================================================= */

.contact-us {
  padding-top: 130px;
  padding-bottom: 30px;
}

.contact-us .section-heading {
  margin-bottom: 80px;
  text-align: center;
}

.contact-us .section-heading .line-dec {
  margin: 0 auto;
}

form#contact {
  position: relative;
  overflow: hidden;

  background: #fff;
  border-radius: 23px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

form#contact::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 726px;
  height: 78px;

  background: url("../images/contact-top-right.png") no-repeat;
  z-index: 1;
}

form#contact::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;

  width: 532px;
  height: 106px;

  background: url("../images/contact-bottom-right.png") no-repeat;
  z-index: 1;
}

.contact-dec img {
  position: absolute;
  top: -242px;
  right: 25px;

  width: 224px;
  z-index: 3;
}

#map {
  height: 100%;
}

form#contact #map iframe {
  display: block;

  width: 100%;
  min-height: 636px;

  border: 0;
  border-radius: 23px 0 0 23px;

  position: relative;
  z-index: 2;
}

.fill-form {
  padding: 70px 60px 70px 30px;
  position: relative;
  z-index: 2;
}

.fill-form .info-post {
  margin-bottom: 20px;
}

.fill-form .icon {
  min-height: 145px;
  padding: 22px 12px;

  background: #fff;
  border-radius: 23px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);

  text-align: center;
  transition: all 0.3s ease;
}

.fill-form .icon:hover {
  transform: translateY(-3px);
}

.fill-form .icon img {
  width: 55px;
  max-width: 55px;
  height: 55px;

  margin: 0 auto;

  object-fit: contain;
}

.fill-form .icon a {
  display: block;

  margin-top: 12px;

  color: #2a2a2a;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;

  word-break: break-word;

  transition: color 0.3s ease;
}

.fill-form .icon:hover a {
  color: #fa65b1;
}

form#contact input {
  width: 100%;
  height: 46px;

  margin-top: 25px;
  padding: 0 20px;

  background: transparent;
  border: 1px solid #eee;
  border-radius: 23px;
  outline: none;

  color: #2a2a2a;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;

  transition: all 0.3s ease;
}

form#contact input:focus,
form#contact textarea:focus {
  border-color: #fa65b1;
  box-shadow: 0 0 0 3px rgba(250, 101, 177, 0.08);
}

form#contact input::placeholder,
form#contact textarea::placeholder {
  color: #aaa;
}

form#contact textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 200px;
  min-height: 200px;
  max-height: 200px;

  margin-top: 25px;
  padding: 15px 20px;

  background: transparent;
  border: 1px solid #eee;
  border-radius: 23px;
  outline: none;

  color: #2a2a2a;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;

  resize: vertical;
  transition: all 0.3s ease;
}

form#contact button {
  width: 100%;

  margin-top: 25px;
  padding: 12px 25px;

  background: #fff;
  border: 1px solid #fa65b1;
  border-radius: 23px;
  outline: none;

  color: #fa65b1;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;

  cursor: pointer;

  transition: all 0.3s ease;
}

form#contact button:hover {
  background: #fa65b1 !important;
  color: #fff !important;
}


/* =========================================================
   11. FOOTER
========================================================= */

footer {
  margin-top: 130px;
  padding: 20px 0;

  background: url("../images/footer-bg.jpg") center / cover no-repeat;
}

footer p {
  margin: 0;

  color: #fff;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

footer p a {
  color: #fff;
}


/* =========================================================
   12. TABLET
========================================================= */

@media (max-width: 1200px) {

  .header-area .main-nav .nav {
    gap: 0;
  }

  .header-area .main-nav .nav li {
    padding: 0 8px;
  }

  .header-area .main-nav .nav li:last-child {
    padding-left: 15px;
  }

  .header-area .main-nav .logo {
    font-size: 16px;
  }

  .main-banner .left-content h2 {
    font-size: 44px;
  }

  .cat_list ul {
    gap: 14px;
  }

}


/* =========================================================
   13. TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 991px) {

  /* Header */

  .header-area {
    height: 90px;
  }

  .header-area .main-nav {
    min-height: 90px;
  }

  .header-area .main-nav .logo {
    font-size: 15px;
  }

  .header-area .main-nav .logo img {
    width: 60px;
    max-width: 60px;
  }

  .header-area .main-nav .nav {
    display: none !important;
  }

  .menu-trigger {
    display: block;
  }

  /* Banner */

  .main-banner {
    padding: 180px 0 70px;
    text-align: center;
  }

  .main-banner::before {
    display: none;
  }

  .main-banner .left-content {
    margin-right: 0;
  }

  .main-banner .left-content h2 {
    font-size: 42px;
  }

  .main-banner .left-content p {
    margin-right: 0;
  }

  .main-banner .right-image {
    margin-top: 40px;
    text-align: center;
  }

  .main-banner .right-image img {
    max-width: 520px;
    margin: 0 auto;
  }

  /* About */

  #about {
    padding-top: 90px;
  }

  .about-left-image {
    margin-bottom: 45px;
  }

  .about-left-image img {
    margin: 0 auto;
  }

  /* Service */

  .top_cat__area {
    padding: 70px 0 50px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  /* Portfolio */

  .our-portfolio {
    padding-top: 90px;
  }

  .our-portfolio .section-heading {
    margin-bottom: 50px;
  }

  .our-portfolio .owl-nav {
    display: none !important;
  }

  .portfolio-item .thumb {
    height: 260px;
  }

  /* Contact */

  .contact-us {
    padding-top: 90px;
  }

  .contact-us .section-heading {
    margin-bottom: 50px;
  }

  form#contact {
    padding: 0;
  }

  form#contact #map iframe {
    min-height: 400px;
    border-radius: 23px 23px 0 0;
  }

  .fill-form {
    padding: 40px 30px 50px;
  }

  .fill-form .icon {
    min-height: 135px;
  }

  footer {
    margin-top: 90px;
  }
}


/* =========================================================
   14. MOBILE
========================================================= */

@media (max-width: 767px) {

  /* Global */

  p {
    font-size: 14px;
    line-height: 1.8;
  }

  .section-heading h4 {
    font-size: 28px;
  }

  /* Header */

  .header-area {
    height: 80px;
    padding: 0 15px;
  }

  .header-area .container {
    padding: 0;
  }

  .header-area .main-nav {
    min-height: 80px;
  }

  .header-area .main-nav .logo {
    gap: 8px;

    margin-left: 5px;

    font-size: 12px;
    max-width: calc(100% - 60px);
  }

  .header-area .main-nav .logo img {
    width: 50px;
    max-width: 50px;
  }

  .menu-trigger {
    top: 22px;
    right: 10px;
  }

  /*
     Mobile menu dari custom.js
     Pastikan JS memberikan display:block
     ketika .nav dibuka.
  */

  .header-area .main-nav .nav {
    position: absolute;
    top: 80px;
    left: 0;

    width: 100%;

    margin: 0 !important;
    padding: 0;

    background: #fff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
  }

  .header-area .main-nav .nav li {
    width: 100%;
    padding: 0 !important;

    border-bottom: 1px solid #eee;
  }

  .header-area .main-nav .nav li a {
    width: 100%;
    height: 50px !important;
    padding: 0 20px !important;

    background: #fff !important;

    color: #2a2a2a !important;
    font-size: 14px;

    line-height: 50px !important;
    text-align: left;
  }

  .header-area .main-nav .nav li a:hover,
  .header-area .main-nav .nav li a.active {
    background: #f8f8f8 !important;
    color: #fa65b1 !important;
  }

  .header-area .main-nav .nav li:last-child {
    display: block;
  }

  .header-area .main-nav .nav li:last-child a {
    padding: 0 20px !important;
  }

  /* Background header */

  .background-header {
    height: 80px !important;
  }

  .background-header .main-nav {
    min-height: 80px;
  }

  /* Banner */

  .main-banner {
    padding: 150px 15px 60px;
  }

  .main-banner::after {
    display: none;
  }

  .main-banner .left-content h6 {
    font-size: 16px;
  }

  .main-banner .left-content h2 {
    font-size: 32px;
    line-height: 1.25;
  }

  .main-banner .left-content p {
    margin-bottom: 25px;
  }

  .main-banner .right-image {
    margin-top: 35px;
  }

  .main-banner .right-image img {
    max-width: 400px;
  }

  /* About */

  #about {
    padding-top: 70px;
  }

  .about-left-image {
    margin-bottom: 35px;
  }

  .about-right-content p {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* Service */

  .top_cat__area {
    padding: 60px 15px 45px;
  }

  .section-title {
    margin-bottom: 35px;
  }

  .section-title h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .cat_list ul {
    gap: 12px;
  }

  .cat_list li {
    width: 100%;
    max-width: 330px;
  }

  .cat_list li a {
    width: 100%;
    justify-content: flex-start;

    padding: 7px 18px 7px 8px;

    font-size: 13px;
  }
  .cat_list li a img {
    width: 45px;
    height: 45px;
  }

  /* Portfolio */

  .our-portfolio {
    padding-top: 70px;
  }
  .our-portfolio::before,
  .our-portfolio::after {
    display: none;
  }
  .our-portfolio .section-heading {
    margin-bottom: 35px;
    text-align: center;
  }
  .our-portfolio .section-heading .line-dec {
    margin: 0 auto;
  }
  .portfolio-item {
    margin: 10px;
  }
  .portfolio-item .thumb {
    height: 240px;
  }
  .portfolio-item .down-content {
    padding: 16px 12px;
  }
  .portfolio-item .down-content h4 {
    font-size: 16px;
  }
  .portfolio-item .down-content span {
    font-size: 13px;
  }

  /* Contact */

  .contact-us {
    padding-top: 70px;
  }
  .contact-us .section-heading {
    margin-bottom: 35px;
  }
  form#contact::before,
  form#contact::after,
  .contact-dec {
    display: none;
  }
  form#contact #map iframe {
    min-height: 350px;
    height: 350px;
    border-radius: 23px 23px 0 0;
  }
  .fill-form {
    padding: 30px 20px 35px;
  }
  .fill-form .icon {
    min-height: 125px;
    padding: 18px 10px;
  }
  .fill-form .icon img {
    width: 45px;
    height: 45px;
  }
  .fill-form .icon a {
    font-size: 12px;
  }
  form#contact input {
    margin-top: 20px;
  }
  form#contact textarea {
    height: 170px;
    min-height: 170px;
    max-height: 220px;
    margin-top: 20px;
  }
  form#contact button {
    margin-top: 20px;
  }
  /* Footer */
  footer {
    margin-top: 70px;
    padding: 15px;
  }
  footer p {
    font-size: 12px;
  }
}


/* =========================================================
   15. VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .header-area .main-nav .logo {
    font-size: 10px;
  }
  .header-area .main-nav .logo img {
    width: 45px;
    max-width: 45px;
  }
  .main-banner {
    padding-top: 140px;
  }
  .main-banner .left-content h2 {
    font-size: 27px;
  }
  .main-banner .left-content h6 {
    font-size: 14px;
  }
  .main-banner .right-image img {
    max-width: 320px;
  }
  .section-title h2 {
    font-size: 27px;
  }
  .section-heading h4 {
    font-size: 25px;
  }
  .portfolio-item .thumb {
    height: 210px;
  }
  form#contact #map iframe {
    height: 300px;
    min-height: 300px;
  }
  .fill-form {
    padding: 25px 15px 30px;
  }

}


/* =========================================================
   16. EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

  .header-area .main-nav .logo {
    font-size: 9px;
  }
  .header-area .main-nav .logo img {
    width: 40px;
    max-width: 40px;
  }
  .main-banner .left-content h2 {
    font-size: 24px;
  }
  .cat_list li {
    max-width: 100%;
  }
  .portfolio-item .thumb {
    height: 190px;
  }

}

/* =========================================================
   FLOATING WHATSAPP BUTTON
========================================================= */

.floating-wa {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 58px;
  padding: 6px 20px 6px 7px;
  background: #25D366;
  border-radius: 50px;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

/* WhatsApp Icon */

.floating-wa .wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 50%;
  color: #25D366;
  font-size: 25px;
  transition: all 0.3s ease;
}

/* Text */

.floating-wa .wa-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* Hover */

.floating-wa:hover {
  transform: translateY(-5px);
  background: #20bd5a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.floating-wa:hover .wa-icon {
  transform: rotate(10deg) scale(1.05);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .floating-wa {
    right: 18px;
    bottom: 18px;
    width: 55px;
    height: 55px;
    padding: 5px;
    justify-content: center;
  }

  .floating-wa .wa-icon {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }

  .floating-wa .wa-text {
    display: none;
  }

}

.floating-wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.15);
    opacity: 0;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}