/* Basic styles for the homepage */
:root{
  --brand: #0dfd19;
}
body {
font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  background: white;
  color: #222;
  font-family: "Poppins", sans-serif;
}
        .navbar-brand img { border-radius: 4px; }
        header { background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); }
        .card-title { font-weight: 600; }
        .bg-primary { background-color: var(--brand) !important; }
        .btn-primary { background-color: var(--brand); border-color: var(--brand); }
      .navbar {
      background: #fff !important;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
    
        .nav-link {
        color: #333 !important;
        font-weight: 500;
        }
        .nav-link:hover {
        color: #28a745 !important;
        }

        .logo{
            width: 57px;
            height: 50px;}
            @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

.contact-section {
            padding: 80px 0;
            position: relative;
        }
        .contact-form-card {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 40px;
            z-index: 10; /* Higher z-index to be above the image */
            position: relative; /* Needed for z-index to work */
            margin-top: -100px; /* Adjust to position above the image */
        }
        .contact-text-section {
            padding-right: 50px;
        }
        .contact-text-section h1 {
            font-size: 3.5rem;
            font-weight: bold;
            color: #333;
        }
        .contact-text-section p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.6;
        }
        .form-label {
            font-weight: bold;
            color: #444;
        }
        .form-control {
            border-radius: 5px;
            border: 1px solid #ced4da;
            padding: 12px 15px;
        }
        .form-control::placeholder {
            color: #adb5bd;
        }
        .btn-submit {
            background-color: #28a745; /* A shade of green */
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            border: none;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .btn-submit:hover {
            background-color: #218838; /* Darker green on hover */
            color: white;
        }
        .background-image-container {
            position: relative;
            width: 100%;
            height: 400px; /* Adjust height as needed */
            overflow: hidden;
            margin-top: -100px; /* Overlap with the top content */
        }
        .background-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .contact-text-section {
                padding-right: 15px;
                margin-bottom: 40px;
                text-align: center;
            }
            .contact-text-section h1 {
                font-size: 2.8rem;
            }
            .contact-form-card {
                margin-top: 20px; /* Adjust margin for smaller screens */
                padding: 30px;
            }
            .background-image-container {
                height: 300px; /* Smaller height on smaller screens */
            }
        }

        @media screen and (max-width:500px) {
            .clam{
                background-color: red;
            }
        }

       
            @media screen and (max-width:500px) {
             .inqsection{
                flex-direction: column;
             }
            }
       