@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

.great-vibes-regular {
  font-family: "Kaushan Script", cursive;
  font-weight: 400;
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

:root {
  --black: #111111;
  --dark: #1b1b1b;
  --gold: #00484d;
  --white: #ffffff;
  --light: #f8f5ef;
  --text: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/*====================================
            HERO
=====================================*/

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 100px;

  display: flex;
  align-items: center;

  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../../images/hero1.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

.hero::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.65) 40%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0.05) 100%
  );

  pointer-events: none;

  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
}

.hero-content h1 {
  color: #fff;
  font-size: 72px;
  line-height: 1.1;
  margin: 0px 0 35px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-content .section-tag {
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 3px;
  background: rgba(247, 242, 232, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-content h3 {
  color: #00484d;

  letter-spacing: 3px;

  margin-bottom: 15px;

  font-size: 20px;
}

.hero-content h1 {
  color: #fff;

  font-size: 72px;

  line-height: 1.1;

  margin: 0px 0 30px;
}

.hero-content h1 span {
  color: #d6a23d;
}

.hero-content p {
  font-size: 18px;

  color: rgba(255, 255, 255, 0.85);

  max-width: 600px;

  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;

  gap: 20px;
}

.hero .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
    background: #25d366;
  color: #fff;
}

.hero .btn-outline:hover {
  background: #fff;

  color: #111;
}

.call-btn,
.whatsapp-btn {
  padding: 15px 32px;

  border-radius: 40px;

  font-weight: 600;

  transition: 0.35s;
}

.call-btn {
  background: #00484d;

  color: #111;
}

.whatsapp-btn {
  border: 2px solid #fff;

  color: #fff;
}

.call-btn:hover {
  background: #fff;
}

.whatsapp-btn:hover {
  background: #fff;

  color: #111;
}

.services {
  background: var(--light);
  text-align: center;
}

.services h4 {
  color: var(--gold);
  letter-spacing: 0;
  margin-bottom: 10px;
}

.services h2 {
  font-size: 42px;
  color: var(--black);
  margin-bottom: 55px;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card h3 {
  padding: 22px 20px 10px;
  font-size: 22px;
  color: var(--black);
}

.service-card p {
  padding: 0 20px 25px;
  color: var(--text);
  line-height: 1.7;
}

.service-link{
    display:block;
    text-decoration:none;
    color:inherit;
}

.service-link:hover{
    color:inherit;
}

.why {
  background: #fff;
  text-align: center;
}

.why h4 {
  color: var(--gold);
  letter-spacing: 3px;
  font-family: "Kaushan Script", cursive;
}

.why h2 {
  color: var(--black);
  font-size: 35px;
  margin: 15px 0 55px;
}

.why-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  border: 1px solid #eee;
  transition: 0.35s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.why-card:hover {
  background: #00484d;
  color: #fff;
  transform: translateY(-10px);
}

.why-card:hover h3 {
  color: #fff;
}

.why-card h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.why-card p {
  line-height: 1.8;
}

.why-card:hover p {
  color: #fff;
}

.why-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 25px;
  /* Center horizontally */

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1.5px solid rgba(3, 71, 76, 0.25);
  transition: 0.35s;
}

.why-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  stroke: #da1034;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.35s;
}

.why-card:hover .why-icon {
  border-color: #c29035;
}

.why-card:hover .why-icon svg {
  stroke: #c29035;
}

.gallery {
  background: #111;
  text-align: center;
}

.gallery h4 {
  color: rgb(196, 143, 46);
  font-family: "Kaushan Script", cursive;
}

.gallery h2 {
  color: #fff;
  font-size: 42px;
  margin: 0px 0 30px;
}


.gallery-container img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.4s;
  cursor: pointer;
}

.gallery-container img:hover {
  transform: scale(1.08);
  opacity: 0.9;
}

