/* Custom styles */
body {
    font-family: Arial, sans-serif;
    padding: 0;
    margin: 0;
  }
  
  h1,
  h2 {
    color: #0c0b0b;
  }
 
  
  .navbar-brand img {
    height: 40px;
  }
  
  .card {
    margin-bottom: 20px;
  }
  

/* Main sectio made by me *here*/


.split-section {
  /* height: 100vh; */
  display: flex;
  flex-direction: column; /* Ensure vertical stacking */
  width: 100%;
}
.top-half, .bottom-half {
  display: flex; /* Flexbox layout */
  align-items: flex-start; /* Align items to the start */
  height: auto; /* Each half of the section */}

.top-half {
  background-color: #ffffff; /* White background */
  color: #000; /* Black text */
  display: flex;
  align-items: flex-start; /* Align items to the start */
  justify-content: flex-start; /* Align content to the start */
  height: 45%; /* Top half of the section */
  padding: 10px;
  width: 100%; 
 
  
 
}
.bottom-half {
  background-color: #001f3f; /* Metallic blue background */
  color: white;
  display: flex;
  align-items: flex-start; /* Align items to the start */
  justify-content: flex-start;
  height: 45%; /* Bottom half of the section */
  padding-left: 30px;
  padding-top: 30px;

 
}

/* new css start here */
.split-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  width: 100%;
}
.split-content .content {
  flex: 1;
  text-align: left;
  padding: 40px 60px;
}

.split-content .right-image {
  flex: 1;
  text-align: center;
  position: relative

}
.split-content img {
  width: auto; 
  height: auto; 
  position: relative; 
 
   right: 15%;

}

h1.fw-bold {
  font-weight: bold;
  font-size: 2rem;
}

.split-content p {
  font-size: 2rem;
}
/* new css end here  */

.split-content h1 {
  font-size: 5rem;
 
}

.split-content h2 {
  font-size: 2rem;
  transition: color 0.3s ease; 
  color: #ffffff;

}

.split-content p {
  font-size: 1rem;
  color: grey;
  transition: color 0.3s ease; 
 
}
.split-content h2:hover {
  color: #cc4883; /* Change to a gold color on hover */
}
.split-content p:hover {
  color: red; /* Change to a gold color on hover */
}


/* bottom blue css */
.split-content1 {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  gap: 10px; /* Optional: Adds space between paragraphs */
  padding: 10px; /* Optional: Add padding around the content */
  margin-left: 40px;
}

h2 {
  margin-bottom: 10px; /* Space between heading and first paragraph */
}

 
.split-content1 h1 {
  font-size: 5rem;
 
}

.split-content1 h2 {
  font-size: 2rem;
  transition: color 0.3s ease; 
  color: #ffffff;

}

.split-content1 p {
  font-size: 1rem;

  transition: color 0.3s ease; 
 
}
.split-content1 h2:hover {
  color: #cc4883; /* Change to a gold color on hover */
}
.split-content1 p:hover {
  color: red; /* Change to a gold color on hover */
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
.top-half,
.bottom-half {
    padding: 10px; /* Reduce padding for smaller screens */
    height: auto; /* Allow height to adjust based on content */
}

.split-content {
    display: flex; /* Ensure split-content uses flex */
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center align on small screens */
    width: 100%; /* Full width for split-content */
}

.content,
.right-image {
    width: 100%; /* Full width for each section */
    text-align: center; /* Center text */
    margin: 0; /* Reset margin */
}

.content h1 {
    font-size: 35px; /* Adjust heading size for mobile */
    margin: 10px 0; /* Add margin for spacing */
}

.content p {
    font-size: 16px; /* Adjust paragraph size for mobile */
    margin: 5px 0; /* Margin for spacing */
}

/* Adjust image styles */
.split-content img {
    width: 100%; /* Make the image responsive */
    max-height: 300px; /* Optional: limit max height */
    height: auto; /* Maintain aspect ratio */
    margin: auto auto; /* Center the image */
    object-fit: cover; /* Maintain aspect ratio while filling space */
    margin-left: 10px;
}

.split-content1 {
    display: flex; /* Use flexbox */
    flex-direction: column; /* Stack vertically */
    align-items: center; /* Center align text */
    width: 100%; /* Full width */
   /* Padding for spacing */
}

.split-content1 h2 {
    margin-bottom: 10px; /* Space below the heading */
}

.split-content1 p {
    text-align: center; /* Center text */
    margin: 5px 0; /* Margin for spacing */
}
}

