.logoarea img{
    height: 100%;
}
.logoarea{
    height: 60px;
}

/* Custom Owl Carousel for Hero Section */
.hero-banner-slider {
  position: relative;
  overflow: hidden;
}

.hero-owl-carousel .hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 454px;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.hero-owl-carousel .hero-content {
  text-align: left;
  color: #fff;
  /* background: rgba(0,0,0,0.4); */
  padding: 30px 40px;
  border-radius: 8px;
  margin-left: 80px;
}

.hero-owl-carousel .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-owl-carousel .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero-owl-carousel .hero-btn {
  background: #ff6600;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.hero-owl-carousel .hero-btn:hover {
  background: #e55500;
}

/* Make it responsive */
@media (max-width: 768px) {
    .hero-owl-carousel .hero-slide {
        height: 125px;
    }
  .hero-owl-carousel .hero-content h1 {
    font-size: 2rem;
  }
  .hero-owl-carousel .hero-content p {
    font-size: 1rem;
  }
  .hero-owl-carousel .hero-content {
    text-align: left;
    color: #fff;
    /* background: rgba(0, 0, 0, 0.4); */
    padding: 30px 40px;
    border-radius: 8px;
    margin-left: 80px;
    display: none;
    
}
.choose-us-form{
  flex-direction: column-reverse;
}




}

/* carasoul hero slider */

/* Section Base */
.section-padding {
  padding: 30px 0;
}

.why-choose-us {
  background: #f9fafc;
}

.section-subtitle {
  color: #1230f3;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.section-subtitle::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #1230f3;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 15px;
  line-height: 1.3;
}

.section-desc {
  color: #555;
  margin-bottom: 30px;
}

/* Features */
.why-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.why-feature .icon {
  font-size: 32px;
  color: #1230f3;
  margin-right: 15px;
}

.why-feature h5 {
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 5px;
}

.why-feature p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Enquiry Form */
.enquiry-form {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.enquiry-form h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.enquiry-form .form-group {
  margin-bottom: 15px;
}

.enquiry-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  transition: border 0.3s ease;
}

.enquiry-form input:focus {
  border-color: #1230f3;
}

.submit-btn {
  width: 100%;
  padding: 12px 20px;
  background: #1230f3;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #0c1e8c;
}

/* Responsive */
@media (max-width: 991px) {
    .why-text {
        margin-bottom: 40px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 21px;
    }

  .enquiry-form {
    padding: 12px;
  }
}


/* Hero Banner Navigation Arrows */
.hero-banner-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* ensures clicks only on buttons */
  z-index: 10;
}

.hero-banner-slider .owl-nav button {
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
}

.hero-banner-slider .owl-nav button:hover {
  background: #ffb400; /* highlight color */
  color: #fff;
  transform: scale(1.1);
}

