@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ================= ROOT ================= */
:root {

  --primary-color: #ffe401;
  --secondary-color: #e2c445;
  --dark-bg: #1d1d23;
  --darker-bg: #17171c;
  --paragraph-color: #666666;
  --black: #000000;
  --white: #ffffff;
  --main-font: 'Poppins', sans-serif;


}

/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif !important;
  overflow-x: hidden;
}

.fa,
.fas,
.far,
.fab {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--black);
  font-family: var(--main-font);
}

h1 {
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  line-height: 52px;
  margin-bottom: 20px;
  margin-bottom: 15px;
}

h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 15px;
}

h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
}

h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}

h5 {
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

h6 {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 12px;
}

p {
  color: var(--paragraph-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 12px;
}

/* ================= SPLASH SCREEN ================= */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
  background-repeat: no-repeat;
  background-position: center, center 65%, center;
  background-size: cover, 55%, cover;
  animation: splashOut 1.2s ease forwards;
  animation-delay: 1.5s;
}

.splash-inner {
  text-align: center;
  animation: fadeUp 1.2s ease;
}

.splash-inner h2 {
  font-size: 90px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 82px;
  color: #ddd;
}

.splash-inner h2 span {
  color: #fff;
}

.splash-inner img {
  width: 100%;
  max-width: 280px;
  height: auto;
  opacity: .9;
}

.main-site {
  opacity: 0;
  transform: scale(1.03);
  animation: siteIn 1.8s ease forwards;
}


.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background-color: #222;
  overflow: hidden;

}

@media (max-width: 767px) {
  .splash-screen{
    height:65vh;
  }
  .splash-inner h2{
    font-size:40px;
  }
}

.text-main {
  color: #ffe401;
  font-size: 1.5rem !important;
  font-weight: 700;
}

.com-slog1 {
  font-size: 3rem !important;
  font-weight: 600;

}

.com-slog2 {
  font-size: 1rem !important;
  font-weight: 600;

}

/* Hero section background overlay */
.hero-section::after {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #17171c48;
}

.hero-slides .slide {
  position: absolute;
  inset: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeSlide 15s infinite;

}

.hero-slides .slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slides .slide:nth-child(2) {
  animation-delay: 5s;
}

.hero-slides .slide:nth-child(3) {
  animation-delay: 10s;
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-content {
  height: 10vh;
  position: relative;
  margin-top: 10vh;
  margin-left: 6vw;
  z-index: 5;
  width: 100%;

}

.hero-contents-alter{
  width: 100%;
  height:400px;
  padding-top:100px;
}

.hero-content h4 {
  color: var(--white);
}

@media (max-width: 575px){
  .hero-section{
    height: 40vh;
  }
  .hero-contents-alter h1{
    font-size: 32px !important;
  }
}

/* ================== CONTACT SECTION BEFORE FOOTER ================== */
@media (max-width: 991px) {
  .mobile-first {
    order: 1;
  }
  .mobile-second {
    order: 2;
  }
}


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

.contact {
  background: var(--primary-color);
  padding: 25px 0;
}

/* ICON CIRCLE */
.contact .icon-circle {
  width: 60px;
  height: 60px;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .icon-circle i {
  font-size: 22px;
  color: var(--black);
}

/* TEXT */
.contact h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--black);
}

.contact h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
}

/* BUTTON */
.contact .btn {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 26px;
  transition: all 0.3s ease;
}

.contact .btn i {
  margin-left: 6px;
  font-size: 14px;
}

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

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

/* Tablet */
@media (max-width: 991px) {
  .contact h4 {
    font-size: 20px;
  }
}

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

  /* HIDE RIGHT BUTTON COLUMN */
  .contact .col-lg-4.col-md-4 {
    display: none !important;
  }

  .contact {
    text-align: center;
  }

  .contact h4 {
    font-size: 18px;
  }

  .contact .icon-circle {
    width: 52px;
    height: 52px;
  }
}


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

.btn-circle-main {
  background-color: #ffe401;
  text-decoration: none;
  color: var(--dark-bg);
  border-radius: 50px;
  padding: 15px 40px;
  font-weight: 800;
  transition: 0.3s;
  display: inline-block;
}

.btn-circle-main:hover {
  background-color: #e2c445;
  color: #ffffff;
}

.know-more-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 24px;
    background: #f5b529;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
}

.know-more-btn:hover {
    background: #000;
    color: #f5b529;
}
/* ================= SERVICES ================= */
/* ================= SERVICES SECTION ================= */

.services-section-home {
  padding: 60px 0 60px;
  background: #f8f9fa;
}

.service-heading {
  text-align: center;
  margin-bottom: 40px;
}

/* Direct h2 styling (no extra class) */
.services-section-home h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Divider */
.divider {
  width: 50px;
  height: 3px;
  background: #e2c445;
  margin: 0 auto;
}

