* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow: hidden; */
}

body {
  overflow-x: hidden;
  /* overflow: hidden; */
}
html {
  scroll-behavior: smooth;
}

:root {
    --primary-color:#2E3192;
    --secondary-color: #ED222A;
    	/* --secondary-color : #f1555b; */
    --accent-color: 		#8f93d1;
    --text-dark: #2E3192;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;

    margin: 0;
    padding: 0;

    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    position: fixed !important;
}


.nav-container {
    
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 0.5rem 15px;
    /* position: fixed; */
}

.logo-img {
     height: 60px;
    object-fit: contain;
    margin-left: 2rem;
    margin-right: 7rem;
}
.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    /* margin-left: 3rem; */
}

.nav-menu {
    display: flex;
      /* display: none; */

    align-items: center;
    /* gap: 2rem; */
}




.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: 	#6f73bc;
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1001;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 5rem;
}

.cta-button:hover {
    background:		#f1555b;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}


/* Hero Section */


.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

#dynamic-word {
    color: var(--secondary-color);
    position: relative;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #ED222A;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: 	#8f93d1;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}



/* Quick Quote Form */
/* Overlapping Quick Quote Section */
/* .quick-quote {
  position: relative;
  z-index: 10;
  margin-top: -120px; 
  padding: 0 20px 60px;
  background: transparent;
}

.quote-card {
  background-color: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  padding: 30px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;

    position: relative;
  background-color: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  padding: 30px;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;

}
.quote-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6ec4, #7873f5, 	#afb2e5, 	#f1555b, #ff6ec4);
  background-size: 400% 400%;
  border-radius: 20px;
  z-index: -1;
  animation: glowing-border 6s linear infinite;
}

@keyframes glowing-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.quote-form-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.form-group {
  flex: 1 1 180px;
  display: flex;

  justify-content: center;
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  background-color: #fefefe;
  transition: all 0.3s ease;
}

.form-group button.btn-primary {
  background-color: var(--primary-color, #0c1c2c);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--primary-color, #007bff);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.form-group button.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(29, 78, 216, 0.3);
}
.quote-card:hover {
  box-shadow: 0 0 20px rgba(72, 0, 255, 0.3);
  transition: box-shadow 0.3s ease;
}

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

@media (max-width: 768px) {
  .quote-form-horizontal {
    flex-direction: column;
    gap: 10px;
  }

  .form-group {
    flex: 1 1 100%;
  }
} */
.three-action-cards {
  background: #f7f7f7;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem;
}

.action-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 380px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;

   opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

.action-card:hover {
  transform: translateY(-4px);
}

.card-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  flex-grow: 1;
}

.icon {
  font-size: 2rem;
  color: #003366;
  flex-shrink: 0;
}

.text h4 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.text p {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
}

.card-btn {
  display: block;
  background: #2E3192;
  color: #fff;
  text-align: center;
  padding: 0.6rem;
  border-radius: 0 0 6px 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.card-btn:hover {
  background: #ED222A;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .action-card {
    width: 100%;
    max-width: 360px;
    height: auto;
  }

  .card-body {
    flex-direction: row;
    align-items: flex-start;
  }
}@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-left {
  opacity: 0;
  animation: slideInLeft 0.8s ease forwards;
  animation-delay: 0.2s;
}

.animate-right {
  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
  animation-delay: 0.2s;
}

.animate-up {
  opacity: 0;
  animation: slideInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}





/* About Us Section */
.about-us-section {
  padding: 40px 20px;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

.about-us-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: hidden;
}

.about-us-image {
  flex: 1 1 45%;
}

.about-us-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.about-us-content {
  flex: 1 1 50%;
}

.about-us-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-us-content .highlight {
  color:#ED222A;
}

.about-us-content p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #444;
  line-height: 1.6;
}

.about-us-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-us-features li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.about-us-features i {
  /* color:#f1555b; */
  color: #ED222A;
  margin-right: 10px;
}

