/* Reset default styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'lato', sans-serif;
  }
  



/* Live banner styles */
.live-banner {
  background-color: #f9550e; /* Orange background */
  color: #000000; /* White text */
  padding: 10px 0 0 0;
  font-family: Arial, sans-serif;
  overflow: hidden;
  position: relative;
  z-index: 1000;
  border: 2px solid #ffffff;
}

.live-banner-container {
  width: 100%;
  height: 100%;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

#live-prices {
  display: inline-block;
  animation: scroll-left 30s linear infinite;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

/* Keyframes for scrolling */
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}





  
/* Background color for the header */
.custom-header {
    background-color: #1a1a1a !important;
    padding: 2px 0;
  }
  
  /* Override any Bootstrap styles */
  .navbar {
    background-color: transparent !important; /* Prevent Bootstrap from applying its default styles */
  }
  
  /* Adjust the logo's size and spacing */
  .navbar-brand img {
    width: 70px;
    margin-right: 10px;
  }
  
  /* Style the navigation links */
  .navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: bold;
    padding: 5px 20px;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
  }
  
  .navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  background-color: #F9550E; /* Background color on hover or focus */
  color: white !important; /* Keep text color white on hover or focus */
  border-radius: 5px; /* Optional: add border-radius for rounded corners */
}

  /* Style the login button */
  .navbar-collapse .btn {
    background-color: #ffffff;
    border: 1.5px solid #F9550E;
    color: #F9550E;
    padding: 5px 20px;
    font-family: 'Krona One', sans-serif;
  }
  
  .navbar-collapse .btn:hover {
    background-color: #F9550E;
    color: #000000;
  }
  
  /* Style the navigation toggle button */
  .navbar-toggler {
    border: none;
  }
  
  .navbar-toggler-icon {
    background-color: #F9550E;
  }
  
  /* Align the navigation links to the right on larger screens */
  @media (min-width: 768px) {
    .navbar-nav {
      margin-left: auto;
    }
  
    .navbar-collapse .btn {
      margin-left: 20px;
    }
  }
  
  /* Style adjustments for smaller screens */
  @media (max-width: 768px) {
    .navbar-collapse .btn {
      width: 100%;
      margin-top: 10px;
      margin-bottom: 10px;
      background-color: #ffffff;
    }
  }

  



/* Scroll Effect Defaults */
.scroll-effect {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}



/* Optional Bounce Effect */
.scroll-effect-bounce {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.scroll-visible-bounce {
  opacity: 1;
  transform: scale(1);
}









 /* Hero Section Styles */
.hero {
  position: relative;
  height: 500px;
  font-family: 'krona one', sans-serif;
  color: white;
  overflow: hidden; /* Ensure the slideshow stays within bounds */
}



.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Keep slideshow below the content */
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2; /* Ensure content is above the slideshow */
  height: 100%;
  padding: 0 20px;
  margin-left: 100px;
  width: 100%;
  
}



.hero-text {
  position: relative;
  z-index: 3; /* Ensure text is above the overlay */
  width: 50%;
  padding: 30px 20px;
}


.hero-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.603); /* Dark overlay with 50% opacity */
  z-index: 2; /* Ensure the overlay is below the text but above the slideshow */
  border-radius: 1px; /* Optional: adds rounded corners to the overlay */
  pointer-events: none; /* Prevent the overlay from blocking text interaction */
}

.hero h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff; /* Ensure text color contrasts with overlay */
  position: relative; /* Keep text above the overlay */
  z-index: 4; /* Higher than the overlay */
}


.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #dddddd; /* Ensure text color contrasts with overlay */
  position: relative; /* Keep text above the overlay */
  z-index: 4; /* Higher than the overlay */
}


.hero-ctas {
  display: flex;
  position: relative; /* Keep buttons above the overlay */
  z-index: 4; 
}

.hero-ctas .btn {
  background-color: #F9550E;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  margin-right: 10px;
  transition: background-color 0.3s ease-in-out;
}

.hero-ctas .btn:hover {
  background-color: #555;
}

