*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
  }
  

  .logo-text {
    text-decoration: none;
    font-size: 20px;
    color: #161422;
  }
  
  /* Desktop Menu */
  .nav-links {
    display: flex;
    gap: 32px;
  }
  
  .nav-item {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: #162447;
    cursor: pointer;
  }
  
  /* Contact Button */
  .contact-btn button {
    background: #1e3d6b;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
  }
  
  /* Mobile */
  .menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: #1e3d6b;
    cursor: pointer;
  }
  
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid #e5e7eb;
  }
  
  .mobile-menu button {
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    background: none;
    border: none;
    font-size: 16px;
    color: #161422;
    cursor: pointer;
  }
  
  .mobile-menu button:hover {
    background: #f8f9fb;
  }
  
  .mobile-contact {
    background: #1e3d6b;
    color: white !important;
    margin-top: 10px;
}
@media (max-width: 769px) {
    .nav-links,
    .contact-btn {
      display: none;
    }
    .menu-toggle {
      display: block;
    }
}
/* ##############  about banner section starts  ################## */

/* ##############  about banner section starts  ################## */

.about-section {
    height: 50vh;
    width: 100vw;
    background: linear-gradient(180deg, #1f3c6d 0%, #0b1f3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.content h1 {
    font-size: 56px;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.content p {
    font-size: 20px;
    color: #d0d7e2;
    margin: 0;
    max-width: 900px;
}

/* ##############  about banner section ends  ################## */


/* ##############  our story section starts  ################## */

.our-story {
    min-height: 100vh;
    width: 100vw;
    padding: 100px 50px;
}

.data {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.story-content {
    /* border: 1px solid black; */
    height: 80vh;
    width: 50vw;
    padding-top: 30px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0f172a;
}

.story-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #8b90a6;
}

.image {
    /* border: 1px solid black; */
    border-radius: 20px;
    height: 80vh;
    width: 50vw;
    padding: 15px;
    background: url("../images/5.png");
    background-size: cover;
}

.desc {
    font-size: 20px;
    margin-top: 50px;
    color: #8b90a6;
}

/* ##############  our story section ends  ################## */



/* ##############  cards section starts  ################## */

/* Cards Section */

.story-cards {
    width: 100vw;
    
    background: #f8fafc;
    padding: 100px 50px;
}

.cards-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.card {
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #eef0f4;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: #e9ebf1;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon span {
    font-size: 24px;
    color: #173a6a;
    font-weight: bold;
}

.card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.card p {
    font-size: 18px;
    line-height: 1.7;
    color: #8b90a6;
}

/* ##############  cards section ends  ################## */


/* ##############  timeline section starts  ################## */

.timeline {
    width: 100vw;
    min-height: 100vh;
    padding: 100px 50px;
    background: url("../images/bgimg2.jpg");
    background-size: cover;
    background-position: center;
}

.timeline-heading h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 80px;
    font-weight: 500;
    z-index: 100;
}

.timeline-container {
    /* max-width: 1100px; */
    width: 100vw;
    margin: auto;
    position: relative;
    padding-left: 60px;
    z-index: 100;
}

.timeline-container::before {
    content: "";
    position: absolute;
    left: 140px;
    top: 20px;
    bottom: 150px;
    width: 2px;
    background: #dfe3eb;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
}

.year {
    width: 90px;
    height: 90px;
    background: #1f3c6d;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin-left: 35px;
    flex-shrink: 0;
}

.content-box {
    background: #ffffff;
    margin-left: 50px;
    padding: 28px 36px;
    border-radius: 16px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); */
    max-width: 800px;
    width: 100%;
}

.content-box h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #0b1f3a;
    font-weight: 600;
}

.content-box p {
    margin: 0;
    font-size: 18px;
    color: #8a8fa3;
    line-height: 1.5;
}

/* ##############  timeline section ends  ################## */





/* ###########  media queries ############ */

