:root{
  --primary:#1e4f54;
  --secondary:#ffc107;
  --white:#ffffff;
}

body{
  margin:0;
  font-family:'Poppins',sans-serif;
  padding: 0%;
  overflow-x: hidden !important;
}

/* Headings (premium look) */
h1, h2, h3, h4, h5, .main-title {
  font-family: 'Playfair Display', serif;
}
/* ===== TOP BAR ===== */
.top-bar{
  background:var(--primary);
  color:#fff;
  font-size:14px;
}

.top-bar .container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 15px;
}

/* LEFT */
.top-left{
  display:flex;
  gap:15px;
  align-items:center;
  flex-wrap:wrap;
}

/* PHONE GROUP */
.phone-group{
  display:flex;
  align-items:center;
  gap:10px;
}

.phone-group i{
  color:var(--secondary);
}

.phone-group a{
  color:#fff;
  text-decoration:none;
}

.phone-group a:hover{
  color:var(--secondary);
}

.divider{
  opacity:0.5;
}

/* EMAIL */
.top-left a{
  display:flex;
  align-items:center;
  gap:6px;
  color:#fff;
  text-decoration:none;
}

.top-left a i{
  color:var(--secondary);
}

.top-left a:hover{
  color:var(--secondary);
}

/* RIGHT */
.top-right a{
  color:#fff;
  margin-left:15px;
  font-size:16px;
  transition:0.3s;
}

.top-right a:hover{
  color:var(--secondary);
}

/* ===== NAVBAR ===== */
.custom-navbar{
  width:100%;
  background:#fff;
  padding:18px 0;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.nav-wrapper{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 15px;
}

/* LOGO */
.logo{
  height:60px;
}

/* FIX NAV POSITION */
.custom-navbar{
  position:relative;
}

/* MOBILE MENU FIX */
@media(max-width:768px){

  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    padding:20px;
    display:none;
    gap:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    z-index:999;
  }

  .nav-menu.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
    z-index:1000;
  }
}
/* MENU */
.nav-menu{
  list-style:none;
  display:flex;
  gap:35px;
  margin:0;
}

.nav-menu li a{
  text-decoration:none;
  color:#000;
  font-weight:500;
  position:relative;
}

/* UNDERLINE */
.nav-menu li a::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  background:var(--secondary);
  left:0;
  bottom:-5px;
  transition:0.3s;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after{
  width:100%;
}

/* BUTTON */
.visit-btn{
  background:var(--secondary);
  padding:10px 22px;
  border-radius:30px;
  font-weight:600;
  color:#000;
  text-decoration:none;
}

/* MOBILE */
.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}

@media(max-width:768px){

  .top-bar .container{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    padding:20px;
    display:none;
    gap:15px;
  }

  .nav-menu.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .nav-right{
    display:none;
  }
}






#new{
  height:100vh;
  display:grid;
  place-items:center;
  overflow:hidden;
  font-family:Arial, sans-serif;
}

/* TABLET */
@media(max-width:992px){
  #new{
    height:60vh; /* reduce height */

  }
}

/* MAIN WRAPPER */
.plot-main {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* SLIDER */
.plot-slider {
  list-style: none;
}

/* ITEMS */
.plot-item {
  width: 220px;
  height: 320px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  transition: all 0.6s ease;
  overflow: hidden; /* important for overlay */
}

.plot-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,

    rgba(0,0,0,0.05) 50%
  );
  z-index: 1;
}

/* ACTIVE */
.plot-item:nth-child(1),
.plot-item:nth-child(2) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: none;
  border-radius: 0;
}

.plot-item:nth-child(3) { left: 55%; }
.plot-item:nth-child(4) { left: calc(55% + 240px); }
.plot-item:nth-child(5) { left: calc(55% + 480px); }
.plot-item:nth-child(6) { left: calc(55% + 720px); opacity: 0; }

/* CONTENT */
.plot-content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  color: white;
  max-width: 420px;
  display: none;
  z-index: 2; /* ABOVE overlay */
}

.plot-item:nth-child(2) .plot-content {
  display: block;
}

