* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar-custom {
    background: white;
    transition: all 0.4s ease-in-out;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-custom.scrolled {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.navbar-brand .logo {
    width: 150px;
    height: 60%;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
}

.navbar-brand .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.25));
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #000 !important;
}

.navbar-nav .nav-link::after {
    display: none;
}

.nav-btn a {
    text-decoration: none;
    color: #fff;
}

.nav-btn {
    background: linear-gradient(45deg, #1A73E8, #0D3B66);
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(13, 59, 102, 0.4);
}


.navbar-toggler {
    border: none;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


@media (max-width: 991px) {
    .navbar-custom {
        background: #ffffff;
    }

    .navbar-nav {
        background: #ffffff;
        border-radius: 12px;
        padding: 15px 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
        font-size: 17px;
        display: block;
        color: #000 !important;
    }

    .nav-btn {
        width: 85%;
        margin: 12px auto;
        display: block;
        text-align: center;
    }

    .navbar-brand .logo {
        width: 120px;
    }
}


/* header section */


.about-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    background: url('') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
    /*   color: #fff; */
    overflow: hidden;
}

.about-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 42, 82, 0.5);
    z-index: 1;
    /* backdrop-filter: blur(2px); */
}

/*.about-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease forwards;
}

  .about-hero-content h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #a8d0ff;
    margin-bottom: 10px;
}

.about-hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
}*/





.about-hero {
    position: relative;
  /*   height: 70vh; */
    /* full screen */
    background-size: cover;
    background-position: center;
    display: flex;
    /* flex to center content */
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    z-index: 1;
}

 .about-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease forwards;
    text-align: center;
} 

.about-hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}







@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 991px) {
    .about-hero {
        height: 55vh;
        padding-left: 6%;
    }

    .about-hero-content h1 {
        font-size: 46px;
    }

    .about-hero-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 50vh;
        padding-left: 5%;
        justify-content: center;
        text-align: center;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-content h3 {
        font-size: 16px;
    }
}


/* about us section */


