/* Make the body and html take full height */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Use flexbox on the body to ensure the footer is always at the bottom */
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures footer sticks to the bottom */
  min-height: 100vh; /* Make sure the body takes at least 100% height */
}

:root {
  /**
   * colors
   */

  --sky-blue-crayola: hsl(188, 64%, 60%);
  --raisin-black_90: hsla(240, 8%, 12%, 0.9);
  --raisin-black-1: hsl(240, 8%, 17%);
  --raisin-black-2: hsl(240, 8%, 12%);
  --majorelle-blue: hsl(241, 77%, 63%);
  --blue-ryb_80: hsla(241, 88%, 60%, 0.8);
  --bittersweet: hsl(0, 100%, 69%);
  --eerie-black: hsl(0, 0%, 13%);
  --ghost-white: hsl(230, 60%, 98%);
  --light-gray: hsl(0, 0%, 80%);
  --slate-gray: hsl(225, 8%, 48%);
  --cool-gray: hsl(225, 11%, 59%);
  --gainsboro: hsl(217, 16%, 90%);
  --mustard: hsl(47, 100%, 69%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(240, 5%, 26%);
  --jet: hsl(0, 0%, 21%);

  /**
   * gradient
   */

  --gradient: radial-gradient(
    ellipse at center,
    hsla(0, 0%, 0%, 0.25),
    transparent 80%
  );

  /**
   * typography
   */

  --ff-dm-sans: "DM Sans", sans-serif;

  --fs-1: 4rem;
  --fs-2: 3.5rem;
  --fs-3: 2.4rem;
  --fs-4: 2.2rem;
  --fs-5: 2rem;
  --fs-6: 1.8rem;
  --fs-7: 1.7rem;
  --fs-8: 1.5rem;
  --fs-9: 1.4rem;
  --fs-10: 3rem;
  --fw-500: 500;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 80px;

  /**
   * shadow
   */

  --shadow-1: 0px 2px 50px hsla(223, 40%, 76%, 0.3);
  --shadow-2: 0px -2px 12px hsl(252, 29%, 93%);
  --shadow-3: 0px 4px 4px hsla(231, 20%, 49%, 0.06);
  --shadow-4: 0px 15px 30px hsla(210, 30%, 32%, 0.05);
  --shadow-5: 0px 15px hsla(241, 62%, 34%, 0.04);

  /**
   * radius
   */

  --radius-8: 8px;
  --radius-10: 10px;
  --radius-15: 15px;
  --radius-20: 20px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(to right, #000000, #8a0000);
  
}

.dark-theme {
  background-color: var(--raisin-black-2);
}

.dark-theme .nav a {
  color: #ffffff;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  width: 120px; /* Adjust as needed */
  margin-left: 20px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: sans-serif;
}



.nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav ul li {
  transition: all 0.3s ease; /* Smooth transition effect */
  transform: scale(1); /* Normal size */
  background-color: transparent;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.nav ul li:hover {
  margin: 0 15px;
  background-color: white;
  color: black;
  transform: scale(1.1); /* Zoom effect on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for 3D effect */
  border-radius: 8px; /* Slightly more rounded corners on hover */
  transition: all 0.3s ease; /* Smooth transition */
}


.nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
}

.nav ul li a:hover {
  color: var(--raisin-black-2); /* Adjust hover effect */
}

.nav.active ul li a:hover {
  color: #FFFFFF; /* Adjust hover effect */
}

.download-buttons {
  display: flex;
  gap: 10px; /* Adds space between the buttons */
}

/* Full-screen navigation toggle on mobile */
.nav.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items */
  justify-content: center; /* Center items vertically */
  padding: 20px;
  z-index: 1000; /* Ensure it's above other elements */
}

.nav.active ul {
  flex-direction: column; /* Stack list items vertically */
  align-items: center; /* Center list items */
}

.nav.active ul li {
  margin: 20px 0; /* Space between vertical items */
}

.nav.active .download-buttons {
  flex-direction: column; /* Stack buttons vertically */
  margin-top: 20px; /* Add space above buttons */
}

/* Change color when menu is active */
.nav.active + .menu-button {
  color: #ffffff; /* Change to white when active */
}

.btn {
  max-width: max-content;
  font-weight: bold;
  height: 40px; /* Adjust button height */
  display: flex;
  align-items: center;
  padding-inline: 15px; /* Adjust button padding */
  border-radius: 5px;
  overflow: hidden;
  transition: background-color 0.3s ease-in-out;
  background-color: #000000;
  color: #fff;
  border: none;
  outline: 2px solid #FFFFFF;
  text-decoration: none;
}

nav.active .btn{
  background-color: #cc111a;
  color: #fff;
  border: none;
  outline: 2px solid #FFFFFF;
}

.menu-button {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000; /* Ensure the button stays on top */
  color: var(--raisin-black-2); /* Default color */
  transition: color 0.3s ease-in-out; /* Smooth transition */
}

footer{
  flex-shrink: 0; /* Prevents footer from shrinking */
  background: linear-gradient(to right, #000000, #8a0000);
  color: var(--white);
  width: 100%;
  position: relative; /* Keeps it in the normal flow */
  bottom: 0; /* Ensures it sticks to the bottom when the content is short */
}

footer::before{
  content: '';
  position: absolute;
  left: 0;
  top: 140px;
  height: 0.5px;
  width: 100%;
  background: #FFF;
}
footer .logo {
  width: 100px; /* Adjust as needed */
}

footer .content{
  max-width: 1250px;
  margin: auto;
  padding-top: 20px;
}
footer .content .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.content .top .logo-details{
  color: #fff;
  font-size: 30px;
}
.content .top .media-icons{
  display: flex;
}
.content .top .media-icons a{
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  outline: none;
  border: none;
  transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1){
  background: #4267B2;
}
.top .media-icons a:nth-child(1):hover{
  color: #4267B2;
  background: #fff;
}
.top .media-icons a:nth-child(2){
  background: #1DA1F2;
}
.top .media-icons a:nth-child(2):hover{
  color: #1DA1F2;
  background: #fff;
}
.top .media-icons a:nth-child(3){
  background: #E1306C;
}
.top .media-icons a:nth-child(3):hover{
  color: #E1306C;
  background: #fff;
}
.top .media-icons a:nth-child(4){
  background: #0077B5;
}
.top .media-icons a:nth-child(4):hover{
  color: #0077B5;
  background: #fff;
}
.top .media-icons a:nth-child(5){
  background: #FF0000;
}
.top .media-icons a:nth-child(5):hover{
  color: #FF0000;
  background: #fff;
}
footer .content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box{
  width: calc(100% / 5 - 10px);
  font-family: sans-serif;
  font-size: 18px;
}
.content .link-boxes .box .link_name{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
  font-family: sans-serif;
}
.content .link-boxes .box .address{
  
    color: var(--white);
    opacity: 0.8;
    font-family: sans-serif;
    font-size: 15px;
  
}
.link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}
.content .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease
}
.content .link-boxes .box li a:hover{
  opacity: 1;
  text-decoration: underline;
}
.content .link-boxes .input-box{
  margin-right: 55px;
}
.link-boxes .input-box input{
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;
  background: #FFFFFF;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #262323;
  margin-top: 5px;
  font-family: sans-serif;
}
.link-boxes .input-box input::placeholder{
  color: var(--raisin-black-2);
  font-size: 16px;
}
.link-boxes .input-box input[type="button"]{
  background: #cc111a;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  cursor: pointer;
  transition: all 0.4s ease;
}
.input-box input[type="button"]:hover{
  opacity: 1;
}
footer .bottom-details{
  width: 100%;
  background: linear-gradient(to right, #000000, #8a0000);
  font-family: sans-serif;
}
footer .bottom-details .bottom_text{
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover{
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a{
  margin-right: 10px;
}

/* main */

* {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
}
.hero{
  position: relative;
  width: 100%;
  height: 65vh;
  text-align: center;
  background: linear-gradient(to left, #000000,#ffffff, #8a0000);

  
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the area */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* Places the image behind the content */
  
}
.hero-content {
  position: relative; /* Ensures content appears above the image */
  z-index: 1;
  /* Additional styles for the content */
}
.title{
  display: inline-block;
  margin: 60px auto 0;
  color: #000;
  font-family: sans-serif;
  
}
.title h1{
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
.title p{
  font-size: 13px;
  line-height: 22px;
}
.row{
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.col{
  flex-basis: 22%;
  text-align: center;
  color: #555;
}
.counter-box{
  width: 100%;
  height: 100%;
  background: var(--raisin-black-2);
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 0 20px -4px #66676c;
  color:#fff;
}
h2,span{
  display: inline-block;
  margin: 15px 0;
  font-size: 50px;
  color: #fff;
}
.counter-box .fa{
  font-size: 40px;
  color: rgba(16, 211, 97, 0.603);
  display: block;
}
.credit a{
  text-decoration: none;
  color: #000;
}

.credit {
    margin-top: 10px;
    text-align: center;
}


/* slider */
#slider-wrapper {
  width: 99vw;
  height: 650px;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#s1 {
  padding: 6px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: 25px;
  margin-left: -36px;
  border-radius: 20px;
  opacity: 0.3;
  cursor: pointer;
  z-index: 999;
}

#s2 {
  padding: 6px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: 25px;
  margin-left: -12px;
  border-radius: 20px;
  opacity: 0.3;
  cursor: pointer;
  z-index: 999;
}

#s3 {
  padding: 6px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: 25px;
  margin-left: 12px;
  border-radius: 20px;
  opacity: 0.3;
  cursor: pointer;
  z-index: 999;
}

#s4 {
  padding: 6px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: 25px;
  margin-left: 36px;
  border-radius: 20px;
  opacity: 0.3;
  cursor: pointer;
  z-index: 999;
}

#s1:hover,
#s2:hover,
#s3:hover,
#s4:hover {
  opacity: 1;
}

.inner-wrapper {
  width: 99vw;
  height: 650px;
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0px;
  overflow: hidden;
}

.control {
  display: none;
}

#Slide1:checked ~ .overflow-wrapper {
  margin-left: 0%;
}

