
.custom-col {
    /* width: 100%; Set the column width to 100% */
    display: flex; /* Make the column a flex container */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    box-shadow: rgba(219, 206, 206, 0.404) 0px 0px 0px 1px;
    margin: 30px; /* Optional: Margin between columns */
}

.cards {
    width: 100%; /* Make the card fill the full width of the column */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icon-circle {
    background-color: var(--main-color); /* Circle background color */
    width: 60px;
    height: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 50%; /* Make it a circle */
    /* padding: 20px; Add padding to create space around the icon */
    /* width: 30%; */
}

.icon-circle i {
    color: #f3e3ce; /* Set icon color */
    font-size: 16px;
}

.equal-height {
    min-height: 250px; /* Set a minimum height for the card */
}


/* section3....................................................................................................... */
.contect-form-heading{
    font-weight: bold;
    font-size: 44px;

}
.contact-form-container {
    margin: auto; /* Center the form horizontally */
    padding: 20px; /* Add padding for aesthetics */
    background-color: #f9f9f9; /* Light background color */
    border-radius: 10px; /* Rounded corners */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); Subtle shadow */
    max-width: 800px; /* Maximum width for larger devices */
}
.custom-input-group {
    position: relative; /* Set position relative for the input group */
    width: 100%; /* Make input group take full width */
    border: 1px solid rgb(255, 255, 255); /* Set border color to black */
    transition: border-color 0.3s; /* Smooth transition for border color on focus */
}
/*  */


.custom-form-control {
    width: 100%; /* Make the input full width */
    padding-left: 40px; /* Add padding to the left for the icon */
    color: #dde4eb; /* Input text color */
 
}

.custom-form-control:focus {
    border-color: rgba(255, 238, 238, 0.295); /* Change border color to black on focus */
    outline: none; /* Remove default outline */
}


.input-icon {
    position: absolute; /* Position the icon absolutely */
    left: 10px; /* Position from the left */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for vertical centering */
    color: #a9abad; /* Input text color */

}

.btns{
   background-color: var(--main-color);
   color: #ccd2d8;
   font-size: 10px;
   border-radius: 60px;
   border: none;
   font-weight: bold;
}
.contect-submit-btn{
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #725AC1;
    background-color: var(--main-color);
    cursor: pointer;
    transition: ease-out 0.5s;
    /* border: 2px solid #725AC1; */
    /* border-radius: 10px; */
    box-shadow: inset 0 0 0 0 #725AC1;
  }
  
  .contect-submit-btn:hover {
    color: white;
    box-shadow: inset 0 -100px 0 0  var(--primary-color);
  }
  
  .contect-submit-btn:active {
    transform: scale(0.9);
  }
  .contact-form-heading{
    color: var(--primary-color);
  }
  .content-para{
    color: var(--main-color);
  }

/* footer4................................................................................................... */
.footer-section {
    color: rgba(0, 0, 0, 0.685);
    padding: 30px 0;
    
}

.footer-section .logo-img {
    width: 200px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.footer-section h6 {
    font-size: 14px;
    margin-top: 10px;
}


.footer-section .icons i {
    font-size: 15px;
    color: #000000;
    padding: 10px; /* Add some padding to make the icon area larger */
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 147, 147, 0.315);
    width: 13%;
    /* height: 6vh; */
    
}

.footer-section .icons i:hover {
    background-color: var(--main-color);

    color: rgb(255, 255, 255); /* Icon color on hover */
    border-radius: 10%; /* 10% rounded corners */
    transition: all 0.3s ease;
    border: 1px solid white;
}

.footer-section h5 {
    padding-top: 20px;
    margin-bottom:22px;
    color: rgb(7, 7, 7);

}

.footer-section ul {
    list-style-type: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 18px;
    font-size: 16px;
}

.footer-section ul li a {
    color: rgba(0, 0, 0, 0.685);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

/* Email form styling */
.email-wrapper {
    position: relative;
}

.email-wrapper input {
    width: 100%;
    padding-left: 60px; 
    border-radius: 4px;
    height: 50px;
    /* padding: 27px; */
}

.email-wrapper i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #b6b4b2;
    font-size: 16px;
}

.footer-section form .submit-btn {
    width: 100%;
    border-radius: 5px;
    background-color: var(--main-color);


}
.copyright {
    margin: 0;
    color: #ffffff; /* Text color */
    font-size: 15px; /* Font size */
    padding: 20px 0; /* Padding for spacing */
    text-align: center; /* Center the text */
    border-top: 1px solid #ffffff; /* Optional: border on top */
   background-color: var(--primary-color);

    
}