/* ##############  timeline section ends  ################## */
.footer {
    background-color: #161422; /* DBS background */
    color: #bdbcb8;
  }
  
  /* CONTAINER */
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 24px 30px;
  }
  
  /* GRID LAYOUT (Kavso-style) */
  .footer-grid {
    display: flex;
    justify-content: space-around;
    /* align-items: flex-start; */
    gap: 40px;
  }

  .footer-col h4 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 20px; /* Tailwind: text-xl */
    font-weight: 600;
  }
  
  /* LINKS */
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col ul li {
    margin-bottom: 12px;
  }
  
  .footer-col a {
    text-decoration: none;
    color: #9794a5;
    font-size: 16px; /* Tailwind: text-base */
    transition: opacity 0.2s ease;
  }
  
  .footer-col a:hover {
    opacity: 0.8;
  }
  
  /* CONTACT ITEMS */
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px; /* Tailwind: text-sm */
    color: #bdbcb8;
  }
  
  .contact-item svg {
    width: 18px;
    height: 18px;
    color: #8a90a8;
    margin-top: 2px;
    flex-shrink: 0;
  }
  
  /* SOCIAL ICONS */
  .social-icons {
    display: flex;
    gap: 14px;
  }
  
  .social-icons a {
    width: 36px;
    height: 36px;
    background-color: #1e3d6b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #ffffff;
    transition: opacity 0.2s ease;
  }
  
  .social-icons a:hover {
    opacity: 0.8;
  }
  
  .social-icons svg {
    width: 18px;
    height: 18px;
  }
  
  /* DIVIDER */
  .footer-divider {
    height: 1px;
    background-color: #1e3d6b;
    margin: 40px 0 20px;
  }
  
  /* BOTTOM BAR */
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px; /* Tailwind: text-sm */
    color: #9794a5;
    text-align: center;
  }
  
  .footer-bottom span {
    color: #ffffff;
    font-weight: 600;
  }




/* ###########  media queries ############ */

@media (max-width: 640px) {

  /* Banner */
  .about-section {
    height: auto;
    padding: 80px 20px;
  }

  .content h1 {
    font-size: 32px;
  }

  .content p {
    font-size: 16px;
  }

  /* Our Story */
  .our-story {
    padding: 60px 20px;
  }

  .data {
    flex-direction: column;
  }

  .story-content,
  .image {
    width: 100%;
    height: auto;
  }

  .image {
    height: 260px;
    margin-top: 24px;
  }

  .story-content h2 {
    font-size: 26px;
  }

  .story-content p,
  .desc {
    font-size: 16px;
  }

  /* Cards */
  .cards-container {
    grid-template-columns: 1fr;
  }

  .card h3 {
    font-size: 20px;
  }

  .card p {
    font-size: 16px;
  }

  /* Timeline */
  .timeline {
    padding: 60px 20px;
  }

  .timeline-container {
    padding-left: 0;
  }

  .timeline-container::before {
    display: none;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 60px;
  }

  .year {
    margin-left: 0;
    margin-bottom: 16px;
    width: 64px;
    height: 64px;
    font-size: 14px;
  }

  .content-box {
    margin-left: 0;
    padding: 20px;
  }

  .content-box h3 {
    font-size: 18px;
  }

  .content-box p {
    font-size: 15px;
  }
  .footer-grid {
    flex-direction: column;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {

  /* Banner */
  .content h1 {
    font-size: 40px;
  }

  .content p {
    font-size: 18px;
  }

  /* Our Story */
  .our-story {
    padding: 80px 40px;
  }

  .data {
    flex-direction: column;
    gap: 40px;
  }

  .story-content{
    width: 100%;
    height: auto;
  }

  .image {
    width: 100%;
    height: 550px;
  }

  /* Cards */
  .cards-container {
    grid-template-columns: 1fr 1fr;
  }

  /* Timeline */
  .timeline {
    padding: 80px 40px;
  }

  .timeline-container {
    padding-left: 40px;
  }

  .timeline-container::before {
    left: 80px;
  }

  .year {
    width: 72px;
    height: 72px;
    font-size: 16px;
  }

  .content-box h3 {
    font-size: 20px;
  }

  .content-box p {
    font-size: 16px;
  }
  .footer-grid {
    flex-direction: column;
  }
  .footer-bottom {
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      text-align: left;
    }
}