#Slide2:checked ~ .overflow-wrapper {
  margin-left: -100%;
}

#Slide3:checked ~ .overflow-wrapper {
  margin-left: -200%;
}

#Slide4:checked ~ .overflow-wrapper {
  margin-left: -300%;
}

#Slide1:checked + #s1 {
  opacity: 1;
}

#Slide2:checked + #s2 {
  opacity: 1;
}

#Slide3:checked + #s3 {
  opacity: 1;
}

#Slide4:checked + #s4 {
  opacity: 1;
}

.overflow-wrapper {
  width: 400%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow-y: hidden;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.slide img {
  width: 25%;
  height: 650px;
  float: left;
  object-position: center;
}
.credit a{
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  }
  
  .credit {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 10px;
    color:#000;
    text-align: center;
  }

  .card-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    background-color: var(--raisin-black-2);
    margin-bottom: 0; /* Ensure no margin at the bottom */
}

.card-wrapper {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.card-video-card {
  max-width: 50%; /* Constrain the width of the video card */
    flex: 1;
    margin-top: 40px;
    margin-bottom: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.card-video-card video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.card-text {
    flex: 1;
    padding: 40px;
    max-width: 50%; /* Constrain the width of the text card */
    display: flex;
    margin-top: -100px;
    font-family: sans-serif;
    flex-direction: column;
    justify-content: center;
}

.card-text h1 {
    font-size: 1.2rem;
    color: #cc111a;
    margin-top: 100px;
    font-family: sans-serif;
}

.card-text p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 10px;
    font-family: sans-serif;
}

/* Styling the section */
.image-section {

  background-image: url('assets/bg5.jpg'); /* Path to your background image */
  background-size: cover; /* Make the background cover the entire section */
  background-position: center; /* Center the background image */
  display: flex;
  flex-direction: column; /* Stack title and images vertically */
  align-items: center;
  height: 120vh; /* Ensure the section takes full viewport height */
  color: white;
  position: relative; /* Make the background image stay behind the content */
}

/* webtech */


/* .image-bar { */

  /* background-image: url('assets/bg5.jpg'); Path to your background image */
  /* background-size: cover; Make the background cover the entire section */
  /* background-position: center; Center the background image */
  /* display: flex; */
  /* flex-direction: column; Stack title and images vertically */
  /* align-items: center; */
  /* height: 120vh; Ensure the section takes full viewport height */
  /* color: white; */
  /* position: relative; Make the background image stay behind the content */
/* } */

/* .image-bar img{
  width: 283px;
  height: 260px;
} */







.image-section img{
  width: 300px;
  height: 300px;
  margin-top: -90px;
}


/* Title styling */
.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 20px;
  margin: 30px;
  font-family: sans-serif;
  z-index: 2; /* Ensure title stays on top */
  color: #cc111a;
}
.red {
  color: #cc111a; /* REDWOLF part color */
}