.hero-ctas .btn-second {
  background-color: #ffffff;
  color: #F9550E;
  text-decoration: none;
  padding: 10px 20px;
  margin-right: 10px;
  border: 2px solid #F9550E;
  transition: background-color 0.3s ease-in-out;
}

.hero-ctas .btn-second:hover {
  color: white;
  background-color: #F9550E;
}






/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    padding: 50px 10px;
    height: 600px;
  }
  
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    width: auto;
  }
  
  .hero-text {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }

  .hero h1 br {
    display: none;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .hero-ctas {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-ctas .btn {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .hero-image {
    width: 100%;
    justify-content: center;
    height: auto;
    transform: rotate(90deg);
    animation: pulse-animation 5s infinite ease-in-out;
  } 

  @keyframes pulse-animation {
    0% {
      transform: rotate(90deg) scale(1);
    }
    50% {
      transform: rotate(90deg) scale(1.2);
    }
    100% {
      transform: rotate(90deg) scale(1);
    }
  }

 }

  
  







  
 .about-wrapper {
  background-image: url('../images/bac6.png'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  
  
  padding: 100px 150px;
  
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

/* General card styling */
.about-card {
  background-color: #ecc6c6;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease; /* Smooth transition for the hover effect */

}



.about-card:hover {
  transform: translateY(-10px); /* Slightly bounce up on hover */
}


.experience-card {
  position: relative;
  background-image: url('../images/about5.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  height: 300px; /* Adjust as needed */
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.3s ease; /* Smooth transition for the hover effect */

}



.experience-card:hover {
  transform: translateY(-10px); /* Slightly bounce up on hover */
}




.experience-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.781), transparent);
  display: flex;
  align-items: flex-end;
  border-radius: 18px;
}

.experience-card .text-content {
  padding: 20px;
  color: white;
  width: 100%;
  text-align: left;
}






.experience-card-stat {
  position: relative;
  background-image: url('../images/bac1.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  height: 300px; /* Adjust as needed */
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.3s ease; /* Smooth transition for the hover effect */

}



.experience-card-stat:hover {
  transform: translateY(-10px); /* Slightly bounce up on hover */
}








.experience-card-stat .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.781), transparent);
  display: flex;
  align-items: flex-end;
  border-radius: 18px;
}

.experience-card-stat .text-content {
  padding: 20px;
  color: white;
  width: 100%;
  text-align: left;
}










/* About Intro */
.about-intro {
  grid-column: span 2;
  background-color: #a73301;
  color: white;
}

.about-intro .tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid white;
  padding: 6px 12px;
  border-radius: 25px;
  font-size: 13px;
  margin-bottom: 16px;
}

.about-intro h1 {
  font-size: 24px;
  margin: 10px 0 20px;
  line-height: 1.4;
  font-family: 'krona one', sans-serif;
}

.about-intro p {
  font-size: 14px;
  line-height: 1.6;
}

/* Stat cards */
.stat-card h3 {
  font-size: 20px;
  color: #5b6443;
  font-family: 'krona one', sans-serif;
}

.stat-card p {
  font-size: 14px;
  margin: 10px 0;
  color: #ffffff;
}



/* Image card */
.image-card {
  grid-column: span 3;
  padding: 0;
  background: none;
  
  transition: transform 0.3s ease; /* Smooth transition for the hover effect */

}



.hero-image:hover {
  transform: translateY(-10px); /* Slightly bounce up on hover */
}




.image-card img {
  width: 100%; /* Make the image take the full width of the card */
  height: 250px; /* Set the height to 200px */
  object-fit: cover; /* Ensure the image is cropped to fit the space */
  display: block; /* Remove any inline spacing */
  border-radius: 20px; /* Keep the rounded corners */
}

/* Avatar group */
.avatars {
  margin-top: 50px;
  display: flex;
  align-items: center;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 6px;

}

.about-card-customers{
  background-color: #181F20;
  padding: 20px;
  border-radius: 10px;

  transition: transform 0.3s ease; /* Smooth transition for the hover effect */

}



.about-card-customers:hover {
  transform: translateY(-10px); /* Slightly bounce up on hover */
}


