/* styles.css */

:root {
    --dark-blue: #003366;
    --sky-blue: #00AEEF;
    --light-blue: #00BFFF;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.hero-homepage h1 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-homepage p {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s ease-out forwards;
}

.hero-homepage button {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 2.5s ease-out forwards;
}

.hero-homepage img {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


footer {
    background: #333;
    color: var(--white);
    padding: 20px;
}

.main-heading {
    color: var(--dark-blue);
    font-size: 28px;
    /* margin: 0; */
}

.homepage-subtitle {
    padding-bottom: 10px !important;
    font-weight: bold;
    font-size: 20px !important;
}

/* herosection-homepage */
.hero-homepage {
    padding: 80px 20px 40px;
    margin: auto;
    text-align: center;
    /*background: url("/assets/home-bg1.svg");*/
    background: radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.6), transparent 40%),
              radial-gradient(circle at 70% 40%, rgba(0, 180, 200, 0.5), transparent 35%),
              radial-gradient(circle at 30% 80%, rgba(120, 0, 255, 0.5), transparent 40%),
              linear-gradient(180deg, #001b66, #000b33);
    background-repeat: no-repeat;
    background-size: cover;
}

/* 
.about-homepage {
    padding: 80px 20px 40px;
    margin: auto;
    text-align: center;
    background: url("/assets/home-bg1.svg");
}

.services-homepage {
    padding: 80px 20px 40px;
    margin: auto;
    text-align: center;
    background: url("/assets/home-bg1.svg");
}

.contact-homepage {
    padding: 80px 20px 40px;
    margin: auto;
    text-align: center;
    background: url("/assets/home-bg1.svg");
} */

.hero-homepage h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 15px 0;
    line-height: 1.2;
    color: var(--white);
}

.hero-homepage p {
    font-size: 18px;
    color: var(--white);
    padding-bottom: 40px;
    width: 50%;
    margin: auto;

}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-primary {
    background: var(--sky-blue);
    color: var(--white);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease;

}

.btn-primary a {
    color: var(--white);
    text-decoration: none;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-services {
    text-decoration: none;
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--sky-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-outline a {
    color: var(--white);
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--sky-blue);
}

.hero-image-homepage {
    margin-top: 60px;
    text-align: center;
}

.hero-image-homepage img {
    max-width: 40%;
    height: auto;
    border-radius: 16px;
}


@media (max-width: 768px) {
    .hero-image-homepage img {
        max-width: 90%;
        height: auto;
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .hero-homepage h1 {
        font-size: 28px;
    }


    .hero-homepage p {
        font-size: 16px;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 5rem 0;
}

.about-image {
    flex: 1 1 40%;
    position: relative;
}

.about-image-mobile {
    display: none;

}

.about-image img {
    width: 80%;
    max-width: 500px;
    border-radius: 1rem;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1 1 50%;
    width: 95%;
}

.about-text h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000;
}

.about-text p {
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 80%;
    }

    .about-image {
        display: none;

    }

    .about-image-mobile {
        display: block;
        flex: 1 1 100%;

    }

    .about-image-mobile img {
        width: 45%;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
}


/* navbar */



header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}


.logo img {
    width: 30%;
}

nav.scrolled .logo {
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 2rem;
    width: 50%;
    margin: auto;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    /* background-color: var(--white); */
    border-bottom: 2.5px solid var(--sky-blue);
}

.cta-button {
    background-color: var(--sky-blue);
    color: var(--white);
    border: none;
    padding: 0.5rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.cta-button:hover {
    background: var(--light-blue);
}


.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

nav.scrolled .menu-toggle {
    color: var(--white);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem 2rem;
        border-top: 1px solid #ddd;
    }

    nav.scrolled .nav-links {
        background: var(--sky-blue);
    }

    .nav-links.open {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }


}



.logo {
    width: 25%;
}

.get-in-touch {
    width: 25%;
    display: flex;
    justify-content: flex-end;
}

.cta-button {
    background-color: var(--sky-blue);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;

}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 55px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem 1rem;
        border-top: 1px solid #ddd;
    }

    .nav-links a.active::after,
    .nav-links a:hover::after {
        width: 13%;
        min-width: 60px;
    }

    .nav-links.open {
        display: flex;
        width: auto;
    }

    .menu-toggle {
        display: block;
    }

    .cta-button,
    .get-in-touch {
        display: none;
    }

    .logo {
        width: 50%;
    }

    .menu-toggle {
        width: 50%;
        display: flex;
        justify-content: flex-end;
    }

    nav {
        width: 90%;
        display: flex;
        justify-content: space-between;

    }

    .logo img {
        width: 41%;
    }
}

