/* essential stylings */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    text-decoration: none;
    list-style: none;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

}

:root {
    --primary: #69131b;
    --back-ground: #fff;
    --text-light-black: #333333;
    --text-black: #000;
    --box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);

}

.container {
    width: 90%;
    max-width: 2000px;
    margin: 0 auto;
}

.margin-y {
    margin: 4rem auto;
}

button {
    cursor: pointer;
}



/* Base Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--back-ground);
    color: #222;
}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: "Josefin Sans", sans-serif;

}

p,
button {
    font-family: 'Lato', sans-serif;
}



/* Navbar */
.navbar {
    background: white;
    color: var(--text-light-black);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0px;
    z-index: 100;
    /* background-color: #303642; */
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 200px;
    height: 80px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit:fill;
    transform: scaleZ();
}

.nav-links {
    list-style: none;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: block;
    color: var(--text-light-black);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links .active {
    color: var(--primary);
}

.nav-links button {
    background-color: var(--primary);
    border: none;
    font-weight: 550;
    color: var(--back-ground);
    border-radius: 50px;
    /* padding: 1rem; */
    height: 40px;
    width: 100px;

}

/* Hero Section */
main {
    background-image: linear-gradient(#69131cd0, #69131ccc), url(/assets/images/wire.png),
        url(/assets/images/contact-background.jpg);
    background-position: left;
    background-color: var(--primary);
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(/assets/images/contact-background.jpg);
    color: #fff;
    padding: 4rem 0 3rem 0;
}

.hero-section {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-section-left {
    width: 550px;
}

.hero-section-left h4 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 400;
    color: var(--back-ground);
    margin-bottom: 1rem;
}

.hero-section-left h2 {
    font-size: clamp(1.4rem, 4.5vw, 2.8rem);
    font-weight: 500;
    color: var(--back-ground);
    margin-bottom: 1rem;
}

.hero-section-left h1 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 600;
    color: var(--back-ground);
    margin-bottom: 1rem;
}

.hero-section-left p {
    font-size: clamp(1rem, 4.5vw, 1.2rem);
    font-weight: 400;
    color: var(--back-ground);
}

.hero-section-left button {
    font-size: clamp(1rem, 4.5vw, 1.2rem);
    font-weight: 500;
    background-color: var(--back-ground);
    width: 140px;
    padding: 0.7rem 0.3rem;
    color: var(--primary);
    border: none;
    margin-top: 2rem;
    border-radius: 30px;
}

.hero-section-right {
    width: 450px;
}

.hero-section-right img {
    width: 100%;
    object-fit: contain;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    background: #00bcd4;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn:hover {
    background: #0097a7;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* about section */
.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    justify-content: center;
}

.about-right {
    position: relative;
    width: 40%;

}

.about-image-1 {
    width: 65%;
    height: 400px;
    border: 10px solid white;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.about-image-1 img {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    object-fit: fill;
}

.about-image-2 {
    width: 50%;
    position: absolute;
    bottom: 15%;
    right: 0px;
    /* border: 10px solid white; */
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.about-image-2 img {
    width: 100%;
    height: 300px;
    border: 10px solid white;
    border-radius: 20px;
    object-fit: cover;
}

.about-right .about-card {
    background-color: var(--primary);
    width: 250px;
    height: 150px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--back-ground);
    font-weight: 700;
    font-size: clamp(2rem, 3vw, 3.5rem);
    position: absolute;
    bottom: 50px;
    left: 22%;
    box-shadow: var(--box-shadow);
}

.about-right .about-card p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 400;
}

.about-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-left h4 {
    font-size: clamp(1.1rem, 3vw, 1.7rem);
    font-weight: 400;
    color: var(--primary);
}

.about-left h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--text-black);
}

.about-left p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 400;
    color: var(--text-black);
}

.about-service {
    display: flex;
    gap: 1rem;
    justify-content: start;
    align-items: center;
}

.about-left button {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    padding: .5rem;
    height: 40px;
    width: 120px;
    color: var(--back-ground);
    font-weight: 500;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
}

/* end of about section */
/* why us section */
.why-title {
    text-align: center;
    margin: 1rem 0;
}

