body {
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: #fff;
}

/* NAVBAR */
.custom-navbar {
  background: #111;
  transition: 0.3s;
}

.btn-warning,
.btn-outline-light {
    border-radius: 30px;
}



/* HERO */
.hero-section {
  padding: 100px 0;
  background: url('../images/banner.png') no-repeat center right;
   background-size: contain;
  background-color: #0b0b0b;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-title span {
  color: #ffc107;
}

.hero-text {
  margin-top: 20px;
  color: #bbb;
  font-size: 16px;
}

/* IMAGE ANIMATION */
.hero-img {
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

/* FLOAT EFFECT */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
}



/* CORE SECTION */
.core-section {
  padding: 100px 0;
  background: linear-gradient(to right, #111, #1a1a1a);
}


/* Mobile */
@media (max-width: 767px) {
    .core-section {
        padding: 20px 0;
    }
	
	.expertise-section {
    padding: 56px 0;
    background: url(../images/professional-expert.jpg) no-repeat center right;
    background-size: cover;
    background-color: #0b0b0b;
}

.hero-section {
    padding: 50px 0;
    background: url(../images/banner.png) no-repeat center right;
    background-size: contain;
    background-color: #0b0b0b;
}
}

.tag-line {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: 2px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
}

.section-title span {
  color: #ffc107;
}

.section-text {
  color: #bbb;
  margin: 20px 0;
}

/* CARDS */
.cap-card {
  background: #000;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}

.cap-card:hover {
  transform: translateY(-5px);
  border-color: #ffc107;
}

.cap-card .icon {
  font-size: 28px;
  color: #ffc107;
  margin-bottom: 10px;
}

.cap-card h5 {
  font-weight: 600;
}

.cap-card p {
  color: #aaa;
  font-size: 14px;
}

.card-link {
  color: #ffc107;
  font-size: 13px;
  text-decoration: none;
}

/* VISION SECTION */
.vision-section {
  padding: 100px 0;
   background: url('../images/our-vision.png') no-repeat center right;
   background-size: cover;
  background-color: #0b0b0b;
}

.vision-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}

.vision-title span {
  color: #ffc107;
}

.vision-text {
  margin-top: 20px;
  color: #bbb;
}

/* IMAGE */
.vision-img {
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title,
  .vision-title {
    font-size: 32px;
  }
}




/* CTA */
.cta-section {
  background: #f5f5f5;
  color: #000;
  padding: 60px 0;
}

.cta-section h2 {
  font-weight: 700;
}

.cta-section span {
  color: #ffc107;
}

.custom-input {
    background: #ddd;
    border: none;
    border-radius: 17px;
    padding: 5px;
    font-size: 14px;
    padding-left: 20px;
}

/* EXPERTISE */
.expertise-section {
  padding:206px 0;
  background: url('../images/professional-expert.jpg') no-repeat center right;
   background-size:cover;
  background-color: #0b0b0b;
}

.expertise-section h2 {
  font-size: 42px;
  font-weight: 700;
}

.expertise-section span {
  color: #ffc107;
}

.expertise-section p {
  color: #bbb;
  margin-top: 20px;
}

/* CASES */
.cases-section {
  padding: 100px 0;
  background: #000;
}

.small-title {
  color: #ffc107;
}

.cases-section h2 {
  font-size: 42px;
  font-weight: 700;
}

.cases-section h2 span {
  color: #ffc107;
}

.desc {
  color: #bbb;
}

/* CARD */
.case-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.case-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.case-card:hover {
  transform: translateY(-8px);
}

.card-content {
  padding: 20px;
}

.card-content h5 {
  font-weight: 600;
}

.card-content p {
  color: #aaa;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .expertise-section h2,
  .cases-section h2 {
    font-size: 28px;
  }
}




/* SECTION */
.cases-section {
  background: #000;
  padding: 10px 0;
}

/* TITLE */
.small-title {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 10px;
}

.main-title {
  font-size: 42px;
  font-weight: 700;
}

.main-title span {
  color: #ffc107;
}

.desc {
  color: #aaa;
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 15px;
}

/* CARD */
.case-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

.case-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.card-img {
  position: relative;
}

.card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ICON BADGE */
.icon {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffc107;
  color: #000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

/* CONTENT */
.card-body {
  padding: 30px 20px 20px;
}

.card-body h5 {
  font-size: 18px;
  font-weight: 600;
}

.card-body p {
  font-size: 14px;
  color: #bbb;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-title {
    font-size: 28px;
  }
}




/* HERO */
.rev-hero {
  padding: 50px 0;
  background: linear-gradient(to right, #000 60%, #111);
}

.rev-hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.rev-hero span {
  color: #ffc107;
}

.rev-hero p {
  color: #bbb;
  margin-top: 20px;
}

/* IMAGE */
.hero-img {
  max-width: 100%;
}

/* FOOTER */
.footer-section {
  padding: 80px 0;
  background: #000;
  border-top: 1px solid #222;
}

.footer-title {
  color: #ffc107;
  font-weight: 600;
}

.footer-section p {
  color: #bbb;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  color: #bbb;
  margin-bottom: 8px;
  cursor: pointer;
}

.footer-section ul li:hover {
  color: #ffc107;
}

/* SOCIAL */
.social-icons span {
  margin-right: 10px;
  font-size: 18px;
  cursor: pointer;
}

.social-icons span img{
  width:34px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rev-hero h1 {
    font-size: 32px;
  }
}





/* HERO */
.digm-hero {
    padding: 100px 20px;
	background-color:#151515;
}

.digm-title {
    font-size: 50px;
    font-weight: 700;
}

.digm-highlight {
    color: #ffc107;
}

.digm-subtext {
    color: #bbb;
    max-width: 900px;
    margin: auto;
	font-size:15px;
	line-height:16px;
}

/* SEO */
.digm-seo {
    background: #111;
}

.digm-heading {
    font-size: 32px;
    font-weight: 700;
}

.digm-text {
    color: #ccc;
	font-size:15px;
	line-height:17px;
}

.digm-img {
    border-radius: 15px;
}

/* SERVICES */
.digm-services {
    background: #000;
}

.digm-list {
    list-style: none;
    padding: 0;
}

.digm-list li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

/* CIRCLE */
.digm-circle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.digm-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* FAQ */
.digm-faq {
    background: #111;
}

.digm-accordion .accordion-item {
    background: transparent;
    border: 1px solid #ffc107;
    border-radius: 30px;
    overflow: hidden;
}

.digm-acc-btn {
    background: transparent;
    color: white;
    border: none;
}

.digm-acc-btn:not(.collapsed) {
    background: #ffc107;
    color: black;
}

.accordion-body {
    background: #000;
    color: #ccc;
}



/* SECTION */
    .fullst-process-section{
      padding:80px 0;
      background:#000;
      overflow:hidden;
    }

    /* TITLE */
    .fullst-section-title{
      font-size:48px;
      font-weight:700;
      text-align:center;
      margin-bottom:20px;
      color:#fff;
    }

    .fullst-section-title span{
      color:#ffbe0b;
    }

    /* DESCRIPTION */
    .fullst-section-desc{
      max-width:900px;
      margin:auto;
      text-align:center;
      color:#bdbdbd;
      font-size:15px;
      line-height:1.8;
      margin-bottom:70px;
    }

    /* WRAPPER */
    .fullst-process-wrapper{
      position:relative;
    }

    /* CENTER LINE */
    .fullst-process-wrapper::before{
      content:"";
      position:absolute;
      top:50%;
      left:5%;
      width:90%;
      height:2px;
      background:#ffbe0b;
      z-index:0;
    }

    /* CARD */
    .fullst-step-card{
      position:relative;
      background:#0b0b0b;
      border:1px solid rgba(255,190,11,0.5);
      border-radius:18px;
      padding:25px 15px;
      text-align:center;
      min-height:300px;
      transition:0.4s;
      z-index:2;
    }

    .fullst-step-card:hover{
      transform:translateY(-10px);
      border-color:#ffbe0b;
      box-shadow:0 0 25px rgba(255,190,11,0.25);
    }

    /* STEP TEXT */
    .fullst-step-text{
      color:#ffbe0b;
      font-size:15px;
      font-weight:600;
      letter-spacing:1px;
    }

    .fullst-step-number{
      font-size:42px;
      font-weight:700;
      line-height:1;
      margin:10px 0 25px;
      color:#fff;
    }

    /* ICON */
    .fullst-icon-box{
      width:85px;
      height:85px;
      background:#ffbe0b;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      margin:auto;
      margin-bottom:25px;
    }

    .fullst-icon-box i{
      color:#000;
      font-size:35px;
    }

    /* TITLE */
    .fullst-step-title{
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    }

    /* RESPONSIVE */
    @media(max-width:991px){

      .fullst-process-wrapper::before{
        display:none;
      }

      .fullst-section-title{
        font-size:34px;
      }

      .fullst-step-card{
        min-height:auto;
      }
    }



    .gads-section{
      padding:60px 0;
      background:#02060b;
    }

    /* TOP BOX */
    .gads-top-box{
      border:2px solid #ffbe0b;
      border-radius:28px;
      padding:40px 35px;
      margin-bottom:35px;
    }

    .gads-feature{
      display:flex;
      gap:18px;
    }

    .gads-icon{
      min-width:52px;
      height:52px;
      border:2px solid #ffbe0b;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#ffbe0b;
      font-size:22px;
    }
	
	.gads-icon img{
		width:40px;
	}

    .gads-content h4{
      color:#ffbe0b;
      font-size:16px;
      font-weight:600;
      margin-bottom:12px;
    }

    .gads-content p{
    color: #e2e2e2;
    font-size: 12px;
    line-height: 1.3;
    margin: 0;
    }

    /* BOTTOM BOX */
    .gads-bottom-box{
      border:2px solid #ffbe0b;
      border-radius:18px;
      padding:18px 25px;
    }

    .gads-bottom-left{
      display:flex;
      align-items:center;
      gap:18px;
    }

    .gads-bottom-left i{
      color:#ffbe0b;
      font-size:28px;
    }

    .gads-bottom-left h3{
      color:#ffbe0b;
      font-size:20px;
      font-weight:600;
      margin:0;
    }

    .gads-bottom-text{
      color:#fff;
      font-size:16px;
      margin:0;
    }

    /* BUTTON */
    .gads-btn{
      background:#ffbe0b;
      color:#000;
      border:none;
      padding:15px 30px;
      border-radius:10px;
      font-weight:600;
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      gap:10px;
      transition:0.3s;
    }

    .gads-btn:hover{
      background:#fff;
      color:#000;
    }

    /* RESPONSIVE */
    @media(max-width:991px){

      .gads-feature{
        margin-bottom:30px;
      }

      .gads-content h4{
        font-size:15px;
      }

      .gads-content p{
        font-size:15px;
      }

      .gads-bottom-box{
        text-align:center;
      }

      .gads-bottom-left{
        justify-content:center;
        margin-bottom:20px;
      }

      .gads-bottom-text{
        margin-bottom:20px;
      }
    }
	
	
	
	 /* SECTION */
    .casegrow-section{
      padding:80px 0;
      background:#000;
    }

    /* CARD */
    .casegrow-card{
      background:#0b0b0b;
      overflow:hidden;
      transition:0.4s;
      height:100%;
    }

    .casegrow-card:hover{
      transform:translateY(-8px);
    }

    /* IMAGE */
    .casegrow-image{
      overflow:hidden;
    }

    .casegrow-image img{
      width:100%;
      height:260px;
      object-fit:cover;
      transition:0.5s;
    }

    .casegrow-card:hover .casegrow-image img{
      transform:scale(1.08);
    }

    /* CONTENT */
    .casegrow-content{
      padding:30px 25px;
	  background-color:#151515;	
    }

    .casegrow-title{
      color:#fff;
      font-size:22px;
      font-weight:600;
      margin-bottom:20px;
    }

    .casegrow-list{
      list-style:none;
      padding:0;
      margin:0 0 25px;
    }

    .casegrow-list li{
     color: #fff;
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 500;
    }

    .casegrow-list span{
      color:#ffbe0b;
      font-weight:700;
    }

    /* BUTTON */
    .casegrow-link{
      color:#ffbe0b;
      text-decoration:none;
      font-size:14px;
      font-weight:500;
      transition:0.3s;
    }

    .casegrow-link:hover{
      color:#fff;
    }

    /* RESPONSIVE */
    @media(max-width:991px){

      .casegrow-title{
        font-size:21px;
      }

      .casegrow-list li{
        font-size:15px;
      }
    }



    /* SECTION */
    .driving-digital-section{
      padding:90px 0;
      background:#171821;
    }

    /* ROW SPACING */
    .driving-digital-row{
      margin-bottom:100px;
      align-items:center;
    }

    .driving-digital-row:last-child{
      margin-bottom:0;
    }

    /* IMAGE */
    .driving-digital-image img{
      width:100%;
      border-radius:4px;
      object-fit:cover;
    }

    /* CONTENT */
    .driving-digital-content{
      padding:20px 40px;
    }

    /* ICON */
    .driving-digital-icon{
      width:55px;
      height:55px;
      background:#201a08;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#ffbe0b;
      font-size:22px;
      margin-bottom:30px;
    }

    /* TITLE */
    .driving-digital-title{
    font-size: 27px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
    }

    /* SUBTITLE */
    .driving-digital-subtitle{
      color:#ffbe0b;
      font-size:22px;
      font-weight:500;
      margin-bottom:18px;
    }

    /* TEXT */
    .driving-digital-text{
     color: #d1d1d1;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 15px;
    }

    /* LINK */
    .driving-digital-link{
      color:#ffbe0b;
      text-decoration:none;
      font-size:16px;
      font-weight:500;
      transition:0.3s;
    }

    .driving-digital-link:hover{
      color:#fff;
    }

    /* RESPONSIVE */
    @media(max-width:991px){

      .driving-digital-content{
        padding:40px 15px 0;
      }

      .driving-digital-title{
        font-size:38px;
      }

      .driving-digital-subtitle{
        font-size:18px;
      }

      .driving-digital-text{
        font-size:15px;
      }

      .driving-digital-row{
        margin-bottom:70px;
      }
    }





    /* SECTION */
    .blogfuture-section{
      padding:90px 0;
      background:#000;
    }

    /* CARD */
    .blogfuture-card{
      background:#0d0d0d;
      overflow:hidden;
      height:100%;
      transition:0.4s;
      border:1px solid rgba(255,255,255,0.04);
    }

    .blogfuture-card:hover{
      transform:translateY(-10px);
    }

    /* IMAGE */
    .blogfuture-image{
      overflow:hidden;
    }

    .blogfuture-image img{
      width:100%;
      height:260px;
      object-fit:cover;
      transition:0.5s;
    }

    .blogfuture-card:hover .blogfuture-image img{
      transform:scale(1.08);
    }

    /* CONTENT */
    .blogfuture-content{
      padding:35px 28px;
    }

    /* TITLE */
    .blogfuture-title{
      color:#fff;
      font-size:18px;
      font-weight:600;
      line-height:1.6;
      margin-bottom:15px;
    }

    /* TEXT */
    .blogfuture-text{
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 18px;
    }

    /* BUTTON */
    .blogfuture-link{
      color:#ffbe0b;
      text-decoration:none;
      font-size:14px;
      font-weight:500;
      transition:0.3s;
    }

    .blogfuture-link:hover{
      color:#fff;
    }

    /* RESPONSIVE */
    @media(max-width:991px){

      .blogfuture-title{
        font-size:24px;
      }

      .blogfuture-text{
        font-size:14px;
      }
    }
	
	
	
	
	  /* SECTION */
    .servib-section{
      padding:100px 0;
      background:#000;
    }

    /* CARD */
    .servib-card{
      background:#111116;
      overflow:hidden;
      transition:0.4s;
      height:100%;
    }

    .servib-card:hover{
      transform:translateY(-10px);
    }

    /* IMAGE */
    .servib-image{
      overflow:hidden;
    }

    .servib-image img{
      width:100%;
      height:420px;
      object-fit:cover;
      transition:0.5s;
    }

    .servib-card:hover .servib-image img{
      transform:scale(1.08);
    }

    /* CONTENT */
    .servib-content{
      padding:35px 35px 30px;
    }

    /* TITLE */
    .servib-title{
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    }

    /* INFO */
    .servib-info{
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 6px;
    }

    .servib-info i{
      color:#ffbe0b;
      font-size:28px;
      width:28px;
    }

    .servib-info span{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    }

    /* RESPONSIVE */
    @media(max-width:991px){

      .servib-image img{
        height:300px;
      }

      .servib-title{
        font-size:36px;
      }

      .servib-info span{
        font-size:18px;
      }

      .servib-info i{
        font-size:22px;
      }
    }
	
	
	
	
	
    .seo-section{
      background:#000;
      padding:80px 0;
      overflow:hidden;
      position:relative;
    }

    .seo-content h1{
   color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    }

    .seo-content h1 span{
      color:#ffbf00;
      display:block;
    }

    .seo-subtitle{
    color: #ffbf00;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 22px;
    max-width: 520px;
    }

    .seo-content p{
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 22px;
    max-width: 560px;
    }

    .seo-image-box{
      position:relative;
      text-align:center;
    }

    .seo-image-box img{
      width:100%;
      max-width:620px;
      border-radius:18px;
      object-fit:cover;
    }

    /* Glow Effect */
    .seo-image-box::before{
      content:"";
      position:absolute;
      width:300px;
      height:300px;
      background:rgba(255,191,0,0.18);
      filter:blur(120px);
      top:50%;
      left:50%;
      transform:translate(-50%,-50%);
      z-index:0;
    }

    .seo-image-box img{
      position:relative;
      z-index:1;
    }

    @media(max-width:991px){

      .seo-section{
        text-align:center;
      }

      .seo-content h1{
        font-size:42px;
      }

      .seo-subtitle,
      .seo-content p{
        margin-left:auto;
        margin-right:auto;
      }

      .seo-image-box{
        margin-top:50px;
      }

    }

    @media(max-width:576px){

      .seo-content h1{
        font-size:34px;
      }

      .seo-subtitle{
        font-size:18px;
      }

      .seo-content p{
        font-size:15px;
      }

    }
	
	
	
	    .seo-card-section{
      padding:80px 0;
      background:#000;
    }

    .seo-card{
      background:#050505;
      border:1px solid #c89200;
      border-radius:26px;
      padding:35px;
      height:100%;
      transition:0.4s ease;
      position:relative;
      overflow:hidden;
    }

    .seo-card:hover{
      transform:translateY(-8px);
      box-shadow:0 0 30px rgba(255, 193, 7, 0.15);
    }

    .seo-card::before{
      content:"";
      position:absolute;
      top:-80px;
      right:-80px;
      width:180px;
      height:180px;
      background:rgba(255,193,7,0.05);
      border-radius:50%;
    }

    .seo-top{
      display:flex;
      align-items:flex-start;
      gap:18px;
      margin-bottom:28px;
      position:relative;
      z-index:2;
    }

    .seo-icon{
      min-width:54px;
      height:54px;
      border:1px solid #c89200;
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#ffc107;
      font-size:26px;
      background:#0c0c0c;
    }

    .seo-title{
      color:#fff;
      font-size:20px;
      font-weight:700;
      line-height:1.3;
      margin:0;
    }

    .seo-card p{
color: #cfcfcf;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 2;
    }

    @media(max-width:991px){

      .seo-card{
        margin-bottom:30px;
      }

      .seo-title{
        font-size:24px;
      }

    }

    @media(max-width:576px){

      .seo-card{
        padding:28px 22px;
      }

      .seo-top{
        gap:14px;
      }

      .seo-title{
        font-size:21px;
      }

      .seo-card p{
        font-size:14px;
        line-height:1.8;
      }

    }
	
	
	
	  .locatb-services-section{
    padding:80px 0;
    background:#000;
  }

  .locatb-service-card{
    text-align:center;
    transition:0.4s ease;
  }

  .locatb-service-image{
    overflow:hidden;
    border-radius:18px;
    position:relative;
  }

  .locatb-service-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:18px;
    transition:0.5s ease;
    display:block;
  }

  .locatb-service-card:hover img{
    transform:scale(1.08);
  }

  .locatb-service-title{
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-top: 22px;
    margin-bottom: 0;
  }

  /* Optional Glow Effect */
  .locatb-service-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
      to top,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.05)
    );
    border-radius:18px;
  }

  @media(max-width:991px){

    .locatb-service-card{
      margin-bottom:35px;
    }

    .locatb-service-image img{
      height:220px;
    }

    .locatb-service-title{
      font-size:22px;
    }

  }

  @media(max-width:576px){

    .locatb-services-section{
      padding:60px 0;
    }

    .locatb-service-image img{
      height:200px;
    }

    .locatb-service-title{
      font-size:20px;
      margin-top:18px;
    }

  }
  
  
  
  /* WordPress Bootstrap Menu Hover Dropdown */
