* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #0B2A5A;
    color: white;
}

/* --- Dropdown Menu --- */

.dropdown {

    position: relative;

    display: inline-block;

}

.dropdown-content {

    display: none;

    position: absolute;

    background-color: #0A2650;

    min-width: 160px;

    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);

    border-radius: 6px;

    z-index: 1;

}

.dropdown-content a {

    color: white;

    padding: 10px 14px;

    text-decoration: none;

    display: block;

    font-size: 15px;

}

.dropdown-content a:hover {

    color: #F85A40;

}

.dropdown:hover .dropdown-content {

    display: block;

}



/* --- Top Bar --- */
.sec1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 10px;
    background-color: #0A2650;
    font-size: 14px;
}

.sec1 i {
    margin-right: 6px;
    color: #F85A40;
}

/* --- Navbar --- */
.sec2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 80px;
    background-color: #0B2A5A;
}

.logo img {
    width: 120px;
    height: auto;
}

#hyperlink {
    display: flex;
    gap: 30px;
}

#hyperlink a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

#hyperlink a:hover {
    color: #F85A40;
}

button {
    background-color: #F85A40;
    border: none;
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}

button:hover {
    background-color: #fa735f;
}

/* --- Hero Section --- */
.middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px;
    background-color: #0B2A5A;
}

.left-part {
    max-width: 550px;
}

.left-part h3 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #fff;
}

.left-part p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #dbe3f1;
}

.girl img {
    width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ---------- Responsive Design ---------- */

/* 📱 Small screens - Mobile (max-width: 600px) */
@media (max-width: 600px) {
    .sec1 {
        flex-direction: column;
        font-size: 13px;
        gap: 8px;
        text-align: center;
    }

    .sec2 {
        flex-direction: column;
        gap: 15px;
        padding: 10px 20px;
    }

    #hyperlink {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .middle {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .left-part {
        max-width: 100%;
    }

    .girl img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

    button {
        padding: 8px 18px;
        font-size: 14px;
    }
}

/* 📲 Tablets (min-width: 601px) and (max-width: 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    .sec2 {
        flex-direction: column;
        gap: 20px;
        padding: 20px 40px;
    }

    .middle {
        flex-direction: column;
        align-items: center;
        padding: 50px 40px;
    }

    .girl img {
        width: 70%;
        height: auto;
    }

    #hyperlink {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* 💻 Large screens (above 1024px) */
@media (min-width: 1025px) {
    .sec2 {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 80px;
    }

    .middle {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 80px;
    }

    .girl img {
        width: 400px;
    }
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background-color: #0B2A5A;
    border-radius: 30px;
    box-shadow: 0 6px 8px rgba(241, 1, 1, 0.1);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 40px;
    margin-bottom: 20px;
}

h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

p {
    color: #ffffff;
    font-size: 14px;
}
/* Call-to-Action Section */
.cta-section {
  text-align: center;
  margin: 40px 0;
}

.explore-btn {
  background-color: #e63946;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.explore-btn:hover {
  background-color: #d62828;
}

/* Promotional Section */
.promo-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.promo-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.promo-section p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Promo Cards Grid */
.promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

/* Individual Card */
.promo-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
}

.promo-card h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.promo-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.promo-card button {
  background-color: #e63946;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.promo-card button:hover {
  background-color: #d62828;
}
/* Process Section */
.process-section {
  padding: 60px 30px;
  background-color: #fff;
  text-align: center;
}

.process-section h2 {
  font-size: 2rem;
  color: #0077cc;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Container for steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Individual step card */
.step {
  background-color: #e0f7fa;
  border-radius: 12px;
  padding: 25px 20px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.step h3 {
  font-size: 1.3rem;
  color: #0077cc;
  margin-bottom: 15px;
  font-weight: 600;
}

.step p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 90%;
    max-width: 350px;
  }
}
/* Footer Styling */
.footer {
  background-color: #15234A;
  color: #fff;
  padding: 50px 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-box {
  flex: 1 1 220px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.footer-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #00bcd4;
}

.footer-box p,
.footer-box ul li {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-box ul li a:hover {
  color: #00bcd4;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #fffefe;
  margin-top: 10px;
}

.social-icons {
  margin-bottom: 10px;
}

.social-icons a {
  color: #ffffff;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-box {
    flex: 1 1 100%;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}
