/* ========== Global Reset ========== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ========== Background Section ========== */
.bg-img {
    height: 70vh;
    background: url(assets/images/background/background.jpg) no-repeat center center/cover;
    width: 100%;
}

.bg-img-color {
    height: 70vh;
    width: 100%;
    background-color: rgba(209, 209, 255, 0.1);
}

/* ========== Navbar ========== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
    background: transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 999;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.logo {
    height: 80px;
}

.navbar-container .navbar-menu {
    display: flex;
    text-align: center;
    gap: 1.5rem;
    list-style: none;
}

.navbar-menu li a {
    text-decoration: none;
    color: #7070e0;
    font-size: 1.3rem;
    font-weight: 900;
    padding: 3px 20px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.7s ease;
    white-space: nowrap;
}

.navbar-menu li a:hover , .navbar-menu li a.active{
    color: white;
    background-color: rgb(112, 112, 224);
    border: 1px solid white;
}

.navbar-toggle {
    display: none;
    background-color: transparent;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: white;
    transition: all 0.3s ease-in-out;
}


/* ========== Heading Text ========== */
.heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    color: rgb(112, 112, 224);
    font-size: 3rem;
    text-align: center;
}

/* ========== Section 1 - About ========== */
.section-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

.sec-1-img {
    height: 500px;
    max-width: 100%;
}

.about-us,
.about-us-page {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.stat-about,
.stat-about-page {
    font-size: 20px;
    text-decoration: underline;
}

.stat-head {
    font-size: 45px;
    width: auto;
}

.stat-text {
    font-size: 20px;
    width: auto;
}

.stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(112, 112, 224);
    color: white;
    height: 100px;
    width: 100%;
    max-width: 400px;
    border-radius: 23px;
    gap: 10px;
}

.stats h4 {
    font-size: 23px;
    padding-bottom: 5px;
}

/* ========== Section 2 - Our Team ========== */
.section-2 {
    width: 100%;
    background-color: rgb(112, 112, 224);
    text-align: center;
    padding: 50px 0;
    color: white;
}

.our-team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    width: 300px;
    background-color: white;
    color: #000;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.team-img {
    width: 100%;
    height: auto;
    max-width: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* ========== Section 3 - Our Services ========== */
.section-3 {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background-color: #fff;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    width: 85%;
    max-width: 1200px;
    margin: auto;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    width: 90%;
    max-width: 1200px;
}

.sec-3-img {
    max-height: 500px;
    max-width: 100%;
}