.about-us-content .btn-primary {
  padding: 12px 25px;
  background-color: #ED222A;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.about-us-content .btn-primary:hover {
  background: linear-gradient(90deg, #ED222A 0%, #FF4D55 100%);
}

@media screen and (max-width: 768px) {
  .about-us-container {
    flex-direction: column;
    text-align: center;
  }

  .about-us-content {
    padding: 0 10px;
  }
}

.about-us-image img {
  transition: transform 0.4s ease;
}

.about-us-image img:hover {
  transform: scale(1.03);
}



/* Features Section */
.features {
    padding: 3rem 0;
    background: var(--bg-light);
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color, #2E3192); /* or your preferred dark blue */
  margin-bottom: 0.8rem;
}

.features p {
  text-align: center;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: #8f93d1;
  line-height: 1.6;
}

.features h2,
.features p {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.features h2 {
  animation-delay: 0.1s;
}

.features p {
  animation-delay: 0.3s;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: #8f93d1;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  object-fit: contain;
}

/* Services Preview */
.services-preview {
    /* padding: 3rem 0; */
    margin-top: 2rem;
    margin-bottom: 3rem;

}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    gap: 2rem;
    /* grid-template-columns: repeat(4, 1fr); */
        grid-template-columns: repeat(2, 2fr);
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    /* height: 200px; */
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-card:hover img {
  transform: scale(1.05);
}

.service-card h3 {
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-card .btn-outline {
    margin: 0 1.5rem 1.5rem;
}

.services-fullrow .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}


/* Custom grid layout for Complete Moving Solutions */
.custom-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 1.5rem;
}

/* On tablets & phones: show 1 per row */
@media (max-width: 768px) {
  .custom-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Optional: limit max-width for the cards to keep design tighter */
.custom-services-grid .service-card {
  background: #fff;
  border-radius: 8px;
  /* padding: 0.5rem; */
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  /* gap: 3rem; */
}

@media (max-width: 992px) {
  .services-fullrow .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-fullrow .services-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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



.footer-image-full img {
  width: 100%;
  /* height: auto; */
  /* display: block; */
  /* margin: 20px 0; */
    overflow: hidden; /* ensures clean animation */
      text-align: center;

  

}

.footer-description {
  max-width: 800px;   /* keeps text from stretching too wide */
  margin: 0 auto;     /* centers horizontally */
  text-align: center; /* centers text */
  padding: 10px 15px; /* space around */
  font-size: 15px;
  line-height: 1.6;
  color: blue;     /* white text (adjust if background is light) */
}


.footer {
 background: #4a51ce;
    color: #ffffff;
    padding: 2rem 0 1.5rem;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
    /* gap: 2.5rem; */
    /* margin-bottom: 2rem; */

      display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-section {
    position: relative;
    z-index: 1;
}

.footer-section.about {
    max-width: 300px;
       display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-image-full img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(100%); /* start hidden below */
  animation: slideUp 1.2s ease-out forwards; /* run animation */
}


.footer-logo {
  max-width: 200px; /* adjust size as needed */
  margin-bottom: 10px;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ED222A;
}
.footerline {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    width: 900px;  /* keep desktop fixed width */
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
    .footerline {
        width: 90%;       /* shrink width on smaller screens */
        max-width: 100%;
        text-align: center;
        margin: 0 auto 1rem auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footerline {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #ED222A;
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 25px;
  }

  .social-icons {
    justify-content: center;
  }

}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: #ED222A;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: #e0e0e0;
    font-size: 0.9rem;
}

.slide-image {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.slide-image.visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }

    .footer-section.about {
        max-width: 100%;
    }
}
.footer-link {
  color: inherit;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}



/* Contact Section Styles */

.contact-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2.25rem;
  color: #1f2937;
  font-weight: 700;
  justify-content: center;
}

.contact-heading i {
  font-size: 1.8rem;
  color: #4b4bff; /* or var(--primary-color) */
  transform: rotate(-45deg); /* optional effect */
}

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

.follow-card h3 i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}
.social-icons-blu a {
  color:#2E3192;
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}
.social-icons-blu a:hover {
transform: scale(1.2);
}
.social-icons a:hover {
  transform: scale(1.2);
}

.follow-card p {
  margin-top: 1rem;
  color: var(--text-light);
}








.contact-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(75, 75, 255, 0.1) 0%, transparent 80%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.form-container h2 {
    text-align: center;
    color: #1f2937;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-container h2 i {
    color: #4b4bff;
    transform: rotate(-45deg);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    background: #f9fafb;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
     color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent; 
     color: black;  /* light grey placeholder for visibility */
  opacity: 1;   /* make sure it's not transparent */
}

.form-group textarea {
    height: 160px;
    resize: vertical;
}

/* Floating Labels */
.form-group label {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    pointer-events: none;
    transition: all 0.3s ease;
    background: #f9fafb;
    padding: 0 0.25rem;
    border-radius: 4px;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group select:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:not(:placeholder-shown) ~ label {
    top: -0.75rem;
    left: 1rem;
    font-size: 0.85rem;
    color: #4b4bff;
    font-weight: 600;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4b4bff;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(75, 75, 255, 0.2);
}

/* Submit Button */
.btn-primary {
    width: 100%;
    /* padding: 1.25rem; */
    background: linear-gradient(90deg, #2E3192 0%, #4B4FCF 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(75, 75, 255, 0.3);
}

.btn-primary:active {
    transform: scale(0.97);
    box-shadow: 0 3px 8px rgba(75, 75, 255, 0.2);
}

.btn-primary i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }

    .form-container {
        padding: 2rem;
    }

    .form-container h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
    }

    .form-group label {
        top: 1rem;
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Page Content */
.page-content {
    margin-top: 20px;
    min-height: calc(100vh - 80px);
    /* padding: 1rem 0; */
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    /* margin-bottom: 1rem; */
    margin-top: 5.2rem;
    height: 60vh;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Cards */
.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    /* margin-bottom: 2rem; */
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.testimonial-card .stars {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-card .date {
    font-size: 0.875rem;
    color: var(--text-light);
}


/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
    gap: 2rem;
    margin-left: 4rem;
    margin-right: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);

    padding: 0;             /* Remove any extra space */
    margin: 0;
     height: 250px;
  
}

.gallery-item img {
    width: 100%;
    /* height: 250px; */
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-title {
  font-size: 2.8rem; /* or whatever size you want */
  font-weight: 800;
  /* color: var(--primary-color); optional */
  /* text-transform: uppercase;   optional styling */
}

/* FAQ Accordion */
/* .faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
} */


 /* FAQ Section Modern  */
.faq-section {
  background-color: #f9fbfd;
  padding: 4rem 0;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 2rem;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f4f8;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  padding: 0 1.5rem 1.25rem;
  max-height: 300px;
}

.faq-answer p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Tracking */
.tracking-status {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.status-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    position: relative;
}

.status-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.status-step {
    background: var(--white);
    border: 3px solid #e5e7eb;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    font-weight: 700;
    color: var(--text-light);
}

.status-step.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.status-step.completed {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--white);
}

.status-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Contact Map */
.map-container {
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    /* margin: 4rem 4rem; */
    margin-left: 6rem;
    margin-right: 6rem;
    margin-bottom: 3rem;
}

/* Error and Success Messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 600;
}

.message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Mobile Responsiveness */
 @media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        overflow: hidden;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hamburger {
        display: flex;
        /* margin-left: 4rem; */
        margin: auto;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-button {
      margin-right: 5rem;
    }
    .page-header {
      height: 50vh;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    } 

     .quote-form-horizontal {
        grid-template-columns: 1fr;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

   .page-header h1 {
        font-size: 2rem;
    }

    .status-timeline {
        flex-direction: column;
        gap: 1rem;
    } 

    .status-timeline::before {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
    } 

    .status-labels {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}  

/* Animations */
  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.pulse {
    animation: pulse 2s infinite;
}





/* Utility Classes */
.text-center {
    text-align: center;
    padding: 2rem;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1.5rem; 
        margin-top: 2rem; 
        /* font-size: 2rem;   */
}


.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

.fa-phone:before {
    content: "\f095";
    /* color: #e0e0e0; */
}


/* ===============================
   QUOTE FORM STYLING - UNIQUE
   =============================== */
.quote-form-wrapper {
  padding: 3rem 1rem;
  background-color: #f8f9fc;
}

.quote-form-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quote-form-card h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--primary-color, #2E3192);
}

.quote-form-card h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
  color: #333;
}

.quote-form-card .quote-form-section {
  margin-bottom: 2rem;
}

.quote-form-card .quote-grid-2,
.quote-form-card .quote-grid-3 {
  display: grid;
  gap: 1.5rem;
}

.quote-form-card .quote-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.quote-form-card .quote-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.quote-form-card .quote-form-group {
  display: flex;
  flex-direction: column;
}

.quote-form-card .quote-form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #555;
}

.quote-form-card .quote-form-group input,
.quote-form-card .quote-form-group select,
.quote-form-card .quote-form-group textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fefefe;
  transition: border-color 0.3s ease;
}