/* Card */
.service-card-home {
  background: #ffffff;
  padding: 25px 25px 0px;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  /* margin-bottom: 24px; */
}

.service-card-home:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(226, 196, 69, 0.35);
}

/* Image */
.service-card-home img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Card title */
.service-card-home h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Text */
.service-card-home p {
  color: var(--paragraph-color);

}
/* =========================
   SERVICES DROPDOWN
========================= */

.dropdown-menu-parent {
    position: relative;
}

.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #000;
    padding: 10px 0;
    border-radius: 10px;
    list-style: none;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.3s ease;

    z-index: 99999;
}

.dropdown-menu-parent:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-dropdown li {
    width: 100%;
}

.services-dropdown li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.services-dropdown li a:hover {
    background: #f7ea33;
    color: #000;
}
.mobile-dropdown {
    display: none;
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-dropdown li {
    margin-bottom: 10px;
}

.mobile-dropdown li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.services-menu.active .mobile-dropdown {
    display: block;
}

.dropdown-icon {
    margin-left: 6px;
    font-size: 14px;
}

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

/* Tablet */
@media (max-width: 991px) {
  .service-card-home img {
    height: 220px;
  }
}

/* Mobile – ONE CARD PER LINE */
@media (max-width: 767px) {
  .services-section-home h2 {
    font-size: 26px;
  }

  .service-card-home {
    padding: 18px;
  }

  .service-card-home img {
    height: 180px;
  }

  .service-card-home:hover {
    transform: translateY(-5px);
  }
}
.mobile-submenu a {
    padding-left: 35px !important;
    font-size: 14px;
    color: #fff !important;
}


/* ================= WHY CHOOSE ================= */
/* ================= WHY CHOOSE US ================= */

.why-choose-us {
  padding: 60px 0 80px;
  background: #fffdf2;
}

/* Heading */
.why-choose-us h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.why-choose-us p {
  color: var(--paragraph-color);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 26px;
}

/* Image */
.why-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(226, 196, 69, 0.45);
}

/* Box */
.why-box {
  background: #ffffff;
  padding: 22px 22px 22px 60px;
  border-radius: 16px;
  border: 1px solid #eeeeee;
  position: relative;
  transition: 0.3s ease;
  font-size: 14px;
}

.why-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(226, 196, 69, 0.45);
}

/* Number */
.why-box span {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Tablet */
@media (max-width: 991px) {
  .why-choose-us h2 {
    font-size: 30px;
  }

  .why-img {
    margin-bottom: 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .why-choose-us {
    padding: 50px 0;
  }

  .why-choose-us h2 {
    font-size: 26px;
  }

  .why-box {
    padding: 18px 18px 18px 55px;
    font-size: 13px;
  }

  .why-box span {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}



/* ================= RESPONSIBILITIES SECTION ================= */
/* ================= RESPONSIBILITIES ================= */

.responsibilities {
  padding: 60px 0px 80px;
  background: #fff7d6;
}

/* Header */
.responsibilities-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.responsibilities-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.responsibilities-header h5 {
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 5px;
}

.responsibilities-header p {
  color: var(--paragraph-color);
  font-size: 16px;
  line-height: 26px;
}

/* GRID */
/* Desktop = 3 */
.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.responsibility-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 0.8s ease forwards;
}

.responsibility-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 228, 1, 0.15),
      transparent);
  opacity: 0;
  transition: 0.4s;
}

.responsibility-card:hover::before {
  opacity: 1;
}

.responsibility-card i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.responsibility-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.responsibility-card p {
  font-size: 14px;
  color: var(--paragraph-color);
  line-height: 24px;
}

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

.responsibility-card:hover i {
  transform: rotateY(360deg);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Tablet = 2 cards */
@media (max-width: 991px) {
  .responsibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .responsibilities-header h2 {
    font-size: 30px;
  }
}

/* Mobile = 2 cards (IMPORTANT CHANGE) */
@media (max-width: 575px) {
  .responsibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .responsibilities-header h2 {
    font-size: 26px;
  }

  .responsibility-card {
    padding: 22px 16px;
  }

  .responsibility-card i {
    font-size: 32px;
  }
}


/* ================= COMMITMENT SECTION ================= */

/* ================= COMMITMENT SECTION ================= */

.commitment {
  padding: 60px 0px 60px;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  color: var(--darker-bg);
}

.commitment .container {
  max-width: 1100px;
  margin: auto;
}

/* Layout */
.commitment-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Image */
.commitment-img {
  position: relative;
  width: 460px;
  height: 460px;
  flex-shrink: 0;
}

.commitment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

/* Ring Animation */
.commitment-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 6px solid rgba(255, 228, 1, 0.2);
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
  animation: spin 2.4s linear infinite;
}

