/* 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 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


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

.aboutcontainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  width: 300px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}

.card h5 {
  margin-top: 10px;
  /* color: #007bff; */
  color: #cc111a;
}

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


.visionsection {
  text-align: center;
  margin-top: 3rem;
}




/* //////////////////////////////////// new changes  */



.expansion-container {
  text-align: center;
  padding: 50px;
  background: linear-gradient(to right, #000000, #8a0000);
  color: #fff;
  border-radius: 10px;
  margin-top: 1px;
}

.expansion-container h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Card layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.expansion-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Heading inside cards */
.expansion-card h5 {
  font-size: 18px;
  color: whitesmoke;
  margin-bottom: 10px;
}

.expansion-card p {
  font-size: 17px;
  color: #ffffff;
}

/* Hover effect for a glowing star-like effect */
.expansion-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 223, 186, 0.6);
}


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

/* peragraph */

.about-us-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 10px;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
}

.about-us-container strong {
  color: #d10000;
  font-weight: bold;
}

.about-us-container::before {
  content: "";
  font-size: 50px;
  color: #d10000;
  position: absolute;
  left: -10px;
  top: -10px;
}

.about-us-container::after {
  content: "";
  font-size: 50px;
  color: #d10000;
  position: absolute;
  right: -10px;
  bottom: -10px;
}

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



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

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







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




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






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

  .features-section {

    margin-top: 10px;
  }
}



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

  .nav.active {
    display: flex;
  }

  .menu-button {
    display: block;
  }

  footer {
    position: relative;
  }

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



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

  }

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