/* Modern About Page Styles */
:root {
    --primary-color: #f76c0a;
    --secondary-color: #2d3436;
    --text-color: #2d3436;
    --background-color: #ffffff;
    --accent-color: #ffd3d3;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Source Sans 200' !important; */
}
html{
    scrollbar-width: none;
    height: 100%;
      margin: 0;
}

body {
    /* font-family: 'Source Sans 200' !important; */
    font-style: normal;
    /* display: block; */
    justify-content: center;
    /* align-items: center; */
    min-height: 100vh;
    background: white;
    height: 100%;
      margin: 0;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    /* background: white; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
    overflow: hidden;
    font-family: 'Source Sans 200' !important;
    min-height: calc(100vh - 60px);
    padding-bottom: 20px;
}
.container h2{
    font-family: 'Source Sans 200' !important;
}
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--secondary-color) !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--white);
    /* box-shadow: var(--secondary-color) !important; */
    /* box-shadow: #333; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style-type: none;
}

.contact,
.social-icons {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.call {
    /* display: none; */
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.fa-facebook-f, .fa-instagram, .fa-twitter{
    padding: 10px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a,
.social-icons1 a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover,
.social-icons1 a:hover {
    transform: translateY(-3px);
    padding: 10px;
}

.social-icons .fa-facebook-f,
.social-icons1 .fa-facebook-f {
    background: #1877f2;
    color: white;
    padding: 10px;
}

.social-icons .fa-instagram,
.social-icons1 .fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icons .fa-twitter,
.social-icons1 .fa-twitter {
    background: #1da1f2;
    color: white;
}

.mobile-only {
    display: none;
}


/* Fullscreen mobile nav menu */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        gap: 10px;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 2em;
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

    .nav-links li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links .mobile-only {
        width: 100%;
        text-align: center;
        /* margin: 1rem 0; */
    }

    .nav-links .social-icons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        /* margin-top: 2rem; */
        width: 100%;
    }

    .nav-links .social-icons a {
        font-size: 1rem;
        color: var(--primary-color);
           /* width: 40px; */
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    padding: 10px;
    }

    .fa-facebook-f, .fa-instagram, .fa-twitter{
    padding: 10px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    }

    .nav-links .call {
        width: 100%;
        max-width: 300px;
        /* margin: 1rem auto; */
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
    padding-top: 100px;
  }

  .card-link {
    text-decoration: none;
    color: inherit;
    flex: 1 1 300px;
    max-width: 400px;
  }

  .card {
    background: #fff;
    /* border-radius: 12px; */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 550px;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
    border: solid 1px #FFB4A2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  .card img {
    /* height: 50%; */
    width: 100%;
    object-fit: cover;
  }

  .card-content {
    padding: 16px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .card h3 {
    margin: 0 0 15px;
    text-align: center;
    font-family: 'Source Sans 200' !important;
  }

  .card p {
    margin: 0;
    color: #555;
    text-align: justify;
    font-family: 'Source Sans 200' !important;
  }
  .card-content h4{
    color: #e36500;
    text-decoration: none;
    margin-top: 20px;
    font-family: 'Source Sans 200' !important;
  }
  .card-content h4:hover{
    color: #c95d04;
    text-decoration: none;
  }
  @media (max-width: 768px) {
    .wrapper {
      flex-direction: column;
      align-items: center;
    }
    .card{
      height: auto;
    }
  }
.footer-bottom {
  width: 100%;
    text-align: center;
    font-size: 1.0rem;
    color: #aaa;
    bottom: 0;
    /* left: 0; */
    /* position: fixed; */
    /* margin-top: 30px; */
    border-top: 1px solid #333;
    padding-top: 30px;
    padding-bottom: 20px;
    background-color: #0f2838;
    font-family: 'Source Sans 200' !important;
    height: 170px;
  }
  .footer-bottom p a{
    color: #aaa;
    text-decoration: none;
  }
    .icon-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      padding: 15px 10px;
    }

    .icon-bar a {
      display: inline-block;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      color: white;
    }

    .icon-bar a:hover {
      transform: scale(1.1);
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .icon-bar img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      color: white;
      object-fit: contain;
      transition: filter 0.3s;
      filter: brightness(0) invert(1);
    }
    .icon-bar a:hover img {
      /* filter: grayscale(0%) brightness(1.2) sepia(0.2) hue-rotate(20deg) saturate(2); */
      filter: brightness(0) invert(1);
    }

    /* Responsive: icons adjust spacing */
    @media (max-width: 600px) {
      .icon-bar {
      gap: 7px;
    }
      .icon-bar a {
        width: 20px;
        height: 20px;
      }
      .footer-bottom {
    height: 150px;
  }
    .icon-bar {
      padding: 10px 10px;
    }
    }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

  @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
} 