.commitment-ring::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  opacity: 0.25;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Content */
.commitment-info {
  max-width: 480px;
}

.commitment-info h2 {
  margin-bottom: 30px;
}

/* Items */
.commitment-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.commitment-icon {
  min-width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.commitment-icon img {
  width: 26px;
  height: auto;
  filter: brightness(0);
}

.commitment-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.commitment-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--paragraph-color);
}

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

/* Tablet */
@media (max-width: 991px) {
  .commitment-wrap {
    flex-direction: column;
    text-align: center;
  }

  .commitment-info {
    max-width: 520px;
  }

  .commitment-item {
    justify-content: center;
    text-align: left;
  }
}

/* Mobile */
/* ================= MOBILE: 2 ITEMS PER ROW ================= */
@media (max-width: 575px) {

  /* Convert items into grid */
  .commitment-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
  }

  /* Individual item card style */
  .commitment-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    padding: 16px 10px;
    border-radius: 14px;
    background: #fafafa;
  }

  .commitment-icon {
    margin-bottom: 10px;
  }

  .commitment-item h4 {
    font-size: 15px;
  }

  .commitment-item p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Image resize */
  .commitment-img {
    width: 280px;
    height: 280px;
  }
}



/* ================= VISION & MISSION ================= */
.luxury-vm-section {
  padding: 70px 0px 60px;
  background: #fffdf2;
  font-family: var(--main-font);
}

/* IMAGE */
.luxury-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.19);
}

.luxury-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* LABEL */
.luxury-label {
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

/* TITLE */
.luxury-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.luxury-title span {
  color: var(--secondary-color);
}

/* CARD */
.luxury-card {
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  padding: 22px 26px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.luxury-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.luxury-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--paragraph-color);
}

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

/* Tablet */
@media (max-width: 991px) {
  .luxury-title {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .luxury-title {
    font-size: 26px;
    text-align: center;
  }

  .luxury-label {
    display: block;
    text-align: center;
  }

  .luxury-card {
    text-align: center;
  }
}


/* ----------------------Review----------------------- */
.testimonial-section {
  padding: 60px 0;
  background: var(--white);
}

.testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-header h2 {
  font-size: 36px;
  font-weight: 700;
}

.testimonial-header p {
  color: var(--paragraph-color);
  font-size: 15px;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.testimonial-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 22px;
  position: relative;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(226, 196, 69, 0.35);
}

.testimonial-card.featured {
  border: 2px solid var(--primary-color);
}

/* QUOTE */
.testimonial-card .quote {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.25;
  font-family: serif;
}

/* TEXT */
.testimonial-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--paragraph-color);
  margin-bottom: 28px;
}

/* CLIENT */
.client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.client h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.client span {
  font-size: 13px;
  color: #777;
}

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

/* Tablet */
@media (max-width: 991px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-header {
    font-size: 26px;
  }
}


/* ================= CLIENTELE ================= */


/* SECTION */
.clientele-section {
  padding: 60px 0px;
  background: white;
  text-align: center;
}

.clientele-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;

}

/* VIEWPORT */
.logo-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* TRACK */
.logo-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: horizontalScroll 20s linear infinite;
}

/* CARD */
.client-card {
  min-width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE */
.client-card img {
  width: 160px;
  height: 60px;
  object-fit: contain;
  filter: none;
  /* REAL COLOR */
  opacity: 1;
}

/* ANIMATION */
@keyframes horizontalScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .client-card {
    min-width: 140px;
  }

  .client-card img {
    width: 120px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .clientele-section h2 {
    font-size: 26px;
  }
}

/* PAUSE ON HOVER */
.logo-viewport:hover .logo-track {
  animation-play-state: paused;
}



/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes splashOut {
  to {
    opacity: 0;
    visibility: hidden
  }
}

@keyframes siteIn {
  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes pulseLine {

  0%,
  100% {
    width: 40px;
    opacity: .3
  }

  50% {
    width: 90px;
    opacity: 1
  }
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg)
  }
}

/* -------------Home page tittles------ */
/* COMMON HOME PAGE HEADING */
.section-heading {
  color: var(--dark-bg);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 1px;

}

@media (max-width: 575px) {
  .section-heading h2 {
    font-size: 26px;
  }
}

.dark-heading {
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 1px;
}



/* --------about-us page css start------- */

/* --------about-us page css end------- */





/* --------ABOUT-US PAGE CSS START------- */







/* ================= ABOUT PREMIUM ================= */
.about-page-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../img/aboutPage/about-hero-banner.jpg") center / cover no-repeat;
  /* background: url("assets/img/aboutPage/hero.png") center / cover no-repeat; */
}

/* Overlay */
.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.65));
  z-index: 1;
     background-size: 90px 90px;
    opacity: 0.18;
}

/* Content */
.about-page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  animation: fadeUp 1s ease;
  color: #fff;
}

