/* Custom Cdn Google-Font's Link */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
}

:root {
    --main-color: #0a0a3c;
    --primry: #4da3f8;
    --white: #fff;
    --black: #232d38;
    --light-bg: #f0f0f0;
    --secondory: #595959;
}

*::selection {
    background-color: var(--primry);
    color: #fff;
}

html,
body {
    font-size: 89.50%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: .7rem;
    height: 0.5rem;
}

html::-webkit-scrollbar-track {
    background-color: rgb(168, 168, 168);
}

html::-webkit-scrollbar-thumb {
    background-color: var(--primry);
    border-radius: 1rem;
}

body.dark {
    --main-color: #0a0a3c;
    --primry: #4da3f8;
    --light-bg: #2e2e30;
    --black: #fff;
    --white: #272a2d;
    --secondory: #ffffff;
}

/* Preloader */

#preloader {
    position: fixed;
    inset: 0;
    background: #11589e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-wrapper {
    position: relative;
    width: 200px;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-ring {
    position: absolute;
    top: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: conic-gradient(#1e90ff,
            #00bfff,
            #1e90ff);
    animation: spin 5s linear infinite;
}

.loader-ring {
    position: absolute;
    top: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            transparent 0deg 60deg,
            #1e90ff 60deg,
            #00bfff 140deg,
            #1e90ff 220deg,
            transparent 220deg 360deg);
    animation: spin 1s linear infinite;

    -webkit-mask: radial-gradient(farthest-side,
            transparent calc(100% - 6px),
            #000 calc(100% - 6px));
    mask: radial-gradient(farthest-side,
            transparent calc(100% - 6px),
            #000 calc(100% - 6px));
}

.logo-box {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


#preloader.hide {
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 0.8s ease;
}


/* Extra */
span {
    color: var(--primry);
}

/* Extra */


/* Nav-Bar Start */

nav {
    background-color: var(--primry);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 88px;
    display: flex;
    z-index: 100;
}

.container {
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    max-width: 1280px;
    margin: auto;
}

nav .logo {
    gap: 1.2rem;
}


nav .logo img {
    cursor: pointer;
    background-color: #fff;
    border-radius: 50%;
}

nav .logo .line {
    color: #fff;
    font-weight: 500;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


nav div {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav div a {
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
}

nav div a:hover {
    color: #000000;
    transform: scale(1.2);
    transition: 0.5s;
}

nav .menu-icon {
    display: none;
}

nav .menu-icon i {
    color: #fff;
    font-size: 30px;
}

nav #toggle-btn {
    font-size: 1.8rem;
    color: #ffff;
    cursor: pointer;
    transform: none;
    transition: none;
    padding-left: 20px;
}

/* Nav-Bar End */


/* Home section Start */


/* --- Home section Start --- */

.home-sec {
    min-height: 100vh;
    background-color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    /* padding: 100px 0; */
    /* Padding for mobile safety */
}

.home {
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 0 5%;
    width: 100%;
}

/* Heading side */
/* .home .heading {
    flex: 1;
}

.home .heading h1 {
    color: var(--black);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
}

.home .heading .para p {
    max-width: 550px;
    font-size: 1.1rem;
    color: var(--secondory);
    margin: 1.5rem 0;
    line-height: 1.6;
} */

/* Image Container (New Professional Approach) */
.home-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

/* Glassy Shape Effect (Floating Card ki jagah) */
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    z-index: 2;
    position: relative;
    /* Soft shadow instead of hard box */
    filter: drop-shadow(10px 20px 30px rgba(0, 0, 0, 0.1));
}

/* Dynamic background element for professional look */
.image-wrapper::before {
    content: '';
    position: absolute;
    /* top: -20px;
    right: -20px; */
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3d7bad22, #4da3f822);
    border-radius: 20px;
    z-index: 1;
}

/* --- Responsive Media Queries --- */

@media (max-width: 991px) {
    .home {
        flex-direction: column;
        text-align: left;
        gap: 40px;
    }

    /* .home .heading {
        order: 2;
    } */

    .home-image {
        order: 1;
        /* Image pehle aayegi (better for mobile UX) */
        justify-content: center;
        width: 80%;
        /* Mobile pe image thodi choti */
    }

    /* .home .heading .para p {
        margin: 1.5rem auto;
    } */

    .home .btn {
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .home-image {
        width: 100%;
    }

    /* .home-sec {
        padding: 80px 0;
    } */
}

.home-sec .home .heading h1 {
    color: var(--black);
    font-size: 5.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: .4rem;
}

.home-sec .home .heading .head h3 {
    background: linear-gradient(135deg, #3d7bad, #4da3f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 25px 45px rgba(255, 255, 255, 0.30);
    font-size: 50px;
    margin-top: .5rem;
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    width: 30rem;
}

.home-sec .home .heading .para p {
    width: 600px;
    margin-top: .4rem;
    font-size: 1.4rem;
    letter-spacing: 1.1px;
    padding: 1.5rem 0;
    color: var(--secondory);
}

.home-sec .home .heading .btn button {
    padding: 1.2rem 2.3rem;
    border-radius: .5rem;
    border: 1px solid var(--primry);
    background-color: var(--primry);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 1.5rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: .3s ease;
}

.home-sec .home .heading .btn button:hover {
    background-color: var(--white);
    color: var(--black);
}

.home-sec .home .heading .btn a:nth-child(2) {
    margin-left: 1rem;
    padding: 1.2rem 2.3rem;
    border-radius: .5rem;
    border: 1px solid var(--primry);
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: var(--black);
    text-decoration: none;
    transition: .3s ease;
    font-size: 1.5rem;
}

.home-sec .home .heading .btn a:nth-child(2):hover {
    background-color: var(--primry);
    color: #fff;
}

/*
.home-sec {
    min-height: 100vh;
    background-color: var(--white);
}

.home {
    max-width: 1280px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 13rem 3.5rem;
}

.home-sec .home .heading h1 {
    color: var(--black);
    font-size: 5.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: .4rem;
}

.home-sec .home .heading .head h3 {
    background: linear-gradient(135deg, #3d7bad, #4da3f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 25px 45px rgba(255, 255, 255, 0.30);
    font-size: 50px;
    margin-top: .5rem;
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    width: 30rem;
}

.home-sec .home .heading .para p {
    width: 600px;
    margin-top: .4rem;
    font-size: 1.4rem;
    letter-spacing: 1.1px;
    padding: 1.5rem 0;
    color: var(--secondory);
}

.home-sec .home .heading .btn button {
    padding: 1.2rem 2.3rem;
    border-radius: .5rem;
    border: 1px solid var(--primry);
    background-color: var(--primry);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 1.5rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: .3s ease;
}

.home-sec .home .heading .btn button:hover {
    background-color: var(--white);
    color: var(--black);
}

.home-sec .home .heading .btn a:nth-child(2) {
    margin-left: 1rem;
    padding: 1.2rem 2.3rem;
    border-radius: .5rem;
    border: 1px solid var(--primry);
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: var(--black);
    text-decoration: none;
    transition: .3s ease;
    font-size: 1.5rem;
}

.home-sec .home .heading .btn a:nth-child(2):hover {
    background-color: var(--primry);
    color: #fff;
}

.home-image {
    padding: 4rem 6rem;
}

.floating-card {
    width: 27rem;
    height: 27rem;
    border-radius: 28px;
    cursor: pointer;
    background: linear-gradient(135deg, #3d7bad, #4da3f8);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
    animation: floatCard 3s ease-in-out infinite;
}


.floating-card i {
    font-size: 8rem;
    color: #ffffff;
    animation: pulseIcon 2s ease-in-out infinite;
}


@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }
}


@keyframes pulseIcon {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.85;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}





.scroll-indicator {
    position: absolute;
    top: auto;
    margin-top: 11rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primry);
    border-radius: 20px;
    position: relative;
    animation: mouse-fade 1.5s infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    background: var(--primry);
    border-radius: 3px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-move 1.5s infinite;
}

@keyframes wheel-move {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 22px;
        opacity: 0;
    }
}

@keyframes mouse-fade {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
} */

/* Home section End */

#about {
    min-height: 100vh;
    background-color: var(--light-bg);
    overflow: hidden;
}

.about-sec {
    max-width: 1280px;
    margin: auto;
}

#about .about-sec .heading {
    font-size: .8rem;
    padding-top: 10rem;
}

#about .about-sec .heading h2 {
    color: var(--primry);
    border: 1.5px solid var(--primry);
    border-radius: 10rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    letter-spacing: 1.2px;
    width: 120px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

#about .about-sec .heading p {
    color: var(--black);
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    padding: 5rem 3.8rem;
}


.about-img-wrapper {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}

.about-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3d7bad, #4da3f8);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
}


