@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=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

header {
    width: 100%;
    padding: 30px 40px;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

header.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 40px;
}

.logo img {
    width: 122px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #777;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #000;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    width: 18px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 28%;
    height: 100vh;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    z-index: 1002;
    overflow-y: auto;
}

.navbar.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
}

.navbar-logo {
    margin-bottom: 40px;
}

.navbar-logo img {
    height: 45px;
}

.navbar-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.navbar-links a {
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: #5a4dff;
}

.navbar-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.navbar-contact h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 16px;
    color: #1a1a1a;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-info span:first-child {
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info span:last-child {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

#footer {
    background: #000000;
    width: 100%;
    padding: 80px 40px;
    position: relative;
    left: 0;
    color: #FFF;
}

.service,
.team {
    width: 15%;
}

.menu {
    width: 10%;
}

.contact {
    width: 15%;
    margin: 0 40px 0 0;
    height: auto;
}

a {
    text-decoration: none;
}

.footer-leg {
    color: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 50px 0 0 0;
}

.footer-leg>a {
    color: #FFF;
}

.footer-leg>a:hover {
    text-decoration: underline;
}

.info {
    color: #FFF;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 15%;
}

.info>span {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.info>img {
    width: 140px;
}

.footer-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-leg>span {
    margin: 0 0 0 75px;
}

.h2-txt {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-bottom: 20px;
    line-height: 18px;
}

.service>span>small {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.menu-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-area>a {
    color: #FFF;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    transition: 0.3s;
}

.menu-area>a:hover {
    color: #00d084;
}

.war>img {
    width: 65px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.5s;
}

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

.war {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.con {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.con>p {
    display: flex;
    align-items: baseline;
    gap: 5px;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: #FFF;
    cursor: pointer;
    transition: 0.3s;
}

.con>p:hover {
    color: #00d084;
}

.hero1 {
    width: 100%;
    min-height: 100vh;
    background: url('https://brandmotivemarketing.com/wp-content/uploads/2022/10/slider-grident-bg-1.png');
    background-size: cover;
    background-position: center;
    padding-top: 120px;
    display: flex;
    align-items: center;
}

.hero-main {
    width: 100%;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.txt {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dot {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFF;
    padding: 12px 20px;
    border-radius: 50px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dot li {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    list-style: none;
}

.dot h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.txt h2 {
    font-size: 70px;
    font-weight: 900;
    color: #1a0d5e;
    line-height: 1.1;
    margin: 0;
}

.txt>span {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
}

.btns {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.btns a:first-child {
    background: #000;
    color: #FFF;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btns a:first-child:hover {
    background: #333;
    transform: translateY(-2px);
}

.btns a:last-child {
    background: #f4d03f;
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btns a:last-child:hover {
    background: #e6c236;
    transform: translateY(-2px);
}

.img {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img>img {
    height: 500px;
    object-fit: cover;
}

.animate1 {
    position: absolute;
    top: -50px;
    right: 50px;
    animation: float 3s ease-in-out infinite;
}

.animate1 img {
    width: 80px;
}

.animate2 {
    position: absolute;
    bottom: 80px;
    left: -30px;
    animation: float 4s ease-in-out infinite;
}

.animate2 img {
    width: 60px;
}

@keyframes float {

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

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

.hero2 {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.mainh2 {
    width: 100%;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.mtxt {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mtxt h2 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    line-height: 1.2;
}

.mtxt p {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

.profile {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
}

.profile>img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.protext {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.protext>h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #151718;
}

.protext>span {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #666;
}

.mservice {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.serve,
.choose {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serve:hover,
.choose:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.serve-icon,
.choose-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serve-icon {
    background: #00d084;
}

.choose-icon {
    background: #f4d03f;
}

.serve-icon i,
.choose-icon i {
    font-size: 28px;
    color: #fff;
}

.serve h3,
.choose h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.serve a,
.choose a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.serve a:hover,
.choose a:hover {
    color: #000;
}

.serve a i,
.choose a i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.serve a:hover i,
.choose a:hover i {
    transform: translateX(5px);
}

.hero3 {
    width: 100%;
    min-height: 100vh;
    background: #fff;
    padding: 80px 0;
}

.mainh3 {
    width: 100%;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.h3-header,
.h4-header,
.h6-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    padding: 10px 20px;
    border-radius: 50px;
}

.tag span {
    font-size: 16px;
}

.tag h4 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.h3-header h2,
.h4-header h2,
.h6-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: #1a0d5e;
    line-height: 1.2;
}

.h3-header p {
    font-size: 16px;
    color: #666;
}

.service-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    padding: 50px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card1 {
    background: linear-gradient(135deg, #d4f1e4 0%, #e8f9f1 100%);
}

.card2 {
    background: linear-gradient(135deg, #e8e3f7 0%, #f3f0fc 100%);
}

.card3 {
    background: linear-gradient(135deg, #fde3e8 0%, #fef0f3 100%);
}

.card4 {
    background: linear-gradient(135deg, #fff9e3 0%, #fffcf0 100%);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card1 .card-icon {
    color: #00d084;
}

.card2 .card-icon {
    color: #7c3aed;
}

.card3 .card-icon {
    color: #ef4444;
}

.card4 .card-icon {
    color: #f59e0b;
}

.card-icon i {
    font-size: 32px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.service-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.service-card a:hover {
    color: #000;
}

.service-card a i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-card a:hover i {
    transform: translateX(5px);
}

.hero4 {
    width: 100%;
    min-height: 100vh;
    background: url('https://brandmotivemarketing.com/wp-content/uploads/2022/10/case-grident-shape-1.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.mainh4 {
    width: 100%;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.case-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.case-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.case-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.case-item:hover img {
    transform: scale(1.05);
}

.case-btn {
    margin-top: 20px;
}

.case-btn a {
    background: #000;
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.case-btn a:hover {
    background: #333;
    transform: translateY(-2px);
}

.hero5 {
    width: 100%;
    min-height: 100vh;
    background: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.mainh5 {
    width: 100%;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.h5-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.h5-left img {
    width: 100%;
    max-width: 500px;
    object-fit: cover;
}

.h5-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.h5-right h2 {
    font-size: 48px;
    font-weight: 900;
    color: #1a0d5e;
    line-height: 1.2;
}

.h5-right p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.h5-right a {
    background: #000;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    transition: all 0.3s ease;
}

.h5-right a:hover {
    background: #333;
    transform: translateY(-2px);
}

.hero6 {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.mainh6 {
    width: 100%;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.testimonial-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.quote-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tcard1 .quote-icon {
    background: #fef3cd;
    color: #f59e0b;
}

.tcard2 .quote-icon {
    background: #d4f1e4;
    color: #00d084;
}

.quote-icon i {
    font-size: 24px;
}

.testimonial-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f9f9f9;
}

.client-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.client-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.client-details span {
    font-size: 13px;
    color: #999;
}

.stars {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.stars i {
    font-size: 14px;
    color: #fbbf24;
}

@media (max-width: 1024px) {
    header {
        padding: 20px 30px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero-main {
        padding: 0 50px;
        gap: 40px;
    }

    .txt h2 {
        font-size: 55px;
    }

    .img>img {
        height: 400px;
    }

    .mainh2,
    .mainh3,
    .mainh4,
    .mainh5,
    .mainh6 {
        padding: 0 50px;
        gap: 40px;
    }

    .mtxt h2,
    .h3-header h2,
    .h4-header h2,
    .h5-right h2,
    .h6-header h2 {
        font-size: 40px;
    }

    .service-grid,
    .case-grid,
    .testimonial-grid {
        gap: 20px;
    }

    #footer {
        padding: 60px 30px;
    }

    .info,
    .service,
    .team,
    .contact {
        width: 45%;
    }

    .menu {
        width: 45%;
    }

    .footer-info {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .logo img {
        width: 100px;
    }

    .nav-links {
        display: none;
    }

    .hero-main {
        flex-direction: column;
        padding: 0 30px;
        text-align: center;
    }

    .txt {
        align-items: center;
    }

    .txt h2 {
        font-size: 45px;
    }

    .btns {
        flex-direction: column;
        width: 100%;
    }

    .btns a {
        width: 100%;
        justify-content: center;
    }

    .img>img {
        height: 350px;
    }

    .mainh2,
    .mainh3,
    .mainh4,
    .mainh5,
    .mainh6 {
        padding: 0 30px;
        gap: 40px;
    }

    .mainh2 {
        flex-direction: column;
    }

    .mtxt h2,
    .h3-header h2,
    .h4-header h2,
    .h5-right h2,
    .h6-header h2 {
        font-size: 35px;
    }

    .service-grid,
    .case-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mainh5 {
        flex-direction: column;
    }

    #footer {
        padding: 50px 20px;
    }

    .footer-info {
        flex-direction: column;
        gap: 35px;
    }

    .info,
    .service,
    .team,
    .menu,
    .contact {
        width: 100%;
    }

    .contact {
        margin: 0;
    }

    .footer-leg {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-leg>span {
        margin: 0;
    }
}

@media (max-width: 600px) {
    .navbar {
        width: 280px;
        padding: 70px 25px 25px;
    }

    .navbar-logo img {
        height: 38px;
    }

    .navbar-links a {
        font-size: 12px;
        padding: 12px 0;
    }

    .navbar-contact h3 {
        font-size: 14px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }

    .contact-icon i {
        font-size: 14px;
    }

    .contact-info span:first-child {
        font-size: 11px;
    }

    .contact-info span:last-child {
        font-size: 13px;
    }

    .hero1 {
        padding-top: 100px;
    }

    .hero-main,
    .mainh2,
    .mainh3,
    .mainh4,
    .mainh5,
    .mainh6 {
        padding: 0 20px;
    }

    .txt h2 {
        font-size: 35px;
    }

    .txt>span {
        font-size: 16px;
    }

    .btns a {
        padding: 15px 30px;
        font-size: 13px;
    }

    .img>img {
        height: 280px;
    }

    .animate1 {
        top: -30px;
        right: 20px;
    }

    .animate1 img {
        width: 50px;
    }

    .animate2 {
        bottom: 60px;
        left: -20px;
    }

    .animate2 img {
        width: 40px;
    }

    .mtxt h2,
    .h3-header h2,
    .h4-header h2,
    .h5-right h2,
    .h6-header h2 {
        font-size: 30px;
    }

    .mtxt p {
        font-size: 14px;
    }

    .profile>img {
        width: 60px;
        height: 60px;
    }

    .protext>h3 {
        font-size: 18px;
    }

    .protext>span {
        font-size: 13px;
    }

    .serve,
    .choose {
        padding: 30px;
    }

    .serve h3,
    .choose h3 {
        font-size: 20px;
    }

    .service-card {
        padding: 35px 30px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .testimonial-card {
        padding: 30px;
    }

    #footer {
        padding: 40px 20px;
    }

    .info>span {
        font-size: 16px;
        line-height: 24px;
    }

    .info>img {
        width: 120px;
    }

    .service>span>small {
        font-size: 16px;
        line-height: 24px;
    }

    .h2-txt {
        font-size: 14px;
    }

    .war>img {
        width: 55px;
    }

    .con>p {
        font-size: 13px;
    }

    .footer-leg {
        font-size: 14px;
    }
}