.why-title h4 {
    color: var(--primary);
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.why-title h1 {
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
}

.why-image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.why-desc {
    position: relative;
    width: 100%;
    max-width: 400px;
    /* adjust based on layout */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: 10px solid white;
}

.why-desc img {
    width: 100%;
    height: 300px;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.why-desc .overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    /* semi-transparent black */
    color: #fff;
    width: 100%;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-size: 14px;
    line-height: 1.5;
}

.why-desc:hover .overlay {
    transform: translateY(0);
    /* height: 100%; */
}

.why-desc:hover img {
    transform: scale(1.05);
    /* slight zoom effect */
}

/* why us section end */

/* our service section start */
.our-section-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(#69131cd0, #69131ccc),
        url(/assets/images/contact-background.jpg);
    flex-wrap: wrap;
    background-color: #5d040db2;
    padding: 3rem 0;
    margin: 3.5rem auto;
}

.our-section-top .our-service-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--back-ground);
}

.service-2-1 .carousel-container-1 {
    width: 90%;
    overflow: hidden;
    position: relative;
    background: none;
}

.carousel-track-1 {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
}

.carousel-slide-1 {
    width: 18%;
    padding: 40px;
    display: flex;
    background-color: None;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: none;
}

.carousel-slide-1 img {
    width: 90px;
    height: 90px;
    object-fit: fit;
    background-color: none;
}

.service-1 .service-1-1 {
    width: 35%;

}

.service-1 .service-1-1 h3 {
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: clamp(1.1rem, 3vw, 1.7rem);
    font-size: 1;
}

.service-1-2 {
    height: 90px;
    width: 3px;
    color: var(--back-ground);
    background-color: var(--back-ground);
}

.service-1 .desc {
    width: 40%;
}

.service-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.service-2-1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 40%;
    padding: 2rem;
}

.service-2-1 img {
    width: 100px;
    object-fit: contain;
    /* background-color: #f4f4f4; */
}

.service-2-1 h4 {
    color: var(--back-ground);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
}

.service-2-1 p {
    color: var(--back-ground);
    font-size: clamp(1rem, 3vw, 1.1rem);
    font-weight: 400;
}

.service-2-1 a {
    color: var(--back-ground);
    font-size: clamp(1rem, 3vw, 1rem);
    font-weight: 400;
}

.service-2-1:hover {
    border: 2px white solid;
    border-radius: 20px;
    transition: 0.5s ease;
}

.service-2-2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 40%;
}

.service-2-2:hover {
    border: 2px white solid;
    transition: 2ms;
}

.our-service-section button {
    width: 150px;
    background-color: transparent;
    border: 2px white solid;
    border-radius: 50px;
    padding: 1rem;
    font-size: 1rem;
    color: var(--back-ground);
}

/* our service section end */
/* task section */
.task {
    display: flex;
    gap: 2rem;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    top: -150px;
    flex-wrap: wrap;
    box-shadow: var(--box-shadow);
    border-radius: 20px;
    padding: 2rem;
    background-color: var(--back-ground);
    width: 70%;
}

.task-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* end of task */
/* project section */
.project-1 {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
}

.project-1 .project-1-1 {
    width: 40%;
    margin-bottom: 1.9rem;
}

