/* navbar end  */
/* project img section */
.project-section {
    position: relative;
    width: 100%;
    }
    
    .project-section img {
    width: 100%;
    height: 70vh;
    display: block;
    }
    
    .project-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-family: Georgia, serif;
    
    }
    
    /* Responsive for mobile */
@media (max-width: 768px) {
  .project-section img {
    height: 40vh  !important;
  }

  .project-text {
    font-size: 1.8rem;
    padding: 0 10px;
    width: 100%;
  }
}
    /* project section end  */
    
    /* contact us  */
    .map-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    }
    
    .map-embed {
    width: 100%;
    height: 70%;
    border: none;
    filter: grayscale(20%);
    }
    
    .contact-section {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
    }
    
    .contact-box {
    background: #1e1e1e;
    padding: 40px;
    width: 600px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    color: white;
    margin-right: 0px;
    margin-left: 150px;
    }
    
    .contact-box input,
    .contact-box textarea {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    border: none;
    border-bottom: 2px solid white;
    background: transparent;
    color: white;
    font-size: 14px;
    }
    
    .submit-btn {
    padding: 12px 20px;
    background: #b08c5f;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    }
    
    .heading-box {
    color:black;
    font-size: 42px;
    font-family: Georgia, serif;
    font-weight: 500;
    margin-top: -400px;
    margin-left:100px;
    }
    
    .rotating-logo {
    position: absolute;
    top: -2%;
    left: 250px;
    width: 150px;
    height: 130px;
    z-index: 15;
    }
    
    .rotating-logo svg {
    width: 100%;
    height: 100%;
    animation: spin 10s linear infinite;
    }
    
    @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
    }
    
    /* contact us  */
    
    
    
    /* About Section */
    .about-container {
        position: relative;
        display: flex;
        height: 120vh;
        overflow: hidden;
        margin-top: 100px;
        padding: 0 2rem;
      }
      
      .left,
      .right {
        opacity: 0;
        transition: all 1s ease-in-out;
      }
      
      .left {
        flex: 1;
        transform: translateX(-100%);
      }
      
      .right {
        position: absolute;
        top: 15%;
        right: 50px;
        width: 55%;
        background-color: #fdfcfa;
        padding: 4rem;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
      }
      
      .show-left {
        transform: translateX(0);
        opacity: 1;
      }
      
      .show-right {
        transform: translateX(0);
        opacity: 1;
      }
      
      .left img {
        width: 60%;
        height: 60%;
        object-fit: cover;
      }
      
      .right h2 {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        color: #1d1c1a;
        margin-bottom: 1rem;
      }
      
      .right p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 1.5rem;
      }
      
      .read-more {
        display: inline-flex;
        align-items: center;
        border: 1px solid #d6c3b0;
        padding: 0.8rem 1.5rem;
        border-radius: 30px;
        font-weight: bold;
        color: #a47d57;
        font-size: 1rem;
        gap: 0.5rem;
        margin-top: 1rem;
        cursor: pointer;
      }
      
      .read-more::before {
        content: "\2022";
        color: #d6a97e;
        font-size: 1.5rem;
      }
      
      .support {
        display: flex;
        align-items: center;
        margin-top: 2rem;
        gap: 1rem;
      }
      
      .support-icon {
        font-size: 2.5rem;
      }
      
      .support-text {
        font-family: 'Playfair Display', serif;
        color: #1d1c1a;
        font-size: 1.3rem;
      }
      
      .support-number {
        color: #d6a97e;
        font-size: 1.4rem;
        font-weight: bold;
        margin-top: 0.2rem;
      }
      
      .circle-container {
        position: absolute;
        top: 2rem;
        right: 2rem;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: spin 10s linear infinite;
      }
      
      .circle-text {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: rotate(0deg);
        font-size: 0.8rem;
        color: #888;
      }
      
      .circle-text span {
        position: absolute;
        transform-origin: center;
        font-weight: bold;
      }
      
      .circle-dot {
        width: 15px;
        height: 15px;
        background-color: #a47d57;
        border-radius: 50%;
      }
      
      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }
      
      @media (max-width: 768px) {
        /* Container styling */
        .about-container {
          display: flex;
          flex-direction: column;
          height: auto;
          padding: 0rem 1rem; /* Enhanced padding for better spacing */
          gap: 2rem; /* Space between elements */
          margin-top: 20px;
          background-color: #f9f9f9; /* Light background for contrast */
        }
      
        /* Left and right sections */
        .left,
        .right {
          position: relative;
          transform: translateX(0) !important;
          opacity: 1 !important;
          transition: none;
        }
      
        .left {
          order: 2;
          display: flex;
          justify-content: center;
          /* margin-top: 2rem; */
        }
      
        .left img {
          width: 100%;
          height: auto;
          border-radius: 10px; /* Rounded corners for images */
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
          margin-bottom:20px;
        }
      
        .right {
          order: 1;
          position: relative;
          top: auto;
          right: auto;
          width: 100%;
          padding: 2rem 1.5rem;
          background-color: #fff; /* White background for content */
          border-radius: 12px; /* Rounded corners for the content box */
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Light shadow */
        }
      
        /* Text styling */
        .right h2 {
          font-size: 2.2rem;
          line-height: 1.3;
          text-align: center;
          color: #333; /* Darker color for the header */
        }
      
        .right p {
          font-size: 1.1rem;
          line-height: 1.6;
          text-align: justify !important;
          color: #555; /* Softer color for body text */
        }
      
        /* Read more button */
        .read-more {
          margin: 1rem auto 0 auto;
          display: block;
          text-align: center;
          background-color: #c29e7d;
          color: #fff;
          padding: 0.2rem 1rem;
          border-radius: 8px;
          font-weight: bold;
          transition: background-color 0.3s;
        }
      
        .read-more:hover {
          background-color: #fff;/* Darker shade on hover */
        }
      
        /* Support section adjustments */
        .support {
          flex-direction: column;
          align-items: center;
          text-align: center;
          margin-top: 2rem;
          gap: 1rem;
        }
      
        .support-icon {
          font-size: 2rem;
          color: #007bff; /* Icon color for consistency */
        }
      
        .support-text,
        .support-number {
          font-size: 1.1rem;
          font-weight: bold;
          color: #333; /* Clearer text */
        }
      
        /* Circle container */
        .circle-container {
          top: 1rem;
          right: 1rem;
          width: 100px;
          height: 100px;
          /* background-color: #007bff; */
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
          color: #fff;
          font-size: 0.6rem;
        }
      
        .circle-text {
          font-size: 0.6rem;
        }
      
        .circle-dot {
          width: 10px;
          height: 10px;
          background-color: #c29e7d;
          border-radius: 50%;
        }
      }
      
      
      /* about section */
      
    
    
    /* team section */
    
    /* team section */
    .team-section {
        padding: 40px 20px;
        text-align: center;
        background: url('https://html.designingmedia.com/hillcrest/assets/images/service-background.jpg') no-repeat center center/cover;
        background-size: cover;
        background-position: center;
        height: auto;
      
      }
      
      /* Hanging Lights aligned to the right */
      .hanging-lights2 {
        display: flex;
        justify-content: flex-end;
      
      }
      
      .hanging-lights2 img {
        height: 200px;
        width: 150px;
        margin-top:-35px
      }
      
      .team-section h1 {
        font-family: Georgia, serif;
      
        font-size: 48px;
        color: white;
        margin-bottom: 50px;
        margin-top:-80px;
      
      }
      
      .team-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
      
      }
      
      .team-member {
        position: relative;
        width: 270px;
        background-color: #c29e7d;
        border-radius: 0 0 8px 8px;
        overflow: hidden;
        text-align: center;
      }
      
      .team-member::before {
        content: '';
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 10px;
        height: 10px;
        background: #a37b58;
        border-radius: 50%;
      }
      
      .team-member img {
        width: 100%;
        height: 270px;
        object-fit: cover;
      }
      
      .team-info {
        padding: 20px 10px;
      }
      
      .team-info h3 {
        font-size: 16px;
        font-weight: bold;
        font-family: Georgia, serif;
      
      }
      
      .team-info p {
        font-size: 13px;
        margin-top: 5px;
      }
      
      .social-icons2 {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
      }
      
      .social-icons2 a {
        color: white;
        background: #1f1f1f;
        padding: 10px;
        
        font-size: 16px;
        transition: background 0.3s;
      }
      
      .social-icons2 a:hover {
        background: #333;
      }
      
      /* responsive */
      @media (max-width: 768px) {
        .team-section {
          padding: 30px 15px;
          background-position: center;
          background-size: cover;
        }
      
        .hanging-lights2 {
          display: none; /* Hide lights on mobile */
        }
      
        .team-section h1 {
          font-size: 30px;
          margin-top: -30px;
          margin-bottom: 30px;
        }
      
        .team-container {
          flex-direction: column;
          align-items: center;
          gap: 30px;
        }
      
        .team-member {
          width: 90%;
          max-width: 300px;
        }
      
        .team-member img {
          height: auto;
        }
      
        .team-info {
          padding: 15px 10px;
        }
      
        .team-info h3 {
          font-size: 15px;
        }
      
        .team-info p {
          font-size: 12px;
        }
      
        .social-icons2 a {
          font-size: 14px;
          padding: 8px;
        }
      }