@media (min-width: 992px) {

    .navbar-nav .menu-item-has-children {
        position: relative;
    }

    .navbar-nav .sub-menu,
    .navbar-nav .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: #fff;
        padding: 0;
        margin: 0;
        list-style: none;
        z-index: 9999;
    }

    .navbar-nav .menu-item-has-children:hover > .sub-menu,
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .navbar-nav .sub-menu li a,
    .navbar-nav .dropdown-menu li a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #333;
    }

    .navbar-nav .sub-menu li a:hover,
    .navbar-nav .dropdown-menu li a:hover {
        background: #f5f5f5;
    }
}


.card-body h5{
	text-decoration:none!importent;
	color:#fff !importent;
}



.floating-contact{
    position:fixed;
    right:20px;
    bottom:190px;
    z-index:9999;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.floating-contact a{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#000000;
    text-decoration:none;
    font-size:22px;
}

.phone-icon{
    background:#ffc107;
}

.whatsapp-icon{
    background:#25D366;
}

.menu-item a{
	text-decoration:none;
	color:#fff;
}




/* ==========================
   CONTACT SECTION
========================== */

.contactlux-section{
    background:#050505;
    padding:100px 0;
}

/* Left Form */

.contactlux-form-box{
    background:#f5f5f5;
    border:2px solid #d4a62a;
    border-radius:30px;
    padding:50px;
    height:100%;
}

.contactlux-label{
    display:block;
    margin-bottom:10px;
    color:#222;
    font-size:18px;
    font-weight:500;
}

.contactlux-input{
    height:65px;
    border-radius:15px;
    border:1px solid #bcbcbc;
    background:transparent;
    font-size:18px;
    padding-left:20px;
    box-shadow:none !important;
}

.contactlux-input:focus{
    border-color:#d4a62a;
}

textarea.contactlux-input{
    height:150px;
    padding-top:20px;
    resize:none;
}

.contactlux-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:12px;
    background:#ffc107;
    color:#000;
    font-size:22px;
    font-weight:600;
    transition:.3s;
}