.about-page-hero h1 {
  color: #f2cf4a;
  font-size: 64px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.breadcrumb-custom {
  color: #fff;
  opacity: 0.85;
}

@media (max-width: 575px) {
  .about-page-hero{
    height: 40vh;
    border:2px solid green;
  }


  .about-page-hero h1 {
    font-size: 40px;
    text-align: center;
  }
}



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

.about-premium {
  padding: 65px 0px 70px;
  background: linear-gradient(#ffffff, #f6f8fa);
  font-family: "Poppins", sans-serif;
}

.about-premium .container {
  max-width: 1100px;
  margin: auto;
}

/* Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 60px;
}

/* Image */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.19);
}

/* Content */
.about-content {
  max-width: 520px;
}

.about-tag {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-content p {
  color: var(--paragraph-color);
  text-align: left;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 26px;
}

.about-content .about-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--paragraph-color);
  margin-bottom: 20px;
}

.about-content .about-text-last {
  font-size: 16px;
  line-height: 1.8;
  color: var(--paragraph-color);
  margin: 0px;
}

/* .about-text {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 14px;
} */

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

/* Tablet */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    text-align: center;
    margin: auto;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .about-premium {
    padding: 50px 0;
  }
  .about-content h2{
    font-size: 26px;
  }

  .about-heading {
    font-size: 26px;
  }

  .about-text {
    font-size: 14px;
  }
}


/* About Service start */
.services-section-about {
  padding: 60px 0 80px;
  background: #ffffff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.services-section-about .container {
  max-width: 1100px;
  margin: auto;
}

.services-section-about h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}


/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.19),
      rgba(235, 208, 208, 0.25));
  border-radius: 22px;
  padding: 55px 40px;
  text-align: left;
  transition: all 0.45s ease;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.19);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

/* GOLD LINE */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #f2cf4a;
  transition: width 0.45s ease;
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 40px rgba(242, 207, 74, 0.25);
}

/* ICON */
.icon-box {
  width: 74px;
  height: 74px;
  background: #f2cf4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: 0.4s;
}

.icon-box i {
  font-size: 30px;
  color: #111;
}

.service-card:hover .icon-box {
  transform: scale(1.12);
  box-shadow: 0 0 28px rgba(242, 207, 74, 0.7);
}

/* TEXT */
.service-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--dark-bg);
}

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

/* Tablet */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 45px 30px;
  }

  .section-heading {
    font-size: 26px;
  }

  .services-section-about h2 {
    font-size: 26px;
  }
}


/* ------------------vission and mission------------------ */
/* SECTION */
.vision-mission-about {
  padding: 0px 0px 80px;
  background: linear-gradient(#ffffff, #f6f8fa);
  font-family: "Poppins", sans-serif;
}

.vision-mission-about .container {
  max-width: 1100px;
  margin: auto;
}

/* HEADING */
.section-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 50px;
  color: var(--dark-bg);
}

/* GRID → 50% | Divider | 50% */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  /* 50% | divider | 50% */
  gap: 40px;
  align-items: stretch;
}

/* CARD */
.vm-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* TAG */
.vm-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--dark-bg);
}

/* TEXT */
.vm-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
  color: var(--dark-bg);
}

.vm-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* DIVIDER */
.vm-divider {
  width: 3px;
  height: 180px;
  background: linear-gradient(to bottom,
      transparent,
      #ffe401,
      transparent);
  border-radius: 10px;
}

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

/* TABLET & MOBILE */
@media (max-width: 991px) {
  .vm-grid {
    grid-template-columns: 1fr;
    /* 100% width */
  }

  .vm-divider {
    display: none;
  }
}