.plot-title {
  font-size: 34px;
  font-weight: bold;
}

.plot-desc {
  margin: 15px 0;
  line-height: 1.6;
}

.plot-btn {
  padding: 10px 20px;
  border: none;
  background: #00c853;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

/* NAV */
.plot-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.plot-btn-nav {
  background: rgba(255,255,255,0.9);
  padding: 12px;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
  font-size: 20px;
}

/* MEDIA */
@media (max-width: 768px) {
  .plot-item {
    width: 150px;
    height: 220px;
  }

  .plot-item:nth-child(3) { left: 65%; }
  .plot-item:nth-child(4) { left: calc(65% + 170px); }

  .plot-content {
    left: 20px;
    max-width: 250px;
  }

  .plot-title { font-size: 22px; }
  .plot-desc { font-size: 13px; }
}

@media (max-width: 600px) {
  .plot-item {
    width: 110px;
    height: 180px;
  }

  .plot-item:nth-child(3) { left: 70%; }
  .plot-item:nth-child(4),
  .plot-item:nth-child(5),
  .plot-item:nth-child(6) { display: none; }

  .plot-title { font-size: 18px; }
  .plot-desc { font-size: 12px; }
}







/* SECTION */
.about-section{
  padding:100px 20px;
}

/* CONTAINER */
.about-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  align-items:center;
}

/* LEFT IMAGES */
.about-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  position:relative;
}

/* IMAGE STYLE */
.about-images img{
  width:100%;
  border-radius:15px;
  object-fit:cover;
}

/* BIG IMAGE */
.img-big{
  grid-row:span 2;
  height:420px;
}

/* SMALL IMAGES */
.img-small{
  height:200px;
}

