



.card {
    overflow: hidden;
    /* Optional: to remove card borders */
}

.card img {
object-fit: contain; /* Ensures the entire image fits inside the card */
max-height: 100%; /* Prevents image overflow vertically */
padding: 5px; /* Adds some space between the image and the card edges */
}

.card-custom {
overflow: hidden;
min-height: 150px;
box-shadow: 0 0 5px #7c7777 ;

}

.card-custom:hover{
    box-shadow: 0 0 15px #2e2d2d ;
}

li{
    display:flexbox;
}


@media (max-width: 576px) {
.card img {
    max-height: 200px; /* Limits height for better mobile layout */
}
}

/* Add a red border to the input fields */
/* Add a red border to the input fields */
.form-control.red-border {
    border: 1px solid darkred;
    border-radius: 4px;
    padding: 10px;
  }
  
  /* Optional: Change border color when the input field is focused */
  .form-control.red-border:focus {
    border-color: darkred;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
  }
  
  /* Adjust icon placement inside the input fields */
  .form-group .form-control {
    padding-left: 35px; /* Adjust left padding to make space for the icon */
  }
  
  /* Ensure the icon is positioned correctly */
  .position-absolute {
    position: absolute;
    top: 50%; /* Position it at the vertical center */
    left: 10px; /* Adjust left position as per your layout */
    transform: translateY(-50%); /* Center the icon vertically */
  }
  
  /* Optional: Style for the icon (color, size) */
  .form-group i {
    color: #5b5e61; /* Icon color */
    font-size: 18px; /* Icon size */
  }
  
  /* Custom styling for the input fields */
  .red-border {
    border: 2px solid red;
    border-radius: 4px;
  }
  
  /* Focus state for inputs */
  .form-control:focus {
    border-color: darkred;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
  }
  
  //* Center the modal vertically and horizontally with a normal width */
  .modal-dialog {
    position: absolute;
    top: 30%;  /* Adjusted for better vertical placement */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Only horizontal centering */
    margin: 0; /* Ensure no extra margin */
    width: 80%; /* Default width for larger screens */
    max-width: 600px; /* Optional: max width for large screens */
  }
  
  /* For small screens (mobile), improve responsiveness */
  @media (max-width: 768px) {
    .modal-dialog {
      top: 30%; /* Center vertically on mobile */
      transform: translate(-50%, -50%); /* Center both vertically and horizontally */
      width: 90%; /* Make the modal a bit wider on mobile */
      max-width: 500px; /* Optional: max width for mobile */
    }
  }

  .custom-border {
    border-color: #7a150e !important;
 
    /* Replace with your desired color */
  }
 
     .form-wrap {
         position: relative;
         z-index: 10;
     }
 
     .overlay {
         position: absolute;
         width: 100%;
         height: 100%;
         top: 0;
         left: 0;
         
         pointer-events: none;
     }
 
     .primary-btn {
         background-color: #7a150e;
         color: white;
         border: none;
         padding: 12px;
         border-radius: 5px;
         cursor: pointer;
     }
 
     .primary-btn:hover {
         background-color: #590e0a;
     }

     /* Row spacing reduced */
    .image-slider {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        margin: 10px 0; /* Reduced margin for less space between rows */
      }
    

      h4 ,h1{
        
      font-family: 'Times New Roman', Times, serif;
      color: #0a0642da;;
      }
      /* Track styling */
      .image-track {
        display: flex;
        gap: 10px; /* Reduced gap between images */
        flex-wrap: nowrap;
        width: 100%;
        justify-content: center;
      }
    
      /* Image styling for smaller size */
      .image-track img {
        width: 120px; /* Reduced width */
        height: 80px; /* Reduced height */
        object-fit: contain;
        border-radius: 8px;
        transition: transform 0.3s;
      }
    
      /* Hover effect */
      .image-track img:hover {
        transform: scale(1.1);
      }
    
      /* Responsive design for smaller screens */
      @media (max-width: 768px) {
        .image-track img {
          width: 100px; /* Adjusted for smaller screens */
          height: 70px;
        }
      }
    
      @media (max-width: 480px) {
        .image-track img {
          width: 90px; /* Further adjustment for very small screens */
          height: 60px;
        }
      }
    
      /* Scroll left animation */
      @keyframes scrollLeft {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-20%);
        }
      }
    
      /* Scroll right animation */
      @keyframes scrollRight {
        0% {
          transform: translateX(-20%);
        }
        100% {
          transform: translateX(0);
        }
      }
    
      /* Row-specific animations */
      .row-1 .image-track {
        animation: scrollLeft 10s linear infinite;
      }
    
      .row-2 .image-track {
        animation: scrollRight 10s linear infinite;
      }
    
      .row-3 .image-track {
        animation: scrollLeft 10s linear infinite;
      }
    
      .row-4 .image-track {
        animation: scrollRight 10s linear infinite;
      }

      .card:hover{
        color: aliceblue;
        color: #7a150e;
}

@media (max-width: 768px) {
    .section-gap .title h1 {
        font-size: 1.8rem;
    }
    .section-gap h4 {
        font-size: 1.2rem;
    }
}

p, li {
    color: black;
}
hr {
    border: 1px solid #7a150e;
}

