/* Reset and Base Styles */

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

/* Scroll effect */
.navbar.scrolled {
  /* background-color: rgba(14, 14, 14, 0.95); */
  background-color: #1C1C25;
}

/* Logo */
.logo img {
  width: 170px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.get-touch-btn {
  padding: 12px 18px;
  background: transparent;
  border: 2px solid white;
  color: white;
  border-radius: 25px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  cursor: pointer;
}
.get-touch-btn:hover {
  color: black;
  background: white;
  transition: 0.7sec;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 22px 15px;
  }

  .nav-links {
    display: none;
    position: absolute;
    align-items: left;
    top: 0px;
    right: 0px;
    background-color: #111111;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active .navbar {
    display: none;
  }
  .nav-links.active {
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 22px 15px;
    align-items: normal;
  }

  .logo img {
    width: 160px;
  }
  .nav-links.active .navbar-menu-btn-text {
    display: flex;
    margin-bottom: 5px;
    width: 100%;
    font-size: 16px;
    font-weight: 200;
  }
  .nav-links.active .navbar-menu-btn-text p {
    margin-top: 25px;
  }
  .nav-links.active .navbar-menu-btn {
    gap: 18px;
    font-size: 24px;
    padding-right: 12px;
    padding-top: 6rem;
    flex-direction: column;
    align-items: flex-end;
  }
  .nav-links.active .menu-for-phone {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger {
    width: 30px;
    height: 21px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  /* Transform hamburger to X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

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

.partners-section {
  background-color: #f4f4f4;
  padding: 20px 20px;
  margin: auto;
}

.partners-section-title {
  color: #00539c;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
}
.partners-icon-box-icon {
  margin-left: 5px;
}

.main-heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: black;
}

.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-box {
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 300px;
  color: black;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background: white;
}

.partner-logo-wvip {
  height: 50px;
}
.partner-logo {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(100) saturate(100%) invert(100%) sepia(100%)
    saturate(10000%) hue-rotate(0deg);
}

.partner-text {
  font-size: 16px;
  line-height: 1.6;
}

.google-partner-logo {
  display: block;
  margin: auto;
  height: 80px;
}

.google-label {
  text-align: center;
  margin-top: 5px;
  background: #333;
  color: #fff;
  font-size: 12px;
  padding: 10px 16px;
  display: inline-block;
  margin-top: 5%;
  margin-bottom: 5%;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 28px;
  }
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  color: white;
}

.phone-hero-logo {
  display: none;
}
.trusted-section {
  text-align: center;
  padding: 60px;
  /* background-color: #111111; */
  border-end-end-radius: 45px;
  border-end-start-radius: 45px;
}

.trusted-heading {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: left;
  color: white;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 60px;
  align-items: center;
}

.trusted-logos img {
  max-height: 60px;
  object-fit: contain;
}

.hide-on-mobile {
  display: inline;
}

@media (max-width: 768px) {
  .trusted-logos {
    justify-content: left;
    gap: 20px;
  }
  .hide-on-mobile {
    display: none;
  }
  .hero-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .trusted-heading {
    margin-top: 9rem;
  }
  .trusted-section {
    padding: 30px;
  }
}

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

/* hero section */
.min-hero-sec {
  position: relative;
  overflow: hidden;
  height: 100vh;
  background-image: url("assets/D.png");
  background-size: cover;
  /* background-position: center;   */
  height: 100%;
  background-repeat: no-repeat; /* Prevents tiling */
}
/* 
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: blur(3px);
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
} */

/* .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); 
} */

/* Update the blur effect to work with video */
.min-hero-sec::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: inherit;
  /* filter: blur(8px); */
  z-index: 0;
  pointer-events: none;
}

/* Ensure your content stays above the video */
.hero {
  padding: 50px 40px;
}
.trusted-section {
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1 1 50%;
  animation: fadeInUp 1.5s ease forwards;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  /* margin-bottom: 20px; */
  display: flex;
  align-items: center;
}

.hero-text .highlight {
  background: white;
  color: black;
  padding: 5px 10px;
  display: inline-block;
}

.hero-text p {
  font-size: 16px;
  max-width: 700px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.cta-button {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: white;
  color: black;
}

.hero-logo {
  flex: 1 1 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  animation: fadeInUp 2s ease forwards;
}

.hero-logo img {
  max-width: 90%;
  height: auto;
  opacity: 65%;
  filter: grayscale(100%);
  /* transform: rotate(45deg); */
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes backgroundPulse {
  0%,
  100% {
    background-color: #0e0e0e;
  }
  50% {
    background-color: #121212;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .min-hero-sec {
    height: 100vh;
    background-image: url("assets/M.png");
    background-repeat: no-repeat; /* Prevents tiling */
    background-size: cover;
    background-position: center;
  }

  .hero {
    flex-direction: column;
    padding: 0 25px;
    padding-top: 40%;
  }

  .phone-hero-logo {
    display: block;
    justify-content: center;
    margin-top: 0px;
    position: absolute;
    opacity: 65%;
  }

  .phone-hero-logo img {
    max-width: 100%;
  }
  .hero-logo {
    justify-content: center;
    margin-top: 30px;
    display: none;
  }

  .hero-logo img {
    max-width: 60%;
  }
  .on-phone {
    display: none;
  }
  .trusted-logos img {
    width: 80px;
  }
  .hero-text h1 {
    font-size: 30px;
    margin-top: 0%;
  }
  .hero-text p {
    font-size: 0.9rem;
  }
}

.typing {
  border-right: 2px solid black;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  width: fit-content;
  animation: blink 0.8s steps(1) infinite;
}

@keyframes blink {
  0% {
    border-color: black;
  }
  50% {
    border-color: transparent;
  }
  100% {
    border-color: black;
  }
}

.about-title h1 {
  margin-bottom: 10px;
  margin-top: 50px;
  display: flex;
  padding: 0px 40px 0px;
  flex-direction: row;
}
.about-title .about-icon-box-icon {
  margin-left: 5px;
}
.about-title {
  display: flex;
  font-size: 10px;
  background-color: #f4f4f4;
  /* padding-left: 2%;
  padding-right: 2%; */
  padding: 0px 5px;
  margin: 0 auto;
  color: #00539c;
}
.about {
  padding: 0px 40px 50px;
  display: flex;
  background-color: #f4f4f4;
  margin: 0 auto;
  gap: 40px;
}

.about-left {
  flex: 1;
}

.about-right {
  flex: 1;
}

.about .about-left h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.about .about-left p {
  line-height: 1.5;
  color: black;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 600;
}
.about p {
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .about .about-left p {
    font-size: 1.6rem;
  }
  .about {
    flex-direction: column;
    padding: 10px 15px;
    gap: 20px;
  }

  .about p {
    font-size: 1rem;
  }
  .about-title h1 {
    padding: 0px 15px;
  }
}

/* how-it-works */
.how-it-works {
  padding: 60px 20px;
  margin: auto;
  display: flex;
  justify-content: space-around;
}
.intro {
  width: 60%;
  padding-right: 20px;
}

.intro h5 {
  color: #00539c;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
}

.intro-icon-box-icon {
  margin-left: 5px;
}

.intro h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
  text-align: left;
}

.grid {
  display: grid;
  gap: 5px;
  margin-top: 40px;
}

.step {
  padding: 30px;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.step h3 {
  margin-top: 0;
  font-size: 22px;
}

.step p {
  font-size: 15px;
  line-height: 1.6;
}

.step .step-number {
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 200px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.05);
  z-index: 0;
  pointer-events: none;
}

.step.dark {
  background-color: #1C1C25;
  color: white;
}

.step.light {
  background-color: #f9f9f9;
  color: #000;
}

.step.dark .step-number {
  color: white;
  opacity: 0.1;
}

.step.light .step-number {
  color: rgba(0, 0, 0, 0.05);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  background-color: #f8f9fa;
}
.stats-container img {
  width: 100%;
  height: auto;
}

.stat-item {
  text-align: center;
  min-width: 150px;
}

.stat-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 5px;
}

.tick-icon {
  color: #0f4c81;
  font-size: 1.5rem;
}

.stat-number {
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
}

.stat-title {
  font-size: 1.2rem;
  color: #34495e;
  font-weight: 500;
}

.stat-subtitle {
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
  text-align: center;
}

@media (min-width: 992px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .grid {
    gap: 0;
  }
  .stats-container {
    flex-direction: column;
    gap: 30px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-header {
    gap: 8px;
  }

  .how-it-works {
    display: flex;
    flex-direction: column;
  }
  .intro {
    width: 100%;
  }
}

/* <!--service card-- >  */
.services-section-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 0px;
  background: #fff;
}
.services-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  background: #fff;
  max-width: 1200px; /* Optional: set a max-width for better control */
  margin: 0 auto; /* Center the container */
}

