.main-section {
    position: relative;
    height: 1000px; /* Increased the height of the section */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack elements vertically */
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the section */
    position: absolute; /* Position the background image behind other content */
    top: 0;
    left: 0;
}

.top-left-img {
    position: absolute;
    top: 20px; /* Distance from the top */
    left: 20px; /* Distance from the left */
    width: 200px; /* Adjust width of the image as needed */
    height: auto; /* Maintain aspect ratio */
    z-index: 2; /* Ensure the logo is above the background */
}

/* Increased the height of the heading box */
.heading-container {
    position: absolute;
    bottom: 0; /* Start at the bottom of the image */
    left: 0; /* Ensure the container starts from the left edge */
    background-color: rgba(0, 0, 0, 0.7); /* Dark rectangle */
    padding: 30px; /* Increased padding */
    width: 60%; /* Increased width of the heading container */
    text-align: center;
    animation: popup 1.5s ease-out forwards; /* Slightly slower animation */
    z-index: 1;
}

/* Increased the font size of the heading */
.heading {
    color: #00CCFF;
    font-size: 48px; /* Larger font size */
    font-weight: 800; /* Increased font weight */
    text-transform: uppercase;
    margin: 0;
    font-family: 'Montserrat', sans-serif; /* Set font to Montserrat */
}

/* Button styling */
.extra-button-class {
    background-color: #00CCFF; /* Black background */
    color: #ffffff; /* White text */
    border-radius: 50px; /* Oval shape */
    padding: 15px 40px; /* Increased padding for a larger button */
    border: none; /* Remove border */
    position: absolute; /* Position the button absolutely */
    top: -450px; /* Move the button to the top of the image */
    left: 50%;
    transform: translateX(-50%); /* Center the button horizontally */
    z-index: 2; /* Ensure button appears above the background image */
}

.extra-button-class:hover {
    background-color: #333333; /* Darker background on hover */
    color: #ffffff; /* Keep text white on hover */
}

/* Popup animation for the heading */
@keyframes popup {
    0% {
        bottom: 0; /* Start at the bottom of the image */
    }
    100% {
        bottom: 20%; /* Adjusted animation end position */
    }
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .main-section {
        height: 600px; /* Decreased section height for mobile */
    }

    .heading-container {
        width: 80%; /* Increased width for mobile */
        padding: 20px; /* Adjusted padding */
    }

    .heading {
        font-size: 20px; /* Smaller font for mobile */
        line-height: 1.3; /* Improved readability */
    }

    .btn.btn-primary {
        font-size: 18px; /* Slightly larger font for mobile */
        padding: 12px 35px; /* Adjust button size for mobile */
        top: -200px; /* Adjusted to move the button to the top */
        left: 50%;
        transform: translateX(-50%); /* Center the button horizontally */
    }
	.top-left-img { 
		left:-30px;
	}
}
	
	
	
	.about .about-col .icon {
    width: 64px;
    height: 64px;
    padding-top: 8px;
    text-align: center;
    position: absolute;
    background-color: #00CCFF;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #fff;
    left: calc( 50% - 32px);
    bottom: -30px;
    transition: 0.3s;
}
	
	.about .about-col:hover .icon span {
    color: #00CCFF; /* Change the letter color to #00CCFF on hover */
}
	
	




	
 
	
#contact {
    background: white; /* Soft gradient background */
    padding: 60px 0; /* Added padding to create some space around the section */
	font-family: Arial, sans-serif;
    color: black;
}
	
	
	


.text-container {
    padding: 30px;
    /* Remove the white background and box shadow here */
    margin-bottom: 40px; /* Increased the bottom margin to space out the text section from the form */
}

.modal-body {
    background-color: #ffffff; /* White background applied to the form */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Added box shadow to form */
    padding: 30px;
}

.modal-title {
    color: #000000; /* Changed to black */
}

.form-control {
    color: #323232;
    border: none;
    border-radius: 0;
    background: #e7e6e6;
}

.form-control:focus {
    border: none;
    box-shadow: none;
    outline: none;
    background: #FFFFFF;
    color: #323232;
}

.btn {
    color: #ffffff;
    background: #00CCFF;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
}

.btn:hover {
    color: #00CCFF;
    background: #333333;
}

.submit-condition {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 400;
    color: black;
}

.text-container h3:first-of-type {
    font-size: 28px;
    color: #333333;
    margin-bottom: 15px;
}

.text-container p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.text-container h3 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 20px;
}

/* Contact Information List */
.list-unstyled {
    padding-left: 0;
    margin-bottom: 0;
}

.list-unstyled .media {
    margin-bottom: 20px;
}

.list-unstyled .media i {
    font-size: 18px;
    color: #dd4952;
    margin-right: 10px;
}

.list-unstyled .media-body {
    font-size: 16px;
    color: #555555;
}

/* Links Styling */
a.light-gray {
    color: #a7a7a7;
    text-decoration: none;
}

a.light-gray:hover {
    color: #dd4952;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #contact .row {
        flex-direction: column;
    }

    .text-container,
    .modal-body {
        padding: 20px;
    }

    .form-control-sm {
        font-size: 13px;
    }

    .btn-primary {
        font-size: 14px;
        padding: 8px 15px;
    }

    .submit-condition {
        font-size: 10px;
    }
	
	
	
	.list-unstyled .media .media-body {
        display: block;  /* This forces the phone numbers to stack vertically */
    }

    .list-unstyled .media .media-body i {
        display: block;  /* Ensures the icons also stack vertically */
        margin-bottom: 5px; /* Add spacing between the numbers */
    }
}
				


	