.about-card-customers h3{
  font-size: 24px;
  color: #ffffff;
}








/* Responsive (Mobile/Tablet) */



@media (max-width: 768px) {
  .about-wrapper {
    padding: 40px 20px;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr); /* 2-column layout */
    grid-template-rows: auto;
    gap: 16px;
  }

  .about-intro {
    grid-column: span 2;
  }

  .image-card {
    grid-column: span 2;
  }


  .experience-card-stat{
    height: 200px;
  }

  .experience-card-stat h3 {
    font-size: 16px;
    
  }

  .experience-card{
    height: 200px;
  }



  .image-card img{
    height: 200px; /* Adjust the height for mobile */
  }


  /* Make the customers card span both columns */
  .about-card-customers {
    grid-column: span 2;
  }

  .about-card-customers h3 {
    font-size: 16px;
  }

  .stat-card button {
    margin-top: 30px;
    width: 100%;
  }

  .avatars {
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .about-intro h1 {
    font-size: 20px;
  }

  .about-intro p,
  .stat-card p {
    font-size: 13px;
  }

  .stat-card h2 {
    font-size: 24px;
  }
}















  

  /* Section Styling */
  .about {
    padding: 0 0 0 0;
    background-color: #ffffff;
  }

  /* Container Styling */
  .about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px  40px;
  }

  /* Text Styling */
  .about-text {
    flex-basis: 50%;
    padding: 20px;
    
  }

  .about-text h2 {
    font-size: 28px;
    color: #a73301;
    margin-bottom: 10px;
    font-family: 'krona one', sans-serif;
  }

  .about-text p {
    color: #1d1d1d;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'roboto', sans-serif;
  
    font-size: 18px;
  }

  /* Stat Numbers Styling */
  .stat-numbers {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    background-color: #f5f5f5;
    padding: 10px;
    margin-bottom: 30px;
    border: 1px solid #f5f5f5;
    border-radius: 2px;
  }

  .stat {
    text-align: center;
    
  }

  
 .stat .number {
    font-size: 28px;
    font-weight: bold;
    color: #a73301;
    display: block;
    
    border-radius: 5px;
    
    animation: count-up 3s ease-in-out; /* Add the count-up animation */
  }

  @keyframes count-up {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  .stat .label {
    color: #1f1f1f;
    padding-top: 20px;
    animation: fade-in 5s ease-in-out forwards; 
    line-height: 0.5;
  }

  /* Keyframes for fade-in animation */
@keyframes fade-in {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  .about-cta .btn {
    background-color: #ffffff;
    color: #F9550E;
    text-decoration: none;
    border: 2px solid #F9550E;
    padding: 10px 20px;
    margin-right: 10px;
    transition: background-color 0.3s ease-in-out;
    font-family: 'krona one', sans-serif;
  }
  
  .about-cta .btn:hover {
    background-color: #F9550E; /* Adjust the hover background color */
    font-family: 'krona one', sans-serif;
    color: #ffffff;
  }




  /* Image Styling */
  .about-image {
    flex-basis: 50%;
    
  }

  .about-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 5px;
  }


  @media screen and (max-width: 767px) {
    /* Section Styling */
    .about {
      padding: 10px 0;
      background-color: #ffffff;
    }
  
    /* Container Styling */
    .about-content {
      flex-wrap: wrap;
      padding: 0 20px;
    }
  
    /* Text Styling */
    .about-text {
      flex-basis: 100%;
      margin-bottom: 40px;
      
    }
  
    .about-text h2 {
      font-size: 26px;
      text-align: center;
    }
  
    .about-text p {
      text-align: center;
    }

    .about-cta .btn{
      width: 100%;
    }
  
    /* Stat Numbers Styling */
    .stat-numbers {
      display: flex;
      
      justify-content: center;
      margin-bottom: 20px;
      width: 100%;
      font-size: 20px;
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);

    }
  
    .stat {
      flex-basis: 33%;
      margin-bottom: 20px;
    }
  
    /* Image Styling */
    .about-image {
      flex-basis: 100%;
    }
  
    .about-image img {
      max-height: none;

    }
  }
  




  /* Services Section Styles */
 .services {
    text-align: center; /* Center align the services section */
    padding: 70px 150px 20px;
    background-color: #f7f7f7;
    
  }

  .service-text {
    padding-bottom: 50px;
  }

  .services h2{
    font-family: 'krona one', sans-serif;
    color: #5b6652;
    padding-bottom: 5px;
    font-size: 26px;
  }

  .services p{
    font-family: 'roboto', sans-serif;
    font-size: 18px;
  }

  
  .about-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px; /* Add spacing between icons and the rest of the content */

  }
  
  .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px; /* Adjust spacing between icons */
    background-color: #fff; /* Set background color for icons */
    border-radius: 5px; /* Add border radius to create rounded corners */
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); /* Add box shadow to the background of icons */
    padding: 40px 30px; /* Add padding to the icons */
  }
  

  .icon:nth-child(1){
    background-color: aliceblue;
    
  }
  .icon:nth-child(2){
    background-color: rgb(255, 254, 240);
  }

  .icon:nth-child(3){
    background-color: rgb(255, 240, 254);
  }

  .icon:nth-child(4){
    background-color: rgb(255, 246, 240);
  }
  

  
  
  .icon:nth-child(1) i {
    animation-delay: 0s; /* Delay the animation for the first icon */
  }
  
  .icon:nth-child(2) i {
    animation-delay: 0.2s; /* Delay the animation for the second icon */
  }
  
  .icon:nth-child(3) i {
    animation-delay: 0.5s; /* Delay the animation for the third icon */
  }

  @keyframes bounce {
    0% {
      transform: translateY(0); /* Initial position */
    }
    50% {
      transform: translateY(-10px); /* Bounce up position */
    }
    100% {
      transform: translateY(0); /* Back to initial position */
    }
  }
  
  .icon i {
    font-size: 30px; /* Adjust the size of the icons */
    margin-bottom: 10px; /* Add spacing between icon and label */
    color: #F9550E; /* Adjust the color of the icons */
    animation: bounce 2s infinite alternate;
    padding: 0 60px;
  }
  

  .icon:nth-child(1) i {
    animation-delay: 0s; /* Delay the animation for the first icon */
  }
  
  .icon:nth-child(2) i {
    animation-delay: 0.2s; /* Delay the animation for the second icon */
  }
  
  .icon:nth-child(3) i {
    animation-delay: 0.4s; /* Delay the animation for the third icon */
  }

  @keyframes bounce {
    0% {
      transform: translateY(0); /* Initial position */
    }
    50% {
      transform: translateY(-10px); /* Bounce up position */
    }
    100% {
      transform: translateY(0); /* Back to initial position */
    }
  }
  
  
  

  .label {
    font-size: 16px;
    text-align: center;
    color: #141414; /* Adjust the label color */
    
    width: 100%;
  }
  
  /* Media Query for Mobile */
  @media (max-width: 767px) {
    .services {
      display: block; /* Change to block layout for mobile */
      text-align: center; /* Center align the content */
      padding: 50px 20px; /* Adjust padding for mobile */
    }
  
    .services h2 {
      font-size: 20px; /* Adjust the heading font size for mobile */
      margin-bottom: 20px; /* Add spacing below the heading */
      
    }
  
    .services p {
      font-size: 18px; /* Adjust the heading font size for mobile */
     
    }
    .about-icons {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Use grid layout with automatic column fit */
      gap: 20px; /* Adjust the gap between icons */
      justify-content: center;
    }
  
    .icon {
      margin: 0; /* Remove margin to make use of grid gap */
    }
  }
  