@keyframes morph {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg);
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

.about-img-wrapper i {
    font-size: 10rem;
    color: white;
    position: relative;
    z-index: 1;
}

/* right side */

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.about-text p {
    color: var(--black);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #3d7bad, #4da3f8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: .3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.stat-item h4 {
    font-size: 3rem;
    color: #fff;
    font-weight: 800;
}

.stat-item p {
    color: #fff;
    margin-top: 0.5rem;
}


/* Services section Start */

#services {
    min-height: 100vh;
    background-color: var(--white);
    overflow: hidden;
}

.services-sec {
    max-width: 1280px;
    margin: auto;
    margin-bottom: 5rem;

}

.services-sec .heading {
    font-size: .8rem;
    padding-top: 5rem;
}

.services-sec .heading h2 {
    color: var(--primry);
    border: 1.5px solid var(--primry);
    border-radius: 10rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    letter-spacing: 1.2px;
    width: 120px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.services-sec .heading p {
    color: var(--black);
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}


.services-sec .flex-card {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.services-sec .services-card {
    width: 350px;
    min-height: 283px;
    padding: 30px;
    margin: 0.9rem 0.9rem;
    border-radius: 18px;
    cursor: pointer;
    border: 1px solid #09a0cd;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


.flex-card .services-card:hover {
    transform: scale(1.05) rotate(-2deg) translate(0px, 5px) skewX(0deg);
    box-shadow: 0 20px 22px rgba(0, 0, 0, 0.219);
    opacity: 1;
    transition: 0.4s ease;

}
.review-section-items .testimonial-card {
    margin: 0.9rem 0.9rem;

}

.review-sec {
    padding-bottom: 5rem !important;
}



.services-sec .icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primry);
    color: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.services-sec h3 {
    font-size: 1.9rem;
    letter-spacing: 1px;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 2.3rem;
}

.services-sec .desc {
    color: var(--secondory);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    line-clamp: 3;
}

/* Services section End */



/* Hire-Me Section Start */

#hire {
    min-height: auto;
    background-color: var(--light-bg);
    border-top: 1px solid var(--white);
}

.hire-parent {
    max-width: 1230px;
    margin: auto;
}

.hire-parent .title-name {
    padding: 1.5rem 3.8em;
}

.hire-parent .title-name h3 {
    color: var(--black);
    letter-spacing: 0.1rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.hire-parent .title-name span {
    color: var(--primry);
    font-size: 2rem;
}

.hire-parent .flex {
    display: flex;
    justify-content: space-between;
    padding: 0 3.5rem;
    flex-wrap: wrap;
}

.hire-parent .flex .paragraph p {
    color: var(--secondory);
    width: 39rem;
    line-height: 1.6rem;
    letter-spacing: 1px;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hire-parent .btn {
    background-color: var(--primry);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: .2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.9rem;
    width: 15rem;
    margin-top: 5rem;
    cursor: pointer;
}

.hire-parent .btn i {
    font-size: 1.8rem;
    color: #fff;
}

.hire-parent .btn span {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 1.2px;
    text-align: center;
}


.hire-parent .btn:hover {
    transition: 0.5s ease;
    transform: scale(1.1);
}

/* Hire-Me Section End */


/* Reviews section Start */

#review {
    min-height: 100vh;
    background-color: var(--white);
    overflow: hidden;
}

.review-sec {
    max-width: 1280px;
    margin: auto;
}

.review-sec .heading {
    font-size: .8rem;
    padding-top: 5rem;
}

.review-sec .heading h2 {
    color: var(--primry);
    border: 1.5px solid var(--primry);
    border-radius: 10rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    letter-spacing: 1.2px;
    width: 130px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    margin: auto;
}

.review-sec .para p {
    color: var(--black);
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

/* /////////// */

.review-sec .testimonial-card {
    width: 355px;
    background: var(--white);
    border: 1px solid #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.143);
    transition: 0.3s ease;
    cursor: pointer;
}

.review-sec .flex-card {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.review-sec .testimonial-card:hover {
    box-shadow: 0 20px 22px rgba(0, 0, 0, 0.219);
    transition: 0.2s ease;
}

.review-sec .stars {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.review-sec .testimonial-text {
    font-size: 15.5px;
    color: var(--secondory);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.review-sec .user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-sec .avatar img {
    width: auto;
    height: 70px;
    background-color: var(--primry);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-sec .user-info h4 {
    font-size: 19px;
    line-height: 1.7rem;
    letter-spacing: .6px;
    font-weight: 600;
    color: var(--black);
}

.review-sec .user-info span {
    font-size: 13px;
    color: var(--secondory);
}



/* Work Section Start */

#work {
    min-height: 70vh;
    background-color: var(--light-bg);
    overflow: hidden;
    padding-bottom: 3rem !important;
}

.project-section-items .blog-card {
    margin: 0.9rem 0.9rem;

}

.work-sec {
    max-width: 1280px;
    margin: auto;
}

.work-sec .heading {
    font-size: .8rem;
    padding-top: 5rem;
}

.work-sec .heading h2 {
    color: var(--primry);
    border: 1.5px solid var(--primry);
    border-radius: 10rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    letter-spacing: 1.2px;
    width: 130px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    margin: auto;
}

.work-sec .para p {
    color: var(--black);
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.143);
    border: 1px solid #fff;
    padding: 25px;
    width: 25rem;
    height: 40%;
    position: relative;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.178);

}


.tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.1px;
    color: #fff;
}

.tech {
    background: linear-gradient(135deg, #3d7bad, #4da3f8);

}

.design {
    background: linear-gradient(135deg, #3d7bad, #4da3f8);

}

.marketing {
    background: linear-gradient(135deg, #3d7bad, #4da3f8);

}


.image-box img {
    height: auto;
    width: 100%;
    border: 1px solid var(--primry);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 40px; */
    margin-bottom: 20px;
    object-fit: contain;
}

.img-icon {
    font-size: 40px;
    opacity: 0.5;
}


.blog-card h3 {
    font-size: 20px;
    margin-bottom: 18px;
    margin-top: 25px;
    color: var(--black);
}


.blog-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
    color: var(--black);
}

.blog-card .btn {
    display: inline-block;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.1px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(90deg, #4da3f8, #5284ad);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #4f85b1, #67b3ff);
}


.service-section-items .btn {
    display: inline-block;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.1px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(90deg, #4da3f8, #5284ad);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-section-items .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #4f85b1, #67b3ff);
}

/* Work Section End */



/* map section start */

.map-sec {
    min-height: auto;
    background-color: var(--white);
    overflow: hidden;
}

.map-sec .heading {
    font-size: .8rem;
    padding-top: 5rem;
}

.map-sec .heading h2 {
    color: var(--primry);
    border: 1.5px solid var(--primry);
    border-radius: 10rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    letter-spacing: 1.2px;
    width: 85px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.map-sec .para p {
    color: var(--black);
    text-align: center;
    font-size: 1.5rem;
    margin-top: 2rem;
}


.map-sec .map-container {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.map-sec .map-container iframe {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.11);
    padding: 1.5rem;
}

/* map section end */

/* contact section start */

#contact {
    min-height: auto;
    background-color: var(--light-bg);
    overflow: hidden;
}

#contact .contact-sec {
    max-width: 1280px;
    margin: auto;
}

#contact .contact-sec .heading {
    font-size: .8rem;
    padding-top: 3rem;
}

#contact .contact-sec .heading h2 {
    color: var(--primry);
    border: 1.5px solid var(--primry);
    border-radius: 10rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    letter-spacing: 1.2px;
    width: 110px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

#contact .contact-sec .para p {
    color: var(--black);
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

/* ////// */


#contact .contact-sec .contact-section {
    padding: 80px 5%;
}

#contact .contact-sec .contact-container {

    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* LEFT */
#contact .contact-sec .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact .contact-sec .info-box {
    background: var(--white);
    padding: 22px;
    border-radius: .5rem;
    border: 1px solid #fff;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#contact .contact-sec .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primry);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

#contact .contact-sec .info-box h4 {
    font-size: 18px;
    margin-bottom: 5px;
    letter-spacing: 1px;
    color: var(--black);
}

#contact .contact-sec .info-box p {
    color: var(--secondory);
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 1px;
}

/* RIGHT FORM */
#contact .contact-sec .contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #fff;
}

#contact .contact-sec .input-group {
    position: relative;
    margin-bottom: 18px;
}

