/* Import TT Norms Pro Regular */
@font-face {
    font-family: 'TT Norms Pro';
    src: url('fonts/TT Norms Pro Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Import TT Norms Pro Bold */
@font-face {
    font-family: 'TT Norms Pro';
    src: url('fonts/TT Norms Pro Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* Additional font weights and styles */
@font-face {
    font-family: 'TT Norms Pro';
    src: url('fonts/TT Norms Pro Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'TT Norms Pro';
    src: url('fonts/TT Norms Pro Bold Italic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}
}
body {
    font-family: 'TT Norms Pro', Arial, sans-serif; /* Fallback to Arial if font fails to load */
}

/* Example for headings */
h1, h2, h3 {
    font-family: 'TT Norms Pro', Arial, sans-serif;
    font-weight: bold; /* Use the bold version */
}

/* Example for italic text */
.italic-text {
    font-family: 'TT Norms Pro', Arial, sans-serif;
    font-style: italic;
}
html {
    scroll-behavior: smooth;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    padding: 20px 180px; /* Adjust padding to align with header-container */
    background-color: #fff; /* Background color for the navbar */
	  display: flex;
    justify-content: space-between; /* Space between logo and menu items */
    align-items: center;
    padding: 10px 20px;

    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure the navbar stays on top */
}

     .navbar-menu {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
       
			 margin-left: auto; /* Push the menu to the right */
        }

        /* Menu item styling */
        .navbar-menu li {
            margin-left: 20px; /* Space between menu items */
        }

        /* Link styling */
        .menu-item {
            text-decoration: none !important;
            color: #fff; /* White text color for contrast */
            font-weight: bold;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
		
		.navbar-menu li a {
    text-decoration: none;
 
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
   
}

/* Hover effect for the menu item */
.navbar-menu li a:hover {
  
}

/* Header Container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 60px; /* Padding only on the left */
    padding-top: 60px;
    padding-bottom: 60px;
    max-width: 1200px;
    margin-left: 120px;
    position: relative;
}

/* Left Content Styling */
.header-left {
    width: 50%;
    padding-right: 20px;
	margin-top: 50px;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
 
	    margin-left: 160px;
}

h1 {
    font-size: 4.7em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000;
}

h2 {
  
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000;
}

p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #333;
}

.cta-button {
    display: inline-block;
    padding: 25px 40px;
    background-color: #ED1E82;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
	font-size:25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #D9166D;
}

/* Right Image Styling */
.header-right {
    width: 30%;
    margin-left: auto;
    margin-top: 30px; /* Add top margin */
}

.header-right img {

    height: auto;
    display: block;
    object-fit: cover;
}

/* Ensure Image Stretches to Right Edge */
.header-container {
    padding-right: 0;  /* No padding on the right */
}

.header-right {
    position: absolute;
    top: 30px;  /* Adjusted for top margin */
    right: 0;
    width: 35%;
    height: calc(100% - 30px);  /* Adjust height for top margin */
    z-index: -1;
}

.header-right img {
  
    height: 100%;
    object-fit: cover;
    position: relative;
}

/* Amenities Section */
.amenities-section {
    background-color: #e5faff;
    padding: 50px 20px;
    text-align: center;
    margin: 100px auto; /* Adds top margin and centers the section */
    border-radius: 20px; /* Adds rounded corners */
    max-width: 80%; /* Ensures the section does not stretch too wide */
}

.amenities-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: bold;
    color: #333;
}

.amenities-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-item {
    text-align: center;
    flex: 1;
    margin: 0 10px;
}

.amenity-item img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.amenity-item p {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
	.navbar-menu{
		display:none;
	}
	.logo{
		margin-left:0px;
	}
	
	/* Navbar Styling */
.navbar {
  margin:0 auto;
    padding: 20px 120px;
    background-color: #fff; /* Background color for the navbar */

}

    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;s
    color: #333;
    overflow-x: hidden;
}

/* Header Container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 60px; /* Padding only on the left */
    padding-top: 60px;
    padding-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Left Content Styling */
.header-left {
    width: 50%;
    padding-right: 20px;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000;
}

p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #333;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ED1E82;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #D9166D;
}

/* Right Image Styling */
.header-right {
    width: 50%;
    margin-left: auto;
    margin-top: 30px; /* Add top margin */
}

.header-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Ensure Image Stretches to Right Edge */
.header-container {
    padding-right: 0;  /* No padding on the right */
}

.header-right {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden; /* Ensures the image does not overflow the rounded corners */
    border-radius: 15px; /* Apply rounded corners to the container */
}

.header-right img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    border-radius: inherit; /* Inherits the rounded corners from the container */
    display: block;
}



/* Amenities Section */
.amenities-section {
    background-color: #E6F1F1;
    padding: 50px 20px;
    text-align: center;
    margin: 100px auto; /* Adds top margin and centers the section */
    border-radius: 20px; /* Adds rounded corners */
    max-width: 80%; /* Ensures the section does not stretch too wide */
}

.amenities-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: bold;
    color: #333;

}

.amenities-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-item {
    text-align: center;
    flex: 1;
    margin: 0 10px;
}

.amenity-item img {
    width: 130px;
    height: auto;
    margin-bottom: 15px;
}

.amenity-item p {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
		            margin-top: 50px;
    }

    .header-left, .header-right {
        width: 100%;
        padding: 0;
    }

    h1 {
        font-size: 2.2em;
    }

    .header-right img {
        margin-top: 20px;
        width: 100%; /* Ensure full width on mobile */
    }

    .amenities-container {
        flex-direction: column;
    }

    .amenity-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
      font-size: 3em !important;
    }

    p {
        font-size: 1em;
    }

    .cta-button {
        padding: 12px 25px;
    }

    .amenities-container {
        flex-direction: column;
    }

    .amenity-item {
        margin-bottom: 20px;
    }
}

    .header-left, .header-right {
        width: 100%;
        padding: 0;
    }

    h1 {
        font-size: 2.2em;
    }

    .header-right img {
        margin-top: 20px;
        width: 100%; /* Ensure full width on mobile */
    }

    .amenities-container {
        flex-direction: column;
    }

    .amenity-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }

    .cta-button {
        padding: 12px 25px;
    }

    .amenities-container {
        flex-direction: column;
    }

    .amenity-item {
        margin-bottom: 20px;
    }
}

