body {
    font-family: 'Montserrat', sans-serif;

}

.pune-locations {
  background: #f8fafc;
}

.location-list {
  list-style: none;
  padding-left: 0;
}

.location-list li {
  padding: 6px 0;
  font-size: 14.5px;
  color: #333;
  position: relative;
  padding-left: 18px;
}

.bg-breadcrumps {
  position: relative;
  background: url("../assets/img/household-shifting-dtdc.jpg") center center / cover no-repeat;
  padding: 90px 0;
  color: #fff;
  overflow: hidden;
}

/* Dark overlay for readability */
.bg-breadcrumps::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgb(240,244,249,0.7),
    rgba(17,35,89,0.85)
  );
  z-index: 1;
}

.bg-breadcrumps .container {
  position: relative;
  z-index: 2;
}

/* Breadcrumb styling */
.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  font-size: 15px;
}

.breadcrumb li {
  color: #cdd6ff;
}

.breadcrumb li a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb li a:hover {
  color: #6ea8ff;
}

.breadcrumb li::after {
  content: "›";
  margin-left: 10px;
  color: #9fb3ff;
}

.breadcrumb li:last-child::after {
  display: none;
}

/* Animation */
.bg-breadcrumps {
  animation: breadcrumbFade 1s ease forwards;
}

@keyframes breadcrumbFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile optimization */
@media (max-width: 768px) {
  .bg-breadcrumps {
    padding: 60px 0;
    text-align: center;
  }

  .breadcrumb {
    justify-content: center;
    font-size: 14px;
  }
}


.location-list li::before {
  content: "✔";
  color: #2563eb;
  position: absolute;
  left: 0;
  font-size: 12px;
}

.our-services {
  background: #f9fafb;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}



.site-footer {
  background: #112359;
  color: #fff;
  padding: 70px 0 30px;
  font-family: system-ui, sans-serif;
}

.site-footer a {
  color: #cbd5ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #4f7cff;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.7;
  color: #dbe2ff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-5px);
  background: #4f7cff;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #cbd5ff;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }
}

/* Hero Section */
.hero-left {
    position: relative;
    width: 100%;
    height: 450px; /* static desktop height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    background-color: #000;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../assets/img/slide1.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: 1;
    animation: backgroundZoom 20s ease-in-out infinite alternate;
}

/* Hero Content Box */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    padding: 15px 15px;
    background: linear-gradient(135deg, rgba(17,35,89,0.85), rgba(0,0,0,0.6)); /* Gradient background */
    border-left: 6px solid #ffd700;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    animation: slideFade 1s ease-out forwards;
    opacity: 0;
}

/* Text Styling */
.hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Button Styling */
.hero-content .btn {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 8px;
    background: linear-gradient(90deg, #112359, #0d1c45);
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    display: inline-block;
}

.hero-content .btn:hover {
    transform: scale(1.08) translateY(-3px);
    background: linear-gradient(90deg, #0d1c45, #112359);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

/* Slide + Fade Animation */
@keyframes slideFade {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Background subtle zoom animation */
@keyframes backgroundZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Styles */
@media(max-width:992px){
    .hero-left {
        height: 250px;
        justify-content: center;
        padding: 0 20px;

    }
    .hero-content {
        max-width: 90%;
        padding: 15px 20px;
        border-left: 4px solid #ffd700;
        border-radius: 12px;
        animation: slideFadeMobile 1s ease-out forwards;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-content .btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* Mobile extra small */
@media(max-width:576px){
    .hero-left {
        height: 460px;
    }
    .hero-content {
        padding: 20px 15px;
        border-left-width: 4px;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 14px;
    }
    .hero-content .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Mobile slide animation */
@keyframes slideFadeMobile {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.relocation-form-horizontal {
    background: #f5f7fa;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: auto;
}

.relocation-form-horizontal h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #112359;
}

.relocation-form-horizontal p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
}

/* Horizontal row - 5 fields per row */
.form-row-horizontal {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.form-group {
    flex: 1 1 18%; /* 5 fields per row */
    display: flex;
    flex-direction: column;
}

.form-group textarea {
    resize: vertical;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #112359;
}

.form-control {
    padding: 12px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #112359;
    box-shadow: 0 0 8px rgba(17,35,89,0.2);
    outline: none;
}

/* Button */
.btn-submit {
    padding: 14px 25px;
    background: linear-gradient(90deg, #112359, #0d1c45);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: auto;
    align-self: flex-start;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #0d1c45, #112359);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width:1200px){
    .form-group {
        flex: 1 1 22%;
    }
}

@media(max-width:992px){
    .form-row-horizontal {
        flex-direction: column;
    }
    .form-group {
        flex: 1 1 100%;
    }
    .btn-submit {
        width: 100%;
        margin-top: 10px;
    }
}
/* Main Section */
.process-section-blue {
    padding: 80px 20px;
    background: #f0f4fa;
    text-align: center;
    overflow: hidden;
}

.process-section-blue h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #112359;
}

.process-section-blue p {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

/* Cards Container */
.process-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Individual Card */
.process-card {
    flex: 1 1 22%;
    background: #112359;
    color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s, box-shadow 0.5s;
    cursor: pointer;
}

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(17, 35, 89, 0.4);
}

/* Icon Circle */
.process-card .icon {
    width: 70px;
    height: 70px;
    background: #ffd700;
    color: #112359;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px auto;
    transition: transform 0.5s;
}

.process-card:hover .icon {
    transform: rotate(15deg) scale(1.2);
}

/* Card Text */
.process-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffd700;
}

.process-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

/* Animations on scroll */
.wow {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards;
}

.process-card:nth-child(1) { animation-delay: 0.2s; }
.process-card:nth-child(2) { animation-delay: 0.4s; }
.process-card:nth-child(3) { animation-delay: 0.6s; }
.process-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width:1200px){
    .process-card { flex: 1 1 45%; }
}

@media(max-width:768px){
    .process-card { flex: 1 1 100%; }
}
/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background: #112359;
    color: #fff;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-choose-us p {
    font-size: 16px;
    color: #f0f4ff;
    margin-bottom: 50px;
}

/* Features Grid */
.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-card {
    flex: 1 1 22%;
    background: #0d1c45;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Feature Icon */
.feature-card .icon {
    font-size: 30px;
    color: #ffd700;
    margin-bottom: 15px;
}

/* Feature Card Text */
.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e6f0;
}

/* Responsive */
@media(max-width:1200px){
    .feature-card { flex: 1 1 45%; margin-bottom: 20px; }
}

@media(max-width:768px){
    .feature-card { flex: 1 1 100%; }
}
.about-head {
    font-size: 32px;
    font-weight: 700;
    color: #112359;
    margin-bottom: 20px;
}

.faq-review-ui {
  background: #f8fafc;
  padding: 70px 0;
  font-family: system-ui, sans-serif;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-head p {
  color: #555;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* FAQ */
.faq-box h3,
.review-box h3 {
  margin-bottom: 20px;
}

.faq-item {

  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.4s ease;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px 20px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* Reviews */
.review-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.review {
  display: none;
  animation: fade 0.5s ease;
}

.review.active {
  display: block;
}

.review p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}

.review span {
  display: block;
  font-size: 14px;
  color: #777;
}

.review-controls {
  margin-top: 20px;
  text-align: right;
}

.review-controls button {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 50%;
  margin-left: 5px;
  cursor: pointer;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}