/* MOBILE */
@media (max-width: 575px) {
  .section-heading {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .vm-card {
    padding: 35px 26px;
  }

  .vm-card h3 {
    font-size: 22px;
  }
}


/* <!---------------------------------- ABOUT FEATURES ----------------------> */
/* SECTION */
.about-features {
  padding: 80px 0;
  background: linear-gradient(#ffffff, #f4f6f8);
  font-family: "Poppins", sans-serif;
}

.about-features .container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header span {
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 5px;
}

.about-tag {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.about-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--dark-bg);
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.feature-card {
  background: #ffffff;
  padding: 36px 30px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: left;
}

.feature-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-box {
  background: #fff;
  padding: 34px 28px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.35s;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* ICON */
.feature-icon {
  width: 64px;
  height: 64px;
  background: #f2cf4a;
  color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(242, 207, 74, 0.45);
}

/* TEXT */
.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-bg);
}

.feature-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

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

/* Tablet */
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-title {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .features-grid {
    grid-template-columns: 1fr;
    /* grid-template-columns: repeat(2, 1fr);
    gap: 20px; */
  }

  .about-header {
    margin-bottom: 50px;
  }

  .about-title {
    font-size: 22px;
  }

  .feature-card {
    text-align: center;
  }

  .feature-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== EXPERIENCE TIMELINE ===== */

/* SECTION */
.experience-timeline {
  padding: 70px 0px 80px;
  background: linear-gradient(135deg, #f7f8fa, #ffffff);
  font-family: "Poppins", sans-serif;
}

.experience-timeline .container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.exp-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.exp-header small {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 05px;
}

.exp-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.exp-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* TIMELINE GRID */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CENTER LINE (DESKTOP ONLY) */
.timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e5e7eb;
}

/* CARD */
.timeline-card {
  position: relative;
  background: #ffffff;
  padding: 38px 28px;
  border-radius: 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.19);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* NUMBER */
.timeline-count {
  position: absolute;
  top: -22px;
  left: 28px;
  width: 46px;
  height: 46px;
  background: #ffe401;
  color: #1d1d23;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.timeline-card h4 {
  margin: 26px 0 12px;
  font-size: 18px;
  color: #1d1d23;
}

.timeline-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
}

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

/* Tablet */
@media (max-width: 991px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    display: none;
  }

  .exp-header h2 {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .timeline {
    grid-template-columns: 1fr;
  }

  .exp-header {
    margin-bottom: 50px;
  }

  .exp-header h2 {
    font-size: 24px;
  }

  .timeline-card {
    text-align: center;
  }

  .timeline-count {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* ================= WHY CHOOSE US ================= */

.why-choose-us-about {
  background: #ffffff;
  padding: 70px 0 40px;
  color: var(--dark-bg);
}


/* Section heading */
.why-choose-us-about h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}

.choose-box {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  align-items: flex-start;
}

/* Icon */
.choose-icon {
  min-width: 56px;
  height: 56px;
  background: #f2cf4a;
  color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(242, 207, 74, 0.45);
}

/* Text */
.choose-box h5 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.choose-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
  text-align: left;
}

.why-choose-us-about .row {
  align-items: stretch;
}

/* Image column */
.why-choose-us-about .col-lg-6:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-us-about img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}


/* Desktop */
@media (min-width: 992px) {
  .why-choose-us-about img {
    max-height: 520px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .why-choose-us-about {
    padding: 60px 0;
  }

  .why-choose-us-about h1 {
    font-size: 1.7rem;
  }

  .why-choose-us-about img {
    max-height: 420px;
    margin-top: 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .why-choose-us-about {
    padding: 50px 0;
  }

  .why-choose-us-about h1 {
    font-size: 1.5rem;
  }

  .why-choose-us-about h2{
    font-size: 26px;
  }

  .choose-box {
    gap: 16px;
    margin-bottom: 28px;
  }

  .choose-icon {
    min-width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .choose-box h5 {
    font-size: 1rem;
  }

  .choose-box p {
    font-size: 14px;
  }

  .why-choose-us-about img {
    max-height: 300px;
  }
}


/* --------ABOUT-US PAGE CSS END------- */



/* BLOG PAGE CSS START-------  */
.blog-hero {
  width: 100%;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;

  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.06), transparent 45%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.92)),
    url('../img/banner/blog-banner.jpg');
  background-size: cover;
  background-position: center;
}

/* Parallax motion */
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  transform: scale(1.08);
  animation: heroParallax 22s ease-in-out infinite;
  z-index: 0;
}

/* Light sweep overlay */
.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg,
      transparent 30%,
      rgba(255, 204, 0, 0.08),
      transparent 70%);
  animation: lightSweep 10s ease-in-out infinite;
  z-index: 1;
}

@keyframes heroParallax {
  0% {
    transform: scale(1.08) translateY(0);
  }

  50% {
    transform: scale(1.14) translateY(-18px);
  }

  100% {
    transform: scale(1.08) translateY(0);
  }
}

@keyframes lightSweep {
  0% {
    opacity: 0;
  }

  40% {
    opacity: 0.3;
  }

  60% {
    opacity: 0.15;
  }

  100% {
    opacity: 0;
  }
}

/* Content layer */
.blog-hero-content {
  position: relative;
  z-index: 2;
}

/* Title */
.blog-hero h1 {
  font-size: 4.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 15px 45px rgba(0, 0, 0, 0.8);
  position: relative;
  display: inline-block;
}

/* Accent underline */
.blog-hero h1::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #ffcc00;
  display: block;
  margin: 18px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(255, 204, 0, 0.8);
}


@media (max-width: 575px) {

  .blog-hero{
    height: 40vh;
  }

  .blog-hero h1 {
    font-size: 40px;
  }
}

/* blog wrpper section start */
/* ================= GENERAL BLOG STYLING ================= */
.blog-wrapper,
.blog-grid,
.blog-dark {
  font-family: 'Poppins', sans-serif;
  margin-top: 50px;
}