.hero-banner-slider .hero-nav-prev,
.hero-banner-slider .hero-nav-next {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-banner-slider .owl-prev {
  position: absolute;
  left: 25px;
}

.hero-banner-slider .owl-next {
  position: absolute;
  right: 25px;
}

/* Optional - Hide arrows on small screens */
@media (max-width: 768px) {
  .hero-banner-slider .owl-nav button {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .hero-banner-slider .owl-prev {
    left: 10px;
  }

  .hero-banner-slider .owl-next {
    right: 10px;
  }
}
/* Hero Banner Dots Navigation */
.hero-banner-slider .owl-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-banner-slider .owl-dot {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-banner-slider .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hero-banner-slider .owl-dot.active span,
.hero-banner-slider .owl-dot:hover span {
  background: #ffb400; /* Active dot color (brand color) */
  transform: scale(1.3);
}

/* Optional - smaller dots on mobile */
@media (max-width: 768px) {
  .hero-banner-slider .owl-dot span {
    width: 9px;
    height: 9px;
  }
}
/* Why We’re The Best - Stats Bar Style */
.why-best-bar {
  background: #f9f9f9;
  padding: 10px 0;
}

.stats-bar {
  background: linear-gradient(90deg, #1230f3 0%, #0a1877 100%);
  border-radius: 15px;
  padding: 50px 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-item {
  flex: 1 1 200px;
  margin: 10px 0;
}

.stat-item h3 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 16px;
  font-weight: 500;
  color: #ededed;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stats-bar {
    flex-direction: row;
    padding: 20px 20px;
  }

  .stat-item {
    margin-bottom: 0px;
  }

  .stat-item h3 {
    font-size: 16px;
  }
  .stat-item p {
  font-size: 10px !important;
}
}


/* about us */
.about-section {
  background-color: #f9fafb;
  color: #333;
}

.about-content .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  position: relative;
}

.about-content .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #1230f3;
  margin-top: 8px;
  border-radius: 5px;
}

.about-content p {
  line-height: 1.8;
}

.about-highlights {
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  animation: highlight 1s steps(1) infinite;
  transition: none !important;
  /* font-size: 22px; */
}

/* Keyframes for color loop */
@keyframes highlight {
  0% {
    background: white;
    color: #ff0015;
  }
  50% {
    background: #ff0015;
    color: white;
  }
  100% {
    background: white;
    color: #ff0015;
  }
}

.about-highlights .about-icon {
  font-size: 2rem;
  transition: none !important;
  animation: iconHighlight 1s steps(1) infinite;
  margin: 0px 10px;
}

@keyframes iconHighlight {
  0% {
    color: #ff0015;
  }
  50% {
    color: white;
  }
  100% {
    color: #ff0015;
  }
}


/* services */
.services-section {
  padding: 20px 0;
  background-image: url('../images/website/bg.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.section-title-service {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-service h2 {
  font-size: 2.5rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border-top: 4px solid transparent;
  position: relative;
}

.service-card::after{
content: '';
position: absolute;
top: -15px;
left: -15px;
border: 2px solid #1230f3;
width: 100%;
height: 100%;
border-radius: 15px;
filter: drop-shadow(1px 1px 8px);
}

.service-card:hover {
  border-top: 4px solid #1230f3;
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: #1230f3;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 768px) {
    .services-section {
        padding: 25px 10px;
    }

    .service-card {
        padding: 15px 15px;
    }
}

/* services */
/* testimonail */
.testimonial-section {
  background: #f9fafb;
  padding: 20px 0;
  text-align: left;
}

.testimonial-title {
  color: #1230f3;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonial-subtitle {
  color: #666;
  margin-bottom: 10px;
  font-size: 1rem;
}

.testimonial-slider {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease;
  height: 280px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.google-icon {
  width: 24px;
  height: 24px;
}

.testimonial-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #222;
  font-weight: 600;
}

.testimonial-time {
  font-size: 0.85rem;
  color: #999;
}

.testimonial-rating {
  color: #f9b208;
  margin: 10px 0;
}

.testimonial-text {
  color: #555;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 20px;
  }

  .testimonial-header {
    flex-direction: row;
  }
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border: 2px solid #4285F4;
  color: #4285F4;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(66,133,244,0.2);
  margin-bottom: 50px;
}

.google-review-btn svg {
  width: 24px;
  height: 24px;
}

.google-review-btn:hover {
  background-color: #4285F4;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(66,133,244,0.3);
}
/* testimonail */
/* clients */
.clients-section {
  background: #f9fafc;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.clients-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.clients-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.client-logo {
    background: #fff;
    border-radius: 12px;
    padding: 10px 20px;
    /* box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06); */
    transition: all 0.3s 
ease;
    /* background: #e0e0e0; */
    box-shadow: 15px 15px 30px #8d8d8d, -15px -15px 30px #ffffff;
}

.client-logo img {
  max-width: 100%;
  height: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-8px);
    box-shadow: 15px 15px 30px #8d8d8d, -15px -15px 30px #ffffff;
}

.client-logo:hover img {
  opacity: 1;
  filter: none;
}

@media (max-width: 768px) {
  .clients-title {
    font-size: 1.8rem;
  }
  .clients-subtitle {
    font-size: 1rem;
  }
  .clients-logos {
    gap: 10px;
  }
}
/* clients */
/* keywords */
.keywords-section {
  background: #fff;
  padding: 10px 20px;
  text-align: center;
}