.gallery-btn {
  display: inline-block;
  margin-top: 40px;
  background: var(--gold);
  color: #111;
  padding: 15px 35px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
}

.gallery-btn:hover {
  background: #fff;
}

/*====================================
            ABOUT
=====================================*/

.about {
  padding: 100px 0;
  background: #fff;
}

.about-wrapper {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

/* IMAGE */

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;

  height: 550px;

  object-fit: cover;

  border-radius: 24px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* EXPERIENCE CARD */

.experience-card {
  position: absolute;

  bottom: 30px;

  right: -30px;

  width: 180px;

  height: 180px;

  background: #00484d;

  color: #fff;

  border-radius: 20px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.experience-card span {
  font-size: 54px;
  font-weight: 700;
  color: #fff;
}

.experience-card p {
  margin-top: 10px;

  color: #fff;
}

/* CONTENT */

.about-content {
  max-width: 600px;
}

.about-content h2 {
  font-size: 52px;

  line-height: 1.2;

  margin: 25px 0;
}

.about-content h2 span {
  color: var(--gold);
}

.about-content p {
  color: #666;

  line-height: 1.9;

  margin-bottom: 30px;
}

/* FEATURES */

.about-content ul {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-bottom: 40px;
}

.about-content ul li {
  position: relative;
  padding-left: 15px;
  color: #444;
  font-weight: 500;
}

.about-content ul li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--gold);

  font-weight: 700;
}

.about-link {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: #111;

  font-size: 16px;

  font-weight: 600;

  letter-spacing: 0.5px;

  transition: 0.3s;
}

.arrow-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #c29035;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.arrow-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.35s ease;
}

.about-link span {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: var(--gold);

  display: flex;

  align-items: center;

  justify-content: center;

  transition: 0.3s;
  color: #c48f2e;
}

.about-link:hover {
  color: #000;
}

.about-link:hover span {
  color: #fff;
  transform: translateX(8px);
}

/*====================================
            COUNTER
=====================================*/