.contactlux-btn:hover{
    background:#e5ab00;
}

/* Right Cards */

.contactlux-info-card{
    background:#090909;
    border:1px solid #d4a62a;
    border-radius:25px;
    padding:35px;
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:25px;
    transition:.3s;
}

.contactlux-info-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 35px rgba(212,166,42,.15);
}

.contactlux-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    background:#ffe0c7;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contactlux-icon i{
    color:#d4a62a;
    font-size:28px;
}

.contactlux-info-card h3{
    color:#fff;
    font-size:28px;
    margin-bottom:5px;
    font-weight:500;
}

.contactlux-info-card p{
    color: #8f8f8f;
    font-size: 18px;
    margin-bottom: -2px;
}

.contactlux-info-card a{
    color:#d4a62a;
    text-decoration:none;
    font-size:20px;
    font-weight:500;
}

.contactlux-info-card a:hover{
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

    .contactlux-form-box{
        padding:30px;
    }

    .contactlux-info-card{
        padding:25px;
    }

    .contactlux-info-card h3{
        font-size:22px;
    }

    .contactlux-info-card a{
        font-size:18px;
    }

    .contactlux-icon{
        width:60px;
        height:60px;
        min-width:60px;
    }

}




/* ==========================
   LOCATION CARDS
========================== */