.keywords-title {
  font-size: 1.8rem;
  color: #311cf0;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: capitalize;
}

.keywords-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 15px;
  justify-items: start;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.keywords-grid a {
  text-decoration: none;
  color: #333;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f9f9f9;
  padding: 0px 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.keywords-grid a::before {
  content: "⇒";
  color: #e63946;
  font-weight: bold;
  font-size: 20px;
}

.keywords-grid a:hover {
  background: #e63946;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(230,57,70,0.3);
}
.keywords-grid.active a{
    background: #e63946;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(230,57,70,0.3);
  /* padding-right: 30px; */
  width: 100%;
}

.mt-5 {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .keywords-title {
    font-size: 20px;
  }
  .keywords-grid {
    gap: 10px;
  }
  .keywords-grid a {
    font-size: 0.95rem;
  }
}
/* keywords */


/* ===== Mission & Vision Section ===== */
.kv-mission-vision {
  background: #f8f9fb;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.kv-container {
  max-width: 1200px;
  margin: 0 auto;
}

.kv-heading {
  text-align: center;
  margin-bottom: 60px;
}

.kv-heading h2 {
  font-size: 38px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}

.kv-heading h2 span {
  color: #0077b6;
}

.kv-heading .kv-subtitle {
  color: #555;
  margin-top: 12px;
  font-size: 16px;
}

.kv-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.kv-box {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  flex: 1 1 45%;
  padding: 40px 30px;
  text-align: center;
  overflow: hidden;
  border-top: 4px solid #0077b6;
  transition: all 0.3s ease;
}

.kv-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* SVG background inside each card */
.kv-svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.kv-svg-bg svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.kv-box *:not(.kv-svg-bg) {
  position: relative;
  z-index: 2;
}

.kv-icon {
  font-size: 48px;
  color: #0077b6;
  margin-bottom: 20px;
}

.kv-box h3 {
  font-size: 24px;
  color: #222;
  margin-bottom: 15px;
}

.kv-box p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .kv-box {
    flex: 1 1 100%;
  }
  .kv-heading h2 {
    font-size: 28px;
  }
}