/* ========== BLOG WRAPPER ========== */
.blog-wrapper {
  padding: 80px 0px 60px;
  background: #fdfdfd;
}

.blog-image img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.blog-image img:hover {
  transform: scale(1.02);
}

.blog-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-meta {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 25px;
}

.blog-content p {
  color: var(--paragraph-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 12px;
}

/* ========== SIDEBAR ========== */
.sidebar {
  padding-left: 40px;
}

.sidebar h5 {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #1d1d23;
}

.search-box input {
  width: 100%;
  border-radius: 6px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  outline: none;
  transition: border 0.3s ease;
}

.search-box input:focus {
  border-color: #f2cf4a;
  box-shadow: 0 0 6px rgba(242, 207, 74, 0.3);
}

.category-list li {
  list-style: none;
  margin-bottom: 10px;
  color: #555;
  font-size: 0.95rem;
}

.recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.recent-post img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

.recent-post small {
  color: #999;
  font-size: 0.75rem;
}

.recent-post h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 4px 0 0;
  color: #1d1d23;
}

/* ========== BLOG GRID CARDS ========== */
.blog-grid {
  padding: 0px 0px 80px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
}

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

.blog-card-body {
  padding: 25px;
}

.blog-card-body h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: #1d1d23;
  font-size: 18px;
}

.blog-card-body p {
  color: var(--paragraph-color);
  max-width: 650px;
  margin: 0 auto 10px;
  line-height: 26px;
}

.blog-card-body .btn-readmore {
  color: #f2cf4a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.blog-card-body .btn-readmore:hover {
  color: #d4aa0b;
}

/* ========== DARK FEATURE SECTION ========== */
.blog-dark {
  padding: 90px 0;
  background: linear-gradient(135deg, #0b0f19, #141a2e);
  color: #fff;
}

.blog-dark h2 {
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
}

.blog-dark p {
  font-size: 1rem;
  line-height: 1.8;
  color: #e3e3e3;
}

.blog-dark .btn-warning {
  background-color: #f2cf4a;
  color: #111;
  font-weight: 600;
  transition: 0.3s;
}

.blog-dark .btn-warning:hover {
  background-color: #d4aa0b;
  color: #fff;
}

/* IMAGE STYLING */
.blog-dark img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

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

  .blog-wrapper,
  .blog-grid {
    padding: 60px 0;
  }

  .blog-title {
    font-size: 2rem;
  }

  .sidebar {
    padding-left: 0;
    margin-top: 50px;
  }

  .blog-card img {
    height: 220px;
  }
}

@media (max-width: 576px) {

  .blog-wrapper,
  .blog-grid {
    padding: 40px 15px;
  }

  .blog-title {
    font-size: 1.7rem;
  }

  .blog-card img {
    height: 180px;
  }

  .recent-post img {
    width: 60px;
    height: 60px;
  }

  .recent-post h6 {
    font-size: 0.9rem;
  }

  .blog-dark h2 {
    font-size: 1.6rem;
  }
}

/* DARK SECURITY SECTION BLOG */

/* BLOG PAGE CSS END-------  */





/* -------------------CONTACT PAGE CSS START----------------------- */
.contact-hero {
  position: relative;
  width: 100%;
  height: 100vh;

  background: url('../img/banner/contact-banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(10, 25, 30, 0.95),
      rgba(10, 25, 30, 0.85),
      rgba(10, 25, 30, 0.95));
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.18;
}


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

.hero-content h1 {
  font-size: 64px;
  font-weight: 900;
  color: #f2cf4a;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.breadcrumb-custom span {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 575px) {
  .contact-hero {
    width:100%;
    height: 40vh;
    padding:0px;
    margin:0px;
  }

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


/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 60px 0px 80px;
  background: #fdfdfd;
  font-family: 'Poppins', sans-serif;
}

/* Section title */
.contact-section h2 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark-bg);
}

/* Info text */
.info-text {
  max-width: 520px;
  color: #455a64;
  line-height: 1.9;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .contact-section {
    padding: 40px 15px 60px;
  }

  .contact-section h2 {
    font-size: 26px;
    text-align: center;
  }

  .info-text {
    text-align: center;
    margin: 0 auto 30px;
  }
}

/* ================= CONTACT INFO CARDS ================= */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 14px;
  background: #f9f9f9;
  padding: 12px 14px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(4px);
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-item i {
  width: 30px;
  height: 30px;
  background: #e7c847;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* ================= SOCIAL ICONS ================= */
.social-icons {
  margin-top: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-6px) scale(1.05);
}

.fb {
  background: #4267B2;
}

.tw {
  background: #1DA1F2;
}

.yt {
  background: #E62117;
}

.ig {
  background: #C13584;
}

/* ================= FORM CARD LEFT SIDE================= */
.contact-card {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  font-family: 'Poppins', sans-serif;
}