.circle-container {
    width: 300px;
    height: 300px;
    position: relative;
    margin: 50px auto;
    border-radius: 50%;
    overflow: hidden;
  }

  .circle-images {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateCircle 10s infinite linear;
  }

  .circle-images img {
    position: absolute;
    width: 50px; /* Adjust image size */
    height: 50px; /* Adjust image size */
    top: 50%;
    left: 50%;
    transform-origin: center center;
    transform: translate(-50%, -50%);
  }

  /* Keyframes for circular movement */
  @keyframes rotateCircle {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  /* Positioning images in a circular path */
  .circle-images img:nth-child(1) {
    transform: translate(-50%, -50%) rotate(calc(0deg)) translateX(120px);
  }
  .circle-images img:nth-child(2) {
    transform: translate(-50%, -50%) rotate(calc(360deg / 11 * 1)) translateX(120px);
  }
  .circle-images img:nth-child(3) {
    transform: translate(-50%, -50%) rotate(calc(360deg / 11 * 2)) translateX(120px);
  }
  .circle-images img:nth-child(4) {
    transform: translate(-50%, -50%) rotate(calc(360deg / 11 * 3)) translateX(120px);
  }
  .circle-images img:nth-child(5) {
    transform: translate(-50%, -50%) rotate(calc(360deg / 11 * 4)) translateX(120px);
  }
  .circle-images img:nth-child(6) {
    transform: translate(-50%, -50%) rotate(calc(360deg / 11 * 5)) translateX(120px);
  }
  .circle-images img:nth-child(7) {
    transform: translate(-50%, -50%) rotate(calc(360deg / 11 * 6)) translateX(120px);
  }
  .circle-images img:nth-child(8) {
    transform: translate(-50%, -50%) rotate(calc(360deg / 11 * 7)) translateX(120px);
  }
  .circle-images img:nth-child(9) {
    transform: translate(-50%, -50%) rotate(calc(360deg / 11 * 8)) translateX(120px);
  }
  .circle-images img:nth-child(10) {
    transform: translate(-50%, -50%) rotate(calc(360deg / 11 * 9)) translateX(120px);
  }
  .circle-images img:nth-child(11) {
    transform: translate(-50%, -50%) rotate(calc(360deg / 11 * 10)) translateX(120px);
  }

  #img-fluid {
      position: absolute;
      top: 37px; /* Adjust to move image vertically */
      left: 45%;
      transform: translateX(-50%);
      width: 150px; /* Adjust image size */
      z-index: 10; /* Ensure it appears above the circle */
      height: 65%;
      width: 65%;
    }

    h5{
        background-color: #7a150e;
        color: white;
        padding: 10px;
        margin-top: 10px;
    }
    .align-end {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .icon-color{
        color: red;
    }

    h5{
        background-color: #7a150e;  
        color: white;
        padding: 10px;
        margin-top: 10px;
    }
    .align-end {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .icon-color{
        color: red;
    }

     /* For the container holding the buttons */
  .fixed-buttons-container {
    position: relative;
  }

  /* Fixed position at the bottom for the container */
  .fixed-buttons-container .container-fluid {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 100%;
    padding: 10px;
    background-color:white;
  }

  /* Flexbox layout to display buttons horizontally */
  .fixed-buttons-container .container-fluid .row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  /* For each button, ensure equal space and padding */
  .fixed-buttons-container .container-fluid .col-4 {
    flex: 1;
    padding: 0;
    margin: 0 5px;
  }

  /* Adjust button icon size */
  .btn i {
    font-size: 18px;
    margin-right: 10px;
  }

  /* Ensure buttons have full width in their column */
  .fixed-buttons-container .container-fluid .col-4 .btn {
    width: 100%;
    padding: 12px 20px; /* Adjust button padding */
    box-sizing: border-box;
  }

  /* Mobile View: Keep buttons horizontal, just adjust sizes */
  @media (max-width: 768px) {
    .fixed-buttons-container .container-fluid .row {
      flex-wrap: nowrap; /* Ensure buttons stay horizontal */
      justify-content: space-evenly; /* Space buttons evenly */
    }

    .fixed-buttons-container .container-fluid .col-4 {
      flex: 1; /* Keep equal width for buttons on mobile */
      margin: 0 5px;
    }

    /* Adjust button size for mobile */
    .fixed-buttons-container .container-fluid .col-4 .btn {
      padding: 10px 15px;
    }
  }

  @keyframes blinkingEffect {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .blinking-text {
    animation: blinkingEffect 1s infinite; /* 1s duration and infinite loop */
    font-weight: 900;
    font-size: larger;
  }
  
  @media (max-width: 768px) {
    .blinking-text {
      font-size: medium; /* Adjust the font size for mobile */
    }
  }
  
  @media (max-width: 576px) {
    .blinking-text {
      font-size: small; /* Further adjust for very small devices */
    }
  }
  
  /* Keyframes for the blinking effect */
  @keyframes blinkingEffect {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
    header {
    border: none;         /* kisi bhi border ko remove kare */
    box-shadow: none;     /* agar shadow hai to remove kare */
}
.header-top, .main-menu {
    border: none;
    box-shadow: none;
}