/* ===== Dark Welcome Section ===== */
.kp-welcome-dark {
  position: relative;
  background: linear-gradient(135deg, #002b5b, #004c87);
  color: #fff;
  text-align: center;
  padding: 20px 20px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.kp-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.kp-content h5 {
  color: #00b4d8;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 10px;
}

.kp-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
  line-height: 1.3;
}

.kp-content h2 span {
  color: #00b4d8;
}

.kp-content p {
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.kp-btn {
  display: inline-block;
  margin-top: 20px;
  background: #00b4d8;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.kp-btn:hover {
  background: #0093b4;
}

/* ===== SVG Background ===== */
.kp-svg-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.kp-svg-bg svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}

/* ===== Moving Icons ===== */
.kp-icons {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 50px;
  opacity: 0.08;
  font-size: 80px;
  color: #ffffff;
}

.kp-icons i:nth-child(1) {
  transform: rotate(-10deg);
}
.kp-icons i:nth-child(2) {
  transform: rotate(10deg);
}
.kp-icons i:nth-child(3) {
  transform: rotate(-5deg);
}

/* Responsive */
@media (max-width: 768px) {
  .kp-content h2 {
    font-size: 30px;
  }

  .kp-icons {
    gap: 30px;
    font-size: 50px;
    top: 15%;
  }
}





/* General container */
.kp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Section titles */
.kp-section-title {
    font-size: 20px;
    color: #004aad;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Section background and spacing */
.kp-shifting-charges,
.kp-local-moving,
.kp-office-shifting{
    background-color: #f8f9fa;
    /* margin: 40px 0; */
    padding: 0px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Table styling */
.kp-table {
    /* width: 100%; */
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 12px;
    margin: 0 auto;
}

.kp-table th,
.kp-table td {
    border: 1px solid #d1d1d1;
    padding: 12px 15px;
    text-align: center;
}

.kp-table th {
    background-color: #004aad;
    color: #fff;
    font-weight: 600;
}

.kp-table tbody tr:nth-child(even) {
    background-color: #eaf1fc;
}

.kp-table tbody tr:hover {
    background-color: #d0e4fb;
    transition: background-color 0.3s ease;
}

/* Responsive Table */
@media screen and (max-width: 768px) {
    .kp-table th,
    .kp-table td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }
    .kp-section-title {
        font-size: 1.5rem;
    }
}

/* Paragraph inside sections */
.kp-shifting-charges p,
.kp-local-moving p,
.kp-office-shifting p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Optional: table captions */
.kp-table caption {
    caption-side: top;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #004aad;
}

/* Optional: Section hover effects */
.kp-shifting-charges:hover,
.kp-local-moving:hover,
.kp-office-shifting:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

/* City-wise charges section */
.kp-city-charges {
    background-color: #f8f9fa;
    padding: 10px 20px;
    /* margin: 40px 0; */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.kp-city-charges .kp-section-title {
    font-size: 20px;
    color: #004aad;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.kp-city-charges .kp-city-list h3 {
    font-size: 1.1rem;
    color: #0077cc;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.kp-city-charges .kp-city-list p {
    font-size: 12px;
    line-height: 1.2;
    margin: 1px 0;
    color: #333;
    padding-left: 10px;
    position: relative;
}

.kp-city-charges .kp-city-list p::before {
    content: "•";
    color: #004aad;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .kp-city-charges .kp-section-title {
        font-size: 1.6rem;
    }
    .kp-city-charges .kp-city-list h3 {
        font-size: 1.2rem;
    }
    .kp-city-charges .kp-city-list p {
        font-size: 0.9rem;
    }
}


/* contact info  */
/* Minimalist Contact Info Section */
.kp-contact-info {
    background: #ffffff;
    padding: 10px 20px;
    border-top: 2px solid #004aad;
    margin: 10px 0;
}

.kp-contact-info .kp-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #004aad;
    margin-bottom: 20px;
}

.kp-contact-info .kp-contact-box {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.kp-contact-info .kp-contact-box p {
    margin: 10px 0;
}

.kp-contact-info .kp-contact-box a {
    color: #004aad;
    text-decoration: none;
    transition: 0.3s ease;
}

.kp-contact-info .kp-contact-box a:hover {
    text-decoration: underline;
}

/* Map */
.kp-map {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.kp-map h4 {
    color: #004aad;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.kp-map iframe {
    width: 100%;
    height: 350px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .kp-contact-info {
        padding: 40px 15px;
    }

    .kp-contact-info .kp-section-title {
        font-size: 1.6rem;
    }

    .kp-map iframe {
        height: 280px;
    }
}



/* Section styling */
.other-states {
  background: #f9fafc;
  padding: 60px 20px;
  text-align: center;
}

.other-states h2 {
    font-size: 2rem;
    /* color: #222; */
    margin-bottom: 10px;
    font-weight: 600;
    color: blue;
}

.other-states .intro-text {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid layout */
.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.state-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s 
ease, box-shadow 0.2s 
ease;
    background-image: url(../images/website/cardbg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.state-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.state-card h3 {
  color: #004970;
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.state-card p {
  color: #555;
  font-size: 12px;
  margin-bottom: 20px;
}

/* Contact buttons */
.contact {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.call-btn, .contact-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.call-btn {
  background: #0077b6;
  color: #fff;
}

.contact-btn {
  background: #f1f1f1;
  color: #333;
  border: 1px solid #ddd;
}

.call-btn:hover {
  background: #005f8e;
}

.contact-btn:hover {
  background: #e5e5e5;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .other-states h2 {
    font-size: 20px;
  }

  .other-states .intro-text {
    font-size: 12px;
  }
  .state-card {
    padding: 10px !important;
  }
  .state-card h3 {
    font-size: 18px !important;
  }
  .call-btn, .contact-btn {
    padding: 8px 8px !important;
    font-size: 12px !important;
}
}





.contact-section {
    background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
  }

  .contact-info ul li .icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .contact-info a:hover {
    color: #0d6efd !important;
  }

  .contact-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.15);
  }

  .contact-form button:hover {
    background-color: #0b5ed7;
    transition: 0.3s ease;
  }









  /* --- Testimonial Section Styling --- */

.feedback-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonial Text Box */
.feedback-text {
  background: #595958;
  color: #fff;
  border-radius: 6px;
  padding: 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}

.feedback-text::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #595958;
}

.feedback-readmore {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  font-size: 13px;
  margin-top: 10px;
}

/* User Info Section */
.feedback-user {
  display: flex;
  align-items: center;
  margin-top: 30px;
  position: relative;
}

.feedback-quote {
  position: absolute;
  right: -10px;
  top: -25px;
  background: #595958;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform: rotateY(
180deg);
}

.feedback-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #595958;
  margin-right: 15px;
  z-index: 1;
}

.feedback-details {
  display: flex;
  flex-direction: column;
}

.feedback-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #222;
}