.services-section > * {
  flex: 1 1 calc(33.333% - 30px); /* Adjust for gap */
  min-width: 300px; /* Minimum width before wrapping */
  max-width: 100%; /* Ensure items don't overflow */
}
.service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  width: 300px;
  text-align: left;
  transition: transform 0.3s;
  position: relative; /* Add this */
  overflow: hidden; /* Add this to contain the pseudo-element */
  z-index: 1; /* Add this to ensure content stays above the fill */
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #1C1C25;
  transition: all 0.4s ease-out;
  z-index: -1;
}

.service-card:hover::before {
  right: 0;
}

/* Optional: Add these to improve the text visibility on hover */
.service-card:hover {
  color: white; /* Change text color on hover */
}

.service-card:hover .service-title,
.service-card:hover .service-description {
  color: inherit; /* Ensure child elements inherit the color */
}

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.service-icon img {
  width: 70px;
  mix-blend-mode: hard-light;
  background-color: white;
  padding: 5px;
  border-radius: 10px;
}

.service-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.service-description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.service-section-button {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #1C1C25;
  border-radius: 25px;
  color: #1C1C25;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-section-button:hover {
  background: #1C1C25;
  color: white;
}

@media (max-width: 768px) {
  .service-icon img {
    width: 70px;
  }
}