/* card after main */
.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

.card-img-top {
  height: 200px; /* Adjust height of the image */
  object-fit: cover; /* Ensure image covers the entire card */
  transition: transform 0.3s ease;
}
.card:hover .card-img-top {
  transform: scale(1.1); /* Scale the image on hover */
}

@media (max-width: 768px) {
  .card-title {
    font-size: 1rem; /* Smaller title text on mobile */
  }

  .card-img-top {
    height: 150px; /* Adjust image height on mobile */
  }
}


/* product 1 css */
.bg-image01 {
  background-image: url('img/golden-bokeh-glitter-deep-blue-ethereal-space.jpg'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
 
  height: auto; /* Set a maximum height */

}
.content01 {
  padding-top: 50px;

  color: white; /* Text color */
}
.image-section01 {
  padding: 20px; /* Padding for the image section */
  padding-left: 40px;
 
}
.black {
  color: black; /* Custom class for black text */

}
.img-fluid{
  height: 20%;
  
}
.content01 p {
  padding: 10px;
  text-align: center; /* Center text */

  font-size: 1.3rem;
}
@media (max-width: 576px) {
  .bg-image01 {
      height: auto;
      
  }
  .content01 p {
    padding: 5px;
    font-size: 0.8rem;
    /* Add space between paragraphs */
  }
  .image-section01 {
    padding: 5px;
   
   
  }
  .content01 {
  padding: 10px;
  
   
  }
 
}



/* product css 2 */
.bg-image02 {
  margin-top: 30px;
  background-image: url('img/otc3.jpg');
  background-size: cover;
  background-position: center;
  height: auto;

}

.image-section02 {
  padding: 20px;
 
  height: 100%; /* Make sure the image section takes full height */
}

.img-fluid1 {
  padding: 20px;

  
max-width: 80%;
max-height: 80%;
  
}

.black {
  color: #000000; /* Custom class for black text */
}
.content02 { 
  padding: 80px;
 

  color: #ffffff;   /* Text color */
}
.content02 p {
  padding: 10px;
  text-align: center; /* Center text */

  font-size: 1.3rem;
}
.content02 h1 {
  padding: 10px;
  text-align: center; /* Center text */

  font-size: 3rem;
}

@media (max-width: 576px) {
  .bg-image02 {
      height: auto;
      
  }
  .content02 p {
    padding: 5px;
    font-size: 1rem;
    /* Add space between paragraphs */
  }
  .content02 h1 {
    padding: 5px;
    font-size: 1.2rem;
    /* Add space between paragraphs */
  }
  .content02 {
  padding: 10px;
  }
  .image-section02 {
   
    height: 100%; /
  }
  
  .img-fluid1 {
    
  max-width: 100%;
  max-height: 100%;
    
  }
  
 
}

/* Product 3 */
.bg-image03 {
  margin-top: 30px;
  background-image: url('img/abstract-backdrop-multi-colored-striped.jpg');
  background-size: cover;
  background-position: center;
  height: auto;

}

.image-section03 {
  padding: 60px; /* Adjust padding for the image section */
  display: flex;
  gap: 30px; /* Space between images */
}

.img-fluid2 {
  max-width: 50%; /* Ensure images fit within the row */
  height: auto;
}

.black {
  color: #000000; /* Custom class for black text */
}
.content03 { 
  padding: 80px;
 

  color: #ffffff;   /* Text color */
}
.content03 p {
  padding: 10px;
  text-align: center; /* Center text */

  font-size: 1.3rem;
}
.content03 h1 {
  padding: 10px;
  text-align: center; /* Center text */

  font-size: 3rem;
}

@media (max-width: 576px) {
  .bg-image03 {
      height: auto;
      
  }
  .content03 p {
    padding: 5px;
    font-size: 0.8rem;
   
  }
  .content03 h1 {
    padding: 5px;
    font-size: 1rem;
    
  }
  .content03 {
  padding: 10px;
  }
  .image-section03 {
   
    height: 100%; /
  }
  
  .img-fluid2 {
    
  max-width: 100%;
  max-height: 100%;
    
  }
  
 
}

/* product 4 */

.bg-image04 {
  margin-top: 30px;
  background-image: url('img/otc3.jpg');
  background-size: cover;
  background-position: center;
  height: auto;

}

.image-section04 {
  padding: 10px;
 
  height: 100%; /* Make sure the image section takes full height */
}

.img-fluid3 {
  padding: 20px;

  
max-width: 80%;
max-height: 100%;
  
}

.black {
  color: #000000; /* Custom class for black text */
}
.content04 { 
  padding: 80px;
 

  color: #ffffff;   /* Text color */
}
.content04 p {
  padding: 10px;
  text-align: center; /* Center text */

  font-size: 1.3rem;
}
.content04 h1 {
  padding: 10px;
  text-align: center; /* Center text */

  font-size: 3rem;
}

@media (max-width: 576px) {
  .bg-image04 {
      height: auto;
      
  }
  .content04 p {
    padding: 5px;
    font-size: 1rem;
    /* Add space between paragraphs */
  }
  .content04 h1 {
    padding: 5px;
    font-size: 1.2rem;
    /* Add space between paragraphs */
  }
  .content04 {
  padding: 10px;
  padding-top: 20px;
  }
  .image-section04 {
   
    height: 100%; /
  }
  
  .img-fluid3 {
    
  max-width: 100%;
  max-height: 100%;
    
  }
  
 
}


/* Product 5 */
.bg-image05 {
  margin-top: 30px;
  background-image: url('img/peerless-image.jpg'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
 
  height: auto; /* Set a maximum height */

}
.content05 {
  padding-top: 80px;

  color: white; /* Text color */
}
.image-section05 {
  padding: 10px; /* Padding for the image section */

 
}
.black {
  color: black; /* Custom class for black text */

}
.img-fluid4{
  padding: 20px;
  height: 100%;
  
}
.content05 p {
  padding: 10px;
  text-align: center; /* Center text */

  font-size: 1.3rem;
}
.content05 h1 {
  padding: 10px;
  text-align: center; /* Center text */

  font-size: 2.5rem;
}
@media (max-width: 576px) {
  .bg-image05 {
      height: auto;
      
  }
  .content05 p {
    padding: 5px;
    font-size: 0.8rem;
    /* Add space between paragraphs */
  }
  .image-section05 {
    padding: 5px;
   
   
  }
  .content05 {
  padding: 10px;
  
   
  }
  .img-fluid4 {
    
    max-width: 100%;
    max-height: 100%;
      
    }
    .content05 p {
      padding: 10px;
      text-align: center; /* Center text */
    
      font-size: 1rem;
    }
    .content05 h1 {
      padding: 10px;
      text-align: center; /* Center text */
    
      font-size: 1.5rem;
    }
 
}

/* Product 6 */
.bg-image06 {
  margin-top: 30px;
  background-image: url('img/otc3.jpg');
  background-size: cover;
  background-position: center;
  height: auto;

}

.image-section06 {
  padding: 10px;
 
  height: 100%; /* Make sure the image section takes full height */
}

.img-fluid5 {
  padding: 20px;

  
max-width: 80%;
max-height: 100%;
  
}

.black {
  color: #000000; /* Custom class for black text */
}
.content06 { 
  padding: 80px;
 

  color: #ffffff;   /* Text color */
}
.content06 p {
  padding: 10px;
  text-align: center; /* Center text */

  font-size: 1.3rem;
}
.content06 h1 {
  padding: 10px;
  text-align: center; /* Center text */

  font-size: 3rem;
}

@media (max-width: 576px) {
  .bg-image06 {
      height: auto;
      
  }
  .content06 p {
    padding: 5px;
    font-size: 1rem;
    /* Add space between paragraphs */
  }
  .content06 h1 {
    padding: 5px;
    font-size: 1.2rem;
    /* Add space between paragraphs */
  }
  .content06 {
  padding: 10px;
  padding-top: 20px;
  }
  .image-section06 {
   
    height: 100%; /
  }
  
  .img-fluid5 {
    
  max-width: 100%;
  max-height: 100%;
    
  }
  
 
}
  /* downnload realted*/
.download-related h1 {
  text-align: center;
  font-size: 3em;
  padding: 20px 0;
}

.pdf-file {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  align-items: center;
  background-color: #08dce3;
  padding: 20px 0;
}

/* download button media querry */

.download-related {
  padding: 20px; 
  text-align: center; 
}

.pdf-file {
  margin-bottom: 20px; /* Add some space between each file section */
}

.pdf-file span {
  display: block; /* Make the span a block element */
  font-weight: bold; /* Bold font for the file name */
  margin-bottom: 5px; /* Space between file name and title */
}

.pdf-file h4 {
  margin: 5px 0; /* Margin for spacing */
}

/* Media query for devices with a max width of 768px (tablets and smaller) */
@media (max-width: 768px) {
  .download-related {
      text-align: center; /* Align text to the left for better readability on mobile */
  }

  .pdf-file {
      display: flex; /* Use flexbox for layout */
      flex-direction: column; /* Stack items vertically */
      align-items: center; /* Align items to the start (left) */
      margin: 10px 0; /* Adjust margin for spacing */
      border: 1px solid #ccc; /* Optional: Add a border for better separation */
      padding: 10px; /* Add padding inside each file box */
      border-radius: 5px; /* Add rounded corners */
      background-color: #08dce3; /* Optional: Background color */
  }

  .pdf-file span,
  .pdf-file h4,
  .pdf-file p {
      margin: 0; /* Remove default margins */
      width: 100%; /* Ensure full width for each element */
      text-align: left; /* Align text to the left */
  }

  .pdf-file p {
      margin-top: 5px; /* Space between file info and download link */
  }

  .pdf-file a {
      display: flex; /* Make the link display as a flex container */
      align-items: center; /* Center icon and text vertically */
      margin-top: 10px; /* Space above the download link */
  }

}



  



.container12{
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  
  max-width: 800px; /* Adjusted for better fit */
  margin-left: auto;
  margin-right: auto;
}

 


/* Custom styles for the form */
#userForm .form-group input {
  border: 2px solid #ced4da; /* Thicker border */
  border-radius: 5px; /* Rounded corners */
  padding: 15px; /* Padding for input fields */
  width: 100%; /* Full width */
  height: 45px; /* Standard height for all inputs */
  box-sizing: border-box; /* Include padding and border in total width and height */
  font-size: 16px; /* Set the text size for input fields */
}

/* Placeholder styles for all input fields in the form */
#userForm .form-group input::placeholder {
  font-size: 16px; /* Adjust the font size of the placeholder */
  color: #999999; /* Placeholder text color */
  opacity: 1; /* Ensure full opacity */
}








