  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Montserrat';
    }

    body {
        font-family: 'Montserrat';
        margin: 0;
        padding: 0;
        background-color: #fff;
    }

    .contact-container {
       /* padding: 20px; */
       background: white;
}
    .contact-container2 {
        max-width: 1200px;
        margin: auto;
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
}

    .contact-header {
        text-align: center;
        padding: 20px 0;
        border-bottom: 2px dashed transparent;
        border-image: linear-gradient(to right, #5d3387, #c3c0c7);
        width: 50%;
        margin: auto;
        border-image-slice: 1;
    }

    .contact-header h1 {
        color: #663399;
        font-size: 2.5em;
        margin-bottom: 10px;
        width: 50%;
        margin: auto;
    }

    .contact-content {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        padding: 20px;
    }

    .contact-info {
        flex: 1;
        min-width: 300px;
    }

  

  .contact-info h2 {
  background: linear-gradient(to right, #5d3387, #c3c0c7);
  -webkit-background-clip: text;     /* Chrome, Safari */
  background-clip: text;             /* Standard property */
  -webkit-text-fill-color: transparent; /* Hide the normal text color */
  font-weight: 700;
  margin-bottom: 20px;
}
    .contact-details {
        margin-bottom: 30px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .contact-icon {
        color: #0066b2;
        font-size: 1.5em;
        margin-right: 15px;
        min-width: 30px;
    }

    .contact-text h3 {
        margin: 0 0 5px 0;
        color: #333;
    }

    .contact-text p {
        margin: 0;
        color: #666;
    }

    .contact-form {
        flex: 1;
        min-width: 300px;
    }

  .contact-form h2 {
  background: linear-gradient(to right, #5d3387, #c3c0c7);
  -webkit-background-clip: text;     /* Chrome, Safari */
  background-clip: text;             /* Standard property */
  -webkit-text-fill-color: transparent; /* Hide the normal text color */
  font-weight: 700;
  margin-bottom: 20px;
}


    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #333;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
        box-sizing: border-box;
    }

    .form-group textarea {
        height: 150px;
        resize: vertical;
    }

    .submit-btn {
        background: linear-gradient(to right, #5d3387, #c3c0c7);
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
    }

    .submit-btn:hover {
        background: linear-gradient(to right, #5d3387, #c3c0c7);
    }

    .map-container {
        margin-top: 30px auto;
        padding: 10px;
    } 
    
    
.fa-solid,.fas {
    font-weight: 900;
   background: linear-gradient(to right, #5d3387, #c3c0c7);
  -webkit-background-clip: text;     /* Chrome, Safari */
  background-clip: text;             /* Standard property */
  -webkit-text-fill-color: transparent; /* Hide the normal text color */
  font-weight: 700;
  margin-bottom: 20px;
}
    .map-header{
        margin: auto;
        padding: 10px;
    }

    .map-container hr {
        margin-bottom: 8px;
        width: 12%;
        height: 5px;
        background: #0066b29c;
        border-radius: 50px;
    }

    .map-container iframe {
        width: 100%;
        height: 400px;
        border: none;
        /* border-radius: 10px; */
    }

    @media (max-width: 768px) {
        .contact-container {
            margin: 10px;
            padding: 15px;
        }

        .contact-header h1 {
            font-size: 2em;
        }

        .contact-content {
            flex-direction: column;
        }
    }