/* Contact Section Container */
.contact-container {
  background-color: #f8f8f8;
  padding: 50px 0;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  flex-wrap: wrap;
}

/* Contact Details */
.contact-details {
  flex: 1;
  max-width: 500px;
  margin-bottom: 30px;
}

.contact-title {
  font-size: 28px;
  font-weight: bold;
  color: black;
  margin-bottom: 30px;
}

.contact-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

.contact-address,
.contact-phone,
.contact-email,
.contact-hours {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* Social Icons */
.contact-social {
  margin-top: 15px;
}

.social-link {
  display: inline-block;
  font-size: 24px;
  color:black;
  margin-right: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}




/* Contact Form */
.contact-form-container {
  flex: 1;
  max-width: 500px;
  width: 100%;
}

.contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border 0.3s ease-in-out;
}

.form-input:focus,
.form-textarea:focus {
  border-color:black;
  outline: none;
}

.form-textarea {
  resize: none;
}

/* Buttons */
.form-buttons {
  display: flex;
  justify-content: space-between;
}

.submit-btn,
.reset-btn {
  background-color: black;
  color: #fff;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}



.reset-btn {
  background-color: #ccc;
  color: #333;
}

.reset-btn:hover {
  background-color: #888;
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-details,
  .contact-form-container {
    max-width: 100%;
  }
}
/* Google Map Section */
.google-map-section {
  display: flex;
  justify-content: center;
  align-items: center;

  
  
}

.map-container {
  width: 100%;

  
  overflow: hidden;

  
  
  padding: 15px;
}

.map-container iframe {
  width: 100%;
  height: 450px;

  

  
}

/* Responsive Design */
@media (max-width: 768px) {
  .map-container {
    width: 95%;
  }

  .map-container iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .map-container iframe {
    height: 300px;
  }
}


  /* Banner Area Styles */
.banner-area {
    position: relative;
    height: 90vh; /* Full-screen height */
    background: url('/images/online-course-of-study.jpg') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark Overlay Styles */
.dark-overlay {
    position: absolute;
    inset: 0; /* Covers the entire container */
    background: rgba(0, 0, 0, 0.5); /* Adjust transparency */
    z-index: 1;
}

/* Content Wrapper Styles */
.content-wrapper {
    position: relative;
    z-index: 2; /* Ensures text is above the overlay */
    text-align: center;
    color: #fff;
    padding: 20px;
    margin-top: -10px;
}

/* Headline Styles */
.headline {
    font-size: 60px;
    font-weight: bold;
    color:white;
    font-family: "Arial", sans-serif;
    margin: 0;
    opacity: 0; /* Initially hidden */
    transform: translateY(-2000px);
    transition: opacity 1s ease, transform 1s ease; /* Transition effects */
}

/* Sub Text Styles */
.sub-text {
    font-size: 35px;
    font-family: "Arial", sans-serif;
    font-weight: 600;
    color:white;
    margin-top: 10px;
    opacity: 0; /* Initially hidden */
    transform: translateY(200px);
    transition: opacity 1s ease, transform 1s ease; /* Transition effects */
}

/* Display Headline Styles */
.display-headline {
    opacity: 1;
    transform: translateY(0); /* Final state */
}

/* Display Sub Text Styles */
.display-subtext {
    opacity: 1;
    transform: translateY(0); /* Final state */
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .headline {
        font-size: 50px; /* Adjust font size for medium screens */
    }
    
    .sub-text {
        font-size: 40px; /* Adjust font size for medium screens */
    }
}

@media (max-width: 768px) {
    .banner-area {
        height: 80vh; /* Adjust height for smaller screens */
    }

    .headline {
        font-size: 40px; /* Adjust font size for small screens */
    }

    .sub-text {
        font-size: 30px; /* Adjust font size for small screens */
    }
}

@media (max-width: 480px) {
    .banner-area {
        height: 60vh; /* Adjust height for extra small screens */
    }

    .headline {
        font-size: 30px; /* Further adjust font size for extra small screens */
    }

    .sub-text {
        font-size: 25px; /* Further adjust font size for extra small screens */
    }
}
