@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton-Regular.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Anton", sans-serif;
}

body {
  background: #004b93;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  width: 100%;
  z-index: 1000;
  border-bottom: 2px solid white;
}

.navbar {
  width: 90%;
  max-width: 1300px;
  height: 110px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  min-height: 80px;
}

.logo img {
  width: 90px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  padding: 5px;
  display: inline-flex;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00a3ff;
}

.btn {
  background: rgba(0, 92, 230, 0.92);
  text-decoration: none;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  transition: 0.3s;
  font-size: 18px;
}

.btn:hover {
  background: #fff;
  color: #005cb9;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
.active {
  color: #00a3ff;
  border-bottom: 2px solid #00a3ff;
}
.hero {
  position: relative;

  width: 100%;

  min-height: 100vh;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  background: url("../images/contact-banner.png");

  background-size: contain;
  background-repeat: no-repeat;

  background-position: center;

  padding-top: 20px;
}

.overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.15);
}

.hero-content {
  position: relative;

  width: 100%;

  margin-right: 40%;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  justify-content: center;

  text-align: left;

  z-index: 10;
  width: 100%;

  max-width: 700px;

  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 40px;

  align-items: center;
}

.hero-content p {
  font-size: 20px;

  line-height: 35px;

  margin-bottom: 40px;

  color: #f0f0f0;
}

.hero-btn {
  padding: 18px 45px;

  background: #0066ff;

  color: #fff;

  border-radius: 50px;

  font-size: 18px;

  font-weight: 600;

  transition: 0.4s;
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 220px;

  margin-top: 350px;
  margin-left: 150px;
}

.hero-btn:hover {
  background: #0050cc;

  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.45);
}

/*=========================================
        CONTACT SECTION
=========================================*/

.contact-section {
  padding: 100px 8%;

  background: #00296b;
}

.contact-container {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 60px;

  align-items: start;
}

.contact-left h2 {
  font-size: 45px;

  margin-bottom: 15px;
}

.contact-left > p {
  color: #d9d9d9;

  margin-bottom: 35px;

  line-height: 30px;
}

/*=========================================
            FORM
=========================================*/

form {
  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 20px;

  padding: 40px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

form input,
form textarea {
  width: 100%;

  padding: 18px;

  margin-bottom: 20px;

  border: none;

  outline: none;

  border-radius: 10px;

  font-size: 16px;

  transition: 0.3s;
}

form textarea {
  resize: none;
}

form input:focus,
form textarea:focus {
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.45);

  transform: scale(1.02);
}

form button {
  width: 100%;

  padding: 18px;

  background: #0066ff;

  color: #fff;

  border: none;

  border-radius: 10px;

  font-size: 18px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.4s;
}

form button:hover {
  background: #0050cc;

  transform: translateY(-3px);

  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.35);
}
/*=========================================
        CONTACT INFO CARDS
=========================================*/

.contact-right {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

.card {
  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 18px;

  padding: 30px;

  transition: 0.4s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card:hover {
  transform: translateY(-8px);

  background: rgba(0, 102, 255, 0.18);

  border-color: #0d6efd;

  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
}

.card h3 {
  font-size: 24px;

  margin-bottom: 15px;

  color: #fff;
}

.card p {
  font-size: 17px;

  line-height: 30px;

  color: #d8d8d8;
}

/*=========================================
            GOOGLE MAP
=========================================*/

.map-section {
  padding: 100px 8%;

  background: #001f5c;

  text-align: center;
}

.map-section h2 {
  font-size: 45px;

  margin-bottom: 50px;
}

.map {
  width: 100%;

  max-width: 1200px;

  margin: auto;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map iframe {
  width: 100%;

  height: 500px;

  border: none;
}

/*=========================================
                FAQ
=========================================*/

.faq {
  padding: 100px 8%;

  background: #00296b;
}

.faq h2 {
  text-align: center;

  font-size: 45px;

  margin-bottom: 60px;
}

.faq-container {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

.faq-box {
  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 18px;

  padding: 30px;

  transition: 0.4s;
}

.faq-box:hover {
  transform: translateY(-8px);

  background: #0d6efd;
}

.faq-box h3 {
  font-size: 24px;

  margin-bottom: 20px;
}

.faq-box p {
  color: #f2f2f2;

  line-height: 30px;
}
/*=========================================
            NEWSLETTER
=========================================*/

.newsletter {
  position: relative;

  padding: 120px 8%;

  text-align: center;

  background: linear-gradient(135deg, #00143d, #003b8f, #00143d);

  overflow: hidden;
}

/* Decorative circles */

.newsletter::before {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  top: -120px;
  left: -120px;
}

.newsletter::after {
  content: "";

  position: absolute;

  width: 250px;
  height: 250px;

  border-radius: 50%;

  background: rgba(13, 110, 253, 0.15);

  bottom: -100px;
  right: -80px;
}

.newsletter h2 {
  position: relative;

  font-size: 58px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 20px;

  color: #fff;
}

.newsletter p {
  position: relative;

  max-width: 700px;

  margin: auto;

  margin-bottom: 45px;

  font-size: 19px;

  line-height: 34px;

  color: #d9e6ff;
}

/* Form */

.newsletter form {
  position: relative;

  max-width: 800px;

  margin: auto;

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 12px;

  border-radius: 70px;

  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* Input */

.newsletter input::placeholder {
  color: #777f;
}

/* Button */

.newsletter button {
  border: none;

  padding: 20px 40px;

  border-radius: 50px;

  background: linear-gradient(135deg, #0d6efd, #0048d8);

  color: #fff;

  font-size: 18px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.35s;
}

.newsletter button:hover {
  transform: translateY(-4px);

  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.45);
}

/* Small text */

.newsletter small {
  position: relative;

  display: block;

  margin-top: 25px;

  color: #d0d0d0;

  font-size: 15px;
}
/*======================
        FOOTER
=======================*/

.footer {
  background: #000;
  padding: 80px 8% 30px;
  color: #fff;
  border-top: 2px solid #005cb9;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-logo {
  flex: 1;
  min-width: 280px;
}

.footer-logo img {
  width: 110px;
  margin-bottom: 20px;
}

.footer-logo p {
  color: #bdbdbd;
  line-height: 1.8;
  max-width: 380px;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 180px;
}

.footer-column h3 {
  font-family: "Anton", sans-serif;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 14px;
}

.footer-column ul li a {
  color: #cfcfcf;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #005cb9;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 25px;
  color: #bdbdbd;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 40px;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo p {
    margin: auto;
  }

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

.developer-text {
  color: #bdbdbd;
  margin-bottom: 20px;
  line-height: 1.7;
}

.developer-social {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.developer-social a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.developer-social a i {
  font-size: 22px;
  color: #005cb9;
}

.developer-social a:hover {
  color: #005cb9;
  transform: translateX(8px);
}
