* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Libre Baskerville', serif; */
  line-height: 1.5;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100vw;
  height: auto;
  display: block;
}

/* Hero Overlay Flex Section (Contact Style) */
.overlay-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  padding: 0 2%;
}

.overlay-left {
  flex: 0 0 auto;
  padding-left: 10vw;
  padding-right: 2vw;
  display: flex;
  align-items: center;
  height: 100%;
}

.overlay-title {
  font-size: 4.5rem;
  font-weight: 400;
  color: #fff;
  font-family: 'Libre Baskerville', serif;
  letter-spacing: 0px;
  text-align: left;
  margin-bottom: 0;
  line-height: 0.9;
  font-style: normal;
}

.overlay-divider {
  width: 2px;
  height: 180px;
  background: #fff;
  margin: 0 3vw;
  opacity: 0.5;
}

.overlay-right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  padding-right: 6vw;
  text-align: left;
  gap: 0.8em;
  font-weight: 300;
}

.overlay-quote {
  font-size: 1.1rem;
  font-style: normal;
  color: #fff;
  margin-bottom: 0.3em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  opacity: 1;
}

.overlay-text {
  font-size: 1.1rem;
  font-style: normal;
  color: #fff;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  opacity: 1;
}

@media (max-width: 991px) {
  header {
    padding-top: 70px;
  }
  
  .overlay-flex {
    padding: 0 5%;
  }
  
  .overlay-left {
    padding-left: 5vw;
  }
  
  .overlay-title {
    font-size: 3.5rem;
    line-height: 1.0;
  }
  
  .overlay-right {
    font-size: 1rem;
    padding-right: 3vw;
    line-height: 1.7;
  }
  
  .overlay-divider {
    margin: 0 2vw;
    height: 150px;
  }
}

@media (max-width: 768px) {
  header {
    padding-top: 60px;
    height: auto;
    min-height: 70vh;
  }
  
  .overlay-flex {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: auto;
    padding: 4vw 8%;
    text-align: center;
  }
  
  .overlay-left {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1.5em;
    width: 100%;
    justify-content: center;
  }
  
  .overlay-divider {
    width: 80%;
    height: 2px;
    margin: 1.5em auto;
    background: #fff;
    opacity: 0.5;
    align-self: center;
  }
  
  .overlay-title {
    font-size: 2.8rem;
    line-height: 1.1;
    text-align: center;
  }
  
  .overlay-right {
    padding-right: 0;
    font-size: 1rem;
    align-items: center;
    line-height: 1.6;
    text-align: center;
    width: 100%;
  }
  
  .overlay-quote,
  .overlay-text {
    text-align: center;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  header {
    padding-top: 50px;
    min-height: 60vh;
  }
  
  .overlay-flex {
    padding: 3vw 5%;
  }
  
  .overlay-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .overlay-right {
    font-size: 0.9rem;
    padding-right: 0;
    line-height: 1.5;
  }
  
  .overlay-quote,
  .overlay-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .overlay-divider {
    width: 70%;
    margin: 1em auto;
  }
}

@media (max-width: 375px) {
  header {
    min-height: 50vh;
  }
  
  .overlay-title {
    font-size: 1.8rem;
  }
  
  .overlay-right,
  .overlay-quote,
  .overlay-text {
    font-size: 0.85rem;
  }
}

header {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 80px; /* Account for fixed navbar */
}

header .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 95%;
  z-index: -1;
}

header .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
  padding: 0 5%;
}


/* Navigation Bar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 10px 0;
  transition: background 0.3s ease;
}
nav .logo img {
  width: auto;
  height: 70px;
  position: relative;
  margin-left: 90%;  
}


nav .menu-checkbox {
  padding: 10px;
  display: none;
}

nav .menu-icon {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

nav .menu-icon .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: #333;
  transition: 0.3s;
}
nav .nav-links {
  margin-right: 5%;
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav .nav-links li a {
  color: #333;
  font-size: 1rem;
  font-weight: 540;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

nav .nav-links li a:hover {
  color: #f9b233;
}

@media (max-width: 768px) {
  header {
   
    height: 10vh;
   
  }
  
  nav .menu-checkbox {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    opacity: 0;
    z-index: 1002;
  }

  nav .menu-icon {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
  }

  nav .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
  }

  nav .nav-links.active {
    display: flex;
  }

  nav .nav-links li {
    text-align: center;
    padding: 0.5rem 0;
  }

  nav .nav-links li a {
    color: #333;
    font-size: 1rem;
  }

  nav .menu-checkbox:checked ~ .nav-links {
    display: flex;
  }
}
.contact-section {
    /* background-image: url('../images/Rectangle\ 22027.png'); */
    padding: 30px 0;
    color: rgb(241, 234, 234);
    text-align: center;
}