.counter {
  background: #0c0c0c;

  padding: 40px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.counter .container {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

/* BOX */

.counter-box {
  position: relative;

  text-align: center;

  padding: 10px 20px;
}

/* divider */

.counter-box:not(:last-child)::after {
  content: "";

  position: absolute;

  right: -15px;

  top: 50%;

  transform: translateY(-50%);

  width: 1px;

  height: 60px;

  background: rgba(255, 255, 255, 0.08);
}

/* NUMBER */

.counter-box h2 {
  font-size: 40px;
  font-weight: 500;
  color: rgb(196, 143, 46);
  margin-bottom: 10px;
  line-height: 1;
}

/* TEXT */

.counter-box p {
  font-size: 18px;

  color: #fff;

  font-weight: 400;
}

/*====================================
            TESTIMONIAL
=====================================*/

.testimonial {
  background: #f8f6f2;

  padding: 100px 0;

  text-align: center;
}

.testimonial h4 {
  color: var(--gold);
  margin-bottom: 20px;
}

.testimonial h2 {
  font-size: 52px;

  margin-bottom: 70px;
}

/* GRID */

.testimonial-container {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 35px;
}

/* CARD */

.testimonial-card {
  position: relative;

  background: #fff;

  padding: 50px 40px;

  border-radius: 24px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  transition: 0.4s ease;

  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* QUOTE */

.quote-icon {
  font-size: 80px;

  color: rgba(201, 161, 74, 0.15);

  position: absolute;

  top: 20px;

  right: 30px;

  line-height: 1;
}

/* STARS */

.rating {
  color: #fed800;
  display: flex;
  align-items: center;
  font-size: 22px;
  gap: 3px;
  margin: 20px 0;
}

.rating svg {
  width: 18px;
  height: 18px;
  fill: #c29035;
  transition: 0.3s ease;
}

.testimonial-card:hover .rating svg {
  fill: #da1034;
}

/* TEXT */

.testimonial-card p {
  color: #666;
  line-height: 1.9;

  margin-bottom: 35px;

  min-height: 150px;
}

/* CLIENT */

.client {
  display: flex;

  align-items: center;

  gap: 15px;
}

.client img {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  object-fit: cover;
}

.client h4 {
  color: #111;

  font-size: 22px;

  margin-bottom: 5px;

  letter-spacing: 1px;
}

.client span {
  color: #999;

  font-size: 14px;
}

.process {
  background: #000;
  text-align: center;
}

.process h4 {
  color: rgb(196, 143, 46);
  font-family: "Kaushan Script", cursive;
}

.process h2 {
  font-size: 40px;
  color: #fff;
  margin: 0px 0 55px;
}

.process-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card {
  padding: 35px;
  background: var(--light);
  border-radius: 18px;
  transition: 0.35s;
}

.process-card:hover {
  transform: translateY(-10px);
}

.number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 20px;
  font-size: 28px;
  font-weight: bold;
}

.process-card h3 {
  margin-bottom: 5px;
  font-size: 20px;
}

.process-card p {
  line-height: 1.8;
  color: var(--text);
}

/*====================================
            CONTACT
=====================================*/

.contact {
  background: #f8f6f2;

  padding: 100px 0;
}

.contact-wrapper {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

/* LEFT */

.contact-info h2 {
  font-size: 52px;

  line-height: 1.2;

  margin: 20px 0 30px;
}

.contact-info p {
  color: #666;

  line-height: 1.9;
}

/* CONTACT CARD */

.contact-card {
  display: flex;

  gap: 20px;

  align-items: center;

  background: #fff;

  padding: 10px;

  margin-top: 25px;

  border-radius: 16px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);

  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f8f3ea;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.35s;
}

.contact-card .icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #da1034;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.35s;
}

.contact-card:hover .icon {
    background: #c29035;
    color: #fff;
}

.contact-card:hover .icon svg {
  stroke: #fff;
}

.contact-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.contact-link:hover {
  color: inherit;
}

.contact-link .contact-card {
  cursor: pointer;
}

/* FORM */

.contact-form {
  background: #fff;

  padding: 50px;

  border-radius: 24px;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.contact-form form {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

/* INPUTS */

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 18px 24px;

  border: 1px solid #eee;

  border-radius: 12px;

  background: #fafafa;

  transition: 0.3s;
}

.contact-form textarea {
  min-height: 180px;

  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);

  background: #fff;
}

.contact-btn {
  width: 100%;

  height: 60px;

  background: var(--gold);

  border: none;

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  color: #fff;

  font-size: 16px;

  font-weight: 600;

  letter-spacing: 0.5px;

  cursor: pointer;

  transition: 0.3s;

  box-shadow: 0 10px 30px rgba(201, 161, 74, 0.25);
}

.contact-btn span {
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-3px);

  background: #fb2542;

  color: #fff;
}

.contact-btn:hover span {
  transform: translateX(8px);
}

/*====================================
            FAQ
=====================================*/

.faq{

    padding:100px 0;
    background:#fff;

}

.faq-header{

    text-align:center;
    margin-bottom:60px;

}

.faq-wrapper{

    max-width:1000px;
    margin:auto;

}

.faq-item{

    background:#f8f6f2;
    border-radius:16px;
    margin-bottom:20px;
    overflow:hidden;
    transition:.3s;

}

