@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/fake-serif');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    

}

a {
    text-decoration: none;
    color: #fff;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    margin: auto;
   
    
}

.vision{
  
    background: url('Images/Hompage image 03.png') no-repeat center center/cover;
    color: #ffffff;
	  background-color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Hero section base styles */
.hero-section {
  color: #ffffff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100vw;
}

/* Slider container */
.slider {
  position: absolute;
  margin-top: 70px !important;
  top: 0;
  left: 0;
  width: 500%; /* Total width for 5 slides (4 original + 1 duplicate) */
  height: 100%;
  display: flex;
  animation: slideSideways 10s linear infinite;
}

/* Each slide */
.slide {
  width: 100vw; /* Each slide takes up the full viewport width */
  height: 100vh; /* Full viewport height */
  background-size: cover;
  background-position: center;
}

.slide1 {
  background-image: url('Images/Hompage image-01.png');
}

.slide2 {
  background-image: url('Images/Hompage image-02.png'); /* Path to your second image */
}

.slide3 {
  background-image: url('Images/Hompage image-03.png'); /* Path to your third image */
}

.slide4 {
  background-image: url('Images/Hompage image-04.png'); /* Path to your fourth image */
}

/* Sideways sliding animation */
@keyframes slideSideways {
  0% {
      transform: translateX(0);
  }
  20% {
      transform: translateX(-50vw); /* Shift to the second image */
  }
  40% {
      transform: translateX(-100vw); /* Shift to the third image */
  }
  60% {
      transform: translateX(-150vw); /* Shift to the fourth image */
  }
  80% {
      transform: translateX(-200vw); /* Shift to the duplicate first image */
  }
  100% {
      transform: translateX(-280vw); /* Loop back to the first image */
  }
}

/* Content styling */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}

.hero-cta {
  margin-top: 20px;
}

.btn.cta-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  color: #ffffff;
  background-color: #0071e3;
  margin: 0 10px;
}

.btn.cta-btn.secondary {
  background-color: #555;
}


/* Basic Navbar Styling */
/* Basic Navbar Styling */
.navbar {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  color: #fefefe;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #00182f; /* Optional: navbar background color */
}

/* Centered Logo for Desktop Only */
.navbar-brand.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Button Styling */
.cta-btn {
  color: #fff;
  background-color: #e63939;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
}

/* Navigation Links Styling */
.navbar-nav.nav-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.navbar a.active {
  color: #e63939 !important;
  
}

.navbar a:active {
  color: #e63939 !important;
}

/* Nav Links Styling */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #ffffff; /* Set default link color */
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #e63939;
  border-radius: 5px;
}



/* Mobile View (Small Screens) */
@media (max-width: 991px) {
  /* Stack nav links vertically in the collapse */
  .navbar-nav.nav-links {
      flex-direction: column;
  }

  /* Center logo inside the collapse for mobile view */
  .navbar-brand.logo {
      position: static;
      transform: none;
      display: block;
      margin: auto;
  }

  .hero-content h1 {
    font-size: 50px !important;
    margin-bottom: 20px;
    font-weight: bold;
    margin-left: 20px;
    

}

.hero-content p {
  font-size: 20px;


}
  

}

/* Additional styles as needed */



.hero-content {
    text-align: center;
  
}

.hero-content h1 {
  font-size: 75px;
  font-weight: bold;
}

.about-content {
  text-align: center;
  margin-top: 300px !important;
}
.about-content h1 {
  font-size: 100px;
  margin-bottom: 20px;
  font-weight: bold;

  margin-left: 20px;
}



.hero-content p {
    font-size: 30px;


}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Each section Image */
.about-section {
  background-image: url('Images/About-Page.png');
  width: 100vw; /* Each slide takes up the full viewport width */
  height: 100vh; /* Full viewport height */
  background-size: cover;
  background-position: center;
}


.service-section {
  background-image: url('Images/Service-Page.png');
  width: 100vw; /* Each slide takes up the full viewport width */
  height: 100vh; /* Full viewport height */
  background-size: cover;
  background-position: center;
}