/* Highlights Section Styles */
.highlights {
  background-image: url("../images/bg4.jpg");
  background-size: cover;
  background-position: center;
    display: flex;
    flex-direction: row; /* Set the direction to row */
    align-items: center;
    justify-content: space-between; /* Distribute space between items */
    padding: 80px 100px; /* Adjust padding as needed */
    
  }
  
  .highlight-text {
    flex: 1; /* Allow the text to take up available space */
    text-align: right;
    margin-left: 30px; /* Space between text and content */
  }
  
  .highlight-text h2 {
    font-size: 2em; /* Adjust font size as needed */
    margin-bottom: 50px;
    margin-top: 20px;
  }
  
  .highlight-text p {
    font-size: 18px; /* Adjust font size as needed */
    line-height: 1.5;
    margin-bottom: 0;
    color: #ac3908;
  }
  
  .highlight-content {
    flex: 2; /* Allow the content to take up more space */
    display: flex;
    flex-direction: row; /* Set the direction to row */
    gap: 20px; /* Space between rows */
    padding: 0 20px;
  }



  .highlight-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease; /* Smooth transition for the hover effect */
  }
  
  .highlight-row:hover {
    transform: translateY(-10px); /* Slightly bounce up on hover */
  }
  


  
  .highlight-row-one {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    flex: 1; /* Allow each row to take up equal space */
    background-image: url('../images/aaa.png'); /* Adjust the path to your image */
    background-size: cover; /* Ensure the background image covers the entire element */
    background-position: center; /* Center the background image */
    padding: 20px; /* Add padding inside the highlight row */
    border-radius: 10px; /* Optional: add border-radius for rounded corners */
    color: white; /* Ensure text color is visible on the background image */
    
  }

  .highlight-row-two {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    flex: 1; /* Allow each row to take up equal space */
    background-image: url('../images/Frame\ b.png'); /* Adjust the path to your image */
    background-size: cover; /* Ensure the background image covers the entire element */
    background-position: center; /* Center the background image */
    padding: 20px; 
    border-radius: 10px; 
    color: white; 
  }

  .highlight-row-three {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    flex: 1; /* Allow each row to take up equal space */
    background-image: url('../images/Frame\ c.png'); /* Adjust the path to your image */
    background-size: cover; /* Ensure the background image covers the entire element */
    background-position: center; /* Center the background image */
    padding: 20px; /* Add padding inside the highlight row */
    border-radius: 10px; /* Optional: add border-radius for rounded corners */
    color: white; /* Ensure text color is visible on the background image */
  }

  
  .highlight-row-content i {
    font-size: 3em; /* Adjust icon size as needed */
    color: #ffffff; /* Adjust icon color as needed */
    margin-bottom: 10px;
    
  }
  
  .highlight-row-content h3 {
    font-size: 1.5em; /* Adjust font size as needed */
    margin-top: 200px;
    font-weight: bold;
  }