.ev {
  color: black; /* EV part color */
}

/* Container to hold the image cards */
.image-container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  margin-top: -80px;
  z-index: 2; /* Ensure container stays on top */
}

/* Each image card */
.image-card {
  flex: 1;
  margin: 0 10px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image inside each card */
.image-card img {
  width: 100%;
  height: 800px;
  object-fit: cover; /* Make sure images cover the card */
  border-radius: 10px;
}

.team-slider {
  padding: 10px;
  background-image: url('assets/bg3.jpg'); /* Ensure the path is correct */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  height: 70vh;
  color: white;
  position: relative;

}



/* Wrapping the cards and creating the sliding effect */
.slider-wrapper {
  display: flex;
  width: 300vw; 
  
  /* Make sure it's 300% of the viewport width */
  animation: slide 60s infinite ease-in-out;
}

.team-card {
  width: 100vw; /* Full viewport width */
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.team-card img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.card-info {
  display: flex;
  flex-direction: column;
  margin: 20px;
  text-align: left;
  max-width: 50%;
}

.card-info h3 {
  font-size: 2rem;
  margin: 5px 0;
  color: #cc111a;
}

.card-info p {
  font-size: 1.5rem;
  color: #F5E1C0;
  margin-top: 10px;
  font-family: sans-serif;
}

/* Red color for specific description text */
.card-info .red p {
  color: whitesmoke;
}

/* WhatsApp Icon styling */
.whatsapp-icon {
  position: fixed;  /* Fix the position on the screen */
  bottom: 20px;     /* Distance from the bottom of the screen */
  right: 20px;      /* Distance from the right of the screen */
  background-color: #25D366;  /* WhatsApp's green color */
  padding: 10px;    /* Padding to make the icon fit neatly */
  border-radius: 50%;  /* Circular shape */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);  /* Optional shadow for a floating effect */
  color: white;  /* White color for the icon */
  font-size: 30px;  /* Icon size */
  text-decoration: none;  /* Remove underline from the link */
  transition: all 0.3s ease;  /* Smooth transition for hover effects */
  width: 50px;    /* Set the width of the icon */
  height: 50px;   /* Set the height of the icon */
  display: flex;  /* Flexbox to center the icon */
  justify-content: center;  /* Center icon horizontally */
  align-items: center;  /* Center icon vertically */
}

/* Hover effect for the WhatsApp icon */
.whatsapp-icon:hover {
  transform: scale(1.1);  /* Slightly increase the size when hovered */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);  /* Increase shadow on hover */
}