@media (max-width: 400px) {
    .logo img {
        width: 60%;
    }
}

.about-hero {
    padding: 260px 20px 260px;
    margin: auto;
    text-align: center;
    /*background: url("/assets/home-bg1.svg");*/
    background: radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.6), transparent 40%),
              radial-gradient(circle at 70% 40%, rgba(0, 180, 200, 0.5), transparent 35%),
              radial-gradient(circle at 30% 80%, rgba(120, 0, 255, 0.5), transparent 40%),
              linear-gradient(180deg, #001b66, #000b33);
    background-repeat: no-repeat;
    background-size: cover;
}

.services-hero {
    padding: 260px 20px 260px;
    margin: auto;
    text-align: center;
    /*background: url("/assets/home-bg1.svg");*/
    background: radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.6), transparent 40%),
              radial-gradient(circle at 70% 40%, rgba(0, 180, 200, 0.5), transparent 35%),
              radial-gradient(circle at 30% 80%, rgba(120, 0, 255, 0.5), transparent 40%),
              linear-gradient(180deg, #001b66, #000b33);
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-hero {
    padding: 265px 20px 265px;
    margin: auto;
    text-align: center;
    /*background: url("/assets/home-bg1.svg");*/
    background: radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.6), transparent 40%),
              radial-gradient(circle at 70% 40%, rgba(0, 180, 200, 0.5), transparent 35%),
              radial-gradient(circle at 30% 80%, rgba(120, 0, 255, 0.5), transparent 40%),
              linear-gradient(180deg, #001b66, #000b33);
    background-repeat: no-repeat;
    background-size: cover;
}

/* projects */
.hero {
    display: flex;
    margin: 1rem auto;
    background: var(--white);
    border-radius: 20px;
    max-width: 1200px;
    gap: 2rem;
    align-items: flex-start;
    width: 100%;
}

.hero .content {
    width: 40%;
}

.hero .content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero .content p {
    font-size: 1.1rem;
    color: #333;
}

.hero .content .search {
    display: flex;
    margin-top: 2rem;
}

.hero .content .search input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px 0 0 8px;
    outline: none;
}

.hero .content .search button {
    background: #4CAF50;
    border: none;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
}

.hero .cards {
    display: flex;
    gap: 1rem;
    width: 60%;
    flex-wrap: wrap;
    justify-content: center;
}

.hero .card {
    flex: 1;
    transition: flex 0.5s ease;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-width: 200px;
    max-height: 300px;
    display: flex;
    flex-direction: column;
}

.hero .card:hover {
    flex: 2;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero .card .label {
    position: absolute;
    bottom: 10px;
    right: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 0.5rem 1rem;
    width: 80%;
    border-radius: 6px;
    font-size: 0.9rem;
    z-index: 1;
    transform: translateX(50%);
}

@media (max-width: 1100px) {
    .hero {
        align-items: center;
        width: 90%;
    }
}

@media (max-width: 850px) {
    .hero {
        flex-direction: column;

    }

    .hero .content {
        width: 100%;
    }

    .hero .cards {
        display: flex;
        gap: 1rem;
        width: 100%;
        flex-wrap: wrap;
    }
}

/* faq */
/* .faq-container {
    max-width: 1200px;
    max-height: 700px;
    height: 480px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.faq-left {
    flex: 1;
}

.faq-left span {
    display: inline-block;
    background: #eee;
    color: #555;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.faq-left h2 {
    font-size: 2.5rem;
    margin: 0;
}

.faq-left h2 span {
    color: #6a5acd;
}

.faq-left p {
    color: #666;
    line-height: 1.5;
    margin-top: 20px;
}

.faq-right {
    flex: 1;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #555;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 200px;
    transition: max-height 0.5s ease;
}

.arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
} */

/* testimonials */
.testimonials {
    max-width: 1200px;
    margin: 1.5rem auto;
    display: flex;
    gap: 50px;
    align-items: center;
    width: 95%;
}

.testimonials-left {
    flex: 1;
}

.testimonials-left h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0 0 20px;
}

