/* ===========================================FONT FAMILY============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');


/* ==========================================ROOT COLOR============================================ */
:root {
    --primary-color: #bd0308;
    --black-color: #1a202c;
    --white-color: white;
    --red-shadow: #e5091466;
    --black-shadow: #00000038;
    --gradient-color: linear-gradient(135deg, #E50914, #1B1B1B);

}

/* ============================================DEFAULT CSS============================================ */
a {
    text-decoration: none;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100% !important;
    max-width: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header {
    position: relative;
    width: 100%;
}
/* Hamburger icon - visible and red */
.ham-menu-icon {
    position: absolute;
    top: 20px;
    right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  width: 30px;
  height: 24px;
  z-index: 1001;
}

.ham-menu-bar {
  height: 3px;
  background-color: var(--primary-color); /* Red color */
  border-radius: 5px;
  width: 100%;
  transition: 0.3s ease;
}

/* Optional: Hide on desktop */
@media (min-width: 1250px) {
  .ham-menu-icon {
    display: none;
  }
}
/* Mobile nav menu */
.ham-menu-nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 280px;
  background-color: #0a192f;
  padding: 30px 20px;
  transition: right 0.3s ease;
  z-index: 1000;
  border-radius: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

.ham-menu-nav.active {
  right: 0;
}

.ham-menu-links {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ham-menu-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.ham-menu-cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ham-nav .nav-links {
    flex-direction: column;
    align-items: start;
}

.ham-nav .cta-btn {
    padding: 20px;
    align-items: start;
    flex-direction: column;
}

/* From Uiverse.io by prakashdc */
.hamburger {
    cursor: pointer;
    display: none;
    z-index: 999;
    position: relative;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    /* The size of the SVG defines the overall size */
    height: 3em;
    /* Define the transition for transforming the SVG */
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: var(--primary-color);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    /* Define the transition for transforming the Stroke */
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
    transform: rotate(-45deg);
}

.hamburger input:checked+svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

.ham-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    justify-content: end;
    padding: 0 30px;
}

@media(max-width: 1250px) {
    .nav .nav-links {
        display: none !important;
    }

    .nav .cta-btn {
        display: none !important;
    }

    .nav .logo {
        max-width: 80px !important;
    }

    .hamburger {
        cursor: pointer;
        display: flex;
        width: fit-content;
        justify-content: end;
        position: relative;
    }
    .top-header {
        display: none !important;
    }
}


.top-header {
    border-bottom: 1px solid var(--black-color);
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-header a {
    font-size: 18px;
    color: var(--black-color);
    transition: .3s ease-in;

    &:hover {
        color: var(--primary-color);
    }
}

.top-header i {
    color: var(--primary-color);
}

.content-slideup {
    height: 50px;
    overflow: hidden;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    background: var(--white-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 12px;
}

.slideup-list {
    display: flex;
    flex-direction: column;
    animation: slideUp 20s linear infinite;
    list-style: none;
    margin: 0;
    padding: 0;
}

.slideup-list li {
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

@keyframes slideUp {

    0%,
    10% {
        transform: translateY(0);
    }

    20%,
    30% {
        transform: translateY(-50px);
        opacity: 1;
    }

    40%,
    50% {
        transform: translateY(-100px);
        opacity: 1;
    }

    60%,
    70% {
        transform: translateY(-150px);
        opacity: 1;
    }

    80%,
    90% {
        transform: translateY(-200px);
        opacity: 1;
    }

    100% {
        transform: translateY(-250px);
        /* opacity: 0; */
    }
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 1rem 2rem;
    /* backdrop-filter: blur(30px); */
    border-radius: 100px;
    position: sticky;
    top: 0;
    z-index: 999;
    overflow: hidden;
}

nav .logo {
    width: 100%;
    max-width: 80px;
    scale: 1.2;
}

nav .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    border-radius: 30px;
}

nav .nav-links li {
    font-size: 16px;
    font-weight: 500;
    padding: 5px 15px;
    color: var(--black-color);
    border-radius: 50px;
    transition: .3s ease-in;
    backdrop-filter: blur(30px);
    cursor: pointer;

    &:hover {
        color: var(--white-color) !important;
        background-color: var(--black-color);
        opacity: .7;
    }
}

.cta-btn {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.cta-btns {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-family: 'Poppins', sans-serif;
    /* font-size: 16px; */
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: .3s ease-in;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--red-shadow);
}

.cta-btns .icon {
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 16px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
}

.cta-btns:hover .icon {
    transform: translateX(0);
    opacity: 1;
    background-color: #bd0308;
}

.cta-btns:hover {
    box-shadow: 0 4px 12px var(--black-color);
    background-color: var(--black-color);
    transform: translateY(-2px);
    padding: 10px 10px 10px 50px;
}


.parent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 20px 30px;
  box-sizing: border-box;
}

.child {
  width: auto; 
  max-width: 600px;
  min-height: 120px;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.child:hover {
  transform: translateY(-5px);
}

/* Responsive padding on smaller screens */
@media (max-width: 1000px) {
  .parent {
    padding: 15px;
    gap: 0.8rem;
  }

  .child {
    min-width: 100%;
  }
}

/* =============================================SECTION 1====================================================== */
.section-1 {
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 2rem;
  box-sizing: border-box;
}

/* Left Content Area */
.section-1 .card-1 {
  flex: 1 1 300px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

/* Heading */
.section-1 .hero-heading {
  font-size: 3rem;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 0.5rem;
}

/* Subheading */
.section-1 .hero-subheading {
  font-size: 2rem;
  font-weight: 500;
  color: var(--black-color);
  margin-bottom: 1rem;
}

.section-1 .hero-subheading span {
  color: var(--primary-color);
  font-weight: 600;
}

/* Paragraph */
.section-1 .hero-text {
  font-size: 1.2rem;
  color: var(--black-color);
  max-width: 700px;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: start;
}

/* Right Image Area */
.section-1 .card-2 {
  flex: 1 1 300px;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-1 .card-2 img {
  width: 100%;
  height: auto;
  transform: scale(1.2);
  object-fit: contain;
}

/* Responsive Tweaks */
@media (max-width: 1024px) {
  .section-1 {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2.5rem;
  }
  .section-1 .card-2{
    display: none;
  }

  .section-1 .card-1,
  .section-1 .card-2 {
    align-items: center;
    text-align: center;
  }

  .section-1 .hero-heading {
    font-size: 2.5rem;
  }

  .section-1 .hero-subheading {
    font-size: 1.6rem;
  }

  .section-1 .hero-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .section-1 .hero-heading {
    font-size: 2rem;
  }

  .section-1 .hero-subheading {
    font-size: 1.3rem;
  }

  .section-1 .hero-text {
    font-size: 1rem;
  }

  .section-1 .card-2 img {
    transform: scale(1.05);
  }
}


/* =========================================VEHICLE SECTION=============================================== */
.vehicle-section {
    width: 100%;
    max-width: 1100px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 0 10px var(--black-shadow);
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.vehicle-section-heading {
    font-size: 1.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.vehicle-section-card-container {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    gap: 30px;
}

.vehicle-section-card {
  background: var(--white-color, rgba(255, 255, 255, 0.2));
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  overflow: hidden;
  width: 200px;
  transition:0.3s ease-in;
  cursor: pointer;
  padding: 10px;
  border: 1px solid var(--white-color);
}

.vehicle-section-card:hover {
    border: 1px solid var(--red-shadow);
    transform: translateY(-10px);
    box-shadow: none;
}

.vehicle-section-card img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: contain;
    background-color: #ffdbdb;
    margin-top: 10px;
    border-radius: 20px;
    padding: 20px;
    aspect-ratio: 1/1;
    transition: .3s ease-in;
}

.vehicle-section-card-title {
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .vehicle-section-card {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .vehicle-section-heading {
        font-size: 1.5rem;
    }
}

/* =======================================================SECTION 2================================================ */
.section-2 {
    width: 100%;
    min-height: 200px;
    position: relative;
    background-color: var(--primary-color);
}

.section-2 .child {
    min-height: 180px;
    gap: 10px;
    transition: .3s ease-in;
    box-shadow: 0px 5px 0px var(--black-color);
    background: var(--white-color);

    &:hover {
        box-shadow: 0 0 5px var(--black-color);
        scale: 1.02;
    }
}

.section-2 .child i {
    font-size: 30px;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 3px 3px var(--black-shadow);
}

.section-2 .child .heading-content {
    color: var(--black-color);
    font-size: 22px;
}

.section-2 .child .para-content {
    color: var(--black-color);
    font-size: 18px;
}

/* ======================================================SECTION 3================================================ */
.section-container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0;
    overflow: hidden;
    background-color: #eeeeee;
}

.section-3 {
    width: 100%;
    max-width: 1300px;
    min-height: 100vh;
    backdrop-filter: blur(50px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    position: relative;
    background-color: var(--white-color);
}

.section-3 .child {
    height: auto;
    gap: 10px;

}

.section-3 .card-2 {
    height: 90vh;
    background-image: url(/assets/delivery-boy.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-3 .child .inner-card {
    width: 100%;
    min-height: 250px;
    border-radius: 8px;
    background-color: #eeeeee;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    transition: .3s ease-in;

    &:hover {
        background-color: var(--white-color);
    }
}

.section-3 .child .inner-card i {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.section-3 .child .inner-card h1 {
    font-size: 24px;
}

.section-3 .child .inner-card .inner-content {
    text-align: center;
    font-size: 16px;
}

/* ==============================================SECTION 4============================================== */
.section-4 {
  width: 100%;
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 40px 30px;
}

.section-4 .child {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  min-height: 50vh;
}

/* Image Section */
.section-4 .child img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

/* Content Section */
.section-4 .child .inner-card {
  flex: 1;
  min-width: 280px;
  height: auto;
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  box-sizing: border-box;
}

.section-4 .child .inner-card h1 {
  font-size: 35px;
  color: var(--black-color);
  line-height: 1.3;
}

.section-4 .child .inner-card p {
  font-size: 18px;
  color: var(--black-color);
  line-height: 1.6;
}

/* ------------------ */
/* Responsive Design */
/* ------------------ */
@media (max-width: 1024px) {
  .section-4 {
    padding: 30px 20px;
  }

  .section-4 .child {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-4 .child .inner-card {
    align-items: center;
  }

  .section-4 .child .inner-card h1 {
    font-size: 28px;
  }

  .section-4 .child .inner-card p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .section-4 {
    padding: 20px 15px;
  }

  .section-4 .child .inner-card h1 {
    font-size: 24px;
  }

  .section-4 .child .inner-card p {
    font-size: 14px;
  }

  .section-4 .child img {
    max-width: 100%;
  }
}


/* ======================================================SECTION 5================================================ */
.section-5 {
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 50px;
    min-height: 150vh;
    padding: 40px 0px;
    position: relative;
    flex-direction: column;
    margin: 10px;
}

.section-5::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-image: url(/assets/wave.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 2000px #00000096;
}

.section-5 .child {
    width: 100%;
    max-width: none;
    position: relative;
    z-index: 1;
    flex-direction: row;
    flex-wrap: wrap;
}

.section-5 .card-1 {
    justify-content: space-between;
    align-items: start;
    gap: 20px;
}

.section-5 .card-1 h1 {
    font-size: 28px;
    max-width: 400px;
    color: var(--white-color);
}

.section-5 .card-1 p {
    max-width: 400px;
    font-size: 18px;
    color: var(--white-color);
    text-align: justify;
}

.section-5 .card-1 span {
    font-size: 18px;
    max-width: 400px;
    color: var(--white-color);
}

.section-5 .card-2 {
    gap: 20px;
}

.section-5 .card-2 .inner-card {
    width: 400px;
    height: 400px;
    background: var(--white-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: .3s ease-in;

    &:hover {
        background-color: var(--black-color);
    }
}

.section-5 .card-2 .inner-card i {
    font-size: 70px;
    color: var(--primary-color);
}

.section-5 .card-2 .inner-card .icon-fix {
    position: absolute;
    opacity: .1;
    top: -50px;
    right: -50px;

    i {
        font-size: 150px;
    }
}

.section-5 .card-2 .inner-card:hover i {
    font-size: 70px;
    opacity: .8;
    color: var(--white-color);
}

.section-5 .card-2 .inner-card .icon-fix {
    position: absolute;
    opacity: .1;
    top: -50px;
    right: -50px;

    i {
        font-size: 150px;
    }
}

.section-5 .card-2 .inner-card:hover h1 {
    text-align: center;
    color: var(--white-color);
    font-size: 26px;
}

.section-5 .card-2 .inner-card:hover p {
    text-align: center;
    color: var(--white-color);
    font-size: 16px;
}

.section-5 .card-2 .inner-card h1 {
    text-align: center;
    font-size: 26px;
}

.section-5 .card-2 .inner-card p {
    text-align: center;
    font-size: 16px;
}

.scroll-banner {
    overflow: hidden;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.scroll-track {
    display: flex;
    width: calc(300px * 12);
    /* adjust as per items */
    animation: scrollLoop 25s linear infinite;
}

.scroll-item {
    flex: 0 0 auto;
    min-width: 300px;
    margin-right: 60px;
    font-size: clamp(1.5rem, 4vw, 4rem);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Text styles */
.bold-text {
    font-size: 150px;
    font-weight: 900;
    color: var(--white-color);
    opacity: .7;
}

.outline-text {
    font-size: 150px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px var(--white-color);
    text-stroke: 2px var(--white-color);
}

.dot {
    font-weight: bold;
    font-size: clamp(1.5rem, 4vw, 4rem);
    color: var(--black-color);
}

/* Sliding animation */
@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/* Responsive for tablets and below */
@media (max-width: 1024px) {
  .section-5 {
    padding: 30px 20px;
    min-height: auto;
  }

  .section-5 .card-1 h1 {
    font-size: 24px;
  }

  .section-5 .card-1 p,
  .section-5 .card-1 span {
    font-size: 16px;
  }

  .section-5 .card-2 {
    justify-content: center;
  }

  .section-5 .card-2 .inner-card {
    width: 90%;
    height: auto;
    padding: 25px;
  }

  .section-5 .card-2 .inner-card i {
    font-size: 50px;
  }

  .section-5 .card-2 .inner-card h1 {
    font-size: 22px;
  }

  .section-5 .card-2 .inner-card p {
    font-size: 14px;
  }

  .scroll-item {
    min-width: 250px;
    margin-right: 40px;
  }

  .bold-text,
  .outline-text {
    font-size: 90px;
  }
}

/* Responsive for mobile devices */
@media (max-width: 600px) {
  .section-5::before {
    height: 20%;
  }

  .section-5 .card-1 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-5 .card-1 h1,
  .section-5 .card-1 p,
  .section-5 .card-1 span {
    max-width: 100%;
  }

  .section-5 .card-2 {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .section-5 .card-2 .inner-card {
    width: 100%;
    padding: 20px;
  }

  .section-5 .card-2 .inner-card i {
    font-size: 40px;
  }

  .scroll-banner {
    height: 200px;
  }

  .scroll-item {
    min-width: 200px;
    font-size: 1.5rem;
  }

  .bold-text,
  .outline-text {
    font-size: 60px;
    -webkit-text-stroke: 1px var(--white-color);
  }
}

/* =======================================USER SECTION=============================== */

.user-section-container {
    max-width: 1400px;
    margin: auto;
    padding: 100px 30px;
    text-align: center;
    position: relative;
}

.user-section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--black-color);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.user-section-subtitle {
    font-size: 18px;
    color: var(--black-color);
    margin-bottom: 60px;
}

.user-section-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: stretch;
}

.user-section-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 30px;
    min-width: 240px;
    width: 260px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--black-shadow);
    overflow: hidden;
}

.user-section-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 300%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.04;
    z-index: 0;
    animation: blob 12s infinite ease-in-out alternate;
}

@keyframes blob {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(20px) scale(1.2);
    }
}

.user-section-stat {
    position: relative;
    z-index: 2;
}

.user-section-number {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.user-section-label {
    font-size: 16px;
    color: var(--black-color);
    margin-top: 10px;
    letter-spacing: 0.3px;
}

.user-section-card:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px var(--red-shadow);
}

/* Responsive */
@media (max-width: 768px) {
    .user-section-row {
        gap: 0;
        flex-direction: column;
        align-items: center;
    }

    .user-section-card {
        width: 90%;
        margin-bottom: 20px;
    }

    .user-section-title {
        font-size: 30px;
    }

    .user-section-number {
        font-size: 36px;
    }
}

/* =====================================TESTIMONIAL SECTION========================= */
.testimonial-section {
    color: var(--black-color);
}

.testimonial-container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

/* Extra Large Screens (Desktops) */
@media screen and (min-width: 1400px) {
    .testimonial-container {
        max-width: 1320px;
    }
}

/* Large Screens (Laptops) */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .testimonial-container {
        max-width: 1140px;
    }
}

/* Medium Screens (Small Laptops/Tablets) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-container {
        max-width: 960px;
    }
}

/* Tablets */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-container {
        max-width: 720px;
    }
}

/* Mobile Screens */
@media screen and (max-width: 767px) {
    .testimonial-container {
        max-width: 540px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 480px) {
    .testimonial-container {
        max-width: 310px;
        padding: 0 10px;
    }
}


.testimonial-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 3rem;
}

.testimonial-swiper {
    padding: 40px 0;
}

.testimonial-card {
    background: var(--white-color);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    min-height: 200px;
    border: 2px solid var(--red-shadow);

    padding: 2rem;
    transform-style: preserve-3d;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}


.testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--black-color);
}

.testimonial-content h3 {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-pagination {
    bottom: 0 !important;
}

.testimonial-nav-prev,
.testimonial-nav-next {
    color: var(--primary-color) !important;
    transition: transform 0.3s ease;
}

.testimonial-nav-prev:hover,
.testimonial-nav-next:hover {
    transform: scale(1.2);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .testimonial-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }
}


/* =======================================FAQS SECTION=============================== */

.faq-section {
    padding: 60px 20px;
}

.faq-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.faq-title {
    font-size: 36px;
    color: var(--black-color);
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--black-color);
}

.faq-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-radius: 12px;
    box-shadow: 0 3px 4px var(--red-shadow);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px var(--red-shadow);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: var(--black-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-question::after {
    content: "+";
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease;
    background-color: var(--white-color);
}

.faq-answer p {
    padding: 15px 0;
    text-align: left;
    color: var(--black-color);
}

@media (max-width: 600px) {
    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

/* =======================================CONTACT SECTION=============================== */
.contact-section {
    padding: 60px 20px;
    background: var(--white-color);
}

.contact-intro {
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

.floating-icons {
    position: relative;
    height: 80px;
    margin-bottom: 20px;
}

.floating-icons i {
    font-size: 36px;
    position: absolute;
    color: var(--primary-color);
    animation: float 4s ease-in-out infinite;
    opacity: 0.3;
}

.icon1 {
    top: 0;
    left: 30%;
    animation-delay: 0s;
}

.icon2 {
    top: 0;
    left: 45%;
    animation-delay: 1s;
}

.icon3 {
    top: 0;
    left: 60%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-15px);
        opacity: 0.6;
    }
}

.intro-text h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.intro-text span {
    color: var(--primary-color);
}

.intro-text p {
    font-size: 18px;
    max-width: 600px;
    margin: auto;
    color: var(--black-color);
}

/* Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.info-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 15px;
    color: var(--black-color);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form-section {
    max-width: 700px;
    background: var(--white-shadow);
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: var(--primary-color);
}

.input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-form-section input,
.contact-form-section textarea {
    flex: 1;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    background: var(--white-color);
    outline: none;
}

.contact-form-section button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 50px;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form-section button:hover {
    background: var(--black-color);
}

.form-message {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    color: var(--primary-color);
    font-weight: bold;
}

.error {
    color: var(--primary-color);
    font-size: 13px;
    margin-top: 4px;
    display: block;
}


@media (max-width: 768px) {
    .input-row {
        flex-direction: column;
    }

    .contact-intro h1 {
        font-size: 28px;
    }

    .contact-info-grid {
        gap: 20px;
    }

    .contact-form-section {
        padding: 25px;
    }
}

/* ======================================FOOTER SECTION============================= */
footer {
    width: 100%;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 0 10px var(--red-shadow);
    position: relative;
    margin-top: 150px;
}

footer .footer-sticky {
    position: absolute;
    top: -70px;
    width: 100%;
    max-width: 900px;
    min-height: 150px;
    background: var(--white-color);
    backdrop-filter: blur(50px);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 40px;
    box-shadow: 2px 2px 10px var(--red-shadow);
}
@media (max-width: 768px) {
    footer .footer-sticky {
        flex-direction: column;
    }
}
footer .footer-sticky .cta-btn{
    margin-bottom: 0;
}

footer .footer-sticky .inner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

footer .footer-sticky .inner-content i {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    font-size: 40px;
    color: var(--black-color);
}

footer .footer-sticky .inner-content h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 30px;

}

.footer-bottom {
    width: 100%;
    min-height: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    margin-top: 100px;
}

footer .logo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

footer .logo-content img {
    width: 100%;
    max-width: 200px;
}

footer .logo-content p {
    width: 100%;
    max-width: 250px;
    font-size: 14px;
    text-align: center;
}

footer .footer-links {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    list-style: none;
}

footer .footer-links .footer-link {
    color: var(--black-color);
    transition: .3s ease-in;
    border-radius: 30px;
    position: relative;
}

footer .footer-links .footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: .3s ease-in;
}

footer .footer-links .footer-link:hover {
    color: var(--primary-color);
}

footer .footer-links .footer-link:hover::before {
    width: 100%;
}

.download-app img {
    width: 100%;
    max-width: 150px;
}
.bottom-footer p{
    text-align: center;
}

/* ================================ABOUT PAGE=========================== */
.about-sections {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 40px 5vw;
}

.about-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 40px;
    padding: 40px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
}

.about-section img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.about-section-content h2 {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 10px;
}

.about-section-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.about-section::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff0707, #f13e08);
    filter: blur(60px);
    z-index: -1;
    border-radius: 50%;
}

.about-section:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.animate-fade {
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}