.locationcard-section{
    background:#050505;
    padding:100px 0;
}

.locationcard-box{
    background:#111111;
    overflow:hidden;
    transition:.4s;
    height:100%;
}

.locationcard-box:hover{
    transform:translateY(-10px);
}

.locationcard-image{
    overflow:hidden;
}

.locationcard-image img{
    width:100%;
    height:380px;
    object-fit:cover;
    transition:.6s;
    display:block;
}

.locationcard-box:hover .locationcard-image img{
    transform:scale(1.08);
}

.locationcard-content{
    padding:35px;
}

.locationcard-content h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:30px;
    font-family:'Poppins',sans-serif;
}

.locationcard-info{
    display:flex;
    flex-direction:column;
    gap:13px;
}

.locationcard-item{
    display:flex;
    align-items:center;
    gap:18px;
}

.locationcard-item i{
    color:#ffc107;
    font-size:24px;
    width:30px;
}

.locationcard-item span{
    color:#ffffff;
    font-size:16px;
    font-weight:400;
}

/* Hover Border Effect */

.locationcard-box{
    border:1px solid rgba(255,193,7,.15);
}

.locationcard-box:hover{
    border-color:#ffc107;
    box-shadow:0 15px 40px rgba(255,193,7,.12);
}

/* Responsive */