.testimonials-left p {
    line-height: 1.6;
    color: #666;
    max-width: 400px;
}

.testimonials-left button {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(90deg, #8a2be2, #ff7f50);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.testimonials-left button:hover {
    opacity: 0.9;
}

.testimonials-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.4s ease, border-left 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    border-left: 4px solid var(--sky-blue);
    transform: translateX(-40px);
    box-shadow: 0 5px 18px var(--sky-blue);
}


.testimonial-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content h4 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.testimonial-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}


.testimonial-card::after {
    content: "❞";
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.5rem;
    color: #ccc;
    transition: color 0.4s ease-in-out;
}

.testimonial-card:hover::after {
    content: "❞";
    color: var(--sky-blue);
}

@media (max-width: 768px) {
    .testimonials {
        flex-direction: column;
        gap: 30px;
    }

    .testimonials-right {
        left: 0;
    }

    .testimonial-card {
        flex-direction: column;
    }

    .testimonial-card:hover {
        left: 0;
        transform: translateX(-10px);
    }

    .testimonials-left {
        text-align: left;
    }

    .testimonials-left p {
        max-width: 100%;
    }

    .testimonials h2 {
        font-size: 1.8rem;
    }

}




@media (max-width: 550px) {
    .testimonial-card:hover {
        left: 0;
        transform: translateX(-0px);
    }
}

/* services */

.services {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.services-card {
    text-align: center;
    margin-bottom: 2rem;
}

.services-card-para {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;

}

.card-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}

.card {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    flex: 1 1 300px;
}

.card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: transform 0.5s ease; */
    z-index: 1;
}

.card:hover img {
    transform: scale(1.1);
}

.card-content {
    position: absolute;
    bottom: 0;
    background: white;
    width: 100%;
    padding: 13px;
    /* clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%); */
    z-index: 2;
}

.card-content h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.card-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

.card.dark .card-content {
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
}

.card.dark .card-content p {
    color: #eee;
}

@media (max-width: 1024px) {
    .card-container {
        justify-content: center;
    }

    .card {
        max-width: 100%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .services-card {
        font-size: 1.6rem;
    }

    .card {
        height: 320px;
    }

    .card-content {
        font-size: 0.9rem;
        padding: 10px;
    }

    .card-content h3 {
        font-size: 1rem;
    }

    .card-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {


    .card {
        height: 400px;
    }

    .card-content {
        padding: 10px;
        /* clip-path: polygon(0% 5%, 100% -2%, 100% 100%, 0% 100%); */
    }
}


/* stats */
.stats-section {
    margin: 5rem auto;
    padding: 1.5rem;
    border-radius: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
    width: 80%;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    ;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 30px;
    color: var(--white);
    background: var(--sky-blue);
    border-radius: 50%;
    margin-bottom: 15px;
}

.stat-icon i {
    width: 80%;
}

.stat-number {
    font-size: 20px;
    font-weight: bold;
}

.stat-label {
    font-size: 14px;
    color: var(--white);
    margin-top: 5px;
}

@media (max-width: 1024px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-icon {
        width: 150px;
        height: 100px;
        font-size: 40px;
    }

    .stat-icon img {
        width: 50%;
    }

}

@media (max-width: 320px) {
    .stats-section {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

}


/* mission vision */
.services-section-mission {

    font-family: Arial, sans-serif;
    text-align: center;
}

.cards-wrapper-mission {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .cards-wrapper-mission {
        max-width: 1200px;
        margin: auto;
        width: 95%;
        flex-direction: row;
        justify-content: center;
    }
}

.card-mission {
    width: 70%;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    box-shadow: none;
    transition: all 1s ease;
}

.card-mission:hover {
    border: 2px solid #06b6d4;
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.2);
    transform: translateY(-10px);
}

.card-icon-mission {
    font-size: 32px;
    color: #06b6d4;
    margin-bottom: 16px;
}

.card-title-mission {
    font-size: 20px;
    color: #1d4ed8;
    margin-bottom: 12px;
}

.card-description-mission {
    font-size: 14px;
    color: #4b5563;
}


/* services-page */
.services-details {
    padding: 1rem 0;
    max-width: 1200px;
    width: 95%;
    margin: auto;
}




.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.feature-box {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    color: #000;

    /* Reserve space for border */
    border: 1px solid transparent;
}

/* .feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
} */


.feature-box:hover {
    border-color: #003d80;
    border-bottom-left-radius: 40px;
    border-top-right-radius: 40px;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 24px;
    background: #1652c4;
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}



.feature-box h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.feature-box p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* process */

.employment-process {
    max-width: 1200px;
    width: 95%;
    margin: auto;
}

.section-container {
    display: flex;
    gap: 20px;
    align-items: start;
}

.sticky-side {
    position: sticky;
    top: 60px;
    border-radius: 12px;
    height: 770px;
    width: 50%;
}

.employment-process p {
    color: var(--black);
    font-size: 15px;
}

.sticky-side button {
    background-color: #ff3366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 20px;
}

.sticky-side img {
    width: 100%;
    border-radius: 12px;

}

.scrolling-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 27px;
    width: 50%;
}

.step-box {
    background: var(--white);
    padding: 11px;
    border-radius: 10px;
    border-left: 3px solid var(--light-blue);
    box-shadow: 0 4px 12px rgba(0, 61, 128, 0.2);
    /* soft shadow using your color */
}

.step-box {
    transition: all 0.4s ease;
    transform: translateY(0);
    opacity: 1;
}

/* Animation on hover */
.step-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 1;
}