/* Responsive Design for Highlights Section */
@media (max-width: 1024px) {
  /* For Tablets and Small Screens */
  .highlights {
    padding: 60px 50px; /* Adjust padding for smaller screens */
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center the items */
  }
  
  .highlight-text {
    text-align: center;
    margin-left: 0; /* Remove the left margin */
    margin-bottom: 40px; /* Adjust margin for spacing */
  }

  .highlight-text h2 {
    font-size: 1.8em; /* Adjust font size for smaller screens */
    
  }

  .highlight-text p {
    font-size: 1.1em; /* Adjust font size for smaller screens */
  }

  .highlight-content {
    display: flex; /* Keep display as flex */
    flex-direction: row; /* Keep flex row */
    gap: 20px; /* Space between rows */
    padding: 0;
  }

  .highlight-row {
    flex: 1;
    width: 100%; /* Ensure each row takes full width */
    margin-bottom: 20px; /* Add space between rows */
  }

  .highlight-row-one, .highlight-row-two, .highlight-row-three {
    background-size: cover; /* Ensure the background still covers */
    background-position: center;
    padding: 20px;
    border-radius: 10px;
    color: white;
  }

  .highlight-row-content i {
    font-size: 2.5em; /* Adjust icon size for smaller screens */
  }

  .highlight-row-content h3 {
    font-size: 1.2em; /* Adjust heading size for smaller screens */
    margin-top: 20px; /* Adjust margin to keep content visible */
  }
}