.contact-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

.contact-input,
.contact-textarea {
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #146f90;
  box-shadow: none;
}

.contact-btn {
  width: 100%;
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #146f90;
}


/* ================= FORM CARD ================= */

.contact-info-card {
  padding: 40px 35px;
  font-family: 'Poppins', sans-serif;
}

.info-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
}

.info-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 32px;
  max-width: 420px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-item.align-start {
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f5f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #146f90;
  font-size: 18px;
  flex-shrink: 0;
}

.info-text {
  font-size: 16px;
  color: #222;
  line-height: 1.6;
}

.connect-title {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}

.contact-social {
  margin-top: 16px;
  display: flex;
  gap: 14px;
}

.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-social a:hover {
  background: #146f90;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-info-card {
    padding: 30px 20px;
  }

  .info-title {
    font-size: 24px;
  }
}



/* -------------------CONTACT PAGE CSS END----------------------- */




/* -------------------SERVICES PAGE CSS START----------------------- */
.services-hero {
  width: 100%;
  height: 100vh;
  background:
    linear-gradient(rgba(29, 29, 29, 0.75), rgba(0, 0, 0, 0.85)),
    url("../img/banner/service-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

.services-hero h1 {
  color: var(--secondary-color);
  font-size: 64px;
  font-weight: 900;
}

.breadcrumb-custom a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 575px) {
  .services-hero {
    height: 40vh;
    padding: 0 15px;
    text-align: center;
  }

  .services-hero h1 {
    font-size: 40px;
  }
}


/* ================= PREMIUM SERVICES ================= */
/* ================= PREMIUM SERVICES SECTION ================= */

.services-section-premium {
  padding: 50px 0;
  background: #ffffff;
  color: #000;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.services-section-premium small {
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.services-section-premium h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 42px;
}

/* ================= PREMIUM CARD ================= */

.service-card-premium {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.25),
      rgba(235, 208, 208, 0.25));
  border-radius: 22px;
  padding: 45px 40px 30px;
  height: 100%;
  transition: all 0.45s ease;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.19);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  text-align: left;
}

/* GOLD TOP LINE */
.service-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #f2cf4a;
  transition: width 0.45s ease;
}

.service-card-premium:hover::before {
  width: 100%;
}

.service-card-premium:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 60px rgba(226, 196, 69, 0.45);
}

/* ================= ICON ================= */

.service-icon-premium {
  width: 74px;
  height: 74px;
  background: #f2cf4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.service-icon-premium i {
  font-size: 30px;
  color: #111;
}

.service-card-premium:hover .service-icon-premium {
  transform: scale(1.12);
  box-shadow: 0 0 28px rgba(242, 207, 74, 0.7);
}

/* ================= TEXT ================= */