.step-box h3 {
    color: var(--sky-blue);
    font-size: 14px;
    margin-bottom: 8px;
}

.step-box p {
    color: var(--black);
    font-size: 15px;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .section-container {
        flex-direction: column;
    }

    .sticky-side {
        width: 100%;
        position: static;
        height: auto;
    }

    .scrolling-content {
        width: 100%;
        flex-direction: row;
        justify-content: left;
        align-items: start;
        gap: 12px;
        white-space: nowrap;
        overflow: auto;

    }

    .sticky-side h2 {
        font-size: 24px;
    }

    .step-box h2 {
        font-size: 20px;
    }

    .step-box {
        width: auto
    }
}


@media (max-width: 800px) {
    .sticky-side {
        width: 50%;
        margin: auto;
    }

}

@media (max-width: 600px) {
    .scrolling-content {

        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        white-space: normal;
    }

    .step-box {
        width: 95%;
        margin: auto;
    }

    .sticky-side {
        width: 80%;
        margin: auto;
    }


}

/* process-appraisel */



.appraisal-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    width: 95%;
}

.appraisal-subheading {
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 16px;
}

.appraisal-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.appraisal-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 20px;
    width: 22%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.3s ease;
}

.appraisal-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.appraisal-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.appraisal-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111827;
}

.appraisal-card p {
    font-size: 14px;
    color: #6b7280;
}

@media (max-width: 800px) {
    .appraisal-card {
        width: 35%;
    }

    .appraisal-cards {

        gap: 2rem;
    }
}

@media (max-width: 500px) {
    .appraisal-card {
        width: 80%;
    }
}




/* about */

.about-section-page {
    margin: 1rem 0;
    max-width: 1200px;
    width: 95%;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}



.about-image-page {
    flex: 1 1 40%;
    display: flex;
    margin: auto;
    justify-content: center;
}

.about-image-mobile-page {
    display: none;
}