.faq-item:hover{

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.faq-question{

    width:100%;
    border:0;
    background:none;
    padding:25px 30px;
    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.faq-question span:first-child{

    font-size:20px;
    font-weight:600;

}

.faq-icon{

    width:38px;
    height:38px;
    border-radius:50%;
    background:#c79b39;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:22px;

    transition:.35s;

}

.faq-answer{

    max-height:0;
    overflow:hidden;

    transition:max-height .4s ease,padding .4s ease;

    padding:0 30px;

}

.faq-answer p{

    padding-bottom:20px;
    line-height:1.8;
    color:#666;

}

.faq-item.open .faq-answer{

    max-height:220px;
    padding:0 30px 20px;

}

.faq-item.open .faq-icon{

    transform:rotate(45deg);

}
/*====================================
            CTA
=====================================*/

.cta {
  background: #1a0c0c;

  padding: 100px 0;

  position: relative;

  overflow: hidden;
}

/* CONTENT */

.cta-content {
  max-width: 900px;

  margin: auto;

  text-align: center;
}

/* HEADING */

.cta h2 {
  font-size: 54px;

  color: #fff;

  line-height: 1.15;

  margin: 30px 0;
}

/* TEXT */

.cta p {
  max-width: 750px;

  margin: 0 auto 50px;

  color: #ddd;

  font-size: 18px;

  line-height: 1.9;
}

/* BUTTONS */

.cta-buttons {
  display: flex;

  justify-content: center;

  gap: 25px;
}

/* CALL */

.cta-call {
  min-width: 220px;

  height: 54px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  background: var(--gold);

  color: #fff;

  border-radius: 50px;

  font-size: 18px;

  font-weight: 600;

  transition: 0.3s;
}

.cta-call:hover {
  transform: translateY(-4px);

  box-shadow: 0 15px 40px rgba(201, 161, 74, 0.25);
}

/* WHATSAPP */

.cta-whatsapp {
  min-width: 220px;

  height: 54px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  border: 2px solid rgba(255, 255, 255, 0.3);

  color: #fff;

  border-radius: 50px;

  font-size: 18px;

  font-weight: 600;

  transition: 0.3s;
}

.cta-whatsapp:hover {
  background: #fff;

  color: #111;
}

/*====================================
            FOOTER
=====================================*/


/* GRID */

.footer-container {
    
    background: #f8f6f2;
    color: #000;
    padding: 90px 20px 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1240px;
    margin: 0 auto;
}

/* LOGO */

.footer-box img {
  width: 220px;

  margin-bottom: 30px;

  filter: drop-shadow(0 10px 30px rgba(201, 161, 74, 0.15));
}

/* DESCRIPTION */

.footer-box p {
  color: #000;
  line-height: 2;
  font-size: 16px;
}

/* HEADING */

.footer-box h3 {
  color: #00484D;
  font-size: 30px;
  margin-bottom: 35px;
}

/* LIST */

.footer-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-box ul li {
  margin-bottom: 20px;
}

.footer-box ul li a {
  color: #000;

  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: var(--gold);

  padding-left: 8px;
}

/* CONTACT ITEM */

.footer-contact {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  margin-bottom: 25px;
}

/* ICON */

.footer-icon {
  width: 42px;

  height: 42px;

  min-width: 42px;

  border-radius: 50%;

  background: #B88527;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 18px;

  transition: 0.3s;
  
  color: #fff;
}

.footer-contact:hover .footer-icon {
  background: var(--gold);

  transform: translateY(-3px);
}

/* TEXT */

.footer-contact a,
.footer-contact span {
  color: #000;

  font-size: 16px;

  line-height: 1.8;

  transition: 0.3s;
}

.footer-contact a:hover {
  color: var(--gold);
}

/*footer hr {*/
/*  margin: 50px 0 25px;*/
/*  border: 1px solid rgba(255, 255, 255, 0.08);*/
/*}*/

.copyright {
    text-align: center;
    background: var(--gold);
    padding: 10px 0;
    color: #fff;
}
.copyright p {
    margin: 0;
    color: #fff;
}
.cta-call svg {
    width: 20px;
}
.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 65px;
  height: 65px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.12);
}