.feedback-role {
  font-size: 13px;
  color: #666;
  margin: 3px 0 0 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .feedback-card {
    padding: 20px;
  }

  .feedback-text {
    font-size: 13px;
  }

  .feedback-img {
    width: 50px;
    height: 50px;
  }

  .feedback-name {
    font-size: 14px;
  }
}



.feedback-text p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}



.iba-box{
  width: 100px;
  height: 100px;
  position: relative;
}
.iba-box::before{
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px dashed rgb(0, 26, 255);
  top:-10px;
  left: -10px;
  z-index: 10;
  border-radius: 50%;
  padding: 20px;

  animation: rotate 8s infinite linear;
  transform: rotate(0deg);
}

@keyframes rotate {
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }

}

.service-icon img{
  width: 60px;
}




.iba-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    right: 30px;
    z-index: 999;
    cursor: pointer;
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    transition: all 0.2s ease;
}
.whatsapp-icon:hover {
transform: scale(1.1);
filter: drop-shadow(1px 1px 5px);
}




/* Grid layout */
.keywords-gridss {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    max-width: 1100px;
    margin: auto;
}

/* Individual link cards */
.keywords-gridss a {
    display: block;
    padding: 12px 18px;
    background: #ffffffcc;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    border: 1px solid #e5e5e5;
    transition: 0.25s;
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
}
.keywords-gridss a::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 20px;
  background-image: url('https://cdn-icons-png.flaticon.com/128/16784/16784406.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  left: 12px;
}
.keywords-gridss a::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('https://st2.depositphotos.com/2124221/45766/i/450/depositphotos_457660748-stock-photo-abstrack-colour-background-can-use.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.7;
  right: 0;
  top: 0;
  z-index: -1;
}
/* Hover styling */
.keywords-gridss a:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    border-color: #d1d1d1;
}

    /* ================================
       CUSTOM NAVBAR BASE STYLE
    ================================= */
    .x-navbar {
      width: 100%;
      background: #ffffff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      /* position: fixed; */
      top: 0;
      left: 0;
      z-index: 1000;
      font-family: system-ui, sans-serif;
    }

    .x-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo */
    .x-logo {
      display: flex;
      align-items: center;
      /* font-size: 1.4rem; */
      /* font-weight: 700; */
      color: #333;
      text-decoration: none;
    }

    .x-logo img {
      /* width: 40px; */
      height: 70px;
      /* border-radius: 50%; */
      margin-right: 10px;
    }

    /* Links */
    .x-nav-links {
      display: flex;
      align-items: center;
      gap: 25px;
      list-style: none;
      margin: 0px;
    }

.x-nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: 0.3s 
ease;
    font-weight: 600;
    font-family: monospace;
    text-transform: uppercase;
}

    .x-nav-links a:hover {
      color: #007bff;
    }

    /* Dropdown */
    .x-dropdown {
      position: relative;
    }