@media(max-width:991px){

    .locationcard-content{
        padding:25px;
    }

    .locationcard-content h3{
        font-size:34px;
    }

    .locationcard-item span{
        font-size:18px;
    }

    .locationcard-image img{
        height:280px;
    }

}












.location-single-page{
    background:#000;
    color:#fff;
    padding:80px 0;
}

.hero-left h1{
    font-size:40px;
    font-weight:800;
    margin-bottom:25px;
}

.hero-left h1 span{
    color:#ffc107;
}

.hero-content{
    color:#d0d0d0;
    font-size:18px;
    line-height:1.9;
}

.hero-content p{
	color: #d0d0d0;
    line-height: 1.5;
    font-size: 15px;
}

.hero-image img{
    width:100%;
}

.feature-box{
    border:1px solid #ffc107;
    border-radius:25px;
    padding:40px;
    height:100%;
}

.feature-box h3{
    font-size:25px;
    margin-bottom:20px;
    font-weight:700;
}

.feature-box p{
color: #d0d0d0;
    line-height: 1.4;
    font-size: 15px;
}

.location-main-content{
    margin-top:60px;
}

.location-main-content h2{
    color:#ffc107;
    margin-bottom:20px;
}

.location-main-content p{
    color: #d0d0d0;
    line-height: 1.4;
    font-size: 15px;
}







