@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font-family: "Montserrat", sans-serif;

}

body {
    font-family: var(--font-family);
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    padding: 20px 0;
    transition: all .3s ease;
}

.main-header.scrolled {
    padding: 12px 0;
}
.main-header.scrolled .logo {
    display: none;
}

.main-header .logo {
    max-height: 70px;
    width: 160px;
}

.nav-pill {
    background: rgba(0, 0, 0, .6);
    padding: 4px 4px 4px 30px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-pill a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: color .3s ease;
}



.nav-pill:has(a:hover) a {
    color: #777;
}

.nav-pill a:hover {
    color: #fff !important;
}


.contact-btn {
    background: #fff;
    color: #000 !important;
    padding: 14px 30px !important;
    border-radius: 30px;
    font-weight: 600;
}

a.contact-btn:hover {
    color: #000 !important;
    background: #ffffffe6;
}

.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
}

.hero-media {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-media img {
    width: 75vw;
    height: 75vh;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.1s linear;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* LEFT SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    left: 40px;
    bottom: 60px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
    transition: opacity 0.4s ease;
}

.scroll-circle {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    background: #fff;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator.hide {
    opacity: 0;
    pointer-events: none;
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.3;
}

.hero-content strong {
    font-weight: 600;
}


.offcanvas {
    background: #000;
}

.offcanvas a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 12px 0;
}


.main-heading {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.about-content p {
    font-size: 1.9rem;
    font-weight: 300;
    line-height: 1.2;
    color: #111;
    margin-bottom: 30px;
}

.about-btn {
    border: 1px solid #000;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    font-weight: 600;
    transition: all .3s ease;
}

.divider {
    background: #000;
    width: 100%;
    display: inline-block;
    height: 2px;
    opacity: 10%;
}

.national-allignment h2,
.role-content h2 {
    font-size: 2.5rem;
    color: #000;
    font-weight: 300;
    margin-bottom: 30px;
}

.national-allignment p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}

.black-btn {
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

.black-btn i {
    margin-left: 10px;

}

.work-content {
    background: #F5F5F5;
    padding: 20px 20px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.work-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #222;
    margin-bottom: 20px;
    display: block;
}

.work-card h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 40px;
}

.work-img {
    margin-top: auto;
}

.work-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.card-even img {
    height: 182px;
}

.work-btn {
    border: 1px solid #000;
    padding: 14px 30px;
    border-radius: 40px;
    font-size: 14px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
}

.what-we-do h2 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 300;
    margin-bottom: 40px;

}


.footer-banner {
    position: relative;
    height: 100vh;
    background: url('../assets/img/footer-banner.png')top center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.footer-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.footer-banner .container {
    position: relative;
    z-index: 2;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.5px;
}


.cta-btn {
    border: 1px solid #fff;
    padding: 14px 30px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.footer {
    padding-top: 120px;
    padding-bottom: 30px;
}

.footer .logo {
    max-height: 140px;
    width: auto;
}

.footer-nav {
    margin-top: 80px;
    gap: 20px;
}

.footer-nav a {
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

.footer-menu,
.social-link,.privacy-link {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    font-size: 14px;
}

/* about page css  */
.inner-banner {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
    color: #fff;
}

.inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.inner-banner .container {
    position: relative;
    z-index: 2;
}
.page-title {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
}
.inner-banner-title {
    font-size: 40px;
    font-weight: 300;
    margin: 0;
}

.focus-card {
    background: #F5F5F5;
    padding: 40px 25px;
}

.focus-card h3 {
    font-size: 24px;
    font-weight: 400;

}

.work-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    margin: 0;
}

.card-1 {
    min-height: 340px;
}

.card-2 {
    min-height: 360px;
}

.card-3 {
    min-height: 380px;
}

.card-4 {
    min-height: 400px;
}

#leadership .work-content {
    padding: 40px 20px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    min-height: 280px;
}

.contact-wrapper {
    background: #F5F5F5;
    padding: 60px 40px;
    margin-top: -25%;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 400;
}

.form-control {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    background: transparent;
    padding: 12px 0;
    font-size: 1rem;
    box-shadow: none;
    font-weight: 400;
    color: #000;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid #000;
    background: transparent;
}

textarea.form-control {
    resize: none;
}

.send-btn {
    border: 1px solid #000;
    background: transparent;
    padding: 12px 35px;
    border-radius: 40px;
    font-weight: 600;
    transition: all .3s ease;
}


.privacy-text {
    font-size: 12px;
    color: #000;
}

.privacy-text a {
    color: #000;
    text-decoration: underline;
}


.contact-info-section {
    padding: 80px 0px;
}

.info-card {
    background: #F5F5F5;
    padding: 40px 30px;
    height: 360px;
    transition: all .4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-card h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin: 0;
}

.info-card a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
    margin-top: 20px;
}