.contact-section {
  background-image: url('Images/Contact-Page.png');
  width: 100vw; /* Each slide takes up the full viewport width */
  height: 100vh; /* Full viewport height */
  background-size: cover;
  background-position: center;
}




/* Footer */


  .footer {
    background-color: #040d1d; /* Assuming bg-dark is black */
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
  }
  
  .footer .container {
    max-width: 100%; /* Ensure the container spans the entire width */
    padding-left: 20px; /* Remove left padding */
    padding-right: 20px; /* Remove right padding */
  }
  
  .footer .row {
    margin-left: 0; /* Remove any left margin */
    margin-right: 0; /* Remove any right margin */
  }
  
  .footer img {
    max-width: 20%; /* Ensure the image is responsive */
    height: auto;
    padding-bottom: 10px;
  }
  
  .footer .col-md-6 {
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
  }
  
  .footer hr {
    border-color: #fff; /* Make sure the horizontal rule is visible */
  }
  
  .footer .list-inline {
    padding: 0;
    margin: 0;
  }
  
  .footer .list-inline-item {
    margin-right: 10px;
  }
  
  .footer .list-inline-item a {
    color: #fff; /* Ensure links are visible on dark background */
    text-decoration: none;
    
  }
  
  .footer .list-inline-item a:hover {
    color: #ae2828; /* Add a hover effect for the links */
  }



    
    .btn {
        display: inline-block;
        padding: 8px 16px;
        background-color: #ae2828 !important;
        color: #fff;
        text-decoration: none;
        border-radius: 5px !important;
        transition: background-color 0.3s ease;
    }
    
    .btn:hover {
        background-color: #6b6b6b !important;
        color: #eeeeee;
    }


.brand{
    color: #ffffff;
}


.main-about{
    padding-top: 100px;
    padding-bottom: 150px;
    background-color: #fffffff6;

       
  }

  @media only screen and (max-width: 767px) {

    .main-about{
      padding-top: 100px;
      padding-bottom: 50px;
         
    }



    }


.main-about h3 {
    text-align: left;
    padding-top: 20px;
    font-size: 25px;
    font-weight: bold;
    color: #ae2828;
      
}
    
       
.main-about p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555 !important;
    text-align: justify;
    
    
}    
  

.main-about ul.about-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between the items */
    padding-left: 0;
    list-style: none;
}

.main-about ul.about-points li {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.6;
    color: #051a54;
    margin-bottom: 5px !important; /* Adjust spacing between items */

    
}

.points{
  color: #333 !important;
}

.main-about ul.about-points li i {
    color:#ae2828; /* Yellow color for the icon */
    font-size: 20px; /* Adjust icon size if needed */
    margin-right: 10px; /* Space between the icon and text */
}

.main-about ul.about-points li span {
    color: #ffffff; /* Text color, not yellow as per the current design */
}


/* Media query for mobile */
@media only screen and (max-width: 767px) {

  .main-about ul.about-points li {

    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    width: 100%; /* Ensures two items per row */
    margin-bottom: 5px !important; /* Adjust spacing between items */
    
}

}

.why-choose-us{
  margin-top: 250px;
  margin-bottom: 50px;
}

.mission-image img {
  width: 100%; /* Full width to fit the column */
  height: auto;
  border-radius: 0px;
}

.mission-page {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  background-color: #070c1a !important;
  padding: 50px 0; /* Add padding for better spacing */
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),url('Images/Office.jpg'); /* Replace with your image path */
  background-size: cover; /* Scales the image to cover the entire section */
  background-position: center; /* Centers the image within the section */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  
}

.vision-title,
.mission-title {
  color: #ffffff !important;; /* Change the text color to white for better visibility */
  margin-bottom: 10px; /* Space below the title */
  font-weight: bold;
}

.vision-description,
.mission-description {
  color: #dbdbdb; /* Slightly lighter color for descriptions */
  font-size: 16px; /* Set a readable font size */
 
}

.service-button {
  padding: 0.5rem 1rem;
  background-color: #ae2828 !important;
  color: #fff;
  text-decoration: none;
  border-radius: 0px !important;
  margin-left: 1rem;
}


