@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');


:root {
  --red: #ff0000; /* Pure red */
  /* Optional variations */
  --red-dark: #cc0000;
  --red-light: #ff4d4d;
}


/* Global Styles */
body {
    background-color: #121212;
    color: white;
    font-family: "Raleway", sans-serif;
    margin: 0;
    padding: 0;
}

/* Container for Form and Images */
.enquire-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 40px;
    position: relative;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

/* Left Side - Form Section */
.left-side {
    flex: 1;
    max-width: 550px; /* Slightly reduced for better alignment */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left-side h2 {
    font-size: 4rem; /* Adjusted for consistency */
}

.left-side p {
    margin-top: 10px;
    font-size: 25px; /* Slightly smaller for consistency */
}

.highlight {
    background-color: var(--red);
    padding: 4px 8px;
    border-radius: 5px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

input, textarea {
    margin: 8px 0;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #fff;
    background: transparent;
    color: white;
    font-size: 14px;
    width: 100%;
    outline: none;
}

textarea {
    border: 1px solid white;
    border-radius: 6px;
    min-height: 100px;
    resize: vertical;
    margin-bottom: 10px;
}

input::placeholder, textarea::placeholder {
    color: #888;
}

/* Services Button Grid */
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.services button {
    padding: 6px 12px;
    font-size: 13px;
    border: 1px solid #fff;
    background: transparent;
    color: white;
    border-radius: 18px;
    cursor: pointer;
    transition: 0.3s;
}


.services button.selected {
    background: var(--red);
    color: white;
    border-color: var(--red-light);
}

/* Submit Button */
.submit-btn {
    background-color: var(--red);
    color: white;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--red-light);
}

/* Right Side - Image Section */

.right-side {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    align-items: center;
    justify-items: center;
    position: relative;
}

.right-side img {
    width: 250px; /* Increase size as needed */
    height: 250px; /* Ensure aspect ratio is 1:1 */
    max-width: 100%;
    border-radius: 50%; /* Makes it a perfect circle */
    object-fit: cover;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15); /* Optional subtle shadow */
    border: 3px solid red;
}

/* Adjust individual images to match the reference */
.right-side img:nth-child(1) {
    transform: translateX(-100px); /* Moves slightly left */
}

.right-side img:nth-child(2) {
    transform: translateX(120px); /* Moves slightly right */
}

.right-side img:nth-child(3) {
    transform: translateX(-80px); /* Moves left again */
}






/* Responsive Design */
@media (max-width: 1024px) {
    .enquire-container {
        flex-direction: column;
        align-items: center;
        padding: 30px;
    }

    .left-side {
        max-width: 100%;
        text-align: center;
    }

    form {
        width: 90%;
        align-items: center;
    }

    input, textarea {
        width: 90%;
    }

    .services {
        justify-content: center;
    }

    /* ✅ FIX: Ensure Images Align in a Proper Row */
    .right-side {
    display: none;   
    }

    /* ✅ Adjust Headline Size for Better Readability */
    .left-side h2 {
        font-size: 3rem;
    }

    .left-side p{
        font-size: 24px;
    }
}



@media (max-width: 768px) {
    .enquire-container {
        padding: 20px;
    }

    .services {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services button {
        width: auto;
    }

    .right-side {
        display: none; /* Hides images only when necessary */
    }

    .submit-btn {
        width: 90%;
    }

    .left-side h2 {
        font-size: 2rem;
    }

    .left-side p{
        font-size: 18px;
    }
}




  .hero-container {
      min-height: 89vh; /* Better on mobile than 100vh */
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }


        /* For tablets and medium devices */
@media (max-width: 1024px) {
    .hero-container {
        min-height: 80vh;
    }
}

/* For small tablets and large phones */
@media (max-width: 768px) {
    .hero-container {
        min-height: 70vh;
    }
}

/* For smaller phones */
@media (max-width: 480px) {
    .hero-container {
        min-height: 60vh;
    }
}
        
        .background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background-image: url("/images/Contact\ us.jpg"); /* Replace with your actual image path */
            background-size: cover;
            background-position: center;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5); /* Optional overlay for better text readability */
            z-index: 2;
        }
        
        .hero-text {
            z-index: 3;
            position: relative;
            padding: 0 2rem;
            color: #f8f8f8;
        }
        
        .hero-text h1 {
            font-size: 3rem;
            color: #f8f8f8;
            font-weight: 400;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-text h2 {
            font-size: 2.5rem;
            font-weight: 400;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .red-text {
            color: #ff0000;
        }
        
        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-text h2 {
                font-size: 1.6rem;
            }
        }

      



        .loader {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-left: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