.service-card-premium h4 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.service-card-premium p {
  color: var(--paragraph-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 12px;
}

/* ================= CTA LINK ================= */

.service-link-premium {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  transition: all 0.35s ease;
}

.service-link-premium i {
  transition: transform 0.35s ease;
}

.service-card-premium:hover .service-link-premium {
  color: #f2cf4a;
}

.service-card-premium:hover .service-link-premium i {
  transform: translateX(6px);
}

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

@media (max-width: 768px) {
  .services-section-premium {
    padding: 100px 0;
  }

  .services-section-premium h2 {
    font-size: 26px;
    margin-bottom: 42px;
  }
}

/* ================= ABOUT SERVICES ================= */
/* ================= ABOUT SERVICE SECTION ================= */

.about-section-service {
  padding: 70px 0px 80px;
  background: linear-gradient(#ffffff, #f6f8fa);
  box-shadow:
    0 20px 60px rgba(226, 196, 69, 0.25),
    0 10px 15px rgba(0, 0, 0, 0.12);
  font-family: 'Poppins', sans-serif;
  color: var(--paragraph-color);
}

/* ================= IMAGE ================= */

.about-image-service {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.about-image-service img {
  width: 100%;
  display: block;
  border-radius: 18px;
}


.about-content-service {
  padding-left: 25px;
}

.about-label-service {
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.about-title-service {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-title-service span {
  color: var(--secondary-color);
}

.about-content-service p {
  color: var(--paragraph-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 12px;
  max-width: 540px;
}

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

.btn-yellow-service {
  margin-top: 20px;
  padding: 14px 34px;
  background: var(--secondary-color);
  color: #111;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-yellow-service:hover {
  background: #111;
  color: #fff;
}


@media (max-width: 991px) {
  .about-content-service {
    padding-left: 0;
    text-align: center;
  }

  .about-content-service p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .about-title-service {
    font-size: 26px;
  }
}


/* -------------Our clients section start----------------- */
/* ================= CLIENTS SECTION ================= */

.clients-section-service {
  padding: 70px 0 80px;
  background: #fffdf2;
  font-family: 'Poppins', sans-serif;
}

/* ================= TITLE ================= */

.section-title-service {
  margin-bottom: 10px;
}

.section-title-service h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--darker-bg);
  margin: 0;
}

.section-subtitle-service {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* ================= GRID ================= */

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

/* ================= CLIENT BOX ================= */

.client-box-service {
  background: #ffffff;
  padding: 35px 25px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.client-box-service i {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.client-box-service h4 {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.4;
}

.client-box-service:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

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

@media (max-width: 991px) {
  .clients-grid-service {
    grid-template-columns: repeat(2, 1fr);
    /* gap: 20px; */
  }
}

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

@media (max-width: 575px) {
  .clients-grid-service {
    grid-template-columns: repeat(2, 1fr);
    /* gap: 20px; */
  }

  .section-title-service h2 {
    font-size: 28px;
  }
}

/* ================= ADVANCE SERVICE SECTION ================= */

.advance-section-service {
  padding: 70px 0px 80px;
  background: #fffbe6;
  font-family: 'Poppins', sans-serif;
}

/* GRID */
.advance-section-service .row {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ================= LEFT CONTENT ================= */

.content-service {
  flex: 1;
}

.section-label-service {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--secondary-color);
}

/* TITLE PARENT */
.section-title-service {
  margin: 18px 0 24px;
}

.section-title-service h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title-service span {
  color: #ffe401;
}

/* ================= POINTS ================= */

.service-points-service div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #222;
}

.service-points-service i {
  color: #ffe401;
  font-size: 1.2rem;
}

/* ================= RIGHT IMAGE ================= */

.image-wrapper-service {
  flex: 1;
  display: flex;
  justify-content: center;
}

.advance-image-card-service {
  width: 100%;
  max-width: 520px;
  height: 330px;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.19);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.advance-image-card-service img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.advance-image-card-service:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(226, 196, 69, 0.45);
}

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

@media (max-width: 991px) {
  .advance-section-service .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .section-title-service h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 576px) {
  .advance-section-service {
    padding: 70px 0;
  }

  .section-title-service h2 {
    font-size: 2rem;
    text-align: left;
  }
}


/* --------------how to work start------------ */
/* ================= SERVICE PROCESS SECTION ================= */

.service-process-section {
  padding: 60px 0px 80px;
  background: linear-gradient(180deg, #ffffff, #f7f8fa);
  position: relative;
}

/* HEADER */
.section-label {
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 05px;
}

/* TITLE PARENT */
.section-title-service {
  margin: 18px 0;
}

.section-title-service h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-desc {
  color: var(--paragraph-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 42px;
}

/* ================= PROCESS CARD ================= */

.process-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 30px 15px;
  height: 100%;
  position: relative;
  transition: all 0.45s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.19);
  overflow: hidden;
}

/* TOP ACCENT */
.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: #f2cf4a;
  transition: width 0.45s ease;
}

.process-card:hover::before {
  width: 100%;
}

.process-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 60px rgba(226, 196, 69, 0.45);
}

/* STEP NUMBER */
.step-number {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(242, 207, 74, 0.18);
}

/* ICON */
.process-card i {
  font-size: 42px;
  color: #f2cf4a;
  margin-bottom: 30px;
  display: block;
  transition: transform 0.4s ease;
}

.process-card:hover i {
  transform: scale(1.15);
}

/* TEXT */
.process-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 18px;
  text-align: left;
}

.process-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  text-align: left;
}

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

@media (max-width: 768px) {
  .service-process-section {
    padding: 110px 0;
  }

  .section-title-service h2 {
    font-size: 26px;
    text-align: center ;
  }

  .section-label {
   padding-left: 120px;
  }

  .section-desc {
    margin-bottom: 60px;
  }
}


/* -------------------SERVICES PAGE CSS END----------------------- */



/* FOOTER WHATSAPP BUTTON STYLE START  */
.float {
  position: fixed;
    padding: 5px 9px;
  bottom: 40px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  border: 3px solid #fff;
}

.float:hover {
  background: green;
  color: #fff;
}

/* FOOTER WHATSAPP BUTTON STYLE END */

class

/* fixed icon start size is not define  */

/* class="fixed-icon */
.fixed-icon {
  width: 64px;
  height: 64px;
  aspect-ratio: 1 / 1;
}

@media (max-width: 768px) {
  .fixed-icon {
    width: 48px;
    height: 48px;
  }
}
/* explore our services */

.internal-links-section {
  padding: 45px 15px;
  background: #f8f8f8;
  text-align: center;
}

.internal-links-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.internal-links-section p {
  max-width: 850px;
  margin: 0 auto 12px;
  line-height: 1.7;
}

.internal-links-section a {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
}

.internal-links-section a:hover {
  color: #d4af37;
}