@media (max-width: 992px) {
  header {
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-container,
  .gallery-container,
  .why-container,
  .process-container,
  .testimonial-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .counter {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 25px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .service-container,
  .gallery-container,
  .why-container,
  .process-container,
  .testimonial-container,
  .faq-container,
  .counter,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .top-bar {
    display: none;
  }

  header {
    padding: 5px 25px;
  }

  nav ul {
    flex-direction: column;
    gap: 18px;
  }

  .logo img {
    width: 130px;
  }
}

/* ================= PACKAGES ================= */

.packages {
  padding: 100px 0;
  background: #000;
}

.package-heading {
  text-align: center;
  margin-bottom: 55px;
}

.package-heading h4 {
  color: #c48f2e;
  font-family: "Kaushan Script", cursive;
  font-size: 24px;
  letter-spacing: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.package-heading h2 {
  color: #fff;
  font-size: 44px;
}

.package-heading p {
  color: #fff;
  font-size: 16px;
}

.package-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1500px;
  margin: auto;
}

.package-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.package-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.package-content {
  position: relative;
  padding: 35px 25px 30px;
}

.package-icon {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #00484d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  border: 5px solid #fff;
}

.package-content h3 {
  text-align: center;
  font-size: 23px;
  color: #222;
  margin-bottom: 7px;
}

.package-subtitle {
  text-align: center;
  color: #777;
  font-size: 13px;
  min-height: 40px;
}

.package-price {
  text-align: center;
  color: #00484d;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  margin: 20px 0;
}

.package-price span {
  font-size: 9px;
  color: #999;
}

.package-content ul {
  min-height: 190px;
  margin-bottom: 25px;
}

.package-content ul li {
  color: #555;
  font-size: 14px;
  margin: 11px 0;
}

.package-content ul li::first-letter {
  color: #00484d;
}

.package-btn {
  display: block;
  width: max-content;
  margin: auto;
  padding: 11px 28px;
  border: 2px solid #00484d;
  color: #00484d;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
}

.package-btn:hover {
  background: #00484d;
  color: #fff;
}

.featured {
  border: 2px solid #00484d;
  transform: translateY(-10px);
}

.featured:hover {
  transform: translateY(-18px);
}

.popular-tag {
  position: absolute;
  top: 15px;
  right: 0;
  z-index: 2;
  background: #c48f2e;
  color: #fff;
  padding: 8px 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
/* Desktop */
@media (min-width:992px){

    .serviceSwiper .swiper-wrapper{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:25px;
    }

    .serviceSwiper .swiper-slide{
        width:auto !important;
    }

    .serviceSwiper .swiper-pagination{
        display:none;
    }

}

/* Mobile */
@media (max-width:991px){

    .serviceSwiper{
        padding-bottom:45px;
    }

    .serviceSwiper .swiper-slide{
        height:auto;
    }

}
@media (max-width: 1100px) {
  .package-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  .packages {
    padding: 70px 20px;
  }

  .package-heading h2 {
    font-size: 32px;
  }

  .package-container {
    grid-template-columns: 1fr;
  }

  .package-card img {
    height: 230px;
  }
}
.serviceSwiper{
    overflow: hidden;
}

.serviceSwiper .swiper-slide{
    width:100%;
    box-sizing:border-box;
}
@media(max-width: 767px){
.package-content ul {
    min-height: auto;
    margin-bottom: 20px;
    text-align: center;
    padding: 0;
}
.process h2 {
    font-size: 25px;
    margin: 0px 0 35px;
}
.process h4 {
    font-size: 18px;
}
.testimonial-card p {
    min-height: auto;
}
.testimonial h2 {
    font-size: 25px;
    margin-bottom: 30px;
}
.testimonial h4 {
    margin-bottom: 10px;
    font-size: 18px;
}
.gallery h2 {
    font-size: 30px;
}
.gallery h4 {
    letter-spacing: 3px;
    font-size: 18px;
}
.services h2 {
    font-size: 25px;
    margin-bottom: 30px;
}
.services h4 {
    letter-spacing: 0;
    font-size: 18px;
}
.counter .container {
    display: block;
}
.hero {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    align-items: flex-start;
}
.hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    flex-direction: row;
}
.hero-buttons .btn {
    width: 50% !important;
    justify-content: center;
    display: inline-block !important;
    padding: 15px 25px;
    height: auto !important;
}
.hero .container {
    margin: 0;
}
.page-banner {
    height: auto;
    padding: 60px 0;
}
.contact-page .container {
    display: block;
}

.contact-info {
    margin-bottom: 30px;
}
.page-banner h1{

    font-size:36px;

}
}
@media screen and (max-width: 991px) {
    .btn-primary {
        display: block !important;
        height: auto;
        padding: 15px 25px;
    }
}

/*=========================
CONTAINER
=========================*/

.rf-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 15px;
}

/*=========================
TOP BAR
=========================*/

.rf-topbar{
    background:#00454a;
    padding:15px 0;
}

.rf-topbar-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.rf-top-left{
    display:flex;
    align-items:center;
    gap:35px;
}

.rf-top-left a{
    color:#fff;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.rf-top-left a:hover{
    color:#d6a23d;
}

.rf-top-left i{
    color:#d6a23d;
    margin-right:8px;
}

.rf-top-right{
    color:#fff;
    font-size:15px;
    font-weight:500;
}

.rf-top-right i{
    color:#d6a23d;
    margin-right:8px;
}

/*=========================
HEADER
=========================*/

.rf-header{
    background:#fff;
    position:relative;
    z-index:999;
}

.rf-navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:90px;

}

