/* ================= GLOBAL STYLES ================= */
@font-face {
  font-family: 'Geom';
  src: url('../fonts/Geom/Geom-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Geom';
  src: url('../fonts/Geom/Geom-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Geom';
  src: url('../fonts/Geom/Geom-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Geom', sans-serif;
}

body {
  font-family: 'Geom', sans-serif;
  line-height: 1.6;
  color: #333;
  transition: background 0.3s, color 0.3s;
}

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

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

section {
  padding: 80px 20px 0 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

button {
  cursor: pointer;
  transition: transform 0.3s;
}

/* ================= HEADER ================= */
header {
  background: #0d47a1;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.logo img {
  width: 250px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffc107;
}

.explore {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
}

.cta-btn {
  background: #ffc107;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}

.cta-btn:hover {
  transform: scale(1.05);
}

/* ================= HERO SECTION ================= */
.hero {
  background: #0d47a1;
  color: #fff;
  text-align: center;
  padding: 120px 20px 100px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .btn-group button {
  margin: 0 10px;
}

/* ================= FEATURES / SERVICES ================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #0d47a1;
}

.feature-card p {
  line-height: 1.4;
}

/* ================= APPS ================= */
.app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -10px;
}

.app-content h3 {
  margin-bottom: 5px;
}

.app-content p {
  margin-bottom: 10px;
  line-height: 1.4;
  text-align: center;
}

.app-content cite {
  font-weight: 600;
  color: #0d47a1;
  margin-bottom: 20px;
}

.app-image {
  flex: 1;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  padding: 10px 0;
  background: transparent;
}

.scroll-imgs {
  display: flex;
  gap: 20px;
  animation: scroll 15s linear infinite;
}

.scroll-imgs img {
  height: 390px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.app-content button {
  background: #0d47a1;
  color: #fff;
  font-size: 1.05rem;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  margin-top: 30px;
}

.app-content button:hover {
  background: #1565c0;
}

/* ================= ABOUT ================= */
.about-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  background-color: #0d47a1;
  padding: 50px;
  border-radius: 30px;
}

.about-wrapper img {
  border-radius: 50%;
  width: 1000px;
  margin-bottom: 10px;
}

.about-image {
  text-align: center;
  color: #fff;
}

.about-text p {
  line-height: 1.5;
  color: #fff;
}

/* ================= CONTACT ================= */
.contact form {
  display: grid;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.contact input,
.contact textarea {
  padding: .89rem;
  border: 0.5px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact button {
  background: #0d47a1;
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact button:hover {
  background: #1565c0;
}

/* ================= FOOTER ================= */
footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  background: #0d47a1;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  margin-top: 100px;
}

footer .company-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .company-info img {
  width: 250px;
}

footer a {
  color: #ffc107;
  margin: 0 10px;
}

footer .copyright {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 868px) {
  .explore {
    display: none;
  }

  .menu-toggle {
    display: block;
    transform: rotate(90deg);
    margin-left: 100px;
    cursor: pointer;
    z-index: 99999;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 50px 20px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-align: center;
  }

  .nav-links li {
    margin: 10px 0;
    padding: 10px 0;
    border-radius: 100%;
  }

  .nav-links.active {
      right: 0;
    }

  .nav-links a {
    color: #0d47a1 !important;
    display: block;
  }

  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }

  .menu-toggle.active {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #555;
    font-size: 18px;
  }
}

@media(max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .about-wrapper {
    flex-direction: column-reverse;
  }

  footer {
    flex-direction: column;
  }

  footer .company-info {
    margin-bottom: 50px;
  }
}

@media(max-width: 468px) {
  .about-wrapper {
    padding: 50px 20px;
  }
}


.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-box {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #333;
}

.modal-icon {
  width: 80px;
  height: 80px;
  border: 4px solid #0d47a1;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceIn 0.5s ease;
}

.modal-icon::before {
  content: '✓';
  font-size: 3rem;
  color: #0d47a1;
  font-weight: bold;
}

.modal-title {
  font-size: 1.8rem;
  color: #555;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.modal-message {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-button {
  background: #0d47a1;
  color: white;
  border: none;
  padding: 0.75rem 2.5rem;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  font-weight: 500;
}

.modal-button:hover {
  background: #1565c0;
}

.modal-button:active {
  transform: scale(0.95);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}