.choose{
    padding-top: 20px;
    color: #ffffff;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 0px;
  }

  @media only screen and (max-width: 767px) {

    .about-image img {
      margin-left: 15px;
      margin-top: 20px;
    }

    .about-title{
      text-align: center !important;
      padding-bottom: 50px;
      color: #ffffff;
      font-size: 20px !important;
    }

  }


  .about-title{
    text-align: center !important;
    padding-bottom: 10px;
    color:  #ae2828;
    font-size: 50px !important;
    font-weight: bold;
  }

  .title{
    text-align: left !important;
    color: #051a54 !important;
    padding-bottom: 10px;
    padding-top: 20px;
    font-size: 25px !important;
  }

.red-text{
    color: #ae2828;
    font-weight: bold;
}

.red-text1{
  color: #ae2828;
  font-weight: 900;
}

.service-title {
    text-align: center;
    padding-top: 10px;
    font-size: 40px;
    color: #051a54 !important;
    font-weight: bold;
    margin-top: 100px;
  }
  
  @media only screen and (max-width: 767px) {
    .choose {
      font-size: 25px;
    }

    .service-title {
      text-align: center;
      font-size: 25px;
      color: #000000;
      font-weight: bold;
    }
    

  }
  .services {
    padding: 20px;
    text-align: center;
    padding-bottom: 200px;
    background-color: #ffffff;
  }
  
  .flip-card {
    background-color: transparent;
    width: 300px;
    height: 250px;
    perspective: 1000px;
    margin: 10px; /* Spacing between cards */
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
  }
  
  .flip-card-front {
    background-color: transparent;
    color: black;
  }
  
  .flip-card-back {
    background-color: #000718; /* Dark background for contrast */
    color: white;
    transform: rotateY(180deg);
  }
  
  .flip-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .flip-card-back h3 {

    margin-top: 30px;
    margin-bottom: 30px;

  }
  
  /* Ensuring 4 columns on large screens */
  @media (min-width: 992px) {
    .services .row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    .services .col-lg-4 {
      flex: 0 0 25%; /* 4 columns in a row */
      max-width: 25%;
    }
  }
  
  #scrollBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ae2828; /* Change to your desired color */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: none; /* Initially hidden */
    z-index: 100; /* Ensures it appears above other elements */
}

#scrollBtn:hover {
    background-color: #da2f2f; /* Darker shade on hover */
}


.global{
  background-color: #000000f6;
  background-image: url("Images/technological-futuristic-holograms-logistics-means-transport.jpg");
  background-size: cover;
  
}

.global h3 {
  text-align: left;
  padding-top: 20px;
  font-size: 25px;
  font-weight: bold;
  color:#ffffff; 

}

 
.global p {
  font-size: 16px;
  line-height: 1.6;
  color: #cacaca;
  text-align: justify;


}


.global ul.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Space between the items */
  padding-left: 0;
  list-style: none;
}

.global ul.about-points li {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.6;
  color: #404040;
  width: 48%; /* Ensures two items per row */
    
}

.global ul.about-points li i {
  color: #f4a200 !important; /* Yellow color for the icon */
  font-size: 20px; /* Adjust icon size if needed */
  margin-right: 10px; /* Space between the icon and text */
}

.global ul.about-points li span {
  color: #404040; /* Text color, not yellow as per the current design */
}
.countries {

  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000000f6;

}

.country-container {
  display: flex !important; /* Use flexbox for horizontal layout */
  overflow-x: auto; /* Allow horizontal scrolling */
  padding-right: 150px !important; 
  gap: 20px; /* Space between cards */
  margin: 0; 
  width: 100%; /* Full width for scrolling */
  align-items: center !important;
  justify-content: center;
  
}

.country-card {
  flex: 0 0 auto; /* Prevent stretching */
  display: flex; /* Make it a flex container */
  flex-direction: column; /* Stack image and text vertically */
  align-items: center; /* Center items */
  text-align: center; 
  margin-left: 100px;
}

.country-card img {
  width: 50px; /* Fixed image size */
  height: auto; 
  border-radius: 50%; /* Circular images */
}

.country-card h1 {
  font-size: 16px; 
  margin-top: 10px; 
  color: #fff; 
  text-align: center; 
}