//* Why Relocate Section */
.why-relocate-text h1 {
    font-size: 3em; /* Same as A PLACE TO BELONG */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000;
}

.why-relocate-text h2 {
    font-size: 1.5em; /* Same as A PLACE TO BELONG */
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000;
}

.why-relocate-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    position: relative;
}

.why-relocate-container {
 
    align-items: center;
    max-width: 1200px;
    position: relative;
}

.why-relocate-image {
   flex: 1;
    margin-right: -50px; /* Negative margin to overlap with the text */
    position: relative;
    z-index: 1; /* Lower z-index so that text box appears above */
}

.why-relocate-image img {
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    max-width: 800px;
    position: relative;
    z-index: 2; /* Ensure the image is above the text box */
}

.why-relocate-text {
    flex: 1;
    padding: 70px;
    background-color: #e5faff; /* Light background color */
    border-radius: 15px;
    text-align: left;
    position: relative;
    z-index: 1; /* Ensure the text is below the image */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-left: -50px; /* Negative margin to overlap with the image */
}

.why-relocate-text p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #333;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ED1E82;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #D9166D;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    /* Why Relocate Section */
    .why-relocate-text h1, .testimonial-cta h1 {
        font-size: 2.2em; /* Match the font size */
        margin-bottom: 20px; /* Adjust spacing */
        line-height: 1.2; /* Line height for readability */
        color: #000; /* Ensure the color matches */
    }

    .why-relocate-text h2 {
        font-size: 1.2em; /* Match font size */
        margin-bottom: 20px; /* Adjust spacing */
        line-height: 1.2; /* Line height for readability */
        color: #000; /* Ensure the color matches */
    }

    .why-relocate-text {
        padding: 20px; /* Reduce padding for mobile */
        text-align: center; /* Center align the text */

        margin: 0 auto; /* Center the container */
    }
	
	 .why-relocate-container {
        padding: 0 20px; /* Add padding to prevent overflow */
    }

    .why-relocate-image img {
        display:none;
    }
}



/* Testimonial Section */
.testimonial-section {
    background-color: #e5faff;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw; /* Ensure the section takes the full viewport width */
    margin-left: calc(-50vw + 50%); /* Extend the section to the full width of the viewport */
    position: relative;
}

/* Testimonial Container */
.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Make boxes less wide */
    gap: 20px;
    flex: 1;
    margin-left: 20px; /* Adjust this to move the container closer to the left edge */
}