/* journey */

.timeline {
	display: flex;
	flex-direction: column;
	padding: 20px;
	position: relative;
  background: linear-gradient(to left, #000000,#d9dfdd, #8a0000);
}

.timeline__event {
	margin-bottom: 20px;
	position: relative;
	display: flex;
	margin: 20px 0;
	border-radius: 6px;
	align-self: center;
	width: 50vw;
}

.timeline__event:nth-child(2n + 1) {
	flex-direction: row-reverse;
}

.timeline__event__title {
	font-size: 1.2rem;
	line-height: 1.4;
	text-transform: uppercase;
	font-weight: 600;
  font-family: sans-serif;
	color: #8a0000;
	
}

.timeline__event__content {
	padding: 20px;
	box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25),
		0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
	background: #fff;
	width: calc(40vw - 84px);
	border-radius: 6px;
}

.timeline__event__date {
	color: #FFF;
	font-size: 1.5rem;
	font-weight: 600;
	background: linear-gradient(to right, #000000, #8a0000);
	display: flex;
  font-family: sans-serif;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	padding: 0 20px;
	border-radius: 6px 0 0 6px;
}

.timeline__event__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: linear-gradient(to right, #000000, #8a0000);
	padding: 40px;
	align-self: center;
	margin: 0 20px;
	background: linear-gradient(to right, #000000, #8a0000);
	border-radius: 100%;
	width: 40px;
	height: 40px;
	position: relative;
}

.timeline__event__description {
	flex-basis: 100%;
  font-family: sans-serif;
}



/* FA&Q */

/* body {
  min-height: 100vh;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  font-size: 20px;
} */

.faq {
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  /* box-shadow: 0 0 12px rgba(0, 0, 0, 0.25); */
}

.faq__title {
  text-transform: uppercase;
  color: rgb(204, 17, 26);
}

details {
  background-color:#8a00008f;
  border-radius: 10px;
  cursor: pointer;
  padding: 20px 30px;
  margin-block: 30px;
}

summary,
.Q1 {
  text-align: left;
  color: black;
  font-size: x-large;
}

summary {
  margin-inline-start: 1rem;
  list-style-position: outside;
}

summary::marker {
  color: rgb(204, 17, 26);
  font-size: 18px;
}





@keyframes fillLeft {
	100% {
		right: 100%;
	}
}

@keyframes fillTop {
	100% {
		top: 100%;
	}
}

@keyframes fillLeftOdd {
	100% {
		left: 100%;
	}
}

/* testimonials */
/* Make sure carousel items are in a column layout */
/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
}

/* Testimonials Section */
.testimonials {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to left, #000000, #8a0000);
}

.testimonials h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-family: sans-serif;
}

