
/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Styling for the Section */
section.py-5 {
    background-color: #fff; /* Blue background */
    color: #fff; /* White text color */
    padding-top: none;
    padding-bottom: none; /* Extra padding at the bottom */
}

section.py-5 .container {
    max-width: 1200px; /* Set max width for large screens */
    margin: 0 auto; /* Center the container */
    padding-left: 15px;
    padding-right: 15px;
}

section.py-5 .container h2 {
    font-size: 1rem;
    font-weight: 700;
    color: #0e0b0b; /* White color for the heading */
    margin-bottom: 20px;
    text-align: center;
}

section.py-5 p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f0f0f0; /* Lighter grey color for the paragraph */
    text-align: center;
    margin-bottom: 10px;
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    section.py-5 h2 {
        font-size: 1.8rem; /* Smaller heading font size on smaller screens */
    }

    section.py-5 p {
        font-size: 1rem; /* Adjust text size */
    }
}

/* Form Styling */
form {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin-top: -50px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

h6 {
    font-size: 1em;
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 1em;
    color: #333;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    color: #333;
    background-color: #f9f9f9;
}

input:focus, select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.6);
}

button {
    background-color: #3498db;
    color: white;
    padding: 14px;
    font-size: 1.2em;
    width: 100%;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}
/* Responsiveness */
@media (max-width: 768px) {
    form {
        padding: 20px;
        width: 90%;
    }

    section.py-5 {
        padding-top: 10px; /* Reduced padding for smaller screens */
        padding-bottom: 10px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    h1 {
        font-size: 2rem; /* Smaller heading font size */
    }

    label, input, select, button {
        font-size: 0.9rem; /* Adjust form input sizes */
    }
}

      /* Styling for the navbar */
      .navbar {
        background-color: #ffffff;
        padding: 10px 20px;
        color: rgb(0, 0, 0);
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
      }

      .navbar a {
        text-decoration: none;
        color: rgb(0, 0, 0);
        font-size: 24px;
        font-weight: bold;
      }

      .navbar .logo {
        display: flex;
        align-items: center;
      }

      .navbar .logo img {
        width: 40px;
        height: 40px;
        margin-right: 10px;
      }

      .menu {
        display: flex;
      }

      .menu a {
        margin-left: 20px;
      }

      /* Hamburger menu */
      .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        width: 30px;
        height: 30px;
        justify-content: space-between;
        align-items: center;
      }

      .hamburger div {
        background-color: white;
        width: 25px;
        height: 3px;
        border-radius: 5px;
      }

      /* Mobile menu styles */
      .menu-items {
        display: flex;
      }

      .menu-items a {
        display: block;
        text-align: center;
        margin-top: 10px;
        color: white;
        font-size: 20px;
      }

      .menu-items.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #333;
        width: 150px;
        padding: 10px;
        border-radius: 8px;
      }

      /* Responsive design for small screens */
      @media screen and (max-width: 768px) {
        .menu {
          display: none;
        }

        .hamburger {
          display: flex;
        }

        .menu-items {
          display: none;
        }
      }


      /* scrollingh */
      .carousel-container {
        width: 100%;
        height: 250px; /* 5 item × 60px */
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        background: white;
        padding: 20px;
      }
    
      .carouseltext {
        position: relative;
      }
    
      .item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
        height: 60px;
        box-sizing: border-box;
      }
    
      .icon {
        font-size: 20px;
        color: green;
        margin-top: 4px;
      }
    
      .text-area .name {
        font-weight: bold;
        color: #333;
      }
    
      .text-area .status {
        font-size: 14px;
        color: #666;
      }

      .footer {
        background-color: #f5f5f5;
        padding: 15px 0;
        text-align: center;
        color: #555;
        font-size: 14px;
        border-top: 1px solid #ddd;
      }
      
      .footer-content p {
        margin: 4px 0;
      }

      #spinner-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.7);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
      }
      
      #spinner-overlay.show {
        display: flex;
      }
      
      #spinner {
        border: 8px solid #f3f3f3;
        border-top: 8px solid #3498db;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: spin 1s linear infinite;
      }
      
      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }

      #thankYouSlide {
        background: linear-gradient(135deg, #e0f7fa, #ffffff);
        padding: 60px 20px;
        border-radius: 20px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        animation: fadeIn 1s ease-in-out;
        transition: all 0.5s ease-in-out;
        margin-top: -50px;
      }
      
      #thankYouSlide h1 {
        font-size: 2.5rem;
        color: #00796b;
        margin-bottom: 20px;
      }
      
      #thankYouSlide p {
        font-size: 1.2rem;
        color: #333;
      }
      
      #thankYouSlide strong {
        color: #00796b;
        font-weight: bold;
      }
      
      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }


      .custom-thanks-spinner {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      
      .spinner-circle {
        width: 50px;
        height: 50px;
        border: 6px solid #38a169;
        border-top: 6px solid transparent;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
      }
      
      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }
      
      
      
    
      