/* Testimonial Card Styling */
.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* CTA (Right Text) Styling */
.testimonial-cta {
    flex: 1;
    padding: 0 50px; /* Adjust padding for left and right */
    margin-right: 90px; /* Add margin to the right */
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the content */
}

.testimonial-cta h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-card img {
    width: 80px; /* Adjust the size of the image */
    height: 80px; /* Ensure the image is square */
    border-radius: 50%; /* Makes the image round */
    margin-bottom: 15px;
    object-fit: cover;
}

.testimonial-cta p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #333;
}

/* CTA Button Styling */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ED1E82;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    width: fit-content; /* Button size should be appropriate */
    max-width: 250px; /* Restrict maximum button width */
}

.cta-button:hover {
    background-color: #D9166D;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        margin-left: 0; /* Remove margin on mobile */
    }

    .testimonial-cta {
        padding: 20px;
        text-align: center;
        justify-content: center;
        margin-right: 0; /* Remove margin on mobile */
    }

    .testimonial-cta h2 {
        font-size: 2em;
    }
}


/* FAQ Section */
.faq-section {

    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.faq-left {
    flex: 1;
    padding-right: 50px;
}

.faq-left h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #16234D; /* Darker color for the heading */
}

.faq-right {
    flex: 1;
    text-align: left;
}

.faq-right p {
    font-size: 1.2em;
    line-height: 1.5;
    color: #333;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ED1E82;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #D9166D;
}

/* FAQ Section */
.faq-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Ensure both sides stretch to the same height */
    flex-wrap: wrap;
    height: auto; /* Ensure container height adjusts based on content */
}

.faq-left {
    flex: 1;
    padding-right: 50px;
    display: flex;           /* Enable Flexbox on left as well */
    flex-direction: column;  /* Stack content vertically */
    justify-content: center; /* Center content vertically */
}

.faq-left h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #16234D; /* Darker color for the heading */
}

.faq-right {
    flex: 1;
    text-align: left;
    display: flex;           /* Enable Flexbox */
    flex-direction: column;  /* Stack children vertically */
    justify-content: center; /* Center the content vertically */
    height: auto;            /* Ensure it adapts to content height */
    padding: 20px 0;         /* Add padding to create some spacing */
}

.faq-right p {
    font-size: 1.2em;
    line-height: 1.5;
    color: #333;
    margin: 0; /* Reset margin */
}

.cta-button {
    display: inline-block;
    padding: 25px 35px;
    background-color: #ED1E82;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    margin-top: 20px;
    width: fit-content; /* Prevent button from stretching */
}

.cta-button:hover {
    background-color: #D9166D;
}

/* FAQ Accordion Styling */
.faq-accordion {
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e5faff;
    max-width: 1200px;
    margin: 10px auto;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: transparent;
    border: none;
    text-align: left; /* Ensure the title is aligned to the left */
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: flex-start; /* Align items to the left */
    align-items: center;
    gap: 15px; /* Add space between the plus sign and the title */
}

.faq-question span {
    font-size: 1.5em;
    color: #ED1E82;
}

.faq-answer {
    padding: 20px;
    font-size: 1em;
    line-height: 1.5;
    display: none;

}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg); /* Change plus to minus when expanded */
    transition: transform 0.3s ease;
}

.faq-cta-container {
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center the button horizontally */
    align-items: center; /* Center the button vertically */
    margin-top: 40px; /* Add some space above the button */
    margin-bottom: 20px; /* Add some space below the button */
    width: 100%; /* Ensure the container takes up full width */
    padding: 20px 0; /* Optional: add padding to the container */
}

.faq-cta-container .cta-button {
    text-align: center; /* Center the text inside the button */
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
        text-align: center;
    }

    .faq-left {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .faq-left h2 {
        font-size: 2em;
    }

    .faq-right {
        width: 100%;
        text-align: center;
    }

    .faq-accordion {
        margin-top: 30px;
    }

    .faq-question, .faq-answer {
        text-align: left; /* Ensure text is left-aligned on mobile too */
    }
}

/* Footer Styling */
footer {
    background-color: #333; /* Background color of the footer */
    color: #fff; /* Text color */
    padding: 20px;
    text-align: center;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between the icon and text */
}

.contact-icon {
    font-size: 1.5em; /* Size of the icons */
}

.contact-text {
    font-size: 1.2em;
}

footer p {
    margin: 0;
    padding-bottom: 10px;
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .footer-contact {
        flex-direction: column;
        text-align: center;
    }
}