/* contact section */


.contact-section111 {
  height: 60vh;  
  background-color: #0A2740; /* Dark blue */
  color: white;
  text-align: center;
  padding: 80px 20px;
  margin-top: 30px;
}
.contact-section111 h1 {
  font-size: 3rem;
  font-weight: bold;
}
.contact-section111 p {
  font-size: 1.25rem;
  margin-top: 10px;
}
.contact-section111 .btn {
  margin-top: 20px;
  padding: 10px 30px;
  font-size: 1.2rem;
  border-radius: 30px;
}
@media (max-width: 576px) {
  .contact-section111 {
    height: auto;  
   
  }
  .contact-section111 h1{
    size: 2rem;
  }
}



/* Footer CSS */
body {
  font-family: Arial, sans-serif;
}
footer {
  background-color: #0d1e31;
  color: #ffffff;
  padding: 40px 0;
  margin-top: 40px;
}
footer a {
  color: #ffffff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
.footer-logo {
  display: block;
  margin: 0 auto;
  width: 150px; /* Adjust as needed */
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.social-icons i {
  font-size: 1.5rem;
  margin-right: 10px;
}
.social-icons a {
  color: #a8b2c1;
}
.social-icons a:hover {
  color: #fff;
}
.back-to-top {
  text-align: center;
  margin-top: 20px;
}
.back-to-top a {
  color: #a8b2c1;
  text-decoration: none;
}
.back-to-top a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2a3a4d;
  color: #a8b2c1;
  font-size: 1rem;
}

/* download and contact section */





.modal-dialog {
  max-width: 800px; /* Adjust width */
  }
  .modal-content {
  min-height: 500px; /* Adjust height */
  }
  
  
  /* Custom Modal Styles */
  .modal-dialog {
  max-width: 800px;
  }
  
  .modal-content {
  min-height: 500px;
  background: linear-gradient(to bottom, #f9f9f9, #e0e0e0); /* Gradient background */
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  }
  
  .modal-header {
  background-color: #07457e; /* Header background */
  color: white; /* Header text color */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
  }
  
  .modal-body {
  padding: 20px;
  }
  
  .modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  }
  
  form {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Form shadow */
  }
  
  .form-control {
  border-radius: 5px;
  border: 1px solid #ddd; /* Light border */
  padding: 10px;
  }
  
  label {
  font-weight: bold;
  margin-bottom: 5px;
  }
  
  .btn-primary {
  background-color: #07457e; /* Primary button color */
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  }
  
  .btn-primary:hover {
  background-color: #0056b3; /* Darker blue on hover */
  }
  
  
  /* by id */
  
  /* Custom Modal Styling */
  #formModal .modal-content {
    border: 2px solid #07457e;
    border-radius: 10px;
    padding: 20px;
    background-color: #f8f9fa; /* Light background */
  }
  
  /* Input Field Styling */
  #formModal input[type="text"],
  #formModal input[type="email"] {
    border: 2px solid #000000; /* Blue border */
    border-radius: 5px;
    padding: 10px;
    font-size: 16px; /* Increased font size */
  }
  
  /* Label Styling */
  #formModal label {
    font-weight: bold;
    color: #333; /* Darker text */
  }
  
  /* Button Styling */
  #formModal .btn-primary {
    width: 250px;
    background-color: #07457e;
    border-color: #007bff;
    font-size: 18px; /* Larger text */
    font-weight: bold;
  }
  
  #formModal .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  
  /* Modal Header Centering */
  #formModal .modal-header {
    text-align: center;
  }
  
  #formModal .modal-header h5 {
    margin: 0 auto;
    font-size: 24px; /* Larger header */
    color: #ffffff;
  }
  /* Adjust the height of the input field */
  #formModal input {
  border: 2px solid #007bff;
  border-radius: 5px;
  padding: 10px 15px; /* Reduce padding for a more compact look */
  font-size: 16px; /* Font size for text */
  height: 40px; /* Set a consistent height for the input field */
  }
  
  /* Placeholder Text Styling */
  #formModal input::placeholder {
  font-size: 16px; /* Ensure font size matches */
  color: #6c757d; /* Subtle gray color */
  font-weight: 400; /* Adjust font weight if needed */
  line-height: 40px; /* Vertically center placeholder text */
  }
  
  /* Conatact form */
  
  /* Input focus effect */
  .form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
  }
  
  /* Button hover effect */
  .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: scale(1.05);
  }
  
  /* Smooth transitions for the form elements */
  .form-control {
    transition: all 0.3s ease;
  }
  