.contact-section h1 {
    font-size: 36px;
    margin-bottom: 8px;
    color: black;
}

.contact-section p{
  font-size: 20px;
  margin-bottom: 20px;
  color: black;
}


.contact-container {
    max-width: 1000px;
    margin: -26px auto;
    padding:40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    /* border: 2px solid black; */
}

.contact-info {
    /* background-image: url('../images/Rectangle\ 22027.png'); */
    padding: 20px;
    border-radius: 7px 0px 0px 7px;
    border: 4px solid white;
    column-rule: white;
    background-color: #5d85a9;
    /* font-family: 'lato',sans-serif; */
}

.contact-info h2 {
    font-size: 1.4rem;
    text-align: left;
}

.contact-info p {
  color: lightgray;
  font-size: 0.8rem;
  text-align: left;
}
.contact-details {
  margin-top: 35%;
  /* font-family: 'Arial', sans-serif; */
}

.contact-details div {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  /* font-family: 'Arial', sans-serif; */
}


.contact-details img {
    width: 20px;
    height: 20px;
 
}
.contact-details pre span{
  /* font-family: 'Arial', sans-serif; */
  font-size: 13px;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.164);
  overflow: hidden; 
}

.circle1 {    
  width: 90px;
  height: 90px;
  top: 78%;
  left: 31%;
}

.circle2 {
  width: 180px;
  height: 180px;
  bottom: -10%;
  right: 56%;
  clip-path: inset(0 0 40px 0);
}

.icon {
  margin-top:70px;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-left: -50%;
}

.icon a {
    background: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
    width: 25px;
    height: 25px;
}

.social-footer img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}


.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px 10px 10px 10px;
    border: 2px solid black;
    
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 7px;
    margin-top: 20px;
}

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

.form-label {
    position: absolute;
    top: -25px;
    left: 0;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    background: transparent;
    transition: border-color 0.3s;
    font-size: 14px;
}

.form-group input:focus {
    border-bottom: 2px solid #1a365d;
}

.form-group input::placeholder {
    color: #999;
    position: relative;
}