/* testimonial section */

.testimonial-section {
  background: #1C1C25;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  padding-top: 3%;
  padding-bottom: 3%;
}

.section-title {
  font-size: 17px;
  color: #00539c;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
}
.section-title-icon-box-icon {
  margin-left: 5px;
}

.section-subtitle {
  font-size: 36px;
  color: white;
  margin-bottom: 60px;
  font-weight: 600;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  /* background-color: white; */
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.testimonial-text {
  font-size: 35px;
  color: white;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  font-weight: bold;
  font-size: 18px;
  color: white;
  margin-bottom: 5px;
}

.testimonial-position {
  font-size: 14px;
  color: white;
}

.slider-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #dee2e6;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: #343a40;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  /* background-color: white; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  font-size: 40px;
}

.slider-arrow.prev {
  left: -60px;
  color: white;
}

.slider-arrow.next {
  right: -60px;
  color: white;
}

@media (max-width: 768px) {
  .service-card {
    background: #fff;
    border-radius: 8px;
    width: 100%;
  }
  .section-subtitle {
    font-size: 28px;
    text-align: left;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .slider-arrow.prev {
    left: -20px;
  }

  .slider-arrow.next {
    right: -20px;
  }
}

/* contact */
.contacts-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

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

.contacts-container .section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #00539c;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
}
.section-tag-icon-box-icon {
  margin-left: 5px;
}

.contact-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.3;
  max-width: 700px;
  text-align: left;
}
.contacts-container p {
  color: black;
}
/* contact us card  */
.contact-section-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 3%;
}