.rf-logo img{
    width:120px;
}

/*=========================
DESKTOP MENU
=========================*/



.rf-menu > ul{
    
    display:flex;
    align-items:center;
    gap:35px;
    margin: 0;

}

.rf-menu > ul > li{
    position:relative;
}

.rf-menu > ul > li > a{
    color:#000;
    font-size:17px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    padding: 30px 0;
    transition:.3s;

}

.rf-menu > ul > li > a:hover,
.rf-menu > ul > li > a.active{

    color:#00454a;

}

.rf-menu > ul > li > a i{

    font-size:12px;

}

/*=========================
BUTTON
=========================*/

.rf-btn{

    background:#00454a;
    color:#fff;
    padding:10px 20px;
    border-radius:6px;
    font-weight:600;
    margin-left:40px;
    transition:.3s;
    border:1px solid #00454a;
    transition:all ease 0.5s;

}

.rf-btn:hover{
color:#00454a;
    background:#fff;

}

/*=========================
DROPDOWN
=========================*/

.rf-dropdown{

    position:absolute;
    top:110%;
    left:0;
    
    width:270px;
    
    background:#000;
    
    border-radius:8px;
    
    overflow:hidden;
    
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    
    opacity:0;
    visibility:hidden;
    
    transform:translateY(20px);
    
    transition:.35s ease;
    
    z-index:999;
    padding:0;
    height: 350px;
    overflow-y: auto;
}

.rf-has-dropdown:hover .rf-dropdown{

    opacity:1;
    visibility:visible;
    transform:translateY(0);

}

.rf-dropdown li{

    width:100%;

}

.rf-dropdown li a{

    display:block;
    padding:14px 20px;
    color:#fff;
    font-size:15px;
    font-weight:500;
    border-bottom:1px solid #eee;
    transition:.3s;

}

.rf-dropdown li:last-child a{

    border-bottom:none;

}

.rf-dropdown li a:hover{

    background:#d6a23d;
    color:#fff;
    padding-left:28px;

}

/*=========================
HAMBURGER
=========================*/

.rf-toggle{

    width:45px;
    height:45px;

    border:none;
    background:none;

    display:none;

    cursor:pointer;

}

.rf-toggle span{

    display:block;

    width:28px;
    height:3px;

    background:#00454a;

    margin:6px auto;

    border-radius:30px;

    transition:.3s;

}

/*=========================
MOBILE MENU
=========================*/