.quote-form-card .quote-form-group input:focus,
.quote-form-card .quote-form-group select:focus,
.quote-form-card .quote-form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color, #2E3192);
}

.quote-form-card textarea {
  resize: vertical;
}

.quote-form-card .text-center {
  text-align: center;
}

.quote-form-card .btn-primary {
  background-color: var(--primary-color, #2E3192);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quote-form-card .btn-primary:hover {
  background-color: #1e2266;
}

.quote-form-card .quote-form-section .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

 .swiper {
    width: 100%;
   
  }
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  /* call to action */

#main-div {
  position: fixed;
  right: 30px;
  bottom: 60px;
  z-index: 43454354530;
}

#main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  font-size: 20px;
  color: #2E3192;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

#main-button ~ button {
  visibility: hidden;
  font-weight: 600;
  height: 50px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(90deg, #d6f6d6, #09db09);
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
  border: 0;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  opacity: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: .2s all linear;
  -webkit-transition: .2s all linear;
  -moz-transition: .2s all linear;
  -ms-transition: .2s all linear;
  -o-transition: .2s all linear;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

#main-button.open ~ button {
  visibility: visible;
  right: 70px;
  opacity: 1;
  transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button ~ a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 50px;
  width: 50px;
  font-size: 20px;
  opacity: 0;
  text-decoration: none;
  color: #fff;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: .2s all linear;
  -webkit-transition: .2s all linear;
  -moz-transition: .2s all linear;
  -ms-transition: .2s all linear;
  -o-transition: .2s all linear;
}