/* BOTTOM CARD */
.location-card{
  position:absolute;
  bottom:-40px;
  left:20px;
  background:#1e4f54;
  color:#fff;
  padding:20px;
  border-radius:12px;
  width:250px;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.location-card h4{
  margin-bottom:5px;
}

/* RIGHT CONTENT */
.about-content{
  position:relative;
}

/* FLOAT CARD */
.content-box {
  background: #e9e9e9;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);

  /* TEXT FIX */
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}
/* SMALL TITLE */
.small{
  font-size:14px;
    color: rgb(198, 156, 0);
  margin-bottom:10px;
  font-weight:600;
}

/* MAIN TITLE */
.content-box h2{
  font-size:34px;
  margin-bottom:15px;
}

/* TEXT */
.content-box p{
  color:#555;
  line-height:1.7;
  margin-bottom:20px;
}

/* BUTTON */
.btn{
  display:inline-block;
  background:#1e4f54;
  color:#fff;
  padding:12px 25px;
  border-radius:8px;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.btn:hover{
  background:#163c40;
}

/* RESPONSIVE */
@media(max-width:992px){
  .about-container{
    grid-template-columns:1fr;
  }



  .location-card{
    position:static;
    margin-top:15px;
  }
}

@media(max-width:600px){

  .img-big{
    height:300px;
  }

  .img-small{
    height:150px;
  }

  .content-box h2{
    font-size:22px;
  }
  .about-images{
    grid-template-columns: 1fr;
  }
}


/* ===== SECTION ===== */
.property-section{
  padding:60px 20px;
}

.property-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* ===== CARD ===== */
.property-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  transition:0.4s;
  cursor:pointer;
}

.property-card:hover{
  transform:translateY(-8px);
}

/* IMAGE */
.property-img{
  position:relative;
  height:230px;
}

.property-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* TAG */
.tag{
  position:absolute;
  top:10px;
  padding:6px 12px;
  font-size:12px;
  color:#fff;
  border-radius:20px;
}

.left{
  left:10px;
  background:#1e4f54;
}

.right{
  right:10px;
  background:#e60000;
}

/* PRICE */
.price{
  position:absolute;
  bottom:10px;
  right:10px;
  background:#fff;
  padding:6px 12px;
  border-radius:10px;
  font-weight:600;
  color:#ff4d00;
}

/* CONTENT */
.property-content{
  padding:18px;
}

.property-content h3{
  margin:8px 0;
  font-size:18px;
}

.property-content p{
  font-size:14px;
  color:#666;
}

.property-content i{
  color:#ffc107;
  margin-right:6px;
}

/* ===== MODAL ===== */
.modal{
  position:fixed;
  top:0;left:0;
  width:100%;height:100%;
  background:rgba(0,0,0,0.7);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:999;
}

.modal-box{
  width:95%;
  max-width:500px;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  position:relative;
  animation:zoomIn 0.3s ease;
}

@keyframes zoomIn{
  from{transform:scale(0.8);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

.close{
  position:absolute;
  top:10px;
  right:10px;
  background:#000;
  color:#fff;
  width:30px;height:30px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

/* MODAL IMAGE */
.modal-img img{
  width:100%;
  height:220px;
  object-fit:cover;
}

/* MODAL CONTENT */
.modal-content{
  padding:20px;
}

.modal-project{
  color:#ffc107;
  margin-bottom:5px;
  font-weight:600;
}

.modal-location{
  color:#666;
}

/* DETAILS */
.details-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:10px;
}

.detail-box{
  background:#f1f1f1;
  padding:10px;
  border-radius:8px;
  font-size:13px;
}

.detail-box i{
  color:#ffc107;
}

/* BUTTON */
.enquiry-btn{
  margin-top:15px;
  width:100%;
  padding:12px;
  border:none;
  background:#25D366;
  color:#fff;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .property-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .property-container{
    grid-template-columns:1fr;
  }

  .details-grid{
    grid-template-columns:1fr;
  }

  .property-img{height:180px;}
  .modal-img img{height:180px;}
  .main-title{
    font-size: 25px !important;
  }
  .about-section{
    padding: 20px !important;
  }
  .section-title h1{
    font-size: 30px !important;
  }
}
/* PRELOADER */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0f172a;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WRAPPER */
.loader-wrapper {
  text-align: center;
}

/* LOGO CIRCLE */
.loader-logo {
  width: 90px;
  height: 90px;
  border: 2px solid #caa45f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  animation: pulse 1.5s infinite;
  overflow: hidden;
}

/* LOGO IMAGE FIX */
.loader-logo img {
  width: 60%;
  height: auto;
  object-fit: contain;
}

/* LOADING LINE */
.loader-line {
  width: 200px;
  height: 3px;
  background: #1e293b;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.loader-line::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: #caa45f;
  animation: loading 1.2s infinite;
}

/* TEXT */
.loading-text {
  color: #ccc;
  font-size: 13px;
  letter-spacing: 2px;
}

/* ANIMATIONS */
@keyframes loading {
  0% { left: -50%; }
  100% { left: 100%; }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}




/* SECTION */
.process-section{
  padding:70px 20px;
  text-align:center;
}

.small-title{
  font-size:12px;
  letter-spacing:2px;
    color: rgb(198, 156, 0);
  margin-bottom:10px;
}

.main-title{
  font-size:40px;
  font-weight:700;
  color:#000;
  margin-bottom:60px;
}

/* GRID */
.process-container{
  display:flex;
  justify-content:center;
  gap:35px;
  flex-wrap:wrap;
}

/* ITEM */
.process-item{
  width:240px;
  position:relative;
}

/* STEP NUMBER */
.step-number{
  position:absolute;
  top:-15px;
  left:50%;
  transform:translateX(-50%);
  background:#000;
  color:#fff;
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}

/* ICON */
.icon-circle{
  width:120px;
  height:120px;
  border-radius:50%;
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ✅ IMAGE ICON STYLE */
.icon-circle img{
  width:50px;
  height:50px;
  object-fit:contain;
}

/* COLORS */
.bg1{background:#efe7d7;}
.bg2{background:#f2e7e7;}
.bg3{background:#e7f0f4;}
.bg4{background:#f3ede4;}

/* TITLE */
.process-title{
  font-size:20px;
  font-weight:600;
  margin-bottom:15px;
}

/* IMAGE */
.process-img{
  width:100%;
  height:160px;
  overflow:hidden;
  border-radius:6px;
}

.process-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s;
}

.process-item:hover img{
  transform:scale(1.1);
}





.amenities-section{
  background:url('https://templates.hibootstrap.com/oftop/default/assets/img/apartment/apartment-bg.jpg') center/cover no-repeat;
  padding:40px 0;
  position:relative;
}

.amenities-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.amenities-section .container{
  position:relative;
  z-index:2;
}

/* ===== TITLE CENTER ===== */

.section-title{
  text-align:center;
  color:#fff;
  margin-bottom:20px;
}

.section-title span{
  font-size:14px;
  letter-spacing:2px;
  border-bottom:2px solid #b68d2a;
  padding-bottom:6px;
}

.section-title h1{
  font-size:54px;
  margin-top:18px;
}

.section-title p{
  font-family:serif;
  font-style:italic;
  opacity:.9;
}

/* ===== TITLE CENTER ===== */

.section-titles{
  text-align:center;
  color:#000;
 
}

.section-titles span{
  font-size:14px;
  letter-spacing:2px;
  border-bottom:2px solid #b68d2a;
  /* padding-bottom:6px; */
}

.section-titles h1{
  font-size:54px;
  margin-top:18px;
}

.section-titles p{
  font-family:serif;
  font-style:italic;
  opacity:.9;
}

/* ===== CARD ===== */

.amenity-card{
  padding:35px;
  min-height:190px;
  position:relative;
  transition:.35s;
  overflow:hidden;
}

.amenity-card h5{
  font-size:20px;
  margin-bottom:10px;
}

.amenity-card p{
  font-size:14px;
  opacity:.9;
}

.gold{
  background:#b68d2a;
  color:#fff;
}

.light{
  background:#f4f4f4;
  color:#222;
}

.amenity-card .icon{
  width:65px;
  position:absolute;
  right:20px;
  bottom:20px;
  opacity:.6;
}

.amenity-card:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 45px rgba(0,0,0,.35);
}


.gallery {
  padding: 10px 20px;
  text-align: center;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

/* Image */
.gallery-item img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  cursor: pointer;
}


.gallery-item img:hover {
  transform: scale(1.1);
}



/* RESPONSIVE */
@media(max-width: 768px){
  .testimonial-card {
    flex-direction: column;
  }

  .testimonial-img img {
    width: 100%;
    height: 200px;
  }

  .arrows {
    right: 10px;
  }
  .gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.about-images{
        grid-template-columns: 1fr !important ;

}
.content-box{
    padding:10px !important;
    text-align: justify;
}

}



.req-section{
  padding:60px 20px;
  background:#fff;
}

.req-form{
  background:#fff;
  padding:30px;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.req-info{
  padding:20px;
}

.req-title{
  font-size:26px;
  font-weight:600;
}

.req-title span{
  color:#c28b00;
}

.req-line{
  width:50px;
  height:4px;
  background:#c28b00;
  margin:10px 0 20px;
}

.req-input,
.req-select,
.req-textarea{
  border-radius:6px !important;
  border:1px solid #ddd !important;
  padding:10px !important;
  font-size:14px;
}

.req-textarea{
  height:50px;
  resize:none;
}

.req-btn{
  background:#1a2b2b;
  color:#fff;
  border:none;
  padding:12px 25px;
  border-radius:6px;
  transition:0.3s;
}

.req-btn:hover{
  background:#000;
}

.req-info h2{
  font-size:28px;
}

.req-info h2 span{
  color:#c28b00;
}

.req-info p{
  color:#555;
  line-height:1.6;
}

.req-img img{
  width:100%;
  max-width:550px;
}

@media(max-width:768px){
  .req-section{
    padding:30px 15px;
  }

  .req-info{
    text-align:center;
  }
}



/* CTA SECTION */
.cta-section{
  position:relative;
  height:350px;
  background:url('../images/bg-view.png') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

/* OVERLAY */
.cta-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.65);
}

/* CONTENT */
.cta-content{
  position:relative;
  z-index:2;
  max-width:600px;
  padding:20px;
}

.cta-content p{
  letter-spacing:2px;
  font-size:13px;
  color:#ddd;
}

.cta-content h2{
  font-size:32px;
  margin:10px 0;
}

.cta-content h3{
  margin-bottom:20px;
  color:#C69C00;
}

/* BUTTONS */
.cta-btn{
  display:inline-block;
  margin:10px;
  padding:12px 25px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn-call{
  background:#1e4f54;
  color:#fff;
}

.btn-whatsapp{
  background:#25D366;
  color:#fff;
}

/* HOVER */
.cta-btn:hover{
  transform:translateY(-3px);
  opacity:0.9;
}

/* ANIMATION */
.cta-content{
  animation:fadeUp 1s ease;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* MOBILE */
@media(max-width:768px){
  .cta-content h2{
    font-size:24px;
  }
}



/* SECTION */
.testimonial-section {
  padding: 80px 20px;
  text-align: center;
}

.subtitle {
  color: #6c8a8d;
}

.title {
  font-size: 36px;
  margin-bottom: 40px;
}

/* CARD */
.testimonial-card {
  display: flex;
  gap: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* IMAGE */
.testimonial-img img {
  width: 350px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
}

/* CONTENT */
.testimonial-content {
  text-align: left;
}

.quote {
  font-size: 45px;
  color: #6c8a8d;
}


/* USER */
.user {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

/* 🔥 ARROWS FIXED */
.arrows {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
}

.arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #e6edef;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 10px 0;
  font-size: 18px;
  transition: 0.3s;
}

.arrow-btn:hover {
  background: #6c8a8d;
  color: #fff;
  transform: scale(1.1);
}

/* DOTS */
.dots {
  margin-top: 15px;
}

.dots span {
  height: 10px;
  width: 10px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
  cursor: pointer;
}

.dots .active {
  background: #6c8a8d;
}

/* RESPONSIVE */
@media(max-width: 768px){
  .testimonial-card {
    flex-direction: column;
  }

  .testimonial-img img {
    width: 100%;
    height: 200px;
  }

  .arrows {
    right: 10px;
  }

.about-images{
        grid-template-columns: 1fr !important ;

}
.content-box{
    padding:10px !important;
    text-align: justify;
}

}



.faq-section{
  padding:80px 20px;
}

/* IMAGE */
.faq-image img{
  width:100%;
  height:100%;
  border-radius:15px;
  object-fit:cover;
}

.faq-overlay{
  position:absolute;
  bottom:20px;
  left:20px;
  background:#0054A1;
  color:#fff;
  padding:20px;
  border-radius:10px;
  max-width:250px;
}

/* TITLE */
.section-title span{
  color:#C69C00;
}


/* ACCORDION */
.accordion-item{
  border:none;
  margin-bottom:12px;
  border-radius:10px;
}

.accordion-button{
  background:#fff;
  border-left:4px solid #0054A1;
  font-weight:500;
}

.accordion-button:not(.collapsed){
  background:#0054A1;
  color:#fff;
}

.accordion-button i{
  margin-right:10px;
  color:#C69C00;
}

.accordion-body{
  background:#f9f9f9;
  font-size:14px;
}

/* HOVER */
.accordion-item:hover{
  transform:translateX(5px);
  transition:.3s;
}




/* ================= FOOTER ================= */
.footer-modern{
  background:linear-gradient(135deg,#000000,#002a5c);
  color:#fff;
  padding:70px 0 20px;
}

.footer-logo{
  display:inline-block;
  margin-bottom:25px;
}

.footer-logo img{
  height:60px;
  width:auto;

  object-fit:contain;
}

/* BOX */
.footer-box{
  margin-bottom:30px;
}

.footer-box h4,
.footer-box h5{
  margin-bottom:20px;
  font-weight:700;
}

.footer-box p{
  color:#ccc;
  font-size:14px;
}

/* LINKS */
.footer-box ul{
  list-style:none;
  padding:0;
}

.footer-box ul li{
  margin-bottom:10px;
}

.footer-box ul li a{
  color:#ccc;
  text-decoration:none;
  transition:0.3s;
}

.footer-box ul li a:hover{
  color:#C69C00;
  padding-left:5px;
}

/* SOCIAL */
.footer-social a{
  display:inline-block;
  width:38px;
  height:38px;
  background:#0054A1;
  color:#fff;
  text-align:center;
  line-height:38px;
  border-radius:50%;
  margin-right:8px;
  transition:0.3s;
}
.footer-contact a{
  color:inherit;
  text-decoration:none;
}

.footer-contact a:hover{
  color:#C69C00;
}

.footer-social a:hover{
  background:#C69C00;
  color:#000;
}

/* CONTACT */
.footer-contact p{
  font-size:14px;
  color:#ccc;
  margin-bottom:10px;
}

.footer-contact i , .footer-box li i{
  color:#C69C00;
  margin-right:8px;
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  margin-top:20px;
  font-size:14px;
  color:#aaa;
}

.footer-modern hr{
  border-color:rgba(255,255,255,0.1);
}

/* RESPONSIVE */
@media(max-width:768px){
  .footer-modern{
    text-align:left;
    padding-left: 10px;
  }

  .footer-social{
    margin-top:10px;
  }
}
/* ===== NAVBAR ===== */
.custom-navbar{
  background:#fff;
  padding:15px 0;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.nav-wrapper{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 15px;
}

.logo{
  height:55px;
}

.nav-menu{
  display:flex;
  list-style:none;
  gap:30px;
}

.nav-menu a{
  text-decoration:none;
  color:#000;
  font-weight:500;
}

.visit-btn{
  background:var(--secondary);
  padding:10px 20px;
  border-radius:30px;
  font-weight:600;
  color:#000;
  text-decoration:none;
}

.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}

/* ===== POPUP ===== */
.popup-form{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* BOX */
.form-box{
  width:90%;
  max-width:420px;
  background:#fff;
  padding:25px;
  border-radius:15px;
  position:relative;
  animation:popup 0.3s ease;
}

@keyframes popup{
  from{transform:scale(0.8);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

/* CLOSE */
.popup-close{
  position:absolute;
  top:12px;
  right:12px;
  width:36px;
  height:36px;
  background:#f5f5f5;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:0.3s;
}

.popup-close:hover{
  background:var(--primary);
  color:#fff;
  transform:rotate(90deg);
}

/* TITLE */
.form-box h2{
  text-align:center;
  margin-bottom:20px;
  color:var(--primary);
}

/* INPUT GROUP WITH ICON */
.input-group{
  position:relative;
  margin-bottom:15px;
}


.input-group i{
  position:absolute;
  top:50%;
  left:10px;
  transform:translateY(-50%);
  color:#666;
}

/* INPUT */
.input-group input,
.input-group select,
.input-group textarea{
  width:100%;
  padding:10px 10px 10px 35px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:14px;
  outline:none;
}

/* TEXTAREA */
.input-group textarea{
  height:50px;
  resize:none;
}

/* BUTTON */
.form-box button{
  width:100%;
  padding:12px;
  background:var(--primary);
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
}
.popup-form {
  opacity: 0;
  transition: 0.3s ease;
}

.popup-form.show {
  display: flex;
  opacity: 1;
}/* INPUT BOX */
.pd-input-box {
  position: relative;
}

/* ICON */
.pd-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #777;
  font-size: 14px;
  z-index: 2;
}

/* INPUT FIELD */
.pd-input {
  padding-left: 35px;
}

/* MOBILE BOX */
.pd-mobile-box .pd-code {
  max-width: 60px;
  margin-right: 5px;
  border-radius: 6px 0 0 6px;
}

/* FIX MOBILE ICON POSITION */
.pd-mobile-box .pd-icon {
  left: 10px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  .nav-menu{
    display:none;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    padding:20px;
  }

  .nav-menu.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }
}

.button {
  padding: 10px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  color: #C69C00;
  transition: all 0.4s ease;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid #C69C00;
  background: transparent;
}

/* HOVER */
.button:hover {
  color: #ffffff;
  transform: scale(1.05);
  outline: 2px solid #70bdca;
  box-shadow: 4px 5px 17px -4px #2c5d63;
}

/* ANIMATION EFFECT */
.button::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #C69C00;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 0.5s ease;
}

.button:hover::before {
  width: 250%;
}