.project-1 .project-1-1 h4 {
    color: var(--primary);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.project-1 .project-1-1 h1 {
    color: var(--text-black);
    font-weight: 500;
}

.project-1-2 {
    width: 2px;
    height: 100px;
    background-color: var(--primary);
}

.project-1-3 {
    width: 40%;
}


.carousel-track {
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    transition: transform 0.5s ease-in-out;
    height: 450px;
    width: 100%;
}

.carousel-slide {
    min-width: 50%;
    padding: 40px;
    display: flex;
    background-color: #f4f4f4;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: fit;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* end of project section */

/* pricing plan section */
.price-section1 {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    margin: 4rem auto;
}

.price-section1 .price-section-right {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-section1 .price-section-right h4 {
    font-weight: 400;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: var(--primary);
}

.price-section1 .price-section-right h2 {
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    color: var(--text-black);
}

.price-section1 .lineinprice {
    width: 2px;
    color: var(--primary);
    background-color: var(--primary);
    height: 100px;
}

.price-section1 .price-desc {
    max-width: 500px;
}

.price-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.price-cards .price-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    border-radius: 30px;
    min-width: 300px;
    width: 350px;
}

.price-cards .price-card hr {
    color: #000;
    width: 90%;
    height: 1px;
    border: var(--primary) 1.7px dashed;
    /* background-color: #000; */
}

/* end of pricing plan */
/* contact section */
.home-contact {
    height: 450px;
    padding-top: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: .8rem;
    background-repeat: no-repeat;
    background-image:
        linear-gradient(rgba(105, 19, 28, 0.84), rgba(105, 19, 28, 0.84)),
        url(/assets/images/contact-background.jpg);
    object-fit: fill;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.home-contact h2 {
    color: var(--back-ground);
    font-size: clamp(2rem, 3vw, 3.5rem);
}

.home-contact h3 {
    color: var(--back-ground);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.home-contact p {
    color: var(--back-ground);
    margin: 0rem 1rem;
    font-size: clamp(1.1rem, 3vw, 1.2rem);
}

.home-contact .home-contact-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem;
}

.home-contact .home-contact-1 button {
    background-color: transparent;
    border: 1.7px solid var(--back-ground);
    border-radius: 50px;
    height: 40px;
    width: 100px;
    color: var(--back-ground);
}

.home-contact .home-contact-1 .line {
    width: 2.4px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--back-ground);
}

.home-contact .home-contact-1 .home-contact-11 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.home-contact-1 .home-contact-11 i {
    color: rgb(255, 255, 255);
    font-size: 1.4rem;
    transform: rotate(20deg);
}

/* home contact form section */
.home-contact-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 90%;
    padding: 2rem;
    border-radius: 30px;
    position: relative;
    top: -100px;
    background-color: var(--back-ground);
    margin: 0 auto;
    box-shadow: var(--box-shadow);
}

.home-contact-form .contact-form-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 0.5rem;
}

.contact-details {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.contact-details img {
    width: 60px;
}

.contact-details h2 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.contact-details p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.home-contact-form .contact-form-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}


.home-contact-form .contact-form-left :nth-child(7) {
    width: 90%;
}

.home-contact-form .contact-form-left :nth-child(8) {
    width: 90%;
}

.contact-form-left {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-form-left label {
    display: block;
    color: #0056b3;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-form-left input[type="text"],
.contact-form-left input[type="number"],
.contact-form-left input[type="email"] {
    width: 45%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}
.home-contact-form .contact-form-left :nth-child(5) {
    width: 90%;
}
.home-contact-form .contact-form-left :nth-child(6) {
    width: 90%;
}

.contact-form-left textarea {
    width: 600px;
    height: 100px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form-left input:focus,
.contact-form-left textarea:focus {
    border-color: #007bff;
    /* outline: none; */
}

.contact-form-left button {
    background-color: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.5s ease;
}

.contact-form-left button:hover {
    background-color: #b32a00;
}

/* end of contact section */

/* faq section */
.faq-section {
    padding: 60px 20px;
    background: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.faq-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.faq-left {
    flex: 1 1 45%;
}

.faq-left h4 {
    color: var(--primary);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.faq-left h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.faq-left p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.faq-right {
    flex: 1 1 45%;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #d67;
    border-radius: 2px;
    overflow: hidden;
    background-color: var(--primary);
    color: white;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--primary);
    color: #fff;
    font-size: 16px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    color: #222;
    background-color: #f7f7f7;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
}

/* end of faq section */
/* footer section */
.footer-section {
    background-color: var(--primary);
    padding-top: 2rem;

}

.footer-letus-connect {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    padding: 1rem;
    margin: 0 auto;
    gap: 1rem;
}

.footer-letus-connect h1 {
    color: white;
}

.footer-letus-connect .footer-letus-button {
    /* background-color: white; */
    /* border-radius: 50px; */
    padding: 1rem;
    /* width: 100px; */
}

.footer-letus-connect .footer-letus-button :hover {
    background-color: black;
    color: white;
    border-radius: 50px;
    border: 2px solid white;
    transition: all 0.5s;
}

.footer-letus-connect .footer-letus-button a {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.2rem;
    background-color: white;
    border-radius: 50px;
    padding: inherit;
}

.footer-section hr {
    width: 95%;
    margin: 1rem;
    margin: 1rem auto -0.5rem;
}

.footer-section-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-evenly;
    align-items: center;
    padding: 2rem 0;
}

.footer-section-1 .footer-about {
    width: 300px;

}

.footer-section-1 .footer-about img {
    width: 180px;
    height: 100px;
    object-fit: cover;

}

.footer-section-1 .footer-about p {
    width: 100%;
    color: var(--back-ground);
    text-align: start;
    line-height: 1.4;

}

.footer-section-1 .footer-contact .footer-social-link a i {
    background-color: #fff;
    color: var(--primary);
    font-size: 1.5rem;
    padding: .2rem;
    margin: 0.5rem 0.6rem;
    border-radius: 10px;

}

.footer-quick-link {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-quick-link ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--back-ground);
}

.footer-quick-link ul li a {
    font-weight: 600;

    color: var(--back-ground);
}

.footer-social-link a i:hover {
    transform: translateY(-5px);
    transition: all 0.5s;
}

.footer-contact {
    display: flex;
    width: 300px;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--back-ground);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--back-ground);
}

