/* 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%;
  /* flex-direction: column; */
}

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

.logo {
  width: 140px; /* 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: #1b1919;
  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 */

.section-ajeet-title {
  position: relative;
  font-size: 30px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 0 0 35px;
}
.gallery-sec {
  padding: 90px 0 40px;
  background: linear-gradient(to right, #000000, #8a0000);;
}

.gf-column {
  float: left;
  display: none; /* Hide all elements by default */
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

.filter {
  padding: 20px 2px 10px;
  text-align: center;
  max-width: 1050px;
  margin: auto;
  object-fit: cover;
}

.gf-btn {
  padding: 10px 20px;
  margin: 5px 4px 4px 0;
  display: inline-block;
  color: #000;
  background: #fff;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #265df2;
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 9px;
  cursor: pointer;
}
.gf-btn:hover,
.gf-btn-active {
  background: #265df2;
  color: #fff;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

.gallery {
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 1320px;
  flex-wrap: wrap;
  margin: 25px auto;
  /* gap: 14px; */
}
.gallery img {
  width: 200px;
  height: 260px;
  object-fit: cover;
  /* background: center center/cover no-repeat #ddd; */
  transition: 0.3s ease-in-out;
  border-radius: 12px;
  overflow: hidden;
  margin: 10px 10px;
}
.gallery img:hover::after {
  content: "E";
}

.gallery img:hover,
video:hover {
  transform: scale(1.1);
}

.butonsSection {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 15px;
  gap: 15px;
}
.closeBtn {
  font-size: 22px;
  letter-spacing: 2px;
  color: #fff;
  transition: all 0.4s linear;
  padding: 8px 50px;
  border-radius: 25px;
  background: red;
  border: 0;
  outline-offset: -5px;
  outline: 2px solid #fff;
}
.closeBtn:hover {
  cursor: auto;
  background: white;
  color: black;
  padding: 8px 45px;
  outline-offset: 4px;
  outline: 2px solid #fff;
}

.openDiv {
  width: 100%;
  height: 100vh;
  background: #000000e7;
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 0;
  z-index: 9999;
}
.imgPreview {
  /*    width: 70%;  */
  object-fit: scale-down;
  max-height: 80vh;
  height: auto;
}

.sets .hide,
.sets .pophide {
  width: 0%;
  opacity: 0;
}

.all-btn {
  text-align: center;
  background-color: #265df2;
  border-radius: 30px;
  margin: -15px auto 0;
  font-size: 1rem;
  width: 100%;
  max-width: 300px;
  padding: 5px 10px;
  letter-spacing: 1px;
  cursor: pointer;
}

.all-btn:active {
  transform: translateY(2px);
}

/* Responsive css Code Start */

@media (max-width: 767px) {
  .gallery img {
    margin: 8px 8px;
    width: 175px;
  }

  .closeBtn {
    padding: 8px 25px;
  }

  .imgPreview {
    width: 80%;
    height: auto;
  }
}

@media (max-width: 575px) {
  .gallery img {
    margin: 8px 6px;
    width: 155px;
  }

  .gf-btn {
    font-size: 15px;
  }

  .closeBtn {
    font-size: 18px;
    padding: 8px 25px;
    border-radius: 15px;
  }
  .closeBtn:hover {
    padding: 8px 20px;
  }

  .imgPreview {
    width: 90%;
    /* max-height: 50vh; */
    height: auto;
  }
}




/* //////////////end/////////// */

/* 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 */
.gallery {
  text-align: center;
}

.folders {
  margin-bottom: 20px;
}

.folder-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
}

.folder-btn:hover {
  background-color: #0056b3;
}

.image-container {
  display: none;
  margin-top: 10px;
}

.column {
  display: inline-block;
  margin: 10px;
}

img {
  width: 150px;
  height: 130px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#lightbox-img {
  max-width: 80%;
  max-height: 80%;
  transition: transform 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: red;
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.zoom-controls {
  position: absolute;
  bottom: 20px;
}

.zoom-controls button {
  background: white;
  border: none;
  font-size: 20px;
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
}

#lightbox {
  display: none;
}




/* 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 9s 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;
}

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

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

/* 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;
}

@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: 100px;
}

.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;
}

/* Gallery container background */
.gallery {
  /* background-color: #ffffff; */
  padding: 16px; /* Adds padding around the gallery */
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap */
  gap: 16px; /* Space between items */
  justify-content: center;
  /* flex-direction: column-reverse; */
}

/* Column setup for images */
.column {
  flex: 1 1 15%; /* Allow each column to take up 30% of the container width, adjust as needed */
  max-width: 15%; /* Limit the max-width to 30% */
  padding: 0 4px;
  margin-bottom: 16px; /* Space below each image */
}

/* Image styling */
.column img {
  width: 200px; /* Ensure images take up full width of their container */
  height: 200px;
  border-radius: 8px; /* Adds rounded corners to images */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow to the images */
  object-fit: cover; /* Makes sure images fit the container without distortion */
}



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

  .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 */
  }

  .gallery {
    justify-content: center; /* Center the columns horizontally */
  }

  .column {
    flex: 1 1 45%; /* 45% width for medium-sized screens, making 2 columns */
    max-width: 45%; /* Ensures the max-width is 45% on 768px 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;
  }

  .gallery {
    justify-content: center; /* Center the columns horizontally */
  }

  .column {
    flex: 1 1 45%; /* 45% width for medium-sized screens, making 2 columns */
    max-width: 45%; /* Ensure columns don't stretch beyond 45% */
  }

  
  .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%;
  }

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

  .card-info p {
    font-size: 0.9rem; /* Adjust description font size for smaller screens */
  }
  .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;
	}

  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
  }

	
  @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);
  }
}

}


.about-us-heading {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: white;
  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;
}