@media (max-width: 768px) {
  /* For Mobile Devices */
  .highlights {
    padding: 40px 20px; /* Further reduce padding for smaller screens */
  }
  
  .highlight-text h2 {
    font-size: 1.6em; /* Adjust font size for mobile */
  }

  .highlight-text p {
    font-size: 1em; /* Adjust font size for mobile */
  }

  .highlight-content {
    display: flex; /* Keep flex row */
    flex-direction: row; /* Keep flex row */
    gap: 15px;
    
  }

  .highlight-row {
    width: 100%; /* Ensure rows take full width */
    margin-bottom: 15px; /* Add space between rows */
    height: 250px;
  }

  .highlight-row-one, .highlight-row-two, .highlight-row-three {
    padding: 15px; /* Reduce padding */
  }

  .highlight-row-content i {
    font-size: 2em; /* Further reduce icon size */
  }

  .highlight-row-content h3 {
    font-size: 1em; /* Adjust heading size for mobile */
    margin-top: 100px;
  }
}



.features{
  padding: 50px 150px;
  background-color: antiquewhite;
}



.features-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}

.features-header h1 {
  flex: 1;
  font-size: 2.5rem;
  margin-right: 20px;
}

.features-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  text-align: left;
}

.features-info p {
  font-size: 1.3rem;
  color: #555;
  margin: 0;
}

.buttons {
  display: flex;
  gap: 10px;
}

.btn-primary {
  background-color: #ffffff;
  color: #F9550E;
  padding: 10px 20px;
  border: 2px solid #F9550E;
  border-radius: 0;
  cursor: pointer;
}

.btn-secondary {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  
}

.feature-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.05); /* Slightly enlarge the card */
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
  background-color: #f7f7f7; /* Light gray background on hover */
}


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

.feature-card h2 {
  font-size: 1.5rem;
  margin: 20px;
  color:  #ac3908;
  font-weight: bold;
  
}

.feature-card p {
  font-size: 1rem;
  margin: 20px;
  color: #555;
}




/* Base styles (for larger screens) remain unchanged */

/* Media Query for Mobile (max-width: 768px) */
@media (max-width: 768px) {
  
  .features{
    padding: 20px 10px;
    background-color: antiquewhite;
  }
  
  
  .features-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    width: 100%;
  }

  .features-header h1 {
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 2rem;
  }

  .features-info {
    text-align: left;
    width: 100%;
  }

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

  .buttons {
    flex-wrap: wrap;
    gap: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr; /* Stack cards vertically */
    gap: 20px;
  }

  .feature-card h2 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}

/* Media Query for Smaller Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .features-header h1 {
    font-size: 1.8rem;
  }

  .buttons button {
    width: 100%; /* Buttons span full width */
    text-align: center;
  }

  .features-info p {
    font-size: 0.9rem;
  }

  .features-grid {
    gap: 15px; /* Reduce gap between cards */
  }
}





/* Font Awesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');




/* Footer Styles */

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: white;
  padding: 50px 20px;
  text-align: center;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 10px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 18px;
  color: #ff9f43;
  margin-bottom: 10px;
}

.footer-links a, .footer-contact a {
  color: #ff9f43;
  text-decoration: none;
}

#contact-btn {
  background: #ff5500;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  transition: background 0.3s ease-in-out;
}

#contact-btn:hover {
  background: #d43f00;
}

/* Contact Form Popup */
.contact-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup Box */
.popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 350px;
  text-align: center;
  position: relative;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-in-out;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.popup-content h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

/* Submit Button */
.popup-content button {
  background: #ff5500;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
}

.popup-content button:hover {
  background: #d43f00;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

/* Hidden Class */
.hidden {
  display: none;
}

/* Loading Spinner */
#loading {
  text-align: center;
  margin-bottom: 10px;
  display: none;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #ff5500;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success & Error Messages */
#success-message, #error-message {
  font-size: 14px;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  margin-top: 10px;
  display: none;
}

#success-message {
  background: #4CAF50;
  color: white;
}

#error-message {
  background: #FF5555;
  color: white;
}

/* Responsive Footer for Mobile */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .footer-logo img {
        width: 120px; /* Smaller logo for mobile */
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 16px;
    }

    .footer-links ul {
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 6px;
    }

    .footer-contact p {
        font-size: 14px;
    }

    #contact-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}