#contact .contact-sec .input-group i {
    position: absolute;
    top: 26px;
    left: 15px;
    transform: translateY(-50%);
    color: var(--primry);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 14px 14px 45px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    background-color: #fff;
    outline: none;
    font-size: 14px;
}

#contact .contact-sec .input-group textarea {
    resize: none;
    height: 120px;
}

#contact .contact-sec button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #3d7bad, #4da3f8);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

#contact .contact-sec button:hover {
    opacity: 0.9;
}


/* Footer section Start  */

.footer {
    background-color: #1b1b1b;
    color: #ccc;
    padding: 60px 5% 20px 5%;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: var(--primry);
}

/* Footer main container */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* LEFT SECTION */

.footer-about img {
    border-radius: 50%;
    margin-bottom: 10px;
}

.footer-about h2 {
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: #1b1b1b;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 16px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.social-icons a:hover {
    background: var(--primry);
    color: #fff;
}

/* LINKS */
.footer-links h3,
.footer-courses h3,
.footer-newsletter h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.7rem;
}

.footer-links ul,
.footer-courses ul {
    list-style: none;
    margin-top: 2rem;
}

.footer-links ul li,
.footer-courses ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a,
.footer-courses ul li a {
    font-size: 14px;
}

/* NEWSLETTER */
.footer-newsletter p {
    font-size: 14px;
    margin-bottom: 13px;
    line-height: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    flex: 1;
    outline: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.newsletter-form button {
    background: linear-gradient(135deg, #3d7bad, #4da3f8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #09a0cd, #2eceff);
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: .8px solid #777777;
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #888;
}

.footer-legal a {
    margin-left: 5px;
}


/* Footer section End  */


/* bottom arrow  */

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #3d7bad, #4da3f8);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#scrollTopBtn:hover {
    transform: translateY(-5px);
}


/* bottom arrow */

.portfolio_detail {
    max-width: 1280px;
    margin: auto;
    padding: 0rem 3.5rem 13rem 3.5rem;
}