.info-card:hover {
    background: #000;
    color: #fff;
}

.info-card:hover p,
.info-card:hover h4 {
    color: #fff;
}

.info-card:hover a {
    color: #fff;
}


.work-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

/* Default small dot */
.sector-dot {
  width: 7px;
  height: 7px;
  background: #dcdcdc;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Active becomes pill */
.sector-dot.active {
  width: 25px;
  height: 7px;
  border-radius: 20px;
  background: #e5e5e5;
}

/* Inner progress fill */
.dot-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #000;
  border-radius: 20px;
}
.slick-slide {
    margin: 0px 7px !important;
}
/* Loading animation */
@keyframes dotLoading {
  from { width: 0%; }
  to { width: 100%; }
}

.work-crousel{
    display: none;
}
.about-section .about-content {
    margin-top: -33px;
}



.pricay-banner{
padding-top: 150px;
}

.privacy-content {
    font-size: 16px;
    line-height: 1.8;
    padding: 50px 0px;
}
.privacy-content h3{
    font-size: 30px;
    font-weight: 400;
}
@media(max-width:1200.99px) {
    .work-card h3 {
        font-size: 18px;
    }

    .info-card {
        padding: 40px 10px;
    }

}

@media(max-width:991px) {

    .offcanvas {
        z-index: 9999;
    }
.navbar-toggler {
    background: #fff;
        width: 65px;
        height: 50px;
        border-radius: 50px;
        font-size: 20px;
         background-repeat: no-repeat;
    background-position: center;
    background-size: 28px 20px;
    cursor: pointer;
 box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='20' viewBox='0 0 28 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='2' y1='5' x2='26' y2='5' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='2' y1='15' x2='26' y2='15' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

    .hero-content h1 {
        font-size: 36px;
    }

    .work-card h3 br {
        display: none !important;
    }

    .work-card h3 {
        font-size: 24px;
    }

    .national-allignment img {
        margin-top: 50px;
    }

    .contact-wrapper {
        margin-top: 5%;
    }

    .info-card {
        padding: 40px 30px;
    }
    .custom-mobile-menu {
    width: 100%;
    max-width: 100%;
    background: #f4f4f4;
    border: none;
}

/* Remove default padding */
.custom-mobile-menu .offcanvas-body {
    padding: 0;
}

/* HEADER */
.mobile-menu-header {
    padding: 20px 25px;
}

.mobile-logo {
    height: 60px;
}

.menu-close {
        background: #ffffff;
        border: none;
        width: 65px;
        height: 50px;
        border-radius: 50px;
        font-size: 20px;
        cursor: pointer;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

/* CENTER BODY */
.mobile-menu-body {
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* MENU LINKS */
.mobile-menu-body a {
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    color: #000;
    font-weight: 600;
}

/* CONTACT BUTTON */
.mobile-contact-btn {
    margin-top: 20px;
    background: #000;
    color: #fff !important;
    padding: 14px 30px !important;
    border-radius: 40px;
    display: inline-block;
}

}

@media(max-width:768px) {
    .inner-banner {
        height: 220px;
        padding-bottom: 25px;
    }

    .inner-banner-title {
        font-size: 24px;
    }

    .footer .logo {
        max-height: 100px;
    }

    .footer-nav {
        flex-direction: column;
    }

    .footer-menu {
        flex-direction: column;

    }

    .contact-wrapper {
        padding: 40px 15px;
    }
    .work-crousel{
        display: block;
    }
    #work{
        display: none;
    }
    .about-section .about-content {
    margin-top: 30px;
}

  .hero-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }

  .scroll-indicator {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    left: 20px;
  }

.hero-content br{
    display: none !important;
}

}

@media(max-width:560px) {
    .about-content p {
        font-size: 1.5rem;
    }

    .about-img img {
        width: 100%;
    }
    .work-content {
    height: 300px;
    justify-content: start;
}
    .work-img img{
        height: 140px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .footer-nav {
    margin-top: 80px;
    gap: 40px;
}
}