/* Container for Testimonial Cards */
.testimonials-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

/* Individual Testimonial Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 300px;
  padding: 10px;
  margin: 10px;
  text-align: center;
}

/* Video Styling */
.testimonial-card video {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

#myVideo {
  width: 100%;
  height: auto;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.8;
}

.play-btn:hover {
  opacity: 1;
}

/* Testimonial Content */
.testimonial-content {
  padding: 15px;
}

.testimonial-content h3 {
  font-size: 18px;
  color: #333;
  margin: 10px 0;
}

.testimonial-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}


.features-section {
  background: linear-gradient(to bottom, #FFFFFF, #8a0000);
  padding: 60px 0;
  margin-top: 50px;
}

.features-section .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: center; /* Centers items horizontally */
  gap: 30px; /* Adds space between items */
  flex-wrap: wrap; /* Allows wrapping to the next row if needed */
}

.features-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: -50px;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.section-heading p {
  font-size: 1.1rem;
  color: #777;
  line-height: 1.6;
}

.feature-card {
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 30%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}


.feature-card img {
  max-width: 100%;
  height: 80px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-top: 20px;
}

.feature-card p {
  font-size: 1rem;
  color: #777;
  line-height: 1.5;
}


/* //////////////////////////////////////////////// */

.features-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px; /* Adds space between cards */
}

.feature-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  width: 250px;
  cursor: pointer;
}

/* Card Content Styling */
.feature-card img {
  width: 50%;
  height: 50%;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
}

/* 🔥 Hover Effect: Zoom-in + Background Color Change */
.feature-card:hover {
  transform: scale(1.1);  /* Zoom-in effect */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #ff512f, #dd2476); /* Beautiful gradient */
  color: white; /* Change text color for contrast */
}

/* Ensure text color remains white on hover */
.feature-card:hover h3,
.feature-card:hover p {
  color: white;
}







@media (max-width: 767px) {
  .feature-card {
    width: 70%;
  }

  .features-section {

    margin-top: 10px;
  }
}




/* Animation for auto sliding */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  33.33% {
    transform: translateX(-100vw);
  }
  66.66% {
    transform: translateX(-200vw);
  }
  100% {
    transform: translateX(0);
  }
}



/* Responsive design for smaller screens (768px and below) */
@media (max-width: 768px) {
  .image-container {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
  }
}

@media (max-width: 480px) {
  .image-container {
      grid-template-columns: 1fr; /* 1 column on very small screens */
  }
}


@media (max-width: 900px) {
  footer .content .link-boxes{
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box{
    width: 40%;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #f8f8f8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 5px;
  }

  
  .logo{
    max-width: 80px;
  }

  .card-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 800px;
    background-color: var(--raisin-black-2);
    margin-bottom: 0; /* Ensure no margin at the bottom */
}

.card-text {

  margin-top: 10px;
  
}

  .image-card img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Make sure images cover the card */
    border-radius: 10px;
  }

  .nav.active {
    display: flex;
  }

  .menu-button {
    display: block;
  }
  
  footer{
    position: relative;
  }

  footer .content{
    margin: 20px;
    padding-top: 20px;
  }

  .card-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120vh;
    background-color: var(--raisin-black-2);
    margin-bottom: 0; /* Ensure no margin at the bottom */
    padding: 10px; /* Added some padding for small screen spacing */
}

