


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
}

.background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4); /* white with transparency */
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 50%;
  padding: 20px 40px;
 background: linear-gradient(to right, rgba(255, 221, 0, 0.6), rgba(255, 221, 0, 0));
  color: #000;
   z-index: 2; 
}

.overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}




.breadcrumb {
  font-size: 1rem;
  display: flex;
  gap: 10px;
  align-items: center;
}

.breadcrumb a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.breadcrumb span {
  color: #000;
}


@media(max-width:776px){
    
    .overlay{
        
        top: 25%;
        width:85%;
    }
    
    .overlay h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
    }
    
    

  
}





/****************three div start here ************************************/

.contact-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  width: 320px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img {
  width: 100%;
  height: 180px;
  
}

.card-content {
  padding: 30px 20px;
  text-align: center;
}

.icon {
  width: 60px;
  height: 60px;
  margin: -50px auto 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 30px;
  height: 30px;
}

.card-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.card-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}






/********* CONTACTFORM*********************************/

.contact-form {
  max-width: 700px;
  margin: 60px auto;
  padding: 40px 30px;
  text-align: center;
  background-image: url('assets/img/form-bg.jpg'); /* 🔁 Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form {
  max-width: 700px;
  margin: 60px auto;
  padding: 40px 30px;
  text-align: center;
}

.contact-form h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.underline {
  width: 60px;
  height: 4px;
  background-color: #e6c34b;
  margin: 0 auto 30px;
  border-radius: 2px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1;
  padding: 15px;
  border: 1px solid #eee;
  background-color: #fafafa;
  border-radius: 5px;
  font-size: 15px;
}

textarea {
  padding: 15px;
  border: 1px solid #eee;
  background-color: #fafafa;
  border-radius: 5px;
  font-size: 15px;
  resize: none;
  width: 100%;
}

.captcha-box {
  border: 1px solid #e6c34b;
  padding: 10px;
  text-align: center;
  font-family: 'Courier New', monospace;
  font-size: 22px;
  letter-spacing: 5px;
  color: #000;
  font-weight: bold;
  background-color: #fff;
}

input[type="text"]:last-of-type {
  padding: 15px;
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 5px;
  font-size: 15px;
}

button {
  margin-top: 10px;
  padding: 15px;
  background-color: #e6c34b;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

button:hover {
  background-color: #d1ad39;
}









/* footer start ***/
.footermain {
    width: 100%;
    height: auto;
    background-color: #f9f9f9;
    padding: 30px 0;
}

.footer1 {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #f9f9f9;
}

.golotext,
.golotext1,
.golotext2 {
    width: 280px;
    margin-top: 50px;
    padding-bottom: 15px;
}



.golotext1 h4, .golotext2 h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.golotext1 ul, .golotext2 ul {
    list-style-type: none;
    padding-left: 0;
}

.golotext1 ul li, .golotext2 ul li {
    margin-top: 10px;
}

.golotext1 ul li a, .golotext2 ul li a {
    color: gray;
    text-decoration: none;
}

.golotext1 ul li a:hover, .golotext2 ul li a:hover {
    color: #007BFF; /* Hover color */
}

.socialmedia a {
    margin-right: 15px;
    font-size: 18px;
}

.socialmedia a:hover {
    color: #007BFF; /* Hover color for social icons */
}

@media (max-width: 776px) {
    .footer1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .golotext, .golotext1, .golotext2 {
        width: 100%;  /* Full width on smaller screens */
        margin: 10px 0;
    }

  
}

@media (max-width: 450px) {
    .footer1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .golotext, .golotext1, .golotext2 {
        width: 100%;  /* Take full width for smaller screens */
        margin: 10px 0;
    }

   
}

/******** footer end ***********/


.overlaylightorange {
    position: absolute;
    width: 500px;
    height:200px;
    border: 1px solid gray;
    z-index: 3;
    top: 60%;
    left: 40%;
    transform: translate(-40%, -60%);
    background-color: lightgray;
    padding: 20px;
    box-sizing: border-box;
}

.heading1 {
    margin-bottom: 20px; /* Adds space below the heading */
}

.home_contact {
     position: absolute;
    width: 300px;
    height: 50px;
    top:35%;
    left:30%;
    display: flex;
    align-items: center;
    gap: 15px;
}



.heading1 {
  position: absolute;
  width:500px;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: black;
  z-index: 2; /* Make sure it's above the overlay */
}

@media(max-width:776px){
    
    .heading1{
        
         left: 40%;
         font-size:30px;
    }
}


.custom-contact-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.custom-underline {
  width: 80px;
  height: 4px;
  background-color: #333;
  margin: 10px 0 30px 0;
}

.custom-contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Contact Form */
.custom-contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
}

.custom-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.custom-contact-form input,
.custom-contact-form textarea {
  flex: 1;
  padding: 10px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.custom-contact-form button {
  padding: 10px;
  font-size: 1rem;
  cursor: pointer;
  background-color: #333;
  color: #fff;
  border: none;
  margin-top: 10px;
}

/* Google Map */
.custom-map-container {
  flex: 1 1 400px;
  min-height: 450px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-contact-wrapper {
    flex-direction: column;
  }

  .custom-map-container {
    min-height: 300px;
  }
}





