* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
scroll-behavior: smooth;
overflow: auto;
scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f5f5f5;
  overflow: auto;
  scrollbar-width: none; /* Firefox */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.container {
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.logo1 {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #0c3c60;
}

.logo1 img {
  height: 50px;
  margin-right: 10px;
}

.para {
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
}

.logo1 span {
  color: #0c3c60;
  font-family: "Open Sans", sans-serif;
}


.rotary{
  display: flex;
  flex-direction: row;
}

.dynamic{
  position: absolute;
  font-size: 15px;
  margin: 20px 10px 10px 10px; 
  color: #f7a81b;
  padding-top: 20px;
  left: 100px;
  font-family: "Open Sans", sans-serif;
}

nav {
  display: flex;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #0c3c60;
  font-weight: 500;
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  display: flex;
  text-align: center;
  justify-content: center;
}

nav ul li a:hover {
  color: #5AACE5;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  width: 30px;
  height: 22px;
  z-index: 1001;
}

.hamburger div {
  height: 4px;
  background:#0c3c60;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('/frontend/assets/background.jpg') no-repeat center center/cover;
  position: relative;
  height: 100vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero h1,
.hero p,
.cta-button {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 60px;
  color: white;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.hero p {
  font-size: 20px;
  color: white;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
}

.cta-button {
  display: inline-block;
  background-color: #f7a81b;
  color: #0c3c60;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  font-family: "Open Sans", sans-serif;
}

.cta-button:hover {
  background-color: #d28a00;
}

.arrow1 {
  position: absolute;
  bottom: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.arrow1 p, img{
  opacity: 80%
}

.arrow1:hover p {
color: #FFFFFF; 
opacity: 100%;
font-family: "Open Sans", sans-serif;
}

.arrow1:hover img {
filter: brightness(0) invert(1);
opacity: 100%
}

a {
  text-decoration: none;
  color: white;
}

.second-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.section-title {
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  color: #0a2c45;
  font-family: "Montserrat", sans-serif;
}

.section-title span {
  display: block;
  width: 70px;
  height: 4px;
  background-color: #f9b233;
  margin: 10px auto 30px auto;
  border-radius: 2px;
}

.left-column,
.right-column {
  flex: 1;
  min-width: 300px;
}

.left-column {
  max-width: 600px;
  margin-top: 100px;
}

.left-column h3 {
  color: #0a2c45;
  margin-bottom: 10px;
  margin-left: 20px;
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
}

.left-column p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 10px;
  padding: 20px;
  text-align: justify;
  font-family: "Open Sans", sans-serif;
}

.left-column button {
  margin-top: 20px;
  margin-left: 20px;
  padding: 12px 24px;
  background-color: #0C3C60;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  font-family: "Open Sans", sans-serif;
}

.left-column button:hover {
  background-color: #082943;
}

.right-column {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.card-icon {
  background-color: #0a2c45;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  font-size: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.card-content h4 {
  margin: 0 0 10px;
  color: #0a2c45;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
}

.card-content p {
  margin: 0;
  line-height: 1.6;
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
}

/* Gallery */

.gallery-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-section h2 {
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: #0a2c45;
  font-family: "Montserrat", sans-serif;
}

.gallery-section span {
  display: block;
  width: 70px;
  height: 4px;
  background-color: #f9b233;
  margin-bottom: 30px;
  border-radius: 2px;
}

.gallery-section p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 20px;
  line-height: 1.6;
  color: #374151;
  font-family: "Open Sans", sans-serif;
  text-align: justify;
}

.gallery-grid {
  align-items: center;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(12, 60, 96, 0.8) 0%, rgba(12, 60, 96, 0.5) 30%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.gallery-item .caption {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
  color: white;
  z-index: 2;
  text-align: left;
  font-family: "Montserrat", sans-serif;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover .caption {
  bottom: 0;
}


@media (max-width: 990px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .gallery-section h2 {
    font-size: 20px;
  }
}


@media (max-width: 992px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 25px;
  }

  .left-column h3{
    margin-left: 10px;
  }

  .left-column p, .right-column p{
    font-size: 16px;
    padding: 10px;
    text-align: justify;
  }

  .left-column button{
    /* width: 100%; */
    font-size: 16px;
    margin-left: 10px;
  }

  .gallery-section h2{
    font-size: 25px;
  }

  .gallery-section p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
  }
  nav {
    display: none;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 10px 20px;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hamburger {
    display: flex;
  }


  /* When hamburger is clicked (active state) */
.hamburger.active div:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 8px;
}

.hamburger.active div:nth-child(2) {
  opacity: 0; /* Hide the middle line */
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -8px;
}

/* Optional: Add a scale or rotation to the whole hamburger icon */
.hamburger.active {
  transform: rotate(180deg); /* Optional: Rotate the entire hamburger when active */
}

/* Navigation menu styling */
#nav-menu {
  display: none; /* Initially hidden */
  opacity: 0; /* Initially invisible */
  transform: translateY(-30px); /* Position the menu slightly above */
  transition: opacity 1s ease, transform 1s ease; /* Fade in and slide down effect */
}

#nav-menu.active {
  display: block; /* Make the menu visible */
  opacity: 1; /* Fade the menu in */
  transform: translateY(0); /* Slide the menu into its normal position */
}

  nav ul li a {
    font-size: 16px;
  }

  .second-container {
    flex-direction: column;
  }

  .section-title{
  margin-bottom: 5px;
 }

  .section-title h2{
    font-size: 20px;
  }

  .card {
    align-items: flex-start;
  }

  .hero {
    height: 350px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 14px;
    padding: 0 10px;
  }

  .cta-button {
    font-size: 14px;
    padding: 10px 20px;
  }

  .left-column{
    margin-top: 10px;
    /* margin-right: 20px; */
    margin-bottom: 20px;
    max-width: 800px;
  }

  .right-column{
    max-width: 800px;
  }

  .right-column h4{
    font-size: 16px;
  }

  .left-column h3{
    font-size: 18px;
    padding-right: 10px;
    text-align: center;
    
  }

  .left-column p{
    font-size: 14px;
    padding: 10px;
  }

  .left-column button{
    font-size: 14px;
  }

  .button-wrapper {
    text-align: center;
  }

  .right-column p{
    font-size: 14px;
    /* padding: 10px; */
  }

  .gallery-section p{
    font-size: 14px;
  }

  .gallery-section h2{
  font-size: 20px;
}

  .gallery-item{
    height: 300px;
  }
}

@media (max-width: 480px) {

  .hamburger {
    width: 25px;
  }
  
  .hero {
    height: 300px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .section-title h2{
    font-size: 20px;
  }

  .cta-button {
    font-size: 12px;
    padding: 8px 16px;
  }

    .left-column button{
      width: 65%;
      font-size: 14px;
    }
  
  .gallery-item{
    height: 250px;
  }
}


@media (max-width: 380px) {
  header {
    padding: 10px;
  }

  .para {
    font-size: 14px;
  }

  .dynamic{
    position: absolute;
    font-size: 13px;
    margin: 20px 10px 10px 10px; 
    color: #f7a81b;
    left: 80px;
    bottom: 10px;
    font-family: "Open Sans", sans-serif;
  }

  nav ul li a {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 20px;
  }

  .hero p {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .cta-button {
    font-size: 12px;
    padding: 8px 14px;
  }

  .arrow1 p {
    font-size: 12px;
  }

  .second-container {
    padding: 30px 10px;
  }

  .left-column h3 {
    font-size: 18px;
    text-align: center;
  }

  .left-column p {
    font-size: 14px;
    text-align: justify;
    padding: 20px;
    margin-right: 20px;
  }

  .left-column button {
    padding: 10px;
    font-size: 12px;
    width: 70%;
    margin-left: 20px;
    margin-bottom: 20px;
  }

  .card-content h4 {
    font-size: 18px;
  }

  .card-content p {
    font-size: 14px;
    margin-right: 20px;
  }

  .gallery-section h2 {
    font-size: 20px;
  }

  .gallery-section p {
    font-size: 14px;
    text-align: justify;
  }

  .gallery-grid {
    gap: 15px;
    padding: 10px;
  }

  .card-icon {
    width: 32px;
    height: 32px;
    padding: 6px;
  }

  .card-icon img {
    width: 38px;
    height: 18px;
  }
}

@media (max-width: 300px) {
  .hero {
    height: 300px;
  }

  .hero h1 {
    font-size: 18px;
  }

  .hero p {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .cta-button {
    font-size: 10px;
    padding: 4px 10px;
  }

  .arrow1 p {
    font-size: 10px;
  }

  .para {
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .card {
    padding: 15px;
  }

  .left-column,
  .right-column {
    margin: 0;
  }

  .button-wrapper {
    text-align: center;
    margin-right: 30px;
}

}




/* Contact Form */


.container-1 {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}
.header-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-1 h1 {
  font-size: 36px;
  color: #0c3c60;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
.header-1 p {
  font-size: 16px;
  text-align: justify;
  word-spacing: -1.5px;
  letter-spacing: -1x;
  font-family: "Open Sans", sans-serif;
  color: #374151;
  line-height: 1.6;
}

.line {
  width: 60px;
  height: 3px;
  background-color: #f7a81b;
  margin: 10px auto 10px;
}
strong {
  font-family: "Montserrat", sans-serif;
  color: #0c3c60;
  font-size: 18px;
}
.content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 60px;
}
.contact-info,
.contact-form {
  flex: 1;
  min-width: 200px;
}
.contact-info {
  display: flex;
  flex-direction: column;
}
.contact-info h2,
.contact-form h2 {
  font-size: 24px;
  color: #0c3c60;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.locat {
  margin-bottom: 7%;
}

#info1 {
  width: 35px;
  height: 36px;
  background-color: #0c3c60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  margin-top: -9px;
}
#info1 img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.info-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
  color: #374151;
}
.social-icon1 {
  display: flex;
  gap: 15px;
}
.social-icon1 a:hover {
  background-color: #5aace5;
}
.info-text a {
  color: #5aace5;
  text-decoration: none;
}
.info-text a:hover {
  text-decoration: underline;
  text-decoration-color: #c7e9ff;
}
.social-icons-1 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.icon-circle {
  width: 35px;
  height: 36px;
  background-color: #0c3c60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  margin-top: -9px;
}

.icon-circle img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
#twitter img {
  width: 18px;
  height: 18px;
}
.contact-form {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 95%;
  padding: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  border: 1px solid #d1d5db;
  opacity: 100%;

  border-radius: 4px;
  font-size: 14px;
}
.contact-form button {
  width: 95%;
  background-color: #0c3c60;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  margin-left: 10px;
}
.contact-form button:hover {
  background-color: #082943;
}
.label-content {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #374151;
  text-align: left !important;
  margin-left: 10px;
}
#message {
  resize: none;
}

@media (max-width: 992px) {

.header-1 h1 {
  font-size: 25px;
}

.contact-info h2, .contact-form h2 {
  font-size: 20px;
}

strong {
  font-size: 16px;
}

}

@media (max-width: 768px) {

  .header-1 h1 {
    font-size: 20px;
  }

  .contact-info h2,
.contact-form h2 {
  font-size: 18px;
}

strong {
  font-size: 14px;
}

.info-text p {
  font-size: 14px;

}

  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .contact-info {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .locat {
    margin-bottom: 5px;
  }
  .social-icon1 a {
    margin-top: -15%;
  }
  .info-text {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .info-text p,
  .info-text a,
  .info-text strong {
    text-align: center;
  }

  .social-icon1 {
    justify-content: center;
    display: flex;
    gap: 20px;
    margin-top: 10px;
  }

  .contact-form {
    width: 100%;
    padding: 10px 20px;
    gap: 20px;
    text-align: left;
  }

  .contact-form button {
    font-size: 14px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .container-1 {
    padding: 20px;
  }

  .header-1 h1 {
    font-size: 20px;
  }

  .contact-info h2,
.contact-form h2 {
  font-size: 16px;
}

  .header-1 p {
    font-size: 14px;
  }
  input,
  textarea {
    font-size: 13px;
    padding: 10px;
  }

  button[type="submit"] {
    font-size: 14px;
  }
}