

 .hero-section {
     position: relative;
     width: 100%;
     height: 100vh;
     background: url('/image/austin-distel-wawEfYdpkag-unsplash\ \(1\).jpg') no-repeat center center/cover;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
 }

 .hero-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     color: #fff;
 }

 .hero-content h1 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .hero-content p {
     font-size: 1.2rem;
     margin-bottom: 1.5rem;
 }

 .hero-content a {
     display: inline-block;
     padding: 0.75rem 1.5rem;
     font-size: 1rem;
     color: #fff;
     background-color:cover;
     text-decoration: none;
     border-radius: 5px;
     transition: background-color 0.3s ease;
 }

 .hero-content a:hover {
     background-color: #0056b3;
 }


 /* =================================our mission============================================*/
 .mission-container {
     display: flex;
     flex-wrap: wrap;
     max-width: 1500px;
     background: #fff;
     border-radius: 8px;
     margin-top: 30px;
     overflow: hidden;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 }

 .mission-image2{
     flex: 1 1 50%;
     background: url('/image/section\ nav\ 1.jpg') no-repeat center center/cover;
     min-height: 300px;
   
 }
  



 .mission-text {
     flex: 1 1 50%;
     padding: 40px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .mission-text h2 {
     font-size: 2rem;
     margin-bottom: 1rem;
     text-align: center;
     color: #007BFF;
 }

 .mission-text p {
     font-size: 1.2rem;
     line-height: 1.8;
     color: #555;
     transition: opacity 0.3s ease;
 }

 /*========================================= card section for home page===================== */

 .container {
     max-width: 1200px;
     margin: 0 auto;
     text-align: center;
     margin-top: 40px;
 }

 .heading {
     font-size: 2rem;
     margin-bottom: 2rem;
     color: white;
     background-color: black;
 }

 .cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
 }

 .card {
     perspective: 1000px;
 }

 .card-inner {
     position: relative;
     width: 100%;
     padding-top: 100%; /* Aspect ratio */
     transform-style: preserve-3d;
     transform: rotateY(0);
     transition: transform 0.6s ease;
     cursor: pointer;
 }

 .card:hover .card-inner {
     transform: rotateY(180deg);
 }

 .card-front, .card-back {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     backface-visibility: hidden;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     border-radius: 10px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     overflow: hidden;
 }

 .card-front {
     background-color: #fff;
 }

 .card-back {
     background-color: #007BFF;
     color: #fff;
     transform: rotateY(180deg);
 }

 .icon {
     font-size: 3rem;
     margin-bottom: 1rem;
     color: #007BFF;
 }

 .card-back .icon {
     color: #fff;
 }

 .title {
     font-size: 1.2rem;
     font-weight: bold;
     margin-bottom: 0.5rem;
 }

 .description {
     font-size: 0.9rem;
     color: #555;
     text-align: center;
     padding: 0 10px;
 }
 /* ===============================================why choose us ========================*/
 .container12 {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
  }

  h1 {
    text-align: center;
    
    margin-bottom: 20px;
  }

  #main-heading {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    background-color: black;
  }

  .reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }

  .reason {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .reason:hover {
    transform: translateY(-10px);
  }

  .reason h3 {
    margin-top: 10px;
    color: #222;
  }

  .reason p {
    margin: 10px 0;
    color: #666;
  }

   /* ===================================testimonials=============================*/
   .testimonial-container {
     max-width: 1500px;
     background-color:#888 ;
     margin: 0 auto;
     text-align: center;
     margin-top: 50px;
   }
   
   .section-title {
     font-size: 2.5em;
     color: #210202;
     margin-bottom: 20px;
   
   }
   
   .testimonial-slider {
     display: flex;
     overflow: hidden;
     position: relative;
   }
   
   .testimonial-card {
     min-width: 100%;
     transition: transform 0.5s ease-in-out;
     padding: 20px;
     background-color: #fff;
     border-radius: 10px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     margin: 10px;
   }
   
   .testimonial-text {
     font-size: 1.1em;
     color: #555;
     margin-bottom: 20px;
     text-align: left;
   }
   
  
   
   

   /* ======================footer================*/
   /* Footer Styles */
   .footer {
    
     background-color: #13384f82;
     color: black;
     margin-top: 50px;
     padding: 10px 2% ;

   
    
 }

 .footer .container {
    
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     gap: 20px;
    
 }

 .footer .column {
     flex: 1;
     min-width: 200px;
 }

 .footer .column h4 {
     font-size: 1.2em;
     margin-bottom: 20px;
     color: rgb(197, 20, 20);
     text-align: justify;
 }

 .footer .column ul {
     list-style: none;
     text-align: start;
     padding: 0;
 }

 .footer .column ul li {
     margin: 8px ;
    margin-top: 15px;
     
 }

 .footer .column ul li a {
     text-decoration: none;
     color: black;
     transition: color 0.3s;
    
 }

 .footer .column ul li a:hover {
     color: #ffdd57;
 }

 .footer .contact p {
     margin: 5px 0;
 }

 .footer .contact a {
     text-decoration: none;
     color: #ffffff;
     transition: color 0.3s;
 }

 .footer .contact a:hover {
     color: #ffdd57;
 }

 .footer .social-icons a {
     margin-right: 10px;
     color: #ffffff;
     text-decoration: none;
     font-size: 18px;
 }


 /* =========================== WHY CHOOSE US ========*/
 
 
/*===================================contact page css for heading ============*/
.contact-section {
     max-width: 1200px;
     margin: 0 auto;
     text-align: center;
     margin-top: 40px;
   }

   .contact-section h2 {
     font-size: 2rem;
     margin-bottom: 20px;
     margin-top: 110px;
     color: #1c1c1c;
   }

   .contact-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-top: 20px;
   }

   .contact-card {
     background: #fff;
     padding: 20px;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     text-align: center;
     transition: transform 0.3s ease;
   }

   .contact-card:hover {
     transform: translateY(-5px);
   }

   .contact-card i {
     font-size: 2rem;
     color: #1c5ed9;
     margin-bottom: 10px;
   }

   .contact-card h3 {
     font-size: 1.2rem;
     margin-bottom: 5px;
     color: #333;
   }

   .contact-card p {
     font-size: 1rem;
     color: #666;
   }

   .contact-card a {
     text-decoration: none;
     color: #1c5ed9;
     font-weight: bold;
   }
   /*==========================================contact forum========================================= */
   .container5 {
     display: flex;
     flex-wrap: wrap;
     width: 90%;
     max-width: 1200px;
     gap: 20px;
     margin: 20px auto;
 }

 .map-container {
     flex: 1;
     min-width: 300px;
     height: 400px;
 }

 iframe {
     width: 100%;
     height: 100%;
     border: none;
 }

 .form-container {
     flex: 1;
     min-width: 300px;
     background: #fff;
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

 .form-container h2 {
     margin-bottom: 20px;
 }

 .form-container input, .form-container textarea {
     width: 100%;
     padding: 10px;
     margin-bottom: 15px;
     border: 1px solid #ccc;
     border-radius: 4px;
 }

 .form-container button {
     width: 100%;
     padding: 10px;
     background: linear-gradient(to right, #2f8f83, #56c07a);
     border: none;
     color: white;
     font-size: 16px;
     border-radius: 4px;
     cursor: pointer;
 }

 .form-container button:hover {
     background: linear-gradient(to right, #56c07a, #2f8f83);
 }


/*===============================================Company Registration=================*/


.container9 {
    max-width: auto;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 100px;
    max-height: max-content;
}

.text-content9 {
    flex: 1;
   
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: black;
}





.container9 ul li::before {
    content: "";
    color: green;
    margin-right: 10px;
    font-size: 18px;
}

.image-content {
    flex: 1;
    text-align: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Style the ordered list */
ol.drink-list {
    margin-top: 30px;
    list-style-type: decimal; /* Default numbering style */
    padding-left: 20px; /* Adds indentation for the list */
    font-family: Arial, sans-serif; /* Sets font */
    font-size: 16px; /* Adjust font size */
    color: #333; /* Text color */
  }
  
  /* Style the list items */
  ol.drink-list li {
    margin-bottom: 10px; /* Adds space between items */
    font-weight: bold; /* Makes the text bold */
    color: black; /* Slightly lighter color for list items */
    line-height: 1.5; /* Spacing between lines */
  }
  
/*----=================consultant button ======================*/
.button-container {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(20, 141, 193, 0.735);
    width: 200px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.button-container9 a {
    text-decoration: none;
    color: #961e1e;
    font-size: 2.5em;
    font-weight: bold;
    display: inline-block;
    align-items: center;
    
   
}
.button-container:active {
    background-color: #2ebed1c0;
}
.button-container a:hover {
    color: #db1068;
   
}




.container8 h2{
    margin: auto;
}






/*==========================================about page====================================== */

.container3 {
    
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;
    margin-top: 50px;
}
.image-section {
    flex: -1;
    min-width: 100px;
    padding: 10px;

}
.image-section img {
    width:auto;
    height: auto;
    border-radius: 1px;
}
.text-section {
    flex: 1;
    min-width: 100px;
    padding: 10px;
   

 
}
.text-section h1 {
    
    color: white;
    text-align: center;
    font-size: 3.5rem;
    background-color: #1c1c1c;
    margin-top: -150px;
}
.text-section p {
    color: #555;
    margin-top: 15px;
    font-size: 1.5em;
}



/* =================================our Team=========================================*/
.container4 {
    margin: 0 auto;
    padding: 20px;
    margin-top: 50px;
  }

  #ram {
    text-align: center;
    color: #efe4e4;
    margin-bottom: 20px;
    background-color: black;
  }

  .team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    
  }

  .team-member {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
    text-align: center;
  }

  .team-member h3 {
    margin: 10px 0;
    font-size: 1.25em;
    color: #222;
  }

  .team-member p {
    color: #555;
    font-size: 1em;
    margin: 5px 0;
  }






 @media (max-width: 768px) {
     .hero-content h1 {
         font-size: 2rem;
     }

     .hero-content p {
         font-size: 1rem;
     }

     .hero-content a {
         padding: 0.5rem 1rem;
         font-size: 0.9rem;
     }
     .mission-container {
          flex-direction: column;
      }

      .mission-image, .mission-text {
          flex: 1 1 100%;
      }
      
      /* =================================card section======================================== */
      .heading {
          font-size: 1.5rem;
      }
      .description {
          font-size: 0.8rem;
      }
      /* ===============================================why choose us ========================*/
      .why-choose-us h1 {
          font-size: 1.5em;
        }
        /*==================== testimonials===================*/
        .testimonial-container {
          padding: 20px;
        }
      
        .testimonial-text {
          font-size: 1em;
        }
      
        .author-name {
          font-size: 1em;
        }
      
        .author-position {
          font-size: 0.8em;
        }
         /* ======================footer================*/
         .footer .container {
          flex-direction: column;
          align-items: flex-start;
      }

      .footer .column {
          min-width: 100%;
      }

      iframe {
          height: 200px;
      }
      /* contact page */
      .contact-card i {
          font-size: 1.5rem;
        }
  
        .contact-card h3 {
          font-size: 1rem;
        }
  
        .contact-card p {
          font-size: 0.9rem;
        }
           /*==========================================contact forum========================================= */
           .container5 {
               flex-direction: column;
           }
           /*================================ company registration ============*/
           .container9 {
            flex-direction: column;
            text-align: center;
        }

        h2 {
            font-size: 20px;
        }
        h1 {
            font-size: 20px;
            
    }
    .button-container{
flex-direction: column;
text-align: center;
    }  
    
    
    /*  WHY CHOOSE US */
    h1 {
        font-size: 1.5rem;
      }

      .reason {
        padding: 15px;
      }
         
 }

 @media (max-width: 480px) {
     .hero-content h1 {
         font-size: 1.5rem;
     }

     .hero-content p {
         font-size: 0.9rem;
     }
     .mission-text h2 {
          font-size: 1.5rem;
      }

      .mission-text p {
          font-size: 1rem;
      }
      /* =============card section=====================*/
      .icon {
          font-size: 2.5rem;
      }
      .why-choose-us h1 {
          font-size: 1.5em;
        }
 /* ======================footer================*/
 iframe {
     height: 150px;
 }
 
     }




















     