    @import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Raleway:ital,wght@0,100..900;1,100..900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@font-face {
  font-family: "CustomFont";
  src: url("/fonts/659b8cd3ac962913174d819f_PP\ Hatton\ Medium\ 500.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/* font-family: "Sansation", sans-serif;  
 font-family: "CustomFont", serif; */
  body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #fff;
      color: #333;
    }

   .contact-section {
  text-align: center;
  padding: 80px 40px;
  width: 100%;
  box-sizing: border-box;
}

.contact-section button {
  padding: 12px 28px;
  border: 1px solid #aaa;
  border-radius: 25px;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
}

.contact-section button:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.contact-section h2 {
  margin: 40px 0;
  font-size: 52px;
  font-family: "CustomFont", serif;
  
  color: #222;
}

.contact-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 40px;
  flex: 1;
  min-width: 280px;
  max-width: 450px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon {
  background: #fff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.icon img {
  width: 32px;   /* adjust icon size */
  height: 32px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 32px;
  text-align: center;
  font-family: "Sansation", sans-serif;  
  color: #000;
}

.card p {
  margin: 0;
  font-size: 15px;
  color: #555;
  font-family: "Sansation", sans-serif;  
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-cards {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 100%;
    max-width: 600px;
  }
}
  .map_sec {
            padding: 50px 0;
            background-color: #ffffff;
         margin-top: 100px;
        }
        .map_inner h4, .map_inner p {
            color: #000;
            text-align: center;
        }
        .map_inner p {
            font-size: 13px;
        }
        .map_bind {
            margin-top: 30px;
            border-radius: 30px;
            overflow: hidden;
        }
/* Hero Section */
        .hero {
            height: 600px;
            background: linear-gradient(rgba(255, 166, 0, 0.064), rgba(0, 0, 0, 0.69)), url('../images/673aa450b0f7e2eae3839aaa_Image 7.webp');
            background-size: cover;
            background-position: center;
            /* margin-top: 80px; */
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            position: relative;
            box-shadow: 0 0 30px rgba(255, 165, 0, 0.2) inset;
            filter: brightness(1.1) contrast(1.1) saturate(1.2);
           
            overflow: hidden;
        }
        
     .design-section {
      position: relative;
      overflow-x: hidden;
      width: 100%;
      height: 30vh;
   
   
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
    }
.design-content {
  font-size: 4rem;
  font-weight: 500;
  color: #111;
  line-height: 1.3;
  width: 1000px;
  font-family: "Sansation", sans-serif;
  margin: 0 auto;         /* centers the block */
  text-align: center;     /* centers the text inside */
}
.design-content span{
     font-family: "CustomFont", serif;
}
   


    @media (max-width: 768px) {
      .design-content {
        font-size: 2rem;
      }

      .design-content img {
        width: 80px;
      }
    }    
/* MOBILE RESPONSIVE FOR DESIGN SECTION */
@media (max-width: 768px) {
  .design-section {
    height: auto;          /* allow section to expand */
    padding: 15px 10px;
  }

  .design-content {
    font-size: 2rem !important;  /* smaller text for mobile */
    width: 100% !important;
    line-height: 1.4 !important;
    padding: 0 10px;
  }

  .design-content span {
    font-size: 1.5rem !important;
  }

  /* Style for Get In Touch button */
  button {
    font-size: 1rem !important;
    padding: 0.7rem 1.5rem !important;
    margin-top: 20px;
    border-radius: 30px;
    display: inline-block;
  }
}

.map-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    font-family: "Sansation", sans-serif;  
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: fadeUp 1.2s ease-in-out forwards;
    margin-top: -5%;
  }
  
  .map-description {
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    animation: fadeUp 1.5s ease-in-out forwards;
  }
  
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

   /* Contact Section */
    .contact-section1 {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      padding: 60px 20px 0;
      overflow: hidden;
    }

    /* Top button */
    .contact-section1 .top-btn {
      background: #f5f5f5;
      border: 1px solid #ccc;
      padding: 8px 20px;
      border-radius: 20px;
      margin-bottom: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .contact-section1 .top-btn:hover {
      background: #ddd;
    }

    /* Headings */
    .contact-section1 h2 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .contact-section1 p {
      max-width: 650px;
      margin: 0 auto 40px auto;
      font-size: 16px;
      color: #555;
      line-height: 1.6;
    }

    /* Contact Form */
    .contact-section1 .contact-form {
      position: relative;
      background: rgba(255, 255, 255, 0.75); /* cloudy transparency */
      backdrop-filter: blur(12px); /* blur effect */
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      border-radius: 15px;
      padding: 30px;
      max-width: 750px;
      width: 100%;
      margin-bottom: 50px;
       z-index: 2;
    }

    .contact-section1 .form-row {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .contact-section1 .form-row input,
    .contact-section1 .form-row textarea {
      flex: 1;
      padding: 14px;
      border: 1px solid #ddd;
      border-radius: 10px;
      font-size: 15px;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .contact-section1 .form-row input:focus,
    .contact-section1 .form-row textarea:focus {
      border-color: #000;
    }

    .contact-section1 textarea {
      width: 100%;
      resize: none;
      min-height: 90px;
    }

    .contact-section1 .contact-form button {
      width: 100%;
      padding: 16px;
      background: #000;
      color: #fff;
      font-size: 17px;
      border: none;
      border-radius: 40px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contact-section1 .contact-form button:hover {
      background: #333;
    }
.contact-section1 .bottom-image {
  position: relative;
  width: 100%;
  margin-top: -200px; /* adjust how much form overlaps */
  overflow: hidden;
  z-index: -1;
}

/* The actual image */
.contact-section1 .bottom-image img {
  width: 100%;
  display: block;
}

/* White blur/gradient overlay at top */
.contact-section1 .bottom-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 44%; /* adjust how much fade you want */
  background: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0.771));
  backdrop-filter: blur(1px); /* optional blur */
  pointer-events: none; /* keep it non-clickable */
}

    /* Responsive */
    @media (max-width: 768px) {
      .contact-section1 .form-row {
        flex-direction: column;
      }
      .contact-section1 .bottom-image{
        margin-top: 50px;
       
      }
      
    } 
    