#main-button ~ .telegram-color {
  background: linear-gradient(0deg, #017AB1, #01ABE6);
}
#main-button ~ .question-color {
  background: linear-gradient(0deg, #ff0000, #e70a0a);
}
#main-button ~ .whatsapp-color {
  background: linear-gradient(0deg, #00B100, #09db09);
}

#main-button ~ .messenger-color {
  background: linear-gradient(0deg, #0078FF, #00C6FF);
}

#main-button.open ~ a {
  opacity: 1;
  transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
}
#main-button.open ~ a:nth-of-type(1) {
  bottom: 60px;
}
#main-button.open ~ a:nth-of-type(2) {
  bottom: 120px;
}
#main-button.open ~ a:nth-of-type(3) {
  bottom: 180px;
}

.wave {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes wave {
  0% {box-shadow: 0 0 0px 0px rgba(37, 207, 34, 0.432)}
  100% {box-shadow: 0 0 0px 10px #09db0940}
}
@media only screen and (max-width: 992px) {

  .header_banner_lead_card{
    padding: 20px 8px;
  }
  .header_banner_title {
   
    font-size: 30px;
   

}
}
.progress-wrap.active-progress{
    display:none;
}


.bottle{
  position: absolute;
  top: 0px;
  left: 120px;
}
.bottle2{
  position: absolute;
  top: 0;

  left: 25.9%;
  max-width: 100%;
}
.bottle3{
  position: absolute;
  left: 14.7%;
top: 0;
}
.mob-only{
  display: none !important;
}
.desk-only{
  display: block !important;

}
@media only screen and (max-width: 782px) {
  .mob-only{
    display: block !important;
  }
  .desk-only{
    display: none !important;
  
  }
  .bottle{
    position: absolute;
    top: 0px;
    left: 60px;
  }
 
}



/* slider section home page  */


