* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1.2px;
}

h1 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: bolder;
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button,
li,
ul,
ol {
    font-family: "Poppins", sans-serif;
}

/* scroll animation */
@keyframes appear {
    from {
        opacity: 0;
        scale: 0;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}

.block {
    animation: appear 1.5s ease-out;
    animation-timeline: view();
    animation-range: entry 0% cover 15%;
}


/* -----------------------------------------Navbar start----------------------------------------- */
nav {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 45px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-container img {
    width: 160px;
    height: auto;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
    margin-top: 6px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 200px;
    z-index: 1000;
    top: 30px;
}

.dropdown-content a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f3f3f3;
    background: -webkit-linear-gradient(#3DCBD6, #4690C5, #92C186);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Make dropdown fit mobile menu layout */
@media (max-width: 768px) {
    .dropdown-content {
        position: relative;
        box-shadow: none;
        background-color: white;
        top: 0;
    }
}


.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hover Effect with Centered Underline */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 50%;
    bottom: -4px;
    background: linear-gradient(to right, #3acfd5 0%, #3a4ed5 100%);
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 50%;
    /* Underline starts from the center */
    opacity: 1;
}

.nav-links a:hover {
    /* color: blue; */
    background: -webkit-linear-gradient(#3DCBD6, #4690C5, #92C186);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Active Link Styling */
.nav-links a.active {
    /* color: blue; */
    background: -webkit-linear-gradient(#3DCBD6, #4690C5, #92C186);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a.active::after {
    width: 50%;
    opacity: 1;
}

/* Responsive Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        right: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
        width: 90%;
    }

    .menu-toggle {
        display: block;
    }













    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        left: 50%;
        bottom: -4px;
        background: linear-gradient(to right, #3acfd5 0%, #3a4ed5 100%);
        opacity: 0;
        transition: width 0.3s ease, opacity 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-links a:hover::after {
        width: 30%;
        /* Underline starts from the center */
        opacity: 1;
    }

    .nav-links a:hover {
        /* color: blue; */
        background: -webkit-linear-gradient(#3DCBD6, #4690C5, #92C186);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Active Link Styling */
    .nav-links a.active {
        /* color: blue; */
        background: -webkit-linear-gradient(#3DCBD6, #4690C5, #92C186);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .nav-links a.active::after {
        width: 30%;
        opacity: 1;
    }

}

/* -----------------------------------------Navbr end----------------------------------------------- */

/* ------------------------------------------About Page start---------------------------------------- */

.main-img-about {
    background-image: linear-gradient(#0009, #0009), url(../image/about-main.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
    min-height: 510px;
    color: white;
}

.heading-about {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
}

.heading-about hr {
    width: 30%;
    margin-left: 35%;
    height: 2px;
}

.heading-about h1 {
    color: #4690c5;

}

.heading-about p {
    letter-spacing: 7px;
}

.custom-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 35px;
    margin-top: 50px;
}

.abt-content h5 {
    font-weight: bolder;
}

.abt-content p {
    text-align: justify;
    font-size: 14px;
    font-weight: 400;
    color: #131212b5;
    max-width: 500px;
}

.abt-img img {
    box-shadow: 10px 10px 20px rgb(0 0 0 / 12%);
    border-radius: 10px;
    /* width: 500px; */
    height: auto;
}

.abt-txt {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 100px;
    background-color: #e6ecec;
    padding: 40px;



}

.abt-txt h1 {
    background: -webkit-linear-gradient(#3DCBD6, #4690C5, #92C186);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.abt-work {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 100px;
}

.abt-work h1 {
    color: #4690c5;
}

.card {
    background-color: #ffffff;
    border: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.icon {
    font-size: 50px;
    color: #007bff;
}

.card-title {
    font-weight: bold;
}

.card-text {
    color: #6c757d;
}

.team-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background: #fff;
    border: 1px solid gray;
    border-radius: 10px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.team-card-img-top {
    border-radius: 50%;
    margin-top: 20px !important;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover .team-card-img-top {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.team-card-body {
    padding: 15px;
}

/* ------------------------------------------About Page End---------------------------------------- */


/* ------------------------------------Footer Strat------------------------------------------------- */

.footer {
    background: linear-gradient(145deg, #1a1c23, #242730);
    color: #ffffff;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    /* height: 2px; */
    /* background: #6c5ce7; */
    transform: translateX(-50%);
    /* bottom: -4px; */
    transition: width 0.3s ease, opacity 0.3s ease;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-image: linear-gradient(to right, #3acfd5 0%, #3a4ed5 100%) 1;
    border-width: 1px;
    border-style: solid;
}

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

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

.footer-links a {
    color: #b4b6bb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.contct_no {
    text-decoration: none;
    color: #ffffff;
}

.social-links a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #6c5ce7;
    color: #ffffff;
    box-shadow: none;
}

.copyright-txt {
    display: flex;
    justify-content: center;
    text-align: center;
}

.copyright-txt a {
    text-decoration: none;
    color: #ffffff;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1.5rem !important;
}

/* ------------------------------------Footer End------------------------------------------------- */



/* ------------------------------------------Contact Page start---------------------------------------- */

.main-img-web-design2 {
    background-image: linear-gradient(#0009, #0009), url(../image/contect1.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
    min-height: 510px;
    color: white;
}

.heading-contact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.heading-contact hr {
    width: 30%;
    margin-left: 35%;
    height: 2px;
}

.heading-contact h1 {
    color: #4690c5;
}

.breadcrumb {
    color: #555;
    font-size: 14px;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    margin-top: 5%;
}

.contact-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 350px;
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(70, 144, 197, 0.3);
}

.icon-box {
    padding: 25px;
    border-radius: 0 20px 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
}

.icon-box i {
    font-size: 28px;
    color: #fff;
    border-radius: 200px;
}

.card-content {
    text-align: left;
    padding: 20px;
}

.card-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.card-content p {
    font-size: 15px;
    color: #555;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .contact-card {
        width: 90%;
    }
}
.cntc-details{
    margin-top: 10%;
}

.cntc img {
    height: auto;
    width: 550px;
}

.cntc-form {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.cntc-form p {
    color: #4690c5;
}

.cntc-form input,
textarea {
    border: 1px solid #4690c5;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
}

.submit-btn {
    background-color: #4690c5;
    border: none;
    padding: 10px;
    color: white;
    border-radius: 10px;
}

/* ------------------------------------------Contact Page end---------------------------------------- */

/* ------------------------------------------Services Page start---------------------------------------- */

.main-img-services {
    /* background-image: linear-gradient(#0009, #0009), url(assets/image/services-main.jpg); */

    background-image: linear-gradient(#0009, #0009), url(../image/services-main.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
    min-height: 510px;
    color: white;
}

.heading-services {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
}

.heading-services hr {
    width: 30%;
    margin-left: 35%;
    height: 2px;
}

.heading-services h1 {
    color: #4690c5;
}

.box {
    background: linear-gradient(135deg, #46464b, #212125);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: #fff;
    transition: all 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    flex-direction: column;
    overflow: hidden;
}

.icon {
    color: wheat;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: all 1s ease;
    font-weight: bolder;
}

.content {
    opacity: 0;
    max-height: 0;
    transition: all 1s ease;
}

.box:hover {
    flex-direction: row;
    justify-content: space-around;
}

.box:hover .icon {
    margin-bottom: 0;
    color: #4690c5;
}

.box:hover .content {
    opacity: 1;
    max-height: 200px;
    margin-left: 1rem;
    text-align: left;
}

.services-button {
    background-color: #4690c5;
    color: wheat;
    width: 120px;
    padding: 8px;
    border: none;
    border-radius: 10px;
}

/* ------------------------------------------Services Page end---------------------------------------- */


/* ------------------------------------------Web design Page start---------------------------------------- */

.heading-web-design {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
}

.heading-web-design h1 {
    color: #4690c5;
}

.heading-web-design hr {
    width: 30%;
    margin-left: 35%;
    height: 2px;
}

.main-img-web-design {
    background-image: linear-gradient(#0009, #0009), url(../image/web-design.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
    min-height: 510px;
    color: white;
}

.web_design_txt {
    margin-top: -100px !important;
}

.web_design_txt li {
    font-size: 14px;
    font-weight: 400;
    color: #131212b5;
}

.web-design-steps {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 35px;
}

.web-d-txt {
    text-align: justify;
}

.web-design-img img {
    /* box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5); */
    border-radius: 10px;
    width: 526px;
    height: 845px;
    margin-bottom: 120px;
    object-fit: fill;
}

.web-design-img img:hover {
    box-shadow: 10px 10px 20px rgba(122, 122, 122, 0.5);
}

.web-d-txt h2 {
    color: #4690c5;
}

/* ------------------------------------------Web Design Page end---------------------------------------- */

/* ------------------------------------------Web development Page start---------------------------------------- */

.main-img-web-development {
    background-image: linear-gradient(#0009, #0009), url(../image/web-development.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
    min-height: 510px;
    color: white;
}

.heading-web-development {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
}

.heading-web-development h1 {
    color: #4690c5;
}

.heading-web-development hr {
    width: 30%;
    margin-left: 35%;
    height: 2px;
}

.web_devlopment_font li {
    font-size: 14px;
    font-weight: 400;
    color: #131212b5;
}

.web-development-steps {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 35px;
}

.web-dp-txt {
    text-align: justify;
}

.web-development-img img {
    box-shadow: 4px 2px 5px 3px rgba(142, 142, 142, 0.5);
    border-radius: 10px;
    width: 500px;
    height: 460px;
    margin-bottom: 54px;
    object-fit: cover;
}

.web-dp-txt h2 {
    color: #4690c5;
}

/* ------------------------------------------Web development Page end---------------------------------------- */

/* ------------------------------------------App development Page start---------------------------------------- */

.main-img-app-development {
    background-image: linear-gradient(#0009, #0009), url(../image/app-2.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
    min-height: 510px;
    color: white;
}

.heading-app-development {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
}

.heading-app-development h1 {
    color: #4690c5;
}

.heading-app-development hr {
    width: 30%;
    margin-left: 35%;
    height: 2px;
}

body {
    background-color: #f8f9fa;
}

.step p {
    font-size: 14px;
    font-weight: 400;
    color: #131212b5;
    ;
    max-width: 575px;
}

.process-step {
    margin-bottom: 30px;
}

.process-step p {
    font-size: 14px;
    font-weight: 400;
    color: #131212b5;
}

.image-side img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.app-development-img:hover {
    box-shadow: 4px 2px 5px 3px rgba(142, 142, 142, 0.5) !important;


}

.app-development-img {
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
}

.app_center {
    display: flex;
    align-items: center;
}

/* ------------------------------------------App development Page end---------------------------------------- */

/* -----------------------------------------SEO Page Start----------------------------------------- */

.seo-main-img {
    background-image: linear-gradient(#0009, #0009), url(../image/seo-main-img.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
    min-height: 510px;
    color: white;
}

.seo-img img {
    /* box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5); */
    border-radius: 10px;
    width: 526px;
    height: 550px;
    margin-bottom: 120px;
    object-fit: fill;
}

/* -----------------------------------------SEO Page end----------------------------------------- */

/* -----------------------------------------Case Study Page Start----------------------------------------- */

.casestudy-main-img {
    background-image: linear-gradient(#0009, #0009), url(../image/casestudy-main.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
    min-height: 510px;
    color: white;
}

/* -----------------------------------------Case Study Page end----------------------------------------- */

/* ------------------------------------------Software development Page start---------------------------------------- */

.main-img-soft-development {
    background-image: linear-gradient(#0009, #0009), url(../image/cyber.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
    min-height: 510px;
    color: white;
}

.heading-soft-development {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
}

.heading-soft-development h1 {
    color: #4690c5;
}

.heading-soft-development hr {
    width: 30%;
    margin-left: 35%;
    height: 2px;
}

.soft-development-img img {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    width: 500px;
    height: auto;
    margin-bottom: 120px;
}

/* ------------------------------------------Software development Page end---------------------------------------- */

/* ------------------------------------------Game development Page start---------------------------------------- */

.main-img-game-development {
    background-image: linear-gradient(#0009, #0009), url(../image/about-main.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
    min-height: 510px;
    color: white;
}

.game_devlopment p {
    font-size: 14px;
    font-weight: 400;
    color: #131212b5;
    max-width: 500px;
}

.game_mb {
    margin-bottom: 130px;
}

.heading-game-development {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
}

.heading-game-development h1 {
    color: #4690c5;
}

.heading-game-development hr {
    width: 30%;
    margin-left: 35%;
    height: 2px;
}

.game-development-process-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.game-development-step-purpose {
    font-style: italic;
    color: #7f8c8d;
}

.game-development-img img {
    /* box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5); */
    border-radius: 10px;
    width: 565px;
    height: 557px;
    object-fit: cover;
    margin-top: 20px;

}

.game-development-img img:hover {
    box-shadow: 10px 10px 20px rgba(122, 122, 122, 0.5);
}

/* ------------------------------------------Game development Page end---------------------------------------- */

/* ------------------------------------------UI/UX Page start---------------------------------------- */

.main-img-graphic {
    background-image: linear-gradient(#0009, #0009), url(../image/app-bg.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100%;
    min-height: 510px;
    color: white;
}

.heading-graphic {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
}

.heading-graphic h1 {
    color: #4690c5;
}

.heading-graphic hr {
    width: 30%;
    margin-left: 35%;
    height: 2px;
}

.graphic-step-section {
    padding: 3rem 2rem;
}

.graphic-step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.graphic-step-goal {
    font-style: italic;
    margin-bottom: 1rem;
}

.graphic-step-list li {
    margin-bottom: 0.5rem;
}

.graphic-img img {

    border-radius: 10px;
    width: 500px;
    height: auto;
}

.graphic-img img:hover {
    box-shadow: 10px 10px 20px rgba(122, 122, 122, 0.5);
}

/* ------------------------------------------ UI/UX Page end---------------------------------------- */