.card-wrapper {
    display: flex;
    align-items: flex-start; /* Align items to the top for better flow */
    flex-direction: column; /* Stack elements vertically */
    max-width: 100%; /* Allow wrapper to use full width */
    width: 100%;
}

.card-video-card {
    max-width: 100%; /* Set video card to take full width on small screens */
    margin-top: 0px; /* Removed margin-top to optimize space */
    margin-bottom: 20px; /* Reduced bottom margin for small screens */
    border-radius: 10px;
    overflow: hidden;
}

.card-video-card video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.card-text {
    flex: 1;
    padding: 20px; /* Reduced padding for smaller screens */
    max-width: 100%; /* Full width on small screens */
    font-family: sans-serif;
    text-align: center; /* Centered text for smaller devices */
}

.card-text h1 {
    font-size: 20px; /* Larger font for better visibility on small screens */
    color: #cc111a;
    margin-top: 10px; /* Adjusted margin for better spacing */
}

.card-text p {
    font-size: 1rem; /* Slightly smaller font size for better readability */
    color: #ffffff;
    margin-top: 10px;
}

.image-container {
  flex-direction: column; /* Stack the image cards vertically */
  align-items: center; /* Center the images */
}

.image-card {
  margin: 10px 0; /* Add vertical spacing between the cards */
  width: 90%; /* Make the cards take up 90% of the container width */
  max-width: 250px; /* Limit the card size to be smaller */
}

.section-title {
  font-size: 2.2rem; /* Adjust font size for smaller screens */
}

/* Adjust section height for smaller screens */
.image-section {
  height: auto; /* Adjust section height automatically */
  margin-top: 0px;
}

#slider-wrapper {
  height: 200px; /* Adjust the height of the slider for smaller screens */
}

.slide img {
  width: 25%;
  height: 200px;
  float: left;
  object-position: center;
}

.overflow-wrapper {
  width: 400%; /* Still make the overflow-wrapper span across 4 images */
}

.inner-wrapper {
  height: 200px; /* Adjust inner-wrapper height for smaller screens */
}

#s1, #s2, #s3, #s4 {
  padding: 6px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: 10px; /* Reduced bottom margin for smaller screens */
  margin-left: -18px; /* Adjust for better visibility */
  border-radius: 20px;
  opacity: 0.6;
  cursor: pointer;
  z-index: 999;
}

