
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Playfair Display", serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.part1 .logo img {
    height: 60px;
    width: 100px;
}

.part1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 10px;
}

.menu-btn {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.navbar {
    display: flex;
    gap: 80px;
    justify-content: center;
}

.navbar a {
    text-decoration: none;
    font-size: 20px;
    color: #777;
}

.navbar a:hover {
    color: #222222;
}

.navbar a.active {
    color: #222222;
    font-weight: bold;
}

.part2 a {
    text-decoration: none;
    font-size: 20px;
    color: white;
    background: #222222;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.part2 a:hover {
    background: #555;
}

/* Mobile View Adjustments */
@media (max-width: 1024px) {
    header {
        padding: 20px 40px;
    }

    .navbar {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 20px 10px;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
        display: none;
        padding-top: 20px;
    }

    .part2 {
        padding: 40px 0px 30px;
        display: none;
        width: 100%;
        text-align: center;
    }

    .menu-btn {
        display: block;
        position: absolute;
        right: 25px;
        top: 30px;
    }

    .navbar.active {
        display: flex;
    }

    .part2.active {
        display: block;
    }

    .menu-btn i.fa-bars {
        display: block;
    }

    .menu-btn i.fa-xmark {
        display: none;
    }

    .navbar.active .menu-btn i.fa-bars {
        display: none;
    }

    .navbar.active .menu-btn i.fa-xmark {
        display: block;
    }
}

/* Adjustments for smaller phones */
@media (max-width: 480px) {
    .logo img {
        height: 50px;
        width: 80px;
    }

    .navbar a {
        font-size:20px;
    }

    .part2 a {
        font-size: 18px;
        padding: 8px 15px;
    }

    .menu-btn {
        right: 10px;
        top: 15px;
    }
}


hr {
    width: 85%;
    margin: auto;
}

section {
    padding: 50px 100px;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 50px 20px;
}

.hero h1 {
    font-size: 40px;
    font-weight: bold;
}

.hero h2 {
    font-size: 40px;
    font-weight: 100;
    margin: 10px 0;
}

.hero img {
    width: 100%;
    max-width: 1300px;
    border-radius: 55px;
    margin: 20px 0;
}

.form-container {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 1100px;
    background: rgba(225, 225, 225, 0.8);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    /* width: 100%; */
    max-width: 300px;
}

.form-group label {
    font-size: 15px;
    text-align: left;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222222;
}

.input-container {
    position: relative;
    display: flex;

    align-items: center;
}

.form-group input {
    width: 95%;
    /* max-width: 220px; */
    padding: 12px 15px 12px 40px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.form-group input::placeholder {
    color: #aaa;
}

.form-group .icon {
    position: absolute;
    left: 12px;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    pointer-events: none;
}


.btn-container button {
    background: black;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-container button:hover {
    background: #555;
}

/* Tablet View (1024px or less) */
@media (max-width: 1024px) {
    .hero {
        padding: 20px 40px;
    }

    .hero h1 {
        font-size: 28px;
        font-weight: bold;
    }

    .hero h2 {
        font-size: 28px;
        font-weight: 100;
        margin: 10px 0;
    }

    .hero img {
        height: 350px;
    }

    .form-container {
        position: absolute;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(225, 225, 225, 0.8);
        display: flex;
        flex-direction: row;
        width: 80%;
        /* Adjust width for better visibility on tablets */
        gap: 10px;
    }

    .form-group input {
        padding: 10px 15px 10px 40px;
        font-size: 14px;
    }

    .form-group label {
        font-size: 14px;

    }

    .btn-container {
        margin-top: 10px;
    }

    .btn-container button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Mobile View (768px or less) */
@media (max-width: 768px) {
    .hero {
        position: relative;
        text-align: center;
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 26px;
        font-weight: bold;
    }

    .hero h2 {
        font-size: 26px;
        font-weight: 100;
        margin: 10px 0;
    }

    .hero img {
        height: 350px;
    }

    .form-container {
        position: absolute;
        top: 62%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(225, 225, 225, 0.8);
        display: flex;
        flex-direction: column;
        width: 50%;
        gap: 10px;
    }

    .form-group input {
        padding: 10px 15px 10px 40px;
        font-size: 15px;
    }

    .form-group label {
        font-size: 15px;

    }

    .btn-container {
        margin-top: 10px;
    }

    .btn-container button {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Mobile Portrait View (480px or less) */
@media (max-width: 480px) {
    .hero {
        position: relative;
        text-align: center;
        padding: 20px 15px;
    }

    .hero h1 {
        font-size: 24px;
        font-weight: bold;
    }

    .hero h2 {
        font-size: 24px;
        font-weight: 100;
    }

    .hero img {
        height: 350px;
    }

    .form-container {
        position: absolute;
        top: 61%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(225, 225, 225, 0.8);
        display: flex;
        gap: 8px;
        flex-direction: column;
        width: 50%;
        
    }

    .form-group input {
        padding: 8px 12px 8px 40px;
        font-size: 15px;
    }

    .form-group label {
        font-size: 13px;

    }

    .btn-container {
        margin-top: 10px;
    }

    .btn-container button {
        padding: 10px 20px;
        font-size: 15px;
        
    }
}

/* Extra Small Mobile View (320px or less) */
@media (max-width: 320px) {
    .hero {
        padding: 15px 10px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .hero img {
        height: 300px;
    }

    .form-container {
        width: 70%;
        top: 65%;
        left: 50%;
        gap: 8px;
        transform: translate(-50%, -50%);
    }

    .form-group input {
        padding: 8px 12px 8px 35px;
        font-size: 12px;
    }

    .form-group label {
        font-size: 12px;

    }

    .btn-container {
        margin-top: 10px;
    }

    .btn-container button {
        font-size: 12px;
        padding: 10px 18px;
    }
}


/* slider */
.container-main h1 {
    font-size: 40px;
    margin: 0;
    font-weight: 100;
}

.container-main p {
    font-size: 20px;
    color: #555;

}

.container-main {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.property-row {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.property-row::-webkit-scrollbar {
    display: none;
}

.property-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    background-color: white;
    max-width: 550px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.property-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.property-card h5 {
    margin: 10px 0;
    font-size: 28px;
    color: #333;
}

.property-card p {
    font-size: 20px;
    color: #777;
}


@media (max-width: 1024px) {
    .property-row {
        flex-direction: row;
    }

    .property-card {
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .property-row {
        flex-direction: row;
    }

    .container-main h1 {
        font-size: 26px;

    }

    .container-main p {
        font-size: 18px;
    }

    .property-card {
        max-width: 710px;
    }
}

@media (max-width: 480px) {
    .property-row {
        flex-direction: row;
    }

    .property-card {
        max-width: 438px;
    }
}

.card {
    text-align: left;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;

}

.card h1 {
    font-size: 20px;
    font-weight: bold;

}

.card p {
    margin: 5px 0 2px;
    color: #555;
    font-size: 18px;

}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.text-section {
    max-width: 50%;
    flex: 1;
}

.icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icons i {
    font-size: 16px;
    color: #555;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: end;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: 2px solid #000;
}

.button.watch {
    background: transparent;
    color: #000;
}

.button.view {
    background: #000;
    color: #fff;
}

.button.view:hover {
    background: #444;
}

.youtube-icon {
    margin-left: 8px;
    font-size: 1.2rem;
    color: #f00;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .card {
        gap: 20px;
    }

    .text-section {
        max-width: 100%;
    }

    .buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 15px;
        gap: 20px;
    }

    .button {
        width: 100%;
        justify-content: center;
    }
}

/* faq */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 60px;
}

.container h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 30px;
}

.reason {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reason.odd {
    flex-direction: row;
    position: relative;
}

.reason.even {
    flex-direction: row;
    justify-content: flex-end;
    position: relative;
}

.reason-number {
    font-size: 80px;
    font-weight: 800;
    color: black;
    font-family: "Playfair Display", serif;
}

.oddno {
    position: absolute;
    left: -18px;
    top: -10px;
}

.evenno {
    position: absolute;
    left: 160px;
    top: 5px;
}

.reason-content {
    background-color: #f4f4f4;
    border-radius: 40px;
    padding: 25px 40px;
    flex: 1;
    max-width: 600px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.reason-content h2 {
    font-size: 1.25rem;
    font-weight: bold;
}

.reason-content p {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    .reason {
        padding: 0px 40px;
        flex-direction: column;
        align-items: flex-start;
    }

    .reason.odd,
    .reason.even {
        position: relative;
        text-align: left;
    }

    .reason-number {
        font-size: 70px;
        position: relative;
        left: 0;
    }

    .oddno,
    .evenno {
        position: absolute;
        left: 20px;
        top: 15px;
    }

    .reason-content {
        max-width: 100%;
        padding: 30px 40px;
    }

    .container h1 {
        font-size: 26px;
        margin-bottom: 25px;
    }
}


/* services */
.services {
    padding-bottom: 100px;
}

.services h1 {
    text-align: center;
    font-weight: 500;
    font-size: 40px;
    padding-bottom: 30px;
}

.box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box img {
    max-width: 100%;
    height: auto;
}

.right-box {
    background-color: black;
    padding: 50px 50px;
    flex: 1;
}

.right-box h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: white;
}

.right-box p {
    color: white;
    padding-bottom: 20px;
    border-bottom: 1px solid white;
}

.right-box p:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1300px) {
    section {
        padding: 30px 50px;
    }

    .box img {
        max-width: 50%;
        height: auto;
    }

    .right-box {
        padding: 20px 30px;
    }
}

@media (max-width: 1200px) {
    section {
        padding: 30px 50px;
    }

    .box img {
        max-width: 50%;
        height: auto;
    }
}

@media (max-width: 1024px) {
    section {
        padding: 30px 30px;
    }

    .box img {
        max-width: 50%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .services h1 {
        font-size: 26px;
    }

    .box img {
        max-width: 100%;
        margin: auto;
    }
}

@media (max-width: 480px) {
    .services h1 {
        font-size: 24px;
    }

    .right-box {
        padding: 15px 15px;
    }

    .box img {
        max-width: 100%;
    }
}


/* customer */
.Customers {
    text-align: center;
    padding: 60px 20px;
}

.Customers h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.Customers h2 {
    font-size: 20px;
    font-weight: 100;
    margin-bottom: 20px;
}

.Customers h2 strong {
    font-weight: 600;
}

.team {

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #fff;
    position: relative;
}

.team .member {
    text-align: center;
    position: relative;
}

.team .member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}

.team .member:nth-child(1) {
    margin-right: -40px;
    z-index: 4;
}

.team .member:nth-child(2) {
    margin-right: -40px;
    z-index: 3;
}

.team .member:nth-child(3) {
    margin-right: -40px;
    z-index: 2;
}

.team .member:nth-child(4) {
    z-index: 1;
}

.team .member p {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
}

.team .member:hover img {
    transform: scale(1.07);
    z-index: 5 !important;
}

@media (max-width: 768px) {
    .Customers h1 {
        font-size: 26px;
    }

    .Customers h2 {
        font-size: 20px;
    }

    .team {
        flex-direction: column;
        align-items: center;
    }

    .team .member {
        margin: 0;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .Customers h1 {
        font-size: 26px;
    }

    .Customers h2 {
        font-size: 20px;
    }

    .team .member img {
        width: 170px;
        height: 170px;
    }
}

@media (min-width: 1024px) {
    .Customers h1 {
        font-size: 48px;
    }

    .Customers h2 {
        font-size: 28px;
    }

    .team .member img {
        width: 200px;
        height: 200px;
    }
}

/* Contact Section Styles */
.contact {
    text-align: center;
}

.contact h3 {
    font-size: 40px;
    font-weight: 100;
    margin-bottom: 20px;
}

.social-icons {
    margin: 20px 0;
}

.social-icons a {
    font-size: 24px;
    margin: 0 10px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons .fa-facebook {
    color: #1877f2;
}

.social-icons .fa-instagram {
    color: #e4405f;
}

.social-icons .fa-whatsapp {
    color: #25d366;
}

.contact p {
    font-size: 20px;
    color: #333;
    margin: 10px 0;
}

.contact h2 {
    display: flex;
    align-items: center;
    font-size: 36px;
    margin-top: 20px;
    color: #222222;
    justify-content: center;
}

.contact .fa-youtube {
    color: #ff0000;
    font-size: 45px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .contact h3 {
        font-size: 26px;
    }

    .contact p {
        font-size: 18px;
    }

    .contact h2 {
        font-size: 26px;
    }

    .social-icons a {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact h3 {
        font-size: 24px;
    }

    .contact p {
        font-size: 15px;
    }

    .contact h2 {
        font-size: 24px;
    }

    .social-icons a {
        font-size: 18px;
    }
}

/* Footer */
.footer {
    display: flex;
    background-color: black;
    color: white;
}

.footer-left {
    padding: 25px;
    flex: 1;
    text-align: center;
}

.footer-left ul {
    list-style: none;
    padding: 0;
}

.footer-left ul li {
    margin: 15px 0;
    font-size: 20px;
    line-height: 1.6;
}

.footer-left ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-left ul li a:hover {
    color: #ccc;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
}

.footer-right {
    flex: 0 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-right img {
    height: 320px;
    object-fit: cover;
}

/* Responsive Design for Mobile */

@media (max-width: 938px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-right img {
        max-height: 350px;
        width: 90%;
        margin-bottom: 25px;
    }

    .footer-left ul li {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-right img {
        max-height: 350px;
        width: 90%;
        margin-bottom: 25px;
    }

    .footer-left ul li {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer-right img {
        max-height: 350px;
        width: 90%;
    }
}
.align  a{
    color: white;
}
.align{
    font-size: 15px;
    margin: 10px 0px;
}
.Detail_page{
   text-align: center;
   margin: auto;
   max-width: 1300px;
}

.Detail_page h1{
 font-size: 40px;
 font-weight: 100;
 padding-bottom: 20px;
}

.Detail_page h2{
    font-size: 25px;
    padding-bottom: 10px;
}
.Detail_page p{
    font-size: 20px;
    padding-bottom: 20px;
    color: #555;
}

.content-box {
    background: #e8e6e6;
    padding: 40px 50px;
    border-radius: 10px;
    text-align: left;
    margin-top: 50px;
}

.sec_first h3{
    font-size: 40px;
    padding-bottom: 10px;
   
}

.sec_first{
    margin: 20px 0px;
}
ul {
    list-style-type: none;
    padding: 0;
}
ul li{
    font-size: 20px;
    color: #555;
}
.sec_first ul li::before {
    content: '\2022';
    color: #555;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}
@media (max-width: 768px) {
    .Detail_page h1 {
        font-size: 30px;
    }
    .Detail_page h2 {
        font-size: 20px;
    }
    .Detail_page p {
        font-size: 18px;
    }
    .content-box {
        padding: 20px 40px;
    }
    .content-box h3 {
        font-size: 25px;
    }
    .sec_first ul li {
        font-size: 18px;
    }
    .Detail_page img{
        height: 250px;
    }
}

.slideshow-container {
    position: relative;
    max-width: 950px;
    margin: auto;
  }
  .mySlides {
    display: none;
    width: 100%;
    height: 500px; 
    object-fit: cover; 
  }
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
  }
  .prev { left: 0; }
  .next { right: 0; }
  .indicators {
    text-align: center;
    padding: 10px;
  }
  .indicator {
    cursor: pointer;
    height: 13px;
    width: 13px;
    margin: 5px;
    background-color: gray;
    border-radius: 50%;
    display: inline-block;
  }
  .indicators .indicator.active {
    background-color: black;
  }

  /* details btn */
  .btn{
    padding: 0px 0px 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
 

.loc-dot {
    font-size:1.2rem; 
    margin-left: 8px;
      background: linear-gradient(45deg, #ff6347, #ff9800, #4caf50, #2196f3, #9c27b0); /* Gradient with multiple colors */
      /* -webkit-background-clip: text;  */
      background-clip:text;
      color: transparent; 
      display: inline-block;
  }
  

  @media (max-width:480px) {
    .btn{
        flex-direction: column;
        padding: 20px 40px 40px;
    }
  }
  @media (max-width:768px) {
    .btn{
        flex-direction: column;
        padding: 20px 40px 40px;
    }
  }