.x-dropdown-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-family: monospace;
    text-transform: uppercase;
}

    .x-dropdown-menu {
      position: absolute;
      top: 40px;
      left: 0;
      background: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      border-radius: 6px;
      padding: 10px 0;
      min-width: 150px;
      display: none;
      flex-direction: column;
      z-index: 999;
    }

    .x-dropdown-menu a {
      padding: 10px 15px;
      white-space: nowrap;
      color: #333;
    }

    .x-dropdown-menu a:hover {
      background: #f5f5f5;
    }

    /* Button on Right */
    .x-btn {
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      background: #007bff;
      color: #fff;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .x-btn:hover {
      background: #0056d2;
    }

    /* ================================
       MOBILE RESPONSIVE NAV
    ================================= */
    .x-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
    }

    @media (max-width: 900px) {
      .x-nav-links,
      .x-btn {
        display: none;
      }

      .x-nav-links.x-open {
        display: flex;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px 0;
        border-top: 1px solid #eee;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 100;
      }

      .x-nav-links.x-open a {
        padding: 12px 20px;
        width: 100%;
      }

      .x-toggle {
        display: block;
      }
    }




    /* custom page */
    /* GLOBAL */
.ks-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.ks-section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #004aad;
    font-weight: 700;
}

/* HERO */
.ks-hero {
    background: linear-gradient(rgba(0, 55, 115, 0.7), rgba(0, 55, 115, 0.7)),
                url('https://via.placeholder.com/1600x600?text=Kiranshree+Packers+%26+Movers');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    text-align: center;
    color: #fff;
}

.ks-hero-title {
    font-size: 3rem;
    font-weight: 700;
}

.ks-hero-subtitle {
    font-size: 1.25rem;
    margin-top: 10px;
}

/* ABOUT SECTION */
.ks-about-service {
    padding: 70px 0;
}

.ks-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ks-about-content h2 {
    color: #004aad;
    font-size: 2rem;
    margin-bottom: 15px;
}

.ks-about-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.ks-about-img img {
    height: 100%;
    border-radius: 10px;
}
.ks-about-img{
  display: grid;
  place-items: center;
}

/* HIGHLIGHT CARDS */
.ks-service-highlight {
    padding: 70px 0;
    background: #f5faff;
}

.ks-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ks-card {
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.ks-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.ks-card h3 {
    color: #004aad;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* CTA SECTION */
.ks-cta {
    background: #004aad;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.ks-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 35px;
    background: #fff;
    color: #004aad;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.ks-btn:hover {
    background: #e4e4e4;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ks-grid-2,
    .ks-grid-3 {
        grid-template-columns: 1fr;
    }

    .ks-hero-title {
        font-size: 2.2rem;
    }
}

    /* custom page */


    /* ============= GALLERY GRID ============= */
.ks-gallery-container {
    /* width: 90%; */
    /* max-width: 1200px; */
    margin:0 auto;
    padding: 60px 20px;
}

.ks-gallery-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #004aad;
    font-weight: 700;
}

.ks-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.ks-gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.ks-gallery-grid img:hover {
    transform: scale(1.03);
}

/* ============= LIGHTBOX POPUP ============= */
.ks-lightbox {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.ks-lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
}

.ks-lightbox-img {
    width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

/* BUTTONS */
.ks-lightbox-close,
.ks-lightbox-prev,
.ks-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    padding: 10px;
    transition: 0.3s;
    user-select: none;
}

.ks-lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 55px;
}

.ks-lightbox-prev { left: -70px; }
.ks-lightbox-next { right: -70px; }

.ks-lightbox-prev:hover,
.ks-lightbox-next:hover,
.ks-lightbox-close:hover {
    color: #004aad;
}

/* Mobile Fixes */
@media (max-width: 600px) {
    .ks-lightbox-prev { left: 10px; }
    .ks-lightbox-next { right: 10px; }
}



/* HOME VIDEO SECTION */
.ks-home-video-section {
    padding: 80px 0;
    background: #ffffff00; /* soft blue background */
}

.ks-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT CONTENT STYLE */
.ks-home-left {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 6px solid #004aad;
}