.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.subject-label {
    text-align: left;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

.subject-options {
    display: flex;
    gap: 12px;
    margin: 10px 0 -10px 0;
}

.subject-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.subject-option input[type="radio"] {
    margin: 0;
}

.subject-option label {
    color: #666;
    font-size: 14px;
}

.send-btn {
    background: rgba(1, 28, 42, 1);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 70%;
    
}

/* Responsive Design */
/* @media (max-width: 1250px){
  .circle1 {    
    width: 90px;
    height: 90px;
    top: 90%;
    left: 26%;
  }
  
  .circle2 {
    width: 180px;
    height: 180px;
    bottom: -26%;
    right: 57%;
    clip-path: inset(0 0 40px 0);
  }
} */
@media (max-width: 1024px) {
  .nav-links {
    gap: 0.8rem;
  }

  .contact-container {
    grid-template-columns: 1fr 2fr;
    padding: 20px;
  }

  .icon {
    margin-left: 0;
    justify-content: center;
  }

  .icon img {
    width: 20px;
    height: 20px;
  }
  /* .circle1 {    
    width: 70px;
    height: 70px;
    top: 90%;
    left: 25%;
  }
  
  .circle2 {
    width: 150px;
    height: 150px;
    bottom: -23%;
    right: 60%;
    clip-path: inset(0 0 40px 0);
  }
  .circle,.circle1,.circle2 {
    display: block; 
  }
  */
 }
@media (max-width: 798px) {
  .contact-info {
    border-radius: 10px;
    margin-bottom: 20px;
    margin-left: 20%;
    width: 58%;
    /* margin-left: 20%;
    width: 63%; */
  }
  .contact-details {
    margin-top: 20%;
}
  .contact-form{
    border-radius: 10px;
    margin-left: 5%;
    width: 90%;
  }

  .contact-section h1 {
    font-size: 2rem;
  }

  .contact-section p {
    font-size: 1rem;
  }

  .contact-container {
    grid-template-columns:1fr;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .send-btn {
    margin: 20px auto 0;
    display: block;
    text-align: center;
   
  }

  .icon {
    margin-top: 20px;
    margin-left: -60%;
  }
}


@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
  }
  .logo {
    height: 80px;
    padding-left: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .nav-links a {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .contact-details {
    margin-top: 20%;
}
  .contact-info{
    margin-left: 2%;
    width: 93%;
  }
  .contact-section h1 {
    font-size: 1.5rem;
  }

  .contact-section p {
    font-size: 0.8rem;
  }

  .contact-info h2 {
    font-size: 1.2rem;
  }

  .contact-info p {
    font-size: 0.7rem;
  }

  .contact-form {
    border-radius: 10px;
    margin-left: 3%;
    /* width: 73%; */
}

.form-grid {
  grid-template-columns:1fr;
}


.subject-options {
    display: grid;
    gap: 20px;
    margin: 10px 0 -10px 0;
}
    .form-label {
    font-size: 12px;
  }

  .form-group input {
    font-size: 12px;
    padding: 6px 0;
  }

  .send-btn {
    padding: 10px 20px;
  }

  .icon a {
    width: 30px;
    height: 30px;
  }

  .icon img {
    width: 18px;
    height: 18px;
  }
}
.footer {
  position: relative;
  background-color: rgba(23, 36, 53, 1);
  color: white;
  padding: 20px 20px;
  overflow: hidden;
  font-family: none;
  font-weight:normal;
}

/* .footer::before {
  content: '';
  position: absolute;
  top: -110px;
  left: 0;
  width: 100%;
  height: 220px;
  background-color: rgba(43, 110, 152, 1);
  border-radius: 40%;
} */

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  align-items: flex-start;
}

.footer-section {
  margin: 90px 10px;
  text-align: left;
}

.footer-section h3 {
  font-size: 18px;
  margin-top: 50px;
  margin-bottom: 10px;
}

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

.footer-section ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-section ul li img {
  width: 30px;
  height: auto;
  margin-right: 15px;
}

.footer-section ul li h4 {
  font-size: 1.2rem;
  font-weight: 540;
}

.footer-section ul li a {
  padding-top: 10px;
  line-height: 1.5;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section p i {
  margin-right: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-top: 2px solid white;
  padding-top: 10px;
  text-align: center;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 80px;
  height: 110px;
  padding-left: 20px 10px;
}

.footer-bottom p {
  font-size: 14px;

}

.footer-bottom p a {
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

.social-icons {
  display: flex;
  margin-top: 10px;
  gap: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50%;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #f1f1f1;
  border-color: #007bff;
  color: #007bff;
}

.social-icons a i {
  font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center; 
    padding: 10px;
  }

  .footer-section {
    flex: 1 1 100%;
    margin: 15px 0;
    padding: 5px;
    text-align: center; 
  }

  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 5px;
    margin-top: 10px;
  }

  .footer-section ul {
    padding: 0;
  }

  .footer-section ul li {
    justify-content: center; 
  }

  .footer-section ul li h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
  }

  .footer-section ul li img {
    width: 25px;
    margin-right: 0; 
  }

  .footer-section ul li a {
    line-height: 1.4;
  }

  .footer-section p {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 5px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 5px;
  }

  .footer-logo img {
    width: auto;
    height: 90px;
    margin: 10px auto;
  }

  .social-icons {
    gap: 8px;
    margin-top: 8px;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
  }

  .social-icons a i {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center; 
    padding: 8px;
  }

  .footer-section {
    margin: 18px 0;
    padding: 5px;
    text-align: center; 
  }

  .footer-section h3 {
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 5px;
  }

  .footer-section ul {
    padding: 0;
  }

  .footer-section ul li {
    justify-content: center;
  }

  .footer-section ul li h4 {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }

  .footer-section ul li img {
    width: 20px;
    margin-right: 0; 
  }

  .footer-section ul li a {
    line-height: 1.3;
  }

  .footer-section p {
    font-size: 11px;
    line-height: 1.3;
    margin-top: 5px;
  }
}