/* Media query for mobile */
@media only screen and (max-width: 767px) {

  .country-container {
    display: flex;
    justify-content: flex-start; /* Adjust alignment for scroll */
    align-items: center;
    gap: 20px; /* Keep the gap between cards on mobile */
    overflow-x: auto; /* Allow horizontal scrolling */
    margin: 0;
    width: 100%;
}

  .country-card {
      margin-right: 150px;
      margin-left: 150px; /* Ensure no extra margin on mobile */
      flex: 0 0 auto; /* Cards don't stretch */
  }

  .country-card img {
      width: 80px; /* Smaller image size on mobile */
      height: auto;
  }

  .range {
    font-size: 30px;
}

}

    /* Media query for mobile */
    @media only screen and (max-width: 767px) {
      .products {
          font-size: 30px; /* Adjust font size for mobile */
      }
  
      .card-container {
          overflow-x: auto; /* Enable horizontal scrolling on mobile */
          flex-wrap: nowrap; /* Prevent wrapping of cards */
          padding-bottom: 20px; /* Add some padding at the bottom */
          scroll-snap-type: x mandatory; /* Enable snap scrolling */
      }
  
      .card {
          scroll-snap-align: start; /* Snap alignment for cards */
          margin-right: 10px; /* Space between cards */
          width: 80vw; /* Width relative to viewport for mobile */

      }
  }
  
  

.card-container {
  display: flex; /* Flex container for cards */
  overflow-x: hidden; /* Hide overflow by default */
  padding-top: 40px; /* Space at the top */
}


.range {
  text-align: center;
  padding-top: 0 !important;
  padding-top: 50px !important;
  padding-bottom: 20px;
  font-size: 30px;
  font-weight: bold;
  color:#ffffff;
}


    
.contact-cards {
  padding-bottom: 10px;
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap; /* Allow the cards to wrap */
  justify-content: center; /* Center align cards horizontally */
  align-items: center; /* Optional: Center align cards vertically */
}


.custom-card {
  padding: 20px; /* Adjusted padding for a better card look */
  flex-basis: calc(30% - 30px); /* Adjusted to consider the total margin */
  border-radius: 10px; /* Slightly larger border radius for a softer look */
  overflow: hidden;
  text-align: center; /* Center align text */
  background-color: #002a5a !important; /* Background color for the card */
   /* Background color for the card */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1); /* Enhanced shadow effect */
  margin-bottom: 50px !important;
  margin: 10px; /* Margin around each card to ensure spacing */
}





.custom-card .icon {
  
  font-size: 48px;
  margin-top: 20px;
  color: #ffffff;
}
.custom-card .card-content {
  padding: 20px;
}
.custom-card .card-content h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: 600;
  color: #b83434;;
}
.custom-card .card-content p {
  font-size: 1em;
  color:#fff;
}

/* Media Queries */
@media (max-width: 768px) {
  .custom-card {
    flex-basis: calc(50% - 20px);
  }
}
@media (max-width: 576px) {
  .custom-card {
    flex-basis: 100%;
  }

  .carousel-img {
    flex: 1;
    max-width: 100% !important;
    height: 100% !important;
  }

  
}

.map {
  width: 100%;
  position: relative;
  padding-top: 1rem; /* Space for the heading */
}

.map iframe {
  width: 100%;
  height: 70vh; /* Adjust the height as needed */
  border: 0;
}

.map h1 {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 50px;
  font-size: 40px;
  font-weight: bold;
  color: #616161;
}

* {
  box-sizing: border-box;
}




.carousel {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  background-color: #ffffff;;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.carousel-text {
  flex: 1;
  padding: 77px;
  background-color:#262626!important;
  text-align: left;
  color: white;
}

/* Media query for a typical 23-inch full HD monitor */
@media only screen and (min-width: 1600px) and (max-width: 1920px) {
  /* Styles for 23-inch monitors */
  .carousel-text {
    flex: 1;
    padding: 122px;
    background-color:#000000;
    text-align: left;
    color: white;
  }
  
}