.text-content {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.service-3 {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.icon {
    height: 40px;
    background-color: #e9fffb;
}

.service-text {
    width: auto;
}

/* ========== Section 4 - Pricing ========== */
.section-4 {
    width: 100%;
    background-color: rgb(112, 112, 224);
    text-align: center;
    padding: 50px 0;
    color: white;
}

.our-price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.price-box {
    background-color: white;
    padding: 30px 40px;
    border-radius: 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 300px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.price-box:hover {
    transform: translateY(-5px);
}

.plan-title {
    font-weight: bold;
    font-size: 1.4rem;
    color: rgb(112, 112, 224);
    margin-bottom: 10px;
}

.price {
    font-size: 60px;
    color: rgb(112, 112, 224);
    margin: 10px 0;
    font-weight: bolder;
}

.pricing-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgb(112, 112, 224);
    font-size: 0.95rem;
}

.pricing-benefits li {
    margin: 8px 0;
}

/* ========== Section 5 - Strategy ========== */
.section-strategy {
    width: 100%;
    background-color: white;
    text-align: center;
    padding: 50px 0;
    color: #7070e0;
}

.strategy-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.strategy-card {
    width: 300px;
    background-color: white;
    color: #000;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
}

.strategy-img {
    width: 100%;
    height: auto;
    max-width: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px auto;
}

.strategy-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.strategy-text {
    font-size: 0.95rem;
    color: rgb(44, 44, 44);
}

/* ========== Footer ========== */
.foot {
    height: 43px;
    font-weight: bold;
    background-color: whitesmoke;
    color: rgb(112, 112, 224);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-img {
    max-height: 500px;
    max-width: 100%;
    border-radius: 20px;

}


.blog-container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-post {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 40%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-desc {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}


.contact-hero {
    text-align: center;
    padding: 80px 20px 40px;
    background: linear-gradient(to right, rgb(112, 112, 224), #6d8eff);
    color: white;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 26px;
    color: #222;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.contact-form button {
    background-color: rgb(112, 112, 224);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background-color: #5d65d6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #f7f8ff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 40px;
    height: 40px;
}

.info-text h4 {
    margin: 0;
    font-size: 17px;
    color: #333;
}

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

.map-placeholder {
    margin: 60px auto;
    width: 90%;
    max-width: 1100px;
    height: 350px;
    background: #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #555;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
}
.success-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, white, #7cbeff);
    color: #5d65d6;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.success-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.success-icon {
    width: 80px;
    margin-bottom: 20px;
}

.btn-home {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: white;
    color: #1e90ff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-home:hover {
    background: #f1f1f1;
}


/* ========== Animations ========== */
.autoShow{
    animation: text-appear both;
    animation-timeline: view();
    animation-range: entry 20% cover 100vh;
}
@keyframes text-appear {
    from{
        opacity: 0px;
        transform: translateY(100px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.imageReveal{
    animation: imageReveal both;
    animation-timeline: view(50% 20%);
}

@keyframes imageReveal {
    from{
        filter: saturate(0) contrast(4) brightness(.1), blur(5px);
        opacity: 0;
        scale: .95;
        translate: 0 4rem;
    }
    to{
        filter: none;
        opacity: 1;
        scale: 1;
        translate: 0 0;
    }
}
/* ========== Responsive Design ========== */

@media screen and (max-width: 1200px) {
    .section-1 {
        flex-direction: column;
        align-items: center;
        padding-bottom: 50px;
    }

    .heading {
        font-size: 2rem;
    }

    .about-us {
        display: flex;
        align-items: center;
        max-width: 90vw;
    }

    .stat-head {
        font-size: 3rem;
        text-align: center;
    }

    .stat-text {
        text-align: center;
    }

    .section-3 {
        justify-content: center;
    }

    .section-content {
        flex-direction: column;
        text-align: center;
    }

    .service-head-text {
        font-size: 1.5rem;
        padding-bottom: 20px;
    }

    .text-content {
        align-items: center;
        width: 80%;
    }

    .stat-about-page {
        font-size: 20px;
        width: auto;
        text-decoration: underline;
        margin: auto;
    }

}
@media screen and (max-width: 480px){
    .navbar-container{
        padding: 0 1rem;
    }

    .navbar-logo{
        font-size: 1.7rem;
    }
    .navbar-container .navbar-menu li a{
        font-size: 1.2rem;
        padding: 3px 15px;
    }
}

@media screen and (max-width: 680px) {
    .section-1 {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .navbar {
        height: 90px;
        backdrop-filter: none;
    }

    .navbar-container .navbar-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.7rem !important;
        position: absolute;
        height: 100vh;
        width: 250px;
        top: 0;
        right: 0;
        padding: 5rem 1.5rem;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
    }

    .navbar-toggle {
        display: block;
        z-index: 999;
    }

    .navbar-container .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .sec-1-img {
        width: 80%;
        height: auto;
    }


    .heading {
        font-size: 1.4rem;
        padding: 0px 14px;
        height: 50vh;
    }

    .service-head-text {
        font-size: 1.2rem;
    }

    .about-us {
        align-items: center;
        text-align: center;
        height: 400px;
    }


    .stat-head {
        font-size: 1.8rem;
    }

    .stat-text {
        width: auto;
    }

    .sec-1-img-box {
        display: flex;
        justify-content: center;
    }

    .stats {
        width: 90%;
    }

    .text-content {
        width: 100%;
    }

    .our-team,
    .price-box {
        width: 85%;
        margin: auto;
        padding-top: 30px;
    }

    .team-member,
    .strategy-card {
        width: 90%;
    }

    .blog-post {
        flex-direction: column;
    }

    .blog-image,
    .blog-content {
        width: 100%;
    }

    .blog-image {
        height: 200px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }
}