.servicecard-section{
    background:#000;
}

.servicecard-box{
    transition:all .4s ease;
}

.servicecard-box a{
    text-decoration:none;
    display:block;
}

.servicecard-image{
    overflow:hidden;
    border-radius:18px;
    position:relative;
}

.servicecard-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:all .5s ease;
    display:block;
}

.servicecard-content{
    text-align:center;
    padding-top:20px;
}

.servicecard-content h3{
    color:#fff;
    font-size:17px;
    font-weight:700;
    line-height:1.4;
    margin:0;
    transition:.3s;
}

.servicecard-box:hover .servicecard-image img{
    transform:scale(1.08);
}

.servicecard-box:hover .servicecard-content h3{
    color:#ffc107;
}

.servicecard-box:hover{
    transform:translateY(-8px);
}






.blogsec-section{
    background:#000;
}

.blogsec-card{
    background:#111;
    overflow:hidden;
    height:100%;
    transition:.4s;
    border:1px solid rgba(255,255,255,.05);
}

.blogsec-card:hover{
    transform:translateY(-10px);
    border-color:#ffc107;
}

.blogsec-image{
    overflow:hidden;
}

.blogsec-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.6s;
}

.blogsec-card:hover .blogsec-image img{
    transform:scale(1.08);
}

.blogsec-content{
    padding:28px;
}

.blogsec-content h3{
    margin-bottom:18px;
}

.blogsec-content h3 a{
    color:#fff;
    font-size:24px;
    font-weight:700;
    line-height:1.4;
    text-decoration:none;
    transition:.3s;
}

.blogsec-card:hover h3 a{
    color:#ffc107;
}

.blogsec-content p{
    color:#bdbdbd;
    font-size:15px;
    line-height:1.8;
    margin-bottom:25px;
}

.blogsec-btn{
    color:#ffc107;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.blogsec-btn i{
    margin-left:6px;
    transition:.3s;
}

.blogsec-btn:hover i{
    transform:translateX(6px);
}