.rf-mobile-menu{
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100%;
    background: #161616;
    z-index: 99999;
    padding: 30px;
    overflow-y: auto;
    transition: .4s ease;
}

.rf-mobile-menu.active{
    right: 0;
}

/*=========================
CLOSE BUTTON
=========================*/

.rf-close{
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #d6a23d;
    color: #fff;
    cursor: pointer;
    margin-bottom: 30px;
    font-size: 18px;
}

.rf-close:hover{
    background: #b88527;
}

/*=========================
MOBILE MENU LIST
=========================*/

.rf-mobile-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.rf-mobile-menu ul li{
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.rf-mobile-menu ul li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

.rf-mobile-menu ul li a:hover{
    color: #d6a23d;
}

/*=========================
MOBILE SUBMENU
=========================*/

.rf-mobile-dropdown > ul{
    display: none;
    padding-left: 15px;
}

.rf-mobile-dropdown.active > ul{
    display: block;
}

.rf-mobile-dropdown ul li{
    border: 0;
}

.rf-mobile-dropdown ul li a{
    font-size: 14px;
    padding: 12px 0;
    color: #ddd;
}

.rf-mobile-dropdown ul li a:hover{
    color: #d6a23d;
}

/*=========================
MOBILE BUTTON
=========================*/

.rf-mobile-btn{
    display: block;
    margin-top: 30px;
    text-align: center;
    background: #d6a23d;
    color: #fff;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    transition: .3s;
}

.rf-mobile-btn:hover{
    background: #b88527;
}

/*=========================
OVERLAY
=========================*/

.rf-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 99998;
}

.rf-overlay.active{
    opacity: 1;
    visibility: visible;
}

/*=========================
RESPONSIVE
=========================*/

@media (max-width:991px){

    .rf-topbar{
        display:none;
    }

    .rf-navbar{
        height:80px;
    }

    .rf-logo img{
        width:120px;
    }

    /* Hide Desktop */

    .rf-menu{
        display:none;
    }

    .rf-btn{
        display:none;
    }

    /* Show Toggle */

    .rf-toggle{
        display:block;
    }

}

@media (max-width:767px){

    .rf-container{
        padding:0 18px;
    }

    .rf-logo img{
        width:100px;
    }

    .rf-mobile-menu{
        width:280px;
        right:-300px;
    }

}

@media (max-width:480px){

    .rf-mobile-menu{
        width:100%;
        right:-100%;
    }

    .rf-mobile-menu.active{
        right:0;
    }

}
/*=========================
STICKY HEADER
=========================*/

.rf-header.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
    animation: rfSticky .3s linear;
}
@media(max-width: 767px){
.section-tag {
    margin-bottom: 0;
}
}
@media screen and (max-width: 767px) {
.hero {
    min-height: auto !important;
    padding-top: 60px !important;
    padding-bottom: 60px;
    align-items: flex-start;
}

}
@keyframes rfSticky{

    from{
        transform: translateY(-100%);
    }

    to{
        transform: translateY(0);
    }

}

.float.cm-right {
    right: auto;
    left: 0px;
    bottom: 80px;
}
.float {
    bottom: 10px !important;
    right: auto !important;
    left: 0;
}
.float.cm-right {
    right: auto !important;
    left: 0 !important;
    bottom: 80px !important;
}

/* ==========================
   GALLERY DESKTOP
========================== */

.gallery-container{
    width:100%;
}

.gallery-container .swiper-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery-container .swiper-slide{
    width:100%;
}

.gallery-container img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:18px;
    display:block;
    transition:.3s;
}

.gallery-container img:hover{
    transform:scale(1.03);
}

.gallery-container .swiper-pagination{
    display:none;
}


/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .gallery-container .swiper-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

}


/* ==========================
   MOBILE SWIPER
========================== */