.whatsapp-icon {
  font-size: 24px;  /* Smaller icon size for mobile */
  width: 45px;      /* Slightly smaller width for mobile */
  height: 45px;     /* Slightly smaller height for mobile */
  bottom: 15px;     /* Adjust bottom margin for better spacing on small screens */
  right: 15px;      /* Adjust right margin for better spacing */

}

  
  .content .top .logo-details{
    font-size: 26px;
  }
  .content .top .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
 
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 12px;
  }  

  footer::before{
    top: 180px;
    position: absolute;
  }
  footer .content .top{
    flex-direction: column;
  }
  .content .top .media-icons{
    margin-top: 16px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 80px;
  }

  .hero {
    height: 90vh; /* Reduce height for smaller screens */
  }

  .title {
    width: 80%; /* Increase width for better readability */
    margin: 50px auto 0; /* Adjust margin */
  }

  .title p {
    font-size: 12px; /* Slightly smaller text */
    line-height: 20px;
  }

  .row {
    flex-direction: column; /* Stack columns vertically */
    width: 90%; /* Adjust width */
    top: 60%; /* Adjust position */
  }

  .col {
    flex-basis: 100%; /* Each column takes full width */
    margin-bottom: 20px; /* Add spacing between columns */
  }

  .counter-box {
    width: 200px;
    height: 100px;
    padding: 10px 5px; /* Adjust padding */
    border-radius: 8px;
    box-shadow: 0 0 10px -2px #66676c; /* Slightly less intense shadow */
  }

  h2, span {
    font-size: 30px; /* Reduce font size */
  }

  .counter-box .fa {
    font-size: 30px; /* Reduce icon size */
  }

  

  .team-slider {
    height: 90vh; /* Reduce height on smaller screens */
  }

  .slider-wrapper {
    width: 300%; /* Keep 3 cards, but adjust layout */
  }

  .team-card {
    width: 500px; /* Full width of the viewport for each card */
    height: auto; /* Adjust height to content */
    flex-direction: column; /* Align image and text horizontally */
    display: flex; /* Flexbox layout */
    align-items: center; /* Vertically center content */
    justify-content: flex-start; /* Align content to the start horizontally */
    padding: 20px;
    margin-right: 20px; /* Space between the cards */
  }

  .team-card img {
    width: 150px; /* Adjust image width for smaller screens */
    height: 150px; /* Adjust image height */
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px; /* Space between the image and text */
  }

  .card-info {
    text-align: center; /* Align text to the left for better readability */
    margin: 15px;
    max-width: 100%;
    font-family: sans-serif;
  }

  .card-info h3 {
    font-size: 1.2rem; /* Adjust title font size for smaller screens */

  }

  .card-info p {
    font-size: 1rem; /* Adjust description font size for smaller screens */
    font-weight: bold;
  }
  .timeline__event {
		flex-direction: column;
		align-self: center;
	}

	.timeline__event__content {
		width: 100%;
	}


	.timeline__event__icon::before,
	.timeline__event__icon::after {
		opacity: 0;
		visibility: hidden;
    display: none
	}

	.timeline__event__date {
		border-radius: 0;
		padding: 20px;
	}

	.timeline__event:nth-child(2n + 1) {
		flex-direction: column;
		align-self: center;
	}

	.timeline__event:nth-child(2n + 1) .timeline__event__date {
		border-radius: 0;
		padding: 20px;
	}

	
  @keyframes fillLeft {
    100% {
      right: 100%;
    }
  }
  
  @keyframes fillTop {
    100% {
      top: 100%;
    }
  }
  
  @keyframes fillLeftOdd {
    100% {
      left: 100%;
    }
  }
  /* Animation for auto sliding */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  33.33% {
    transform: translateX(-100vw);
  }
  66.66% {
    transform: translateX(-200vw);
  }
  100% {
    transform: translateX(0);
  }
}

}



/* //////////////// scootyslider  */

.slider-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  /* overflow: hidden; */
}

.image-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.image-card {
  min-width: 100%;
  box-sizing: border-box;
}

.image-card img {
  width: 100%;
  /* height: auto; */
  display: block;
}

/* FAQ */

.about-us-heading {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: black;
  /* text-transform: uppercase; */
  letter-spacing: 1.5px;
  position: relative;
  margin-bottom: 20px;
}

.about-us-heading::after {
content: "";
display: block;
width: 80px;
height: 4px;
background-color: #d10000;
margin: 8px auto 0;
border-radius: 2px;
}



.qs{
  color: #cc111a;
  display: inline-block;
  margin: 0px -7px;
  font-size: 32px;
}



/* video */

.tagline {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.highlight {
  color: #cc111a;
}

.cont {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  position: relative;
}

.video-cont {
  position: relative;
  max-width: 600px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ddd;
  margin: 0 30px;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.states-list {
  width: 200px;
  text-align: left;
  font-size: 1.2rem;
  line-height: 2;
  font-weight: bold;
  color: #333;
}

.left-list {
  text-align: right;
  padding-right: 15px;
}

.right-list {
  text-align: left;
  padding-left: 15px;
}

.states-list p {
  margin: 10px 0;
  padding: 8px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-align: center;
}

.states-list p:hover {
  background-color: #cc111a;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cont {
      flex-direction: column;
  }

  .states-list {
      text-align: center;
      width: auto;
  }

  .left-list, .right-list {
      text-align: center;
      padding: 0;
  }

  .video-cont {
      width: 100%;
      height: auto;
      margin: 15px 0;
  }
}


/* testimonial */

.testimonial-card {
  position: relative;
  display: inline-block;
}

video {
  width: 100%;
  border-radius: 10px;
}

.playPauseBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: none;
  cursor: pointer;
}

.testimonial-card:hover .playPauseBtn {
  display: block;
}



/* scrool top button */


#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

#scrollTopBtn:hover {
  background-color: #0056b3;
}