.aboutus-section {
    background: linear-gradient(to right, #f8f9fb, #ffffff);
    padding: 80px 20px;
}

.aboutus-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.aboutus-image {
    flex: 1 1 45%;
    text-align: center;
    animation: fadeInLeft 1s ease-in-out;
}

.aboutus-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.aboutus-image img:hover {
    transform: scale(1.05);
}

.aboutus-text {
    flex: 1 1 45%;
    animation: fadeInRight 1s ease-in-out;
}

.aboutus-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.aboutus-title span {
    color: #007bff;
}

.aboutus-description {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.aboutus-btn {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.aboutus-btn:hover {
    color: white;
    text-decoration: none;
    background: #0056b3;
    transform: translateY(-3px);
}

/* ======= Responsive Design ======= */
@media (max-width: 992px) {
    .aboutus-content {
        flex-direction: column;
        text-align: center;
    }

    .aboutus-text {
        order: 2;
    }

    .aboutus-image {
        order: 1;
    }

    .aboutus-title {
        font-size: 2rem;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* mission and vision section */



.mission-vision {
    background: linear-gradient(135deg, #f4f7fb, #e8f0ff);
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 123, 255, 0.1), transparent 70%);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

.mv-header {
    margin-bottom: 60px;
}

.mv-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
}

.mv-header span {
    color: #007bff;
}

.mv-header p {
    color: #555;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 10px auto 0;
    line-height: 1.6;
}

.mv-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.mv-box {
    flex: 1 1 48%;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeUp 1s ease-in-out;
}

.mv-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    background: #007bff;
    color: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mv-box:hover .mv-icon {
    background: #0056b3;
}

.mv-text h3 {
    font-size: 1.5rem;
    color: #054a95;
    margin-bottom: 10px;
    font-weight: 600;
}

.mv-text p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}


@media (max-width: 992px) {
    .mv-wrapper {
        flex-direction: column;
    }

    .mv-box {
        flex: 1 1 100%;
    }

    .mv-header h2 {
        font-size: 2rem;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* our goals section */



/* ======= Our Goal Section ======= */
.our-goal-section {
    background: #f9fbff;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: auto;
}

.goal-header {
    text-align: center;
    margin-bottom: 60px;
}

.goal-header h2 {
    font-size: 2.5rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 15px;
}

.goal-header span {
    color: #007bff;
}

.goal-header p {
    color: #0056b3;
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


.goal-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.goal-card {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    border-radius: 18px;
    padding: 40px 25px;
    flex: 1 1 300px;
    max-width: 360px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.goal-card::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    top: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.goal-card:hover::before {
    transform: scale(1.2);
    opacity: 0.25;
}

.goal-icon {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.goal-card:hover .goal-icon {
    background: rgba(255, 255, 255, 0.25);
}

.goal-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.goal-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e8f0ff;
}

@media (max-width: 992px) {
    .goal-header h2 {
        font-size: 2rem;
    }

    .goal-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}



/* what we do section */




.what-we-do {
    padding: 80px 20px;
    background-color: #dde4f7;
}

.what-do {
    color: #007bff;
}

.what-we-do h2 {
    font-weight: 700;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.what-we-do .subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #475569;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    justify-items: center;
    /* centers items in their columns */
}




.service-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
    border-radius: 16px;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card * {
    position: relative;
    z-index: 1;
}

.service-card .icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
    transition: 0.3s;
}

.service-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    transition: 0.3s;
}

.service-card:hover h3,
.service-card:hover p {
    color: #ffffff;
}


@media (max-width: 600px) {
    .what-we-do h2 {
        font-size: 32px;
    }

    .what-we-do .subtitle {
        font-size: 16px;
    }
}



.services-grid {
    grid-auto-flow: row;
}

.service-card:nth-last-child(2) {
    grid-column: span 1;
    justify-self: end;
}

.service-card:last-child {
    grid-column: span 1;
    justify-self: start;
}

@media (min-width: 992px) {
    .service-card:nth-last-child(2) {
        grid-column: 2;
    }

    .service-card:last-child {
        grid-column: 3;
    }
}




/* our approach section */




.our-approach {
    background: linear-gradient(135deg, #f0f5fc, #d9e4fa);
    padding: 80px 20px;
    font-family: "Segoe UI", sans-serif;
}

.our-approach h2 {
    font-weight: 700;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.our-approach .subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #475569;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    justify-items: center;
}

.approach-card {
    background: #f8fafc;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease, transform 0.6s ease, opacity 0.6s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.approach-card.show {
    opacity: 1;
    transform: translateY(0);
}

.approach-card .icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.approach-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

.approach-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .our-approach h2 {
        font-size: 32px;
    }

    .our-approach .subtitle {
        font-size: 16px;
    }
}






/* futter section */


.footer {
    background: linear-gradient(135deg, #0d3b66, #144b8b);
    color: #fff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}


.footer::before {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -100%;
    left: -100%;
    animation: waveMove 20s infinite linear;
}

@keyframes waveMove {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-col {
    flex: 1 1 220px;
    margin: 20px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer-logo span {
    color: white;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #dcdcdc;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3b82f6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #e6e6e6;
    display: flex;
    align-items: center;
}

.footer-col ul li i {
    margin-right: 10px;
    color: #3b82f6;
}

.footer-col ul li a {
    text-decoration: none;
    color: #e6e6e6;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3b82f6;
}

.footer-social {
    margin-top: 20px;
}

a {
    text-decoration: none;
}

.footer-social a {
    text-decoration: none;
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #3b82f6;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    font-size: 14px;
    color: #dcdcdc;
    z-index: 2;
    position: relative;
}


@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        margin: 25px 0;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social a {
        margin: 8px;
    }
}






@media (max-width: 600px) {

    .footer {
        padding-top: 50px;
    }

    .footer-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 15px;
    }

    .footer-col {
        width: 100%;
        margin: 20px 0;
    }

    /* Center heading underline */
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* List center */
    .footer-col ul li {
        justify-content: center;
        font-size: 14px;
    }

    /* Logos center */
    .footer-logo {
        font-size: 28px;
    }

    /* Social icons center + spacing */
    .footer-social a {
        width: 34px;
        height: 34px;
        line-height: 34px;
        margin: 6px;
    }

    /* Footer bottom */
    .footer-bottom {
        font-size: 13px;
        padding: 15px 10px;
    }
}




/* font */

.font-link {
    font-family: "Momo Trust Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}