@media(max-width:767px){
.hero-buttons .btn {
   
    padding: 15px 15px;
}
    .gallery-container{
        overflow:hidden;
        padding-bottom:0;
    }

    .gallery-container .swiper-wrapper{
        display:flex;
        gap:0;
    }

    .gallery-container .swiper-slide{
        flex-shrink:0;
        width:100%;
    }

    .gallery-container img{
        width:100%;
        height:300px;
        object-fit:cover;
        border-radius:15px;
    }

    .gallery-container .swiper-pagination{
        display:block;
        position:relative;
        margin-top:20px;
        text-align:center;
    }

    .gallery-container .swiper-pagination-bullet{
        width:10px;
        height:10px;
        background:#fff;
        opacity:.4;
        margin:0 5px !important;
    }

    .gallery-container .swiper-pagination-bullet-active{
        background:#d4a53a;
        opacity:1;
    }
.footer-container {
    
    gap: 10px;
}
.cta-buttons {
    display: block;
}
.cta-buttons a {
    margin-bottom: 10px;
}
header {
    padding: 5px 0px;
}
}
.float {
    background-color: #D8486C !important;
}
a.float.bounce.cm-right {
    background: #25d366  !important;
}
footer {
    background: #f8f6f2;
    border-top: 5px solid #00484d;
}
.about-content h2 span label {
    color: #D8486C;
}
.why-icon i {
    color: #da1034;
}
.why-card:hover .why-icon i {
    color: #c29035;
}
/* ==========================
   MOBILE MENU DROPDOWN
========================== */

@media (max-width: 767px) {

    .rf-mobile-menu .rf-has-dropdown > a{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .rf-mobile-menu .rf-has-dropdown > a i{
        transition: .3s ease;
        font-size: 14px;
    }

    .rf-mobile-menu .rf-has-dropdown.active > a i{
        transform: rotate(180deg);
    }

    .rf-mobile-menu .rf-dropdown{
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
        padding-left: 15px;
        margin: 0;
        background: #f8f8f8;
        overflow-y: auto !important;
    }

    .rf-mobile-menu .rf-dropdown li{
        list-style: none;
    }

    .rf-mobile-menu .rf-dropdown li a{
        display: block;
        padding: 10px 15px;
        font-size: 15px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #eee;
    }

    .rf-mobile-menu .rf-dropdown li:last-child a{
        border-bottom: none;
    }

    .rf-mobile-menu .rf-dropdown li a:hover{
        color: #b8860b; /* Theme Color */
    }
.rf-dropdown {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
}
.copyright p{
    margin:0;
    color:#fff;
    font-size:15px;
    line-height:1.7;
}

.copyright p a{
    color:#c58a1a;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.copyright p a:hover{
    color:#fff;
}

/* Social */

.social-icons{
    list-style:none;
    margin:0;
    padding:0;
    display:inline-block;
   
}

.social-icons li{
    margin:0;
    display: inline-block;
    padding:0 5px;
}
.cm-social-wrapper h4 {
    margin: 0;
    font-size: 18px;
    display: inline-block;
    color: #fff;
    font-weight: 400;
}
.social-icons a{
    width:30px;
    height:30px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:18px;

    transition:.35s ease;
}

.social-icons a:hover{
    background:#c58a1a;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 8px 18px rgba(0,0,0,.25);
}

/* Responsive */

@media(max-width:991px){

    .copyright{
        text-align:center;
    }

    .copyright p{
        margin-bottom:18px;
    }

    .social-icons{
        justify-content:center;
    }

}


.cm-socials h4 {
    color: #fff;
    font-size: 18px;
    display: inline-block;
    margin: 0;
    padding: 0;
    font-weight: 400;
}
@media(max-width:575px){

    .copyright{
        padding:15px 0;
    }

    .copyright p{
        font-size:14px;
    }

    .social-icons{
        gap:10px;
    }

    .social-icons a{
        width:38px;
        height:38px;
        font-size:16px;
    }

}