.about-image-page img {
    width: 100%;
    clip-path: path("M0,0 C0,0,0,0,0,0 ...");
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-text-page {
    flex: 1 1 50%;
}

.about-text-page p {
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-section-page {
        flex-direction: column;
    }

    .about-text-page h2 {
        font-size: 28px;
        text-align: center;
    }

    .about-image-page {
        display: none;

    }

    .about-image-mobile-page {
        display: flex;
        justify-content: center;

    }

    .about-image-mobile-page img {
        width: 100%;
        margin: auto;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
}


/* career  */

.career-section {
    max-width: 1200px;
    margin: auto;
}

.career-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.career-section p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 15px;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.career-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    transition: transform 0.2s ease;
}

.career-card:hover {
    transform: translateY(-4px);
}

.career-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.career-badge {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #1f2937;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.career-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.career-text p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #666;
}

.career-arrow {
    width: 36px;
    height: 36px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.career-arrow:hover {
    background: #eee;
}

.career-arrow::before {
    content: "→";
    font-size: 16px;
    color: #333;
}

/* Responsive */


@media (max-width: 600px) {
    .career-grid {
        grid-template-columns: 1fr;
    }
}



/* benefits */

.benefits-section {
    max-width: 1200px;
    width: 95%;
    margin: auto;
    text-align: center;
}

.benefits-section p.subtitle {
    color: #444;
    font-size: 16px;
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.benefit {
    margin-bottom: 30px;
    text-align: left;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 61, 128, 0.2);
    /* soft shadow using your color */

}

.benefit:hover {
    transition: all 0.3s ease-in-out;
    box-shadow: 0 12px 12px rgba(0, 61, 128, 0.2);
}

.benefit h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #000;
}

.benefit p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.benefits-image {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

@media (max-width: 900px) {
    .benefits-content {
        display: flex;
        align-items: center;
        gap: 9px;
    }
}

@media (max-width: 900px) {
    .benefits-content {
        flex-direction: column;
        align-items: center;
    }

    .benefits-column {
        text-align: center;
    }

    .benefit {
        text-align: center;
    }
}

/* contact */
.contact-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    /* flex-wrap: wrap; */
}

@media (max-width: 900px) {
    .contact-container {
        flex-wrap: wrap;
    }
}

.contact-info,
.contact-form {
    flex: 1 1 500px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form:hover {
    transition: all 0.5s ease-in-out;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-info h2,
.contact-form h2 {
    /* margin-bottom: 20px; */
    font-size: 24px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

/* body {
  background-color: #f9fafb;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 40px 20px;
} */

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: auto;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 12px;
    border-left: 4px solid transparent;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.border-blue {
    border-left-color: #3b82f6;
}


.icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background-color: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 16px;
}

.bg-blue {
    background-color: #e0f2fe;
    color: #3b82f6;
}



.card-content {
    flex: 1;
}

.card-content-contact h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.card-content-contact p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #334155;
}


.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-heading p {
    width: 20%;
    background: black;
    height: 3px;

}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 5px;

}



.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    font-size: 14px;
    border-radius: 4px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    background-color: var(--sky-blue);
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 1rem 0;
}

.contact-form button:hover {
    background-color: var(--light-blue);
}

.map {
    max-width: 1200px;
    margin: auto;
    padding: 10px;
}

.quote-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.quote-form {
    flex: 1;
    min-width: 250px;
}

.quote-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input,
.quote-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.quote-form button {
    background: #ff6600;
    color: var(--white);
    border: none;
    padding: 14px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.quote-form button:hover {
    background: #e65c00;
}

.quote-text {
    flex: 1;
    min-width: 250px;
}

.quote-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff6600;
}

.quote-text h2 {
    margin: 0 0 20px;
    font-size: 2rem;
}

.quote-text p {
    max-width: 400px;
}

.bottom-banner {
    background: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
    color: var(--white);
    padding: 50px 30px;
    text-align: center;
}

.bottom-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.bottom-banner p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #ddd;
}

.bottom-banner button {
    background: var(--white);

    border: none;
    padding: 14px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.bottom-banner button:hover {
    background: var(--sky-blue);
    color: var(--white);
}

.btn-banner-quote {
    color: #000000;
    text-decoration: none;
}

.btn-banner-quote:hover {
    color: var(--white);
    text-decoration: none;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .quote-section {
        flex-direction: column;
    }

    .bottom-banner {
        background: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
        color: var(--white);
        padding: 50px 10px;
        text-align: center;
    }

    .bottom-banner h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
}

/* footer */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-heading img {
    color: var(--light-blue);
    width: 20%;
    margin-bottom: 15px;
}

.footer-list {
    list-style: none;
    padding: 10px 0;
}

.footer-list li {
    margin-bottom: 8px;
    position: relative;
}

.footer-list li a {
    text-decoration: none;
    color: var(--white);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons i {
    font-size: 20px;
    color: var(--white);
    padding: 8px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons i:hover {
    background: var(--sky-blue);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0 10px;
    border-top: 1px solid #333;
    font-size: 14px;
}

.footer-bottom a {
    text-align: center;
   color: var(--white);
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    text-align: center;
   color: var(--sky-blue);
    text-decoration: none;
    font-weight: bold;
}

.footer-links {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 8px;
    font-weight: bold;
}

.footer-links a:hover {
    color: var(--sky-blue);
}

@media (max-width: 768px) {
    .footer-container {
        gap: 0px;
    }

    .footer-list {
        margin: 0;
    }
}