.carousel-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.carousel-text p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.carousel-text a.learn-more {
  text-decoration: none;
  padding: 0.25px 50px;
  background-color: #ae2828;
  color: white;

}

.carousel-image {
  flex: 1;
  max-width: 50%;
  height: auto;
}

.carousel-img {
  flex: 1;
  max-width: 50%;
  height: auto;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.dots {
  text-align: center;
  padding-bottom: 50px;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color:#ae2828;
}

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

  .carousel-text {
      padding: 10px;
      text-align: center;
  }

  .carousel-text h2 {
      font-size: 1.5rem;
  }

  .carousel-text p {
      font-size: 0.9rem;
  }

  .carousel-text a.learn-more {
      padding: 8px 16px;
      font-size: 0.9rem;
  }

  .carousel-image {
      max-width: 100%;
      height: auto;
  }
}

@media (max-width: 480px) {
  .carousel-text h2 {
      font-size: 1.3rem;
  }

  .carousel-text p {
      font-size: 0.85rem;
  }

  .carousel-text a.learn-more {
      font-size: 0.85rem;
  }
}


/* Responsive Styles */
@media (max-width: 768px) {
  .carousel-slide {
      flex: 1 0 33.33%; /* 3 cards per view on medium screens */
  }
}

@media (max-width: 480px) {
  .carousel-slide {
      flex: 2 0 100%; /* 2 cards per view on small screens */
  }
}

  /* Main container for the cards */
  .card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    

  }
  
  /* Individual card styles */
  .card {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 2 calc(20% - 50px); /* Flex-grow and flex-basis for equal width */
    text-align: center;
    box-sizing: border-box;
    padding-bottom: 20px;
    
  }
  
  .card img {
    width: 100%;
    max-width: 100% !important;
    height: auto;
    margin-bottom: 20px;

  }
  
  .card h2 {
    font-size: 24px;
    margin: 10px 0;
  }
  
  .card p {
    font-size: 16px;
    color: #555;
    margin: 10px 0;
    padding: 5px;
  }
  
  .button-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
  }
  
  .button {
    padding: 10px 20px;
    border: 1px solid #0071e3;
    border-radius: 20px;
    text-decoration: none;
    color: #0071e3;
    font-weight: bold;
  }
  
  .button.primary {
    background-color: #0071e3;
    color: white;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .card {
      flex: 1 1 100%; /* Full width on smaller screens */
    }
    .card img {
      max-width: 100%; /* Make images responsive */
    }
  }


  
.products {
  padding: 20px !important;
  text-align: center;
  

}

.hover-card {
  position: relative;
  width: 300px;
  height: 300px; /* Adjusted height */
  overflow: hidden;

  box-shadow: 0 4px 8px rgba(45, 47, 45, 0.2); /* Shadow effect */
}

@media only screen and (max-width: 767px) {

  
  .hover-card img {
    width: 100% !important;
    height: 100% !important;
  }

}

.hover-card img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.hover-card:hover img {
  transform: scale(1.1); /* Image zoom effect on hover */
}

.hover-card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(85, 27, 28, 0.457);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
}

.hover-card:hover .hover-card-content {
  opacity: 1;
}

.hover-card-content h3 {
  font-size: 20px; /* Adjust the size as needed */
  margin: 10px 0; /* Add margin for spacing */
  font-weight: bold;
  color: #ffffff !important; /* Adjust the color */
}

.hover-card-content p {
  font-size: 16px; /* Adjust the size as needed */
  margin: 0 10px; /* Add margin for spacing */
}

