.contact-dec {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%; /* Adjust as needed */
    height: auto;
    background-image: url('../../assets/images/contact-dec.png');
    background-size: contain; /* Or 'cover' if you want to cover the area */
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: 1;
  }
  
  .contact-left-dec {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 174px; /* Adjust the size as needed */
    height: 319px;
    background-image: url('../../assets/images/contact-left-dec.png');
    background-size: contain; /* Or 'cover' if you want to cover the area */
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: 1;
  }
    .contact-us .section-heading h2 {
      margin-right: 100px;
      margin-bottom: 40px;
    }
    
    .contact-us #map iframe {
      border-radius: 23px;
      position: relative;
      z-index: 2;
    }
    
    .contact-us .info {
      margin-top: 30px;
      position: relative;
      z-index: 5;
      display: inline-flex;
    }
    
    .contact-us .info span {
      opacity: 1;
      display: inline-flex;
      margin-right: 30px;
    }
    
    .contact-us .info span i {
      float: left;
      width: 46px;
      height: 46px;
      display: inline-block;
      text-align: center;
      line-height: 46px;
      background: rgb(255,104,95);
      background: linear-gradient(105deg, rgba(255,104,95,1) 0%, rgba(255,144,104,1) 100%);
      border-radius: 50%;
      color: #fff;
      font-size: 22px;
      margin-left: 30px;
      margin-right: 15px;
    }
    
    .contact-us .info span a {
      color: #ff685f;
      font-size: 14px;
      font-weight: 400;
      line-height: 25px;
      text-transform: none;
    }
    
    form#contact {
      position: relative;
      z-index: 2;
      background-image: url(../images/contact-form-bg.png);
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
      padding: 60px 120px;
      border-radius: 20px;
      flex: 1; /* Ensures form takes up remaining space */
    }
    
    form#contact input {
      width: 100%;
      height: 46px;
      border-radius: 0px;
      background-color: transparent;
      border-bottom: 1px solid #9bdbf8;
      border-top: none;
      border-left: none;
      border-right: none;
      outline: none;
      font-size: 15px;
      font-weight: 300;
      color: #2a2a2a;
      padding: 0px 0px;
      margin-bottom: 35px;
    }
    
    form#contact input::placeholder {
      color: #afafaf;
    }
    
    form#contact button {
      display: inline-block;
      background-color: #ff695f;
      font-size: 15px;
      font-weight: 400;
      color: #fff;
      text-transform: capitalize;
      padding: 12px 25px;
      border-radius: 23px;
      letter-spacing: 0.25px;
      border: none;
      outline: none;
      transition: all .3s;
    }
    
    form#contact button:hover {
      background-color: #03a4ed;
    }
    
    .contact-img {
      position: relative;
      justify-content: left;
      align-items: left;
      overflow: hidden;
      width: 100%; /* Makes it responsive */
    }
    
    .contact-img img {
      width: 100%; /* Makes the image responsive */
      height: auto;
      max-width: 800px; /* Adjust based on need */
      transition: transform 0.3s ease-in-out;
    }
    
    /* Hover effect for upper-layer appearance */
    .contact-img:hover img {
      transform: scale(1.05); /* Slight zoom effect */
    }
    
    /* Media Queries for Different Screen Sizes */
    
    /* For tablets (768px and above) */
    @media screen and (max-width: 1024px) {
      .contact-dec img {
        width: 100%; /* Adjust GIF size for tablets */
        max-width: none; /* Remove max-width */
        margin-right: 0; /* Remove right margin */
      }
    
      .contact-us {
        flex-direction: column; /* Stack items vertically */
        text-align: center;
      }
    
      form.contact {
        margin-left: 0; /* Adjust form margin for smaller screens */
        padding: 30px 60px; /* Adjust padding for smaller screens */
      }
    }
    
    /* For mobile screens (below 768px) */
    @media screen and (max-width: 768px) {
      .contact-dec img {
        width: 100%; /* Make image take full width */
        max-width: none;
        margin-right: 0;
      }
    
      .contact-us {
        flex-direction: column; /* Stack items vertically */
        text-align: center;
      }
    
      form#contact {
        margin-left: 0; /* Remove margin */
        padding: 30px 50px; /* Adjust padding */
      }
    
      .contact-img img {
        max-width: 100%; /* Ensure image is fully responsive */
      }
    }
    
    /* For small mobile screens (below 480px) */
    @media screen and (max-width: 480px) {
      .contact-dec img {
        width: 100%;
      }
    
      .contact-img {
        padding: 5px;
      }
    
      .contact-img img {
        max-width: 250px;
      }
    }
    


.custom-footer {
background: #fff;
padding: 40px 0;
text-align: left;
font-family: Arial, sans-serif;
}
.footer-container {
max-width: 1200px;
margin: auto;
}
.footer-row {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.footer-col {
flex: 1;
padding: 10px;
min-width: 220px;
}
.logo-section img {
width: 50%;
margin-bottom: 20px;
}
.footer-email {
color: #777;
font-size: 14px;
}
.social-icons a {
display: inline-block;
background: #03a4ed;
color: white;
border-radius: 50%;
width: 35px;
height: 35px;
text-align:center;
line-height: 35px;
margin: 5px;
}
.footer-links h4,
.newsletter h4 {
font-size: 16px;
font-weight: bold;
margin-bottom: 10px;
}
.footer-links ul {
list-style: none;
padding: 0;
}
.footer-links ul li {
margin: 5px 0;
}
.footer-links ul li a {
color: #777;
text-decoration: none;
}
.newsletter form {
display: flex;
justify-content: center;
background: #03a4ed;
border-radius: 25px;
overflow: hidden;
position: relative; /* Ensures form stays above other elements */
z-index: 10; 
}
.newsletter input {
    border: none;
padding: 10px;
flex: 1;
outline: none;
}
.newsletter button {
background: transparent;
border: none;
color: white;
padding: 10px;
cursor: pointer;
}
.footer-bottom {
margin-top: 20px;
padding-top: 10px;
border-top: 1px solid #eee;
color: #777;
font-size: 14px;
text-align: center;
}
.footer-bottom a {
color: #ff695f;
text-decoration: none;
}
@media (max-width: 768px) {
.footer-row {
    flex-direction: column;
    text-align: center;
}
.newsletter form {
    flex-direction: column;
}
.newsletter input {
    width: 100%;
    margin-bottom: 10px;
}
}

