/* navbar starts here */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #e9eef7, #f7f9fc);
  }
  
  /* =========================
     FULL WIDTH NAVBAR
  ========================= */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    padding: 14px 30px;
  
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  
    z-index: 1000;
  
    /* page load animation */
    opacity: 0;
    transform: translateY(-20px);
    animation: navbarLoad 0.6s ease forwards;
  }
  
  /* NAV LINKS - EVEN SPACING */
  .nav-links {
    display: flex;
    flex: 1;              /* takes full space */
    justify-content: space-evenly; /* evenly spaced */
    list-style: none;
    align-items: center;
  }
  
  /* LINKS */
  .nav-links a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 500;
  
    padding: 10px 16px;
    border-radius: 12px;
  
    background: rgba(255, 255, 255, 0.4);
  
    transition: all 0.3s ease;
    display: inline-block;
  
    /* individual load animation */
    opacity: 0;
    transform: translateY(-10px);
    animation: linkFade 0.5s ease forwards;
  }
  
  /* stagger animation for each link */
  .nav-links li:nth-child(1) a { animation-delay: 0.2s; }
  .nav-links li:nth-child(2) a { animation-delay: 0.3s; }
  .nav-links li:nth-child(3) a { animation-delay: 0.4s; }
  .nav-links li:nth-child(4) a { animation-delay: 0.5s; }
  .nav-links li:nth-child(5) a { animation-delay: 0.6s; }
  
  /* hover */
  .nav-links a:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
  }
  
  /* HAMBURGER */
  .hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #222;
    transition: transform 0.3s ease;
  }
  
  .hamburger:hover {
    transform: rotate(90deg);
  }
  
  /* =========================
     MOBILE
  ========================= */
  @media (max-width: 768px) {
  
    .hamburger {
      display: block;
    }
  
    .nav-links {
      position: absolute;
      top: 60px;
      right: 20px;
  
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
  
      width: 220px;
      padding: 15px;
  
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(15px);
  
      border-radius: 16px;
  
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  
      display: none;
    }
  
    .nav-links.active {
      display: flex;
    }
  }
  
  /* =========================
     ANIMATIONS
  ========================= */
  @keyframes navbarLoad {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes linkFade {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  




.contact-section{
    padding:100px 8%;
    background:#f8fafc;
}

.contact-header{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;

    animation:fadeDown 1s ease;
}

.contact-header h1{
    font-size:55px;
    color:#17356f;
    margin-bottom:15px;
}

.contact-header p{
    color:#666;
    line-height:1.7;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1.5fr;
    gap:40px;
}

/* INFO CARDS */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-card{
    background:white;
    padding:30px;
    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

    animation:slideLeft 1s ease;
}

.info-card:hover{
    transform:translateY(-10px);
}

.info-card i{
    font-size:35px;
}

.info-card h3{
    margin:15px 0;
    color:#17356f;
}

.info-card p{
    color:#666;
}

/* FORM */

.contact-form{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    animation:slideRight 1s ease;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#17356f;
}

.contact-form button{

    background:#17356f;

    color:white;

    border:none;

    padding:15px;

    border-radius:10px;

    cursor:pointer;

    transition:.4s;
}

.contact-form button:hover{

    background:#f4b400;

    color:black;

    transform:translateY(-3px);
}

/* ANIMATIONS */

@keyframes fadeDown{

    from{
        opacity:0;
        transform:translateY(-50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes slideLeft{

    from{
        opacity:0;
        transform:translateX(-60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{

    from{
        opacity:0;
        transform:translateX(60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* MOBILE */

@media(max-width:768px){

    .contact-container{

        grid-template-columns:1fr;
    }

    .contact-header h1{

        font-size:38px;
    }

    .contact-form{

        padding:25px;
    }
}





/* footer starts here */

.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }
  
  .footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
  }
  
  .footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 12px;
  }
  
  .footer-section ul li:last-child {
    margin-bottom: 0;
  }
  
  .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
  }
  
  .footer-section a:hover {
    color: #ffd700;
    padding-left: 5px;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
  }
  
  .contact-item i {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    color: #ffd700;
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 20px;
    gap: 10px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    backdrop-filter: blur(10px);
  }
  
  .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .newsletter-form button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    border-radius: 25px;
    color: #1e3c72;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  }
  
  .footer-bottom {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .footer-bottom .footer-container {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .social-links a:hover {
    background: #ffd700;
    color: #1e3c72;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
  }
  
  .footer-legal {
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: right;
    gap: 10px;
  }
  
  .footer-legal p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .legal-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .legal-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .legal-links li a:hover {
    color: #ffd700;
  }