.product-title{
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 60px;
  font-size: 30px;
  font-weight: bold;
  color: #051a54 !important;
  width: 100%;
  position: relative;
}

  
  .blacktea-container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .blacktea-text h1 {
    text-align: left;
    padding-top: 20px;
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #ffffff;
  }
  
  @media only screen and (max-width: 767px) {
    .blacktea-text h1 {
        font-size: 25px;
        padding-top: 50px;
    }
  }
  
  .blacktea-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #7d7d7d;
    text-align: justify;
  }
  
  .brewtea-container {
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: linear-gradient(to bottom, rgba(75, 135, 65, 0.11), rgba(227, 235, 225, 0.007));
  }
  
  
  
  .brewtea-text h1 {
    text-align:lefet;
    padding-top: 20px;
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #ffffff;
  }
  
  
  @media only screen and (max-width: 767px) {
    .brewtea-text h1 {
      font-size: 25px;
      padding-top: 50px;
    }
  }
  
  .brewtea-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: justify;
    
  }
  
  
  .greentea-container{
    padding-top: 50px;
    padding-bottom: 50px;
  
  
  }
  
  .greentea-text h1 {
    text-align:lefet;
    padding-top: 20px;
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #ffffff;
  }
  
  @media only screen and (max-width: 767px) {
    .greentea-text h1 {
      font-size: 25px;
      padding-top: 50px;
    }
  }
  
  
  .greentea-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: justify;
  }
  
  
  .fruittea-container{
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: linear-gradient(to bottom, rgba(75, 135, 65, 0.11), rgba(227, 235, 225, 0.007));
  
  }
  
  .fruittea-text h1 {
    text-align:lefet;
    padding-top: 20px;
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #ffffff;
  }
  
  @media only screen and (max-width: 767px) {
    .fruittea-text h1 {
      font-size: 25px;
      padding-top: 50px;
    }
  }
  
  .fruittea-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: justify;
  }
  
  
.contact-cards {
  padding-bottom: 10px;
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap; /* Allow the cards to wrap */
  justify-content: center; /* Center align cards horizontally */
  align-items: center; /* Optional: Center align cards vertically */
}


.custom-card {
  padding: 20px; /* Adjusted padding for a better card look */
  flex-basis: calc(30% - 30px); /* Adjusted to consider the total margin */
  overflow: hidden;
  text-align: center; /* Center align text */
  background-color: #0d0d0d; /* Background color for the card */
   /* Background color for the card */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1); /* Enhanced shadow effect */

  margin: 10px; /* Margin around each card to ensure spacing */
}





.custom-card .icon {
  
  font-size: 48px;
  margin-top: 20px;
  color: #ffffff;
}
.custom-card .card-content {
  padding: 20px;
}
.custom-card .card-content h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: 600;
  color: #b83434;;
}
.custom-card .card-content p {
  font-size: 1em;
  color:#fff;
}

/* Media Queries */
@media (max-width: 768px) {
  .custom-card {
    flex-basis: calc(50% - 20px);
  }
}
@media (max-width: 576px) {
  .custom-card {
    flex-basis: 100%;
  }

  .carousel-img {
    flex: 1;
    max-width: 100% !important;
    height: 100% !important;
  }

  
}

.map {
  width: 100%;
  position: relative;
  padding-top: 1rem; /* Space for the heading */
}

.map iframe {
  width: 100%;
  height: 70vh; /* Adjust the height as needed */
  border: 0;
}

.map h1 {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 50px;
  font-size: 40px;
  font-weight: bold;
  color: #616161;
}

* {
  box-sizing: border-box;
}

/* Wrapper for cards */
.unique-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  background-color: #00005f1a;
  padding: 50px;

}

/* Card container */
.unique-container {
  width: 300px;
  perspective: 1000px;
}

/* Individual card styling */
.unique-card {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden; /* Ensure content doesn't overflow */
  background: #00005f1a; /* The blue part visible initially */
  transition: 0.5s ease-in-out;
}

/* Blue part of the card */
.unique-slide1 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2c73df;
  transition: transform 0.5s ease-in-out;
}

/* Content slide hidden initially */
.unique-slide2 {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Hidden initially */
  transform: translateY(100%); /* Move it down */
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* When hovering over the card, slide the content up */
.unique-card:hover .unique-slide2 {
  transform: translateY(0); /* Slide up */
  opacity: 1; /* Make it visible */
}

/* Icon styling */
.unique-icon {
  font-size: 80px;
  color: #fff;
}

/* Text content styling */
.unique-content h3, .unique-content p {
  margin: 0;
  text-align: center;
  color: #414141;
}

.unique-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Style for each link when active */
#home.active {
  color: red;
}

#about.active {
  color: red;
}

#service.active {
  color: red;
}

#contact.active {
  color: red;
}