.contact-section-card {
  flex: 1;
  background: white;
  border-radius: 0px;
  padding: 40px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-section-card-icon {
  width: 60px;
  height: 60px;
  /* background: black; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.contact-section-card-icon svg {
  width: 24px;
  height: 24px;
}
.contact-section-card-icon img {
  width: 90px;
}

.contact-section-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.contact-section-card-content {
  font-size: 16px;
  line-height: 1.6;
  color: #718096;
}
.link-contact-section-card-content {
  text-decoration: none;
  color: black;
}
/* Existing styles ... */

@media (max-width: 768px) {
  .contact-section-cards {
    flex-direction: column;
    align-items: center;
  }

  .contact-section-card {
    width: 90%;
    max-width: 400px;
  }
  .contact-section-card-icon img {
    width: 65px;
  }
}

.contact-section-form-div {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0 auto;
  padding: 0px 180px;
  margin-bottom: 5%;
}

.contact-section-form h1 {
  color: #2c3e50;
  text-align: left;
  margin-bottom: 20px;
}

.contact-section-form p {
  text-align: left;
  color: #2c3e50;
  margin-bottom: 30px;
  width: 600px;
}

.contact-form {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #2c3e50;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  height: 120px;
  resize: vertical;
}

hr {
  border: 0;
  height: 1px;
  background-color: #ddd;
  margin: 30px 0;
}

h2 {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
}

.submit-btn {
  background-color: #1C1C25;
  color: white;
  border: 2px solid #1C1C25;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  display: block;
  margin: 0 auto;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: white;
  color: #1C1C25;
  border: 2px solid #000;
}

/* Existing styles above this remain unchanged */

@media (max-width: 768px) {
  .contact-section-form-div {
    padding: 20px;
  }

  .contact-section-form h1 {
    font-size: 22px;
    text-align: center;
  }

  .contact-section-form p {
    width: 100%;
    font-size: 16px;
    text-align: center;
  }

  .contact-form {
    padding: 20px;
  }

  .submit-btn {
    width: 100%;
    font-size: 18px;
  }
}

/* footer */
.footer {
  background-color: #1C1C25;
  color: #fff;
  padding: 40px 20px;
}

.footer-section {
  margin-bottom: 30px;
}
.footer-section-content {
  display: flex;
  justify-content: space-around;
  gap: 50px;
}

.footer-heading-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-heading-line h3 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  width: 10%;
  white-space: nowrap;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.left-space-footer {
  display: flex;
  justify-content: left;
  align-items: center;
}

.footer-heading-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #444;
}

.footer-content p,
.footer-content a,
.footer-list li {
  font-size: 14px;
  color: #ccc;
  margin: 6px 0;
  text-decoration: none;
}

.footer-list {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.footer-divider {
  height: 1px;
  background-color: #333;
  /* margin: 30px 0; */
}

.social-icons {
  display: flex;
  gap: 2rem;
  font-size: 20px;
  margin-top: 10px;
  justify-content: center;
}
.social-icons a {
  color: #fff;
  transition: 0.3s;
  padding: 5px;
}

.social-icons a:hover {
  color: #1C1C25;
  background-color: white;
  padding: 5px;
}
.copyright-social-icons {
  display: flex;
  gap: 15px;
  font-size: 20px;
  margin-top: 10px;
  justify-content: center;
}

.copyright-social-icons a {
  color: #fff;
  transition: 0.3s;
  padding: 5px;
}

.copyright-social-icons a:hover {
  color: black;
  background: white;
  border: 2px solid white;
  padding: 5px;
  border-radius: 5px;
}

.copy-right-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1C1C25;
  padding: 20px 20px;
}
.menu-for-phone {
  display: none;
}
/* Responsive styles */
@media (max-width: 768px) {
  .footer-section-content {
    gap: 10px;
    display: flex;
    flex-direction: column;
  }
  .left-width {
    display: none;
  }
  .copy-right-section {
    padding: 20px 20px;
    flex-direction: column;
    text-align: center;
  }
  .social-icons {
    display: flex;
    gap: 50px;
    font-size: 20px;
    margin-top: 10px;
    justify-content: center;
  }
  .navbar-menu-btn-text {
    display: flex;
    margin-bottom: 5px;
  }
  .footer-heading-line h3 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin: 0;
  }
  .footer-heading-line::after {
    display: none;
  }
}
.navbar-menu-btn-text {
  display: none;
}
.navbar-menu-btn {
  gap: 20px;
  display: flex;
  align-items: center;
}
/* blog css */
.blog-section {
  background-color:white;
  color: black;
  padding: 60px 20px;
  font-family: "Arial", sans-serif;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.blog-heading h2 {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0 0;
  color: black;
  text-align: left;
}

.blog-label {
  font-weight: bold;
  color: #00539c;
  font-size: 16px;
  display: flex;
  flex-direction: row;
}
.blog-label-icon-box-icon {
  margin-left: 5px;
}

.read-all-button {
  background: transparent;
  border: 2px solid #1C1C25;
  color: #1C1C25;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-all-button:hover {
  background-color: #1C1C25;
  color: white;
}

.blog-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-card {
  background-color: #1C1C25;
  border-radius: 16px;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-card h3 {
  font-size: 18px;
  margin: 16px;
  margin-bottom: 10px;
  color: white;
}

.blog-card .date {
  color: white;
  font-size: 14px;
  margin: 0 16px 20px;
}

@media (max-width: 992px) {
  .blog-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .blog-card {
    flex: 1 1 100%;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .read-all-button {
    margin-top: 20px;
  }
}
/* banner logos */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");

.new-moving-brands-section {
  background-color: #1C1C25;
  /* padding: 3rem 2rem; */
  /* border-radius: 1rem; */
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
  /* margin: 20px; */
  /* border-radius: 20px; */
}
.brands-section {
  background-color: #1C1C25;
  /* padding: 3rem 2rem; */
  /* border-radius: 1rem; */
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
  margin: 20px;
  border-radius: 20px;
}

.brands-title {
  font-size: 2.25rem;
  line-height: 1.2;
  color: #f8f8f8;
  font-weight: 500;
  margin-bottom: 2rem;
}

.brands-title strong {
  font-weight: 700;
  color: #00539c;
  display: block;
}

.brands-marquee-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.gradient-overlay-left,
.gradient-overlay-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 25%;
  z-index: 10;
  pointer-events: none;
}

.gradient-overlay-left {
  left: 0;
  background: linear-gradient(to right, #1C1C25, transparent);
}

.gradient-overlay-right {
  right: 0;
  background: linear-gradient(to left, #1C1C25, transparent);
}

.marquee {
  display: flex;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  animation: marquee 50s linear infinite;
}

.marquee-content-2 {
  animation: marquee-2 50s linear infinite;
}

.marquee-content-3 {
  animation: marquee 50s linear infinite;
}

.brand-logo {
  width: auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1.5rem;
  flex-shrink: 0;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}
.brand-logo img {
  mix-blend-mode: multiply;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee-2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

@media (min-width: 1024px) {
  .brands-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 1280px) {
  .brands-title {
    font-size: 4.25rem;
  }
}

/* count down section css */
.count-section {
  background-color: #1C1C25;
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  margin: 20px;
  border-radius: 20px;

}

.stat {
  text-align: center;
}

.stat .number {
  font-size: 60px;
  font-weight: bold;
  color: #00539c;
}
.stat .PerNumber {
  font-size: 60px;
  font-weight: bold;
  color: #00539c;
}

.stat .label {
  font-size: 20px;
  margin-top: 10px;
}
/* navbar  */
.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: bold;
}

.nav-links a:hover {
  color: #ccc;
}

.hero-text .hero-sect-text {
  padding: 5px;
}

@media (max-width: 768px) {
  .count-section {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
    gap: 20px;
  }
  .stat {
    flex: 1 1 100%;
  }

  .stat .number {
    font-size: 50px;
  }

  .stat .label {
    font-size: 18px;
  }
  .nav-links a {
    color: gray;
  }
}

.footer-heading-line h3::after {
  /* content: ""; */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: white;
}

.m-whatsapp {
  color: white;
  font-weight: 200;
}

.hero-span {
  margin-top: 5rem;
  font-size: 23px;
  margin-bottom: 10px;
}

/* new hero section design */
.new-hero-section {
  display: flex;
  justify-content: space-between;
  /* background: linear-gradient(135deg, #6e6e6e, #000000); */
  background-color: #1C1C25;
  text-align: left;
  align-items: center;
  padding: 80px 50px;
  width: 100%;
}
.hero-left-section {
  display: flex;
  color: white;
  width: 60%;
  justify-content: flex-start;
}
.hero-left-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0px 20px;
}

.left-hero-heading {
  display: flex;
  font-size: 50px;
  color: #FFFFFF;
  font-weight: 700;
  flex-direction: row;
  text-transform: capitalize;
  line-height: 60px;
}
.left-hero-subheading {
  display: flex;
  font-size: 16px;
  color: #737887;
  font-weight: 400;
  line-height: 25px;
  flex-direction: row;
}
.left-hero-buttons{
  display: flex;
  gap: 20px;
  width: 100%;
}

.hero-right-section {
  display: flex;
  color: white;
  width: 40%;
  padding-right: 2rem;
  justify-content: end;
}
/* form  */
.hero-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: white;
  padding: 20px 20px;
  border-radius: 10px;
}

.form-container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  margin-bottom: 20px;
}

.new-hero-form-group {
  padding: 0;
  margin: 0;
}

.hero-new-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;
  color: black;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

select {
  background: #fff;
}

.phone-group {
  display: flex;
}

.country-code {
  width: 35%;
  margin-right: 5px;
}

.phone-number {
  flex: 1;
}

.form-group textarea {
  height: 80px;
}
.new-hero-form-button {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid black;
  color: black;
  font-size: 16px;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.new-hero-form-button:hover {
  background: #1C1C25;
  color: white;
}
@media (max-width: 768px) {
  .new-hero-section {
    padding: 100px 10px 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .hero-left-section {
    padding: 0;
    width: 100%;
  }
  .left-hero-heading {
  display: flex;
  font-size: 32px;
  text-align: left;
  color: white;
  line-height: 40px;
  font-weight: 700;
  flex-direction: row;
  text-transform: capitalize;
}
.left-hero-subheading {
  display: flex;
  font-size: 15px;
  color: white;
  font-weight: 400;
  flex-direction: row;
}
.left-hero-buttons{
  display: flex;
  flex-direction: column;
  width: 100%;
}
  .hero-right-section {
    display: flex;
    padding: 50px 0px;
    width: 100%;
    justify-content: center;
  }
}


/* dropdown icon css  */
select {
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
  background-color: #fff;
  padding: 10px;
  padding-right: 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

a{
  text-decoration: none;
}