*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*Section Header */

.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #2c3e50, #3498db);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

nav {
  max-width: 1200px;
  margin: auto;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo img {
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  
}


.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #f1c40f;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #f1c40f;
}

.nav-links li a:hover::after {
  width: 100%;
}


.loginbtn {
  padding: 8px 20px;
  border: none;
  border-radius: 25px;
  background: #f1c40f;
  color: #2c3e50;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;

}

.loginbtn:hover {
  background: #fff;
  color: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);

}


.menu-icon {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;

}



@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    flex-direction: column;
    width: 240px;
    padding: 25px 20px;
    border-radius: 0 0 12px 12px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .menu-icon {
    display: block;
  }
}



/* section main */
.main {
  background: linear-gradient(135deg, rgba(53, 41, 130, 0.8), rgba(32, 9, 150, 0.8)),
              url("./image/main1.jpg") no-repeat center center/cover;
  height: 80Vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;

}

.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;

}

.main-content {
  text-align: center;
  color: #fff; 
  position: relative;
  z-index: 2; 

}

.main-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main-content h4 {
  font-size: 17px;
  font-weight: 400;
  color: #ddd; 
}

.main-content h4 a {
  color: #ffcc00; 
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-content h4 a:hover {
  color: #fff; 
}

.main-content h4 span {
  color: #aaa; 
}

/* section contact */
.contact {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  color: #0a0f25;
  padding: 100px 10%;
  font-family: 'Poppins', sans-serif;
}

.contact h2 {
  font-size: 42px;
  color: #0077b6;
  text-align: center;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  font-size: 17px;
  color: #333;
  margin-bottom: 60px;
}


.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}


.contact-info {
  background: url("./image/aboutbg.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-top: 22px;
}

.contact-info h3 {
  color: #ffd60a;
  font-size: 26px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.info-item i {
  color: #00b4d8;
  font-size: 18px;
}

.social-links {
  margin-top: 25px;
}

.social-links a {
  display: inline-block;
  color: #fff;
  background: #0077b6;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #ffd60a;
  color: #0a0f25;
}


.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #cfd8dc;
  border-radius: 8px;
  margin-bottom: 20px;
  background: #f8f9fa;
  color: #333;
  font-size: 15px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00b4d8;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 119, 182, 0.4);
  outline: none;
}

.form-group {
  display: flex;
  gap: 20px;
}

.send-btn {
  background: #ffd60a;
  color: #0a0f25;
  border: none;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover {
  background: #00b4d8;
  color: #fff;
}


@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info, .contact-form {
    padding: 30px;
  }
}

/* section location */

.locations {
  background: linear-gradient(135deg, #0a0f25, #1c2541);
  color: #fff;
  text-align: center;
  padding: 100px 10%;
  font-family: 'Poppins', sans-serif;
}

.locations h2 {
  font-size: 42px;
  color: #00b4d8;
  margin-bottom: 10px;
}

.locations .subtitle {
  font-size: 17px;
  color: #ccc;
  margin-bottom: 60px;
}


.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}


.location-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 30px 20px;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.location-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.location-box i {
  font-size: 36px;
  color: #ffd60a;
  margin-bottom: 12px;
}

.location-box h3 {
  font-size: 22px;
  color: #00b4d8;
  margin-bottom: 10px;
}

.location-box p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.5;
  margin-bottom: 8px;
}

.location-box span {
  color: #ffd60a;
  font-size: 15px;
  font-weight: 500;
}


@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* section map */

.map{
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.location{
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 3px;
  flex-direction: column;
}

iframe{
  width: 90%;
}

.map iframe{
  border-radius: 10px;
}

/* section footer */

.footer {
  background: linear-gradient(135deg, rgba(2, 25, 79, 0.8), rgba(0, 8, 19, 0.8)),
              url("./image/footer.jpg") no-repeat center center/cover;
  color: white;
  padding: 60px 20px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}

.footcontainer {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}


.footting img {
  width: 160px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footting p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: white;
}

.social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social a:hover {
  background: rgb(5, 241, 162);
  color: #1e293b;
  transform: scale(1.1);
}


.footlink h4,
.footercol h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
  position: relative;
}


.footlink h4::after,
.footercol h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: rgb(5, 241, 162);
  margin-top: 6px;
  border-radius: 2px;
}


.footlink ul,
.footercol ul {
  list-style: none; 
  padding: 0;
  margin: 0;
}


.footlink ul li,
.footercol ul li {
  margin-bottom: 10px;
}


.footlink ul li a,
.footercol ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block; 
}


.footlink ul li a:hover,
.footercol ul li a:hover {
  color: rgb(5, 241, 162);
  /* text-decoration: underline; */
}

.footercol p {
  font-size: 14px;
  margin-bottom: 10px;
  color: white;
}

.footercol p i {
  margin-right: 8px;
  color: rgb(5, 241, 162);
}


.applinks {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.applinks img {
  height: 38px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.applinks img:hover {
  transform: scale(1.08);
}

.footerbottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 16px;
  color: white;
  position: relative;
  left: 390px;
}

.footerbottom span {
  color: rgb(5, 241, 162);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .footerbottom {
    left: 200px; 
    font-size: 15px;
  }
}


@media (max-width: 768px) {
  .footerbottom {
    left: 0; 
    font-size: 14px;
    text-align: center;
  }
}


@media (max-width: 992px) {
  .footcontainer {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  
}

@media (max-width: 600px) {
  .footcontainer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social a {
    margin: 5px;
  }
  .applinks {
    justify-content: center;
  }

  .footlink h4::after,
  .footercol h4::after {
 display: none;
}

  
}