.footer-contact ul li a {
    font-weight: 600;

    color: var(--back-ground);
}

.footer-section p {
    text-align: center;
    padding: 2rem;
    color: var(--back-ground);
}

/* end of footer section */


/* -------------------About page start---------------- */
/* about section */
.about-page {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    background-image: url(/assets/images/bg_shape_img.png);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.about-page>h2 {
    font-size: clamp(2rem, 2.5vw, 5rem);
    color: var(--back-ground);
}

/* about skill */
.about-skill {
    position: relative;
    height: 600px;
    padding: 0 2rem;
    background-image: linear-gradient(#69131cdf, #69131cf6), url(/assets/images/about_bg_img.png);
}

.about-skill img {
    max-width: 90%;
    height: 100%;
    object-fit: cover;
    position: relative;
    left: 10%;

}

.about-skill-bar {
    position: absolute;
    top: 20px;
    left: 40%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    max-width: 550px;
    height: 85%;
    padding: 1.5rem;
    gap: 1rem;
    margin: 0 2rem;
    border-radius: 10px;
    background-color: var(--back-ground);
}

.about-skill-bar .about-bar-box {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.about-skill-bar .box-bar {
    height: 25px;
    width: 250px;
    margin: 0.4rem;
    background-color: #6c6969c7;
}

.about-skill-bar .box-bar .bar-1 {
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: end;
    height: inherit;
    width: 90%;
    text-align: end;
    font-weight: 500;
    color: var(--back-ground);
    font-size: 0.9rem;
}

.about-skill-bar .box-bar .bar-2 {
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: end;
    height: inherit;
    width: 80%;
    font-weight: 500;
    text-align: end;
    color: var(--back-ground);
    font-size: 0.9rem;
}

.about-skill-bar .box-bar .bar-3 {
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: end;
    font-weight: 500;
    height: inherit;
    width: 75%;
    text-align: end;
    color: var(--back-ground);
    font-size: 0.9rem;
}

.about-skill-bar .box-bar .bar-4 {
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: end;
    font-weight: 500;
    height: inherit;
    width: 80%;
    text-align: end;
    color: var(--back-ground);
    font-size: 0.9rem;
}

.shout-bannar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    gap: 2rem;
    background-image: linear-gradient(rgba(105, 19, 28, 0.849), rgba(105, 19, 28, 0.778)), url(/assets/images/subscribe_bg_img.jpg);
}

.shout-left {
    max-width: 450px;
}

.shout-left h1 {
    color: var(--back-ground);
    line-height: 3rem;
    font-size: 2.5rem;
    text-transform: capitalize;
}

.shout-right {
    display: flex;

    max-width: 450px;
}

.shout-right input {
    height: 50px;
    max-width: 250px;
    padding: 10px;
    border: none;
    font-weight: 500;
    color: #000;
}

.shout-right input::placeholder {
    font-weight: 500;
    color: #111;
}

.shout-right button {
    height: 50px;
    width: 100px;
    padding: 10px;
    border: none;
    border-radius: 0 4px 4px 0;
    background-color: var(--primary);
    color: var(--back-ground);
    font-weight: 600;
}

/* end of about section */

/* end of about page */

/* start of service page */
.section-page {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    background-image: url(/assets/images/bg_shape_img.png);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.section-page>h2 {
    font-size: clamp(2rem, 3.5vw, 5rem);
    color: var(--back-ground);
}

.service-page-section {
    margin: 6rem 0;
}

.service-page-section .service-page-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-transform: capitalize;
    /* flex-direction: column; */
}

.service-page-section .service-page-block .service-page-left {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    justify-content: center;
}

.service-page-section .service-page-block .service-page-left h3 {
    font-weight: 300;
    font-size: clamp(1.8rem, 3vw, 2rem);
}

.service-page-section .service-page-block .service-page-left h2 {
    font-weight: 500;
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.service-page-block .line-service-page {
    width: 2px;
    height: 100px;
    margin: 0 1rem;
    background-color: var(--primary);
}

.service-page-section .service-page-block .service-page-right {
    width: 35%;
}

.service-block-page {
    margin: 3rem 0;
}

.service-page-cards {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-page-card:hover {
    border: 2px solid var(--primary);
    transition: 1s ease;
}

.service-page-cards .service-page-card {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 330px;
    padding: 2rem;
    gap: 1.2rem;
    border-radius: 8px;
    /* box-shadow: var(--box-shadow); */
}

.service-page-cards .service-page-card p {
    line-height: 1.5;
}

.service-page-card .service-logo-design {
    width: 90px;
    height: 90px;
    border: dashed 3px var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-page-card .service-logo-design .service-logo {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    margin: 3px;
    background-color: #e1d0d1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-page-card .service-logo-design .service-logo img {
    width: 60%;
    margin: 3px;


}

/* end of service page section */
/* project page */
.project-page {
    margin: 3rem 0;
}

.project-works {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.project-works .project-works-card {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    padding: 1rem;
    width: 400px;
    /* height: 500px; */
    gap: 1rem;
    margin: 2rem;
}

.project-works .project-works-card:hover {
    transform: translateY(-1rem);
    transition: 1s ease;
}

.project-works .project-works-card img {
    width: 100%;
    height:400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    border: 10px white solid;
}

.project-works .project-works-card h1 {
    font-weight: 550;
}

.project-works .project-works-card h3 {
    font-weight: 400;
}

.tasks {
    display: flex;
    gap: 2rem;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: var(--box-shadow);
    border-radius: 20px;
    padding: 4rem 2rem;
    background-color: var(--back-ground);
    width: 80%;

}

/*  */

@media (max-width: 900px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 2rem;
    }
}

/* end of project page */

@media (max-width: 768px) {
    .about-section .about-right {
        width: 90%;
    }

    .about-section .about-left {
        width: 90%;
        order: -1;
    }

    .service-1 .service-1-1 {
        gap: 1rem;
    }

    .service-1 .service-1-1 {
        width: 90%;
    }

    .service-1 .service-1-2 {
        display: none;
    }

    .service-1 .desc {
        width: 90%;
    }

    .service-2 .service-2-1 {
        width: 90%;
    }

    .service-2 {
        flex-wrap: wrap;
    }

    /* task section */
    .task {
        width: 90%;
        margin-bottom: -2rem;
    }

    /* project section */
    .project-1 {
        flex-wrap: wrap;
        gap: 0rem;
        margin-bottom: 2rem;
    }

    .project-1 .project-1-1 {
        width: 90%;
    }

    .project-1 .project-1-2 {
        display: none;
    }

    .project-1 .project-1-3 {
        width: 90%;
    }

    .carousel-track-1 {
        /* padding: 30px 20px; */
        width: 100%;

    }

    .carousel-track {
        /* padding: 30px 20px; */
        width: 100%;

    }

    .carousel-slide {
        padding: 30px 20px;
        min-width: 100%;
        background-color: #000;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    /* pricing plan */
    .price-section1 {
        flex-wrap: wrap;
        gap: 0rem;
        justify-content: start;
        width: 90%;
    }

    .lineinprice {
        display: none;
    }

    /* home contact */
    .home-contact .home-contact-1 {
        justify-content: end;
        align-items: end;

    }

    .home-contact .home-contact-1 .home-contact-11 {
        width: 55%;

    }

    .home-contact-form {
        top: -150px;
    }

    .contact-form-left input[type="text"],
    .contact-form-left input[type="number"],
    .contact-form-left input[type="email"] {
        width: 95%;
    }

    .home-contact-form .contact-form-left :nth-child(7) {
        width: 95%;
    }

    .faq-container {
        flex-direction: column;
    }

    .faq-left,
    .faq-right {
        flex: 1 1 100%;
    }
    
    .about-skill-bar {
    position: absolute;
    top: 20px;
    left: 0%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    max-width: 550px;
    height: 85%;
    padding: 1.5rem;
    gap: 1rem;
    margin: 0 2rem;
    border-radius: 10px;
    background-color: var(--back-ground);
}
.about-bar-box{
    width: 90%;
}
.about-skill-bar .box-bar{
    width: 90%;
}
}





/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.hamburger span {
    height: 3.2px;
    width: 28px;
    background: var(--primary);
    margin: 3px 0;
    border-radius: 3px;
    transition: 0.3s;
    display: block;
}

@media (max-width: 900px) {
    .navbar .container {
        flex-direction: row;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100vw;
        height: 100vh;
        width: 70vw;
        max-width: 320px;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 4rem 2rem 2rem 2rem;
        gap: 2rem;
        box-shadow: -2px 0 12px rgba(0, 0, 0, 0.08);
        transition: right 0.3s cubic-bezier(.4, 2, .6, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0px;
    }

    .hamburger {
        display: flex;
    }
}

/* Hamburger Animation (open/close) */
.hamburger.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(48deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-48deg);
}


.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f4f4f4;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 80px;
    /* base width */
    margin-right: 20px;
    background: #ddd;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
}

.carousel-track .carousel-slide img {
    width: 100%;

}

/* Pause animation on hover */
.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

/* Keyframes for infinite scroll */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
    .service-2-1 .carousel-container-1 {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: none;
}
    .service-2-1 .carousel-container-1 .carousel-track-1 {
    width: 100%;
}
    .carousel-slide-1 {
        min-width: 200px;
        padding: 30px 15px;
    }

    .carousel-slide {
        min-width: 50%;
        padding: 30px 15px;
    }
}

@media (max-width: 768px) {
    .service-2-1 .carousel-container-1 {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: none;
}
    .carousel-slide-1 {
        min-width: 150px;
        padding: 25px 12px;
        font-size: 14px;
    }

    .carousel-slide {
        min-width: 450px;
        padding: 25px 12px;
        font-size: 14px;
    }
    .about-skill img{
        width: 100%;
        left: 0;

    }
      .shout-bannar {
        flex-wrap: wrap;
        gap: 0rem;


    }

    .shout-bannar .shout-left {
        text-align: center;
    }

    .shout-bannar .shout-left h1 {
        font-size: 1.7rem;
    }
}

@media (max-width: 758px) {
  
}

@media (max-width: 480px) {
    .service-2-1 .carousel-container-1 {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: none;
}
    .carousel-track {
        height: auto;
        width: 100%;
    }

    .carousel-slide {
        min-width: 290px;
        height: 300px;
        padding: 20px 10px;
        font-size: 12px;
    }

    .carousel-slide img {
        object-fit: cover;
    }

    .carousel-track-1 {
        height: auto;
        width: 100%;
    }

    .carousel-slide-1 {
        min-width: 120px;
        height: 100px;
        padding: 10px 5px;
    }

    .carousel-slide-1 img {
        width: 90px;
        object-fit: cover;
    }
    .service-page-block{
        flex-wrap: wrap;
        align-items: center;
    }
    .service-page-section .service-page-block .service-page-left{
        width: 90%;
        margin: auto;
    }
    .service-page-section .service-page-block .service-page-right{
        width: 90%;
    }
    .service-page-block .line-service-page{
        display: none;
    }
    .about-section .about-right {
        height: 350px;
        width: 100%;
    }
    .about-right .about-image-1 {
        width: 90%;
        margin: 0 auto;
        
    }
    .about-right .about-image-1 img{
        height: 98%;
        
    }
    .about-right .about-image-2 {
        bottom: 5%;
        width: 60%;
    }
    .about-right .about-card {
        bottom: 1%;
    }
}