/* 
  Note:
  the css of header and footer is not here. its directly
  linked in the head section through link tag
*/

/* .contact-page {
  padding: 0 45px;
}

.contact-pg-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70vh;
  width: 100%;
  padding: 0 20px;
  background-color: #fafafa;
}

.contact-pg-left {
  width: 60%;
  padding: 10px 20px;
}

.contact-pg-left h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1b1f2e;
  margin: 0 0 20px 0;
}

.contact-pg-left p {
  color: #818a91;
  margin: 0 0 10px 0;
  font-size: 1rem;
  padding: 0 40px;
}

.founder-text {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.founder-text h3 {
  font-weight: 200;
}

.contact-pg-image {
  height: 70%;
  width: 50%;
}
.contact-pg-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.contact-pg-right {
  display: flex;
  flex-direction: column;
  column-gap: 20px;
  align-items: flex-start;
  padding: 10px 20px;
  border-top: 5px solid #0787d9;
  box-shadow: 0 0 15px rgba(250, 250, 250, 0.459);
}

.contact-pg-box {
  margin: 20px 0;
}
.contact-pf-box h4 {
  color: #1b1f2e;
  font-size: 2rem;
}

.contact-pg-box p {
  color: #818a91;
  font-size: 1.2rem;
}

.contact-pg-icons {
  margin: 10px 0;
  display: flex;
  width: 80%;
  align-items: center;
  justify-content: space-between;
  font-size: 2rem;
  border-top: 1px solid rgba(128, 128, 128, 0.514);
  padding-top: 10px;
}
 */







 .contact-page {
  padding: 40px 20px;
  background: linear-gradient(to bottom right, #ffffff, #f0f4f8);
 
}

.contact-pg-container {
  display: flex;
  align-items: stretch; /* Ensure both sides have the same height */
  justify-content: space-between;
  min-height: 70vh;
  width: 100%;
  background: linear-gradient(
    to top right,
    #00294B,
    #003a69,
    #004985,
    #005499
  );
   border-radius: 9px;

 
}



.contact-pg-left, .contact-pg-right {
  flex: 1; /* Allow both sides to grow equally */
  padding: 20px;
  box-sizing: border-box;
}


/* Left Section */
.contact-pg-left {
  flex: 1;
  min-width: 300px;
}

.contact-pg-left h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 15px;
  text-align: center;
}

.contact-pg-left p {
  color: #d4d0d0;
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
}

.founder-text {
  display: flex;
  gap: 5px;
  align-items: baseline;
  font-style: italic;
  color: #007bff;
}

.contact-pg-image {
  margin:auto;
  max-width: 300px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-pg-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Right Section */
.contact-pg-right {
  flex: 1;
  min-width: 300px;
  background: #f8f9fa;
  padding: 20px;
  text-align: center;
  padding-top: 150px;
}

.contact-details {
  margin-bottom: 20px;
}

.contact-pg-box h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 15px;
  text-align: center;
}

.contact-pg-box p1 {
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
}



.contact-pg-box {
  margin-bottom: 20px;
}

.contact-pg-box h4 {
  color: #333;
  font-size: 1.5rem;
}

.contact-pg-box p {
  color: #888;
  font-size: 1rem;
  margin-bottom: 5px;
}

/* Social Icons */
.social-icons {
  /* display: flex; */
  gap: 15px;
  font-size: 1.5rem;
}

.social-icons a {
  color: #007bff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-pg-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-pg-left,
  .contact-pg-right {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-pg-left h2 {
    font-size: 1.6rem;
  }

  .contact-pg-box h4 {
    font-size: 1.2rem;
  }

  .contact-pg-box h2{
    font-size: 1.6rem;
  }
  
  .social-icons {
    font-size: 1.2rem;
  }

  /* Center the image on mobile */
  .contact-pg-image {
    margin: 20px auto;
    max-width: 70%;
  }
}



/* Why Choose Us */

.section-container {

  /* margin: auto; */
  padding: 2rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #2b3e7e;
  margin-bottom: 2rem;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
}

.feature {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  width: 300px; /* Increased width */
  text-align: left;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  color: #ff8c42;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #2b3e7e;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}