.ks-home-left h2 {
    color: #004aad;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.ks-home-left p {
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

/* BUTTON */
.ks-btn-blue {
    background: #004aad;
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.ks-btn-blue:hover {
    background: #00357e;
}

/* VIDEO WRAPPER */
.ks-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.5%; /* 16:9 */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.ks-video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ks-home-grid {
        grid-template-columns: 1fr;
    }

    .ks-home-left {
        margin-bottom: 20px;
    }
}




/* Video testimonial wrapper */
.video-testimonial .feedback-video {
    text-align: center;
    margin-bottom: 20px;
}

/* Make Instagram reel responsive */
.video-testimonial blockquote.instagram-media {
    max-width: 100% !important;
    width: 100% !important;
}

/* Fix spacing for video testimonial card */
.video-testimonial {
    padding: 20px;
}

/* Adjust layout on small mobile screens */
@media (max-width: 600px) {
    .video-testimonial .feedback-video {
        margin-bottom: 15px;
    }
}
.insta-reel-clean {
    position: relative;
    width: 100%;
    padding-bottom: 177%; /* Instagram reel vertical ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.insta-reel-clean iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}






/* ------------------------ */
/* Wrapper Section          */
/* ------------------------ */
.cbx-breadcrumb-section {
  width: 100%;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
}

/* ------------------------ */
/* Hero Image               */
/* ------------------------ */
.cbx-breadcrumb-hero {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  /* border-radius: 8px; */
}

.cbx-breadcrumb-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cbx-breadcrumb-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,0.4) 100%
  );
}

/* ------------------------ */
/* Breadcrumb Nav           */
/* ------------------------ */
.cbx-breadcrumb-nav {
  margin-top: -40px;
  padding: 12px 16px;
  background: white;
  border-radius: 10px;
  width: fit-content;
  margin-left: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
}

/* Breadcrumb list layout */
.cbx-breadcrumb {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

/* Breadcrumb items */
.cbx-item {
  font-size: 15px;
  color: #555;
  display: flex;
  align-items: center;
}

.cbx-item a {
  text-decoration: none;
  color: #0073e6;
  font-weight: 500;
}

.cbx-item a:hover {
  text-decoration: underline;
}

/* Separators */
.cbx-item + .cbx-item::before {
  content: "›";
  margin-right: 6px;
  color: #aaa;
  font-size: 16px;
}

/* Active Item */
.cbx-item.cbx-active span {
  color: #222;
  font-weight: 600;
}

/* ------------------------ */
/* Responsive               */
/* ------------------------ */
@media (max-width: 600px) {
  .cbx-breadcrumb-hero {
    height: 180px;
  }

  .cbx-breadcrumb-nav {
    margin-left: 10px;
    padding: 10px 12px;
  }

  .cbx-item {
    font-size: 14px;
  }
}



.ctf{
  width: 100%;

}
.ctf-container{
 margin: 20px;
 display: flex;
 justify-content: space-evenly;
 align-items: center;
 flex-wrap: wrap;
 gap: 30px;
}

.ctf-container img{
  height: 350px;
  border-radius: 20px;
  display: block;
  position: relative;
}
/* .ctf-container img::after{
position: absolute;
content: '';
width: 100%;
height: 100%;
border: 2px solid blue;
z-index: 2;
} */







/* Section styling */
.cert-section {
  padding: 30px;
  text-align: center;
}

.cert-title {
  font-size: 28px;
  margin-bottom: 20px;
}

/* Gallery layout */
.cert-gallery {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
}

.cert-img {
  width: 300px;
  max-width: 100%;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.cert-img:hover {
  transform: scale(1.05);
}

/* Modal popup */
.cert-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.cert-modal-content {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 10px;
}

/* Close button */
.cert-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 45px;
  color: white;
  cursor: pointer;
}
/* Existing modal styles remain unchanged... */

.cert-modal-content {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 10px;
  cursor: grab;
  transition: transform 0.2s ease;
  transform-origin: center center;
}

.cert-modal-content:active {
  cursor: grabbing;
}

