 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Inter", sans-serif;
 }

 body {
     background: #f6f7f5;
     color: #2F4D41;
 }

 .contact-container {
     width: 100% !important;
     /* max-width:1400px; */
     margin: auto;
     /* padding:40px 20px; */
 }

 .heading-wrap {
     height: 300px;
     width: 100% !important;
     text-align: center;
     margin-bottom: 40px;
     background-color: #2F4D41;
     padding: 3rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }

 .heading-wrap h1 {
     font-size: 52px;
     font-weight: 700;
     color: #fff;
     margin-bottom: 10px;
 }

 .heading-wrap p {
     font-size: 16px;
     color: #fff;
     max-width: 700px;
     font-family: "Inter" !important;
     margin: auto;
     line-height: 1.5;
 }

 /* Main Section */
 .main-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
     width: 1400px;
     margin: auto;
     padding: 3rem 0rem;
 }

 /* LEFT FORM CARD */
 .form-card {
     background: #ffffff;
     padding: 30px;
     border-radius: 16px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
 }

 .form-card h2 {
     font-size: 26px;
     margin-bottom: 10px;
     color: #2F4D41;
 }

 .form-card p {
     font-size: 14px;
     color: #4f615b;
     margin-bottom: 22px;
 }

 .two-input {
     display: flex;
     gap: 12px;
 }

 .form-card label {
     font-size: 13px;
     color: #2F4D41;
     margin-bottom: 6px;
     display: block;
 }

 .form-card input,
 .form-card select,
 .form-card textarea {
     width: 100%;
     padding: 12px 14px;
     border: 1px solid #d7d7d7;
     border-radius: 8px;
     outline: none;
     font-size: 14px;
     background: #fff;
     color: #2F4D41;
 }

 .form-card input:focus,
 .form-card textarea:focus,
 .form-card select:focus {
     border-color: #2F4D41;
     box-shadow: 0 0 0 2px rgba(47, 77, 65, 0.12);
 }

 .form-card textarea {
     min-height: 130px;
     resize: vertical;
 }

 .submit-btn {
     background: #2F4D41;
     color: #fff;
     padding: 14px 22px;
     border: none;
     border-radius: 40px;
     font-size: 15px;
     cursor: pointer;
     margin-top: 10px;
     display: inline-block;
     transition: 0.25s;
 }

 .submit-btn:hover {
     background: #C8CA4B;
     color: #2F4D41;
 }

 .submit-btn2 {
     text-decoration: none;
     background: #C8CA4B;
     color: #2F4D41;
     padding: 14px 22px;
     border: none;
     border-radius: 40px;
     font-size: 15px;
     cursor: pointer;
     margin-top: 10px;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: 0.25s;
 }

 .submit-btn2:hover {
     background: #2F4D41;
     color: #C8CA4B;
 }

 .submit-btn2 svg {
     flex-shrink: 0;
 }

 /* RIGHT SIDE */
 .right-side {
     display: flex;
     flex-direction: column;
     gap: 26px;
 }

 .hero-box {
     background: #2F4D41;
     color: #fff;
     border-radius: 16px;
     padding: 28px;
     min-height: 220px;
     background-image: url('https://images.pexels.com/photos/3184405/pexels-photo-3184405.jpeg');
     background-size: cover;
     background-position: center;
     position: relative;
 }

 .hero-overlay {
     position: absolute;
     inset: 0;
     background: rgba(47, 77, 65, 0.75);
     border-radius: 16px;
 }

 .hero-box-text {
     position: relative;
     z-index: 2;
     max-width: 500px;
     font-size: 26px;
     font-weight: 600;
     line-height: 1.3;
     margin-top: 35px;
 }

 /* Contact info cards */
 .info-card {
     background: #fff;
     padding: 20px;
     border-radius: 16px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
     display: flex;
     align-items: flex-start;
     gap: 16px;
 }

 .info-icon {
     width: 46px;
     height: 46px;
     border-radius: 50%;
     background: #C8CA4B;
     color: #2F4D41;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     font-weight: 700;
 }

 .info-content h4 {
     font-size: 16px;
     font-weight: 600;
     color: #2F4D41;
     margin-bottom: 4px;
 }

 .info-content p {
     font-size: 13px;
     color: #4f615b;
     line-height: 1.4;
 }

 /* Responsive */
 @media(max-width:900px) {
     .main-grid {
         grid-template-columns: 1fr;
     }
 }

 /* google maps  */

 .full-map-wrap {
     width: 100%;
     margin-top: 50px;
 }

 .full-map-wrap iframe {
     width: 100%;
     height: 500px;
     display: block;
 }