@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, "Times New Roman", serif;
}

.navbar-brand {
    margin-left: 10px;
}

.navbar-nav .nav-link {
    color: black;
    transition: 0.3s;
    margin-right: 10px;
    font-size: 16px;
}

.navbar-nav .nav-link:hover {
    color: #70AAFF;
}

.contact_number {
    font-family: "Lobster", cursive !important;
}

.middle_image {
    margin-right: 20px;
    width: 800px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    border-top: 4px solid #70AAFF;
    padding: 25px;
}

.dropdown-item {
    transition: all 0.3s ease-in-out;
    padding-bottom: 10px;
}

.dropdown-item:hover {
    transform: translateX(10px);
    color: none;
    border-left: 4px solid #4987C7;
    /* border-width: 10px; */
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* margin-top: 70px; */
    background: url('/frontend/images/image1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;

}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

/* Swiper Slider */
.header {
    width: 100%;
    max-width: 1000px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.heading_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 1s ease-in-out;
    padding: 20px;
}


.heading_area h1 {
    font-size: 50px;
    /* font-weight: bold; */

}

.typing-text {
    display: inline-block;
    position: relative;
    color: #6EA9FF;
    font-weight: bold;
    font-size: 60px;
    font-family: "Consolas", "Courier New", monospace;
    font-display: swap;

}

.typing-text::after {
    content: '|';
    display: inline-block;
    animation: blink 0.7s infinite;
}

.underline {
    display: block;
    height: 3px;
    background: #4987C7;
    width: 0%;
    transition: width 0.5s ease-in-out;
}

.cta-buttons {
    margin-top: 80px;
}

.btn_button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 20px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    border: 2px solid #fff;
    transition: 0.3s;
}

.btn_button:hover {
    background: #fff;
    color: #000;
}

.play-button {
    background: white;
    color: #4987C7;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    position: relative;
    box-shadow: 0 2px 0 rgba(105, 44, 119, 0.8);
    animation: pulse 2s infinite;
}

.play-button i {
    position: relative;
    z-index: 2;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(133, 133, 133, 1);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(87, 87, 87, 0.3);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(223, 223, 223, 0.5);
    }
}


/* service section */
.heading {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 30px;
}

.service_section {
    background: url('/frontend/images/grids_bg.jpg') no-repeat center center/cover;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    object-fit: fill;
    padding: 80px 0;
}

.service_container {
    position: relative;
    z-index: 2;
    /* max-width: 1200px; */
    margin: auto;
    padding: 0 30px;
}

.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 20px;
    justify-content: center;
    text-align: center;
}

.service_card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.service_card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.service_image img {
    width: 50px;
    height: auto;
    transition: 0.3s;
}

.service_image:hover img {
    transform: scale(1.1);
}

.service_card h4 {
    margin-top: 15px;
    text-align: left;
}

/* about section */
.about {
    position: relative;
    padding: 80px 0 150px;
    overflow: hidden;
}

.detail_area {
    text-align: left;
}

.about-section {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    position: relative;
}

.floating-shape {
    position: absolute;
    top: 23%;
    right: 243px;
    width: 120px;
    height: 120px;
    transform: rotate(45deg);
    z-index: -1;
    animation: moveShape 6s infinite alternate ease-in-out;
}

.floating-shape2 {
    position: absolute;
    top: 50%;
    right: 90px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #00CC6F;
    transform: rotate(45deg);
    z-index: -1;
    animation: moveShape 3s infinite alternate ease-in-out;
}

.floating-shape3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    transform: rotate(15deg);
    z-index: -1;
    animation: moveShape 4s infinite alternate ease-in-out;
}

/* Shape Animation */
@keyframes moveShape {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(30px) rotate(90deg);
    }
}

.about-image {
    width: 65%;
    position: relative;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0 40px 40px 0;
}

.about-content {
    position: absolute;
    right: 10%;
    bottom: -85px;
    width: 55%;
    background: white;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    padding: 50px;
    border-radius: 40px 0;
}

.about-content:hover {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
}

.about-content h2 {
    font-weight: bold;
    color: #333;
    padding-bottom: 12px;
}

.about-content p {
    font-size: 14px;
    color: #555;
    margin: 10px 0 20px;
    line-height: 1.6;
}

.about-button {
    display: inline-block;
    background: linear-gradient(to right, #4987C7, #4062AE);
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #4987C7;
    border-radius: 15px 0;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease-in-out;
}

/* Background animation */
.about-button:hover {
    background: transparent;
    color: #4987C7;
    border: 2px solid #4987C7;
    transition: left 0.4s ease-in-out;
    border-radius: 15px 0;
}

.reviews {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews img {
    width: 80px;
}

.stars {
    color: #ffd000;
    font-size: 22px;
}

/* experience section */
.experience_section {
    padding: 100px 0;
}

.years_box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    border-radius: 40px 0;
    padding: 50px 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.years_box:hover {
    transform: translateY(-15px);
}

.years_box h1 {
    font-weight: bold;
    font-size: 60px;
}

.years_box p {
    font-size: 20px;
    padding: 6px 0;
}

.box1 {
    background-color: #cdb4db;
}

.box2 {
    background-color: #ffafcc;
}

.box3 {
    background-color: #a2d2ff;
}

/* swiper slider */
.technology_section {
    padding: 50px 0 70px;
}

.technology_container {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.technology_wrapper {
    display: flex;
    align-items: center;
}

.technology_slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.technology_slide img {
    width: 150px;
    height: auto;
    margin: 0 15px;
}

.technology_slide:hover img {
    transform: scale(1.05);
}

/* skills section */
.skills-section {
    background-color: #000;
    color: white;
    padding: 50px 0;
}

.skills_container {
    margin: auto;
    padding: 30px;
}

.skills_heading {
    padding: 0 57px;
    line-height: 1.5;
}

.skill_content h2 {
    color: #4987C7;
    font-weight: bold;
}

.skill_card {
    display: flex;
    gap: 30px;
    text-align: justify;
    margin: 40px 20px;
    padding: 30px;
    transition: transform 0.3s ease-in-out;
    border-radius: 15px;
    border: 2px solid rgba(12, 75, 138, 0);
}

.skill_card:hover {
    border: 2px solid rgba(12, 75, 138, 0.6);
    border-radius: 15px;
}

.skill_image img {
    width: 80px;
    padding: 10px 0;
    transition: all;
}

.skill_image:hover img {
    transform: translateY(-10px);
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #4062AE, #4987C7);
    transition: width 1.5s ease-in-out, background 0.5s ease-in-out;
    position: relative;
}

.progress::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #5740ac, #4a28c7);
    transition: width 1.0s ease-in-out;
}

.skill_card:hover .progress::after {
    width: 100%;
}

.progress-text {
    font-size: 18px;
    font-weight: bold;
    /* color: #0c4b8a; */
    transition: color 0.3s ease-in-out;
}

.bar_area {
    display: flex;
    gap: 10px;
}

.image-section {
    position: relative;
    height: 100%;
    padding: 20px;
    margin-top: 100px;
}

.image-container {

    width: auto;
    height: auto;
    gap: 20px;
}

.image-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all;
}

.image-box:hover {
    transform: scale(1.05);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image_area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-1 {
    border-radius: 200px 200px 0 0;
    background-color: #cac5f7;
    box-shadow: 0px 4px 10px rgba(194, 194, 194, 0.253);
    padding: 10px 0 10px 15px;
    animation: moveimage 2s infinite alternate ease-in-out;
    transition: all 0.3s;
}

.image-1 img {
    border-radius: 200px 200px 0 0;
}

.image-2 img,
.image-3 img {
    border-radius: 0 0 200px 200px;
}

.image-2,
.image-3 {
    border-radius: 0 0 200px 200px;
    background-color: #cac5f7;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 15px 10px 0;
    animation: moveimage 2s infinite alternate ease-in-out;
}

@keyframes moveimage {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(20px);
    }
}

/* video section */
.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 50px;
}

.video-container {
    width: 100%;
    height: 600px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    /* transform: rotate(-2deg); */
    border: 8px solid #ffffff;
}

.video-container:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 8px solid #4062AE;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* our client section */
.client_section {
    padding: 80px 0;
}

.client_image {
    display: flex;
    justify-content: space-evenly;
    padding: 40px 20px;
    background-color: #fff;
}


.client_logo img {
    width: 100%;
    max-width: 170px;
    /* Adjust logo size */
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

.client_logo img:hover {
    transform: scale(1.05);
}
.client_logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* footer */
.footer {
    background-color: rgb(0, 0, 0);
    color: #fff;
    padding: 80px 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    /* gap: 40px; */
    padding-bottom: 30px;
}

/* Logo Section */
.footer-logo img {
    max-width: 160px;
    margin-bottom: 12px;
}

.footer-logo p {
    font-size: 14px;
    color: #fff;
    font-style: italic;
}

/* Links */
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 25px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 15px;
    /* display: flex; */

}

.footer-links ul li i,
.footer-contact ul li i {
    margin-right: 8px;
    color: #fff;
    padding-top: 6px;
}

/* Hover Effects */
.footer-links ul li a,
.footer-contact ul li a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: #70AAFF;
    transform: translateX(5px);
}

.footer-links ul li a:hover i,
.footer-contact ul li a:hover i {
    color: #70AAFF;
}

/* Social Media */
.footer-social .social-icons {
    display: flex;
    justify-content: start;
    gap: 10px;
}

.social-icons img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    transition: 0.3s;
    color: #70AAFF;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 35px;
    font-size: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}



.footer-legal a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    /* margin: 20px 0; */
    transition: all 0.3s ease-in-out;
}

.footer-legal a:hover {
    color: #70AAFF;
    transform: translateY(-5px);
}

/* ================================================ About Page ================================================*/
.about_hero {
    position: relative;
    width: 100%;
    height: 450px;
    /* margin-top: 70px; */
    background: url('/frontend/images/about-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}



.about_header {
    width: 100%;
    /* max-width: 1000px; */
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* mission vission section */
.abt-image1 {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 20px;
}

.abt-image1 img {
    width: 400px;
    height: 280px;
    box-shadow: rgb(204, 204, 204) 0px 0px 10px;
    padding: 5px;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.abt-image1 img:hover {
    background: #4987C7;
    transform: scale(1.05);
    box-shadow: rgb(73, 135, 199) 0px 0px 10px;
}

.abt-image2 {
    position: relative;
    left: 20%;
    /* width: 80%; */
    top: -80px;
    margin-bottom: -80px;
    box-shadow: rgb(204, 204, 204) 0px 0px 10px;
    padding: 5px;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    width: 446px;
    transition: all 0.3s ease-in-out;
}

.abt-image2 img {
    width: auto;
    height: 290px;
    border-radius: 20px;
}

.abt-image2:hover {
    background: #4987C7;
    transform: scale(1.05);
    box-shadow: rgb(73, 135, 199) 0px 0px 10px;
}

.vision-section {
    position: relative;
}

.vision-section .row {
    position: relative;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-section::after {
    position: absolute;
    left: -110px;
    top: 220px;
    content: "";
    height: 100%;
    width: 40%;
    background: url('/frontend/images/wave.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    animation: wavemove 2s infinite alternate ease-in-out;
}

@keyframes wavemove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(40px);
    }
}

.vision_content {
    padding: 70px 40px;
    text-align: justify;
}

.expertise_section {
    background-color: black;
    color: white;
    border-radius: 20px;
    padding: 0 70px 0 50px;
}

.abt-image3 {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 20px;
}

.abt-image3 img {
    width: 100%;
    height: 300px;
    box-shadow: rgb(204, 204, 204) 0px 0px 10px;
    padding: 5px;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.abt-image3 img:hover {
    background: #4987C7;
    transform: scale(1.05);
    box-shadow: rgb(73, 135, 199) 0px 0px 10px;
}

/* Section Styling */
.technology-section {
    text-align: center;
    padding: 80px 20px;
}

/* Tech Grid */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Tech Cards */
.tech-card {
    width: 350px;
    height: 260px;
    perspective: 1000px;
}

.tech-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

/* Flip Effect on Hover */
.tech-card:hover .tech-inner {
    transform: rotateY(180deg);
}

/* Front and Back of Card */
.tech-front,
.tech-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* Front Side */
.tech-front {
    background: linear-gradient(to right, #4062AE, #4989c8, #3865B0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.tech-front h2 {
    color: rgb(255, 255, 255);
    /* display: flex;
    align-items: center;
    position: relative; */
    padding-left: 0px;

    /* font-weight: bold; */
    text-transform: uppercase;
    opacity: 0;
    /* Start with hidden text */
    animation: fadeIn 1.5s forwards, slideInArrow 1s forwards;
}

.tech-front i {
    opacity: 0;
    /* Start with hidden arrow */
    animation: slideInArrow 1s forwards;
}

/* Text animation (fade in) */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Arrow animation (slide in from left) */
@keyframes slideInArrow {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Back Side */
.tech-back {
    background: #222;
    color: #fff;
    padding: 40px 20px;
    text-align: justify;
    transform: rotateY(180deg);
}

/* why choose section */
.why_choose_list {
    margin-bottom: 10px;
}

.why_choose_list span {
    font-weight: bold;
    font-size: 18px;
}

.why_choose_image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
}

.why_choose_image img {
    width: 100%;
    box-shadow: rgb(204, 204, 204) 0px 0px 10px;
    padding: 5px;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.why_choose_image:hover img {
    background: #4987C7;
    transform: scale(1.05);
    box-shadow: rgb(73, 135, 199) 0px 0px 10px;
}


/* FAQs section */
.faq {
    position: relative;
    padding: 50px 0 80px;
    border-bottom: 1px solid #dadadab6;
}

.faq-section {
    max-width: 760px;
    margin: 0 auto;

}

.faq_heading {
    margin-bottom: 40px;
}

.faq_heading p {
    font-size: 20px;
    color: #000000;
}

.faq_heading h1 {
    /* font-size: 52px; */
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

details {
    cursor: pointer;
}

summary:focus-visible {
    outline: 2px solid orange;
    outline-offset: 8px;
    border-radius: 4px;
}

summary {
    font-size: 20px;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::marker {
    display: none;
    content: "";
}

.arrow_icon {
    margin-top: 4px;
    color: #000000;
}

details>p {
    max-width: 650px;
    color: #444;
    font-size: 18px;
    line-height: 155%;
    letter-spacing: .1px;
    margin-bottom: 40px;
    padding-left: 10px;
}

.faq_hr {
    border: 1px solid #404E5C;
    margin-block-end: 30px;
}

/* ============================================ contact page ================================================= */
.contact_hero {
    position: relative;
    width: 100%;
    height: 450px;
    /* margin-top: 70px; */
    background: url('/frontend/images/contact.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}


.contact_header {
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-container {
    position: relative;
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px 50px;
}

.contact-card {
    padding: 40px 20px;
    border-radius: 40px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.contact-card:hover {
    transform: scale(1.04);
}

.contact-card.phone {
    background-color: #cdb4db;
}

.contact-card.email {
    background-color: #FFAFCC;
}

.contact-card.address {
    background-color: #A2D2FF;
}

.contact-card img {
    /* font-size: 42px; */
    margin-bottom: 20px;
}


/* Glassmorphism Effect */
.form_section {
    margin: 0;
    padding: 40px 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 520px;
    padding: 0;
    margin: 0;
    border-radius: 25px;
    background: #000000;
    color: white;
    z-index: 2;
}

.contact-shape1 {
    position: absolute;
    right: 260px;
    top: 30%;
    transform: translateY(-50%);
    animation: shape 2s infinite alternate ease-in-out;
}

.contact-shape2 {
    position: absolute;
    width: 250px;
    left: 230px;
    top: 15%;
    transform: translateY(-50%);
    animation: shape 2s infinite alternate ease-in-out;
}

.contact-shape3 {
    position: absolute;
    width: 250px;
    left: 0px;
    bottom: 0%;
    /* transform: translateY(-50%); */
    /* animation: shape 2s infinite alternate ease-in-out; */
}

.contact-shape4 {
    position: absolute;
    width: 250px;
    left: 0px;
    top: 0%;
    transform: translateY(-50%);
    animation: circle 2s infinite alternate ease-in-out;
}

.contact-shape5 {
    position: absolute;
    width: 250px;
    right: 0px;
    bottom: 0%;
}

/* Shape Animation */
@keyframes circle {
    0% {
        transform: translateY(0%) scale(1);
    }

    100% {
        transform: translateY(30px) scale(1.1);
    }
}

@keyframes shape {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(30px);
    }
}

.form_area {
    max-width: 520px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* Sub-heading */
.sub-heading {
    font-size: 1rem;
    color: #ffffffcc;
    margin-bottom: 1.5rem;
}

/* Input Fields */
.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px 0;
    font-size: 1rem;
    outline: none;
    background: rgba(78, 78, 78, 0.664);
    color: #ffffffb3;
    transition: all 0.3s ease-in-out;
}

/* Placeholder Styling */
.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #e6e6e6b3;
}

/* Focus Effect */
.input-group input:focus,
.input-group textarea:focus {
    background: rgba(78, 78, 78, 0.664);
}

/* Button */
.form_button {
    width: auto;
    padding: 12px;
    background: #4987C7;
    border: 1px solid #4987C7;
    color: #fff;
    font-size: 18px;
    border-radius: 20px 0;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-top: 10px;

}

.form_button:hover {
    background: #fff;
    color: #4987C7;
    transform: scale(1.05);
}

.map-container {
    height: auto;
    overflow: hidden;
    width: 100%;
}

/* ================================================Blog Page =============================================== */
.blog_hero {
    position: relative;
    width: 100%;
    height: 450px;
    /* margin-top: 70px; */
    background: url('/frontend/images/blog_banner.png') no-repeat center center/cover;
    object-position: top;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.blog-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.blog-heading {
    padding: 20px;
}

.blog_header {
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-container {
    padding: 70px 0 80px;
}

/* Blog Content */
.blog-content {
    width: 75%;
    padding: 20px;
    margin: auto;
}

.layout-toggle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    padding: 20px 20px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.blog-card:hover {
    box-shadow: 0 4px 10px rgba(20, 20, 20, 0.342);
}

.blog-card img {
    width: 100%;
    border-radius: 8px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}


.blog-card h2 {
    margin: 10px 0;
}

/* Grid & List Layout */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.list-layout {
    display: block;
}

.list-layout a {
    text-decoration: none;
    color: black;
}

.read_more {
    border: 2px solid #4987C7;
    padding: 12px;
    border-radius: 20px 0;
    background-color: #4987C7;
    color: white !important;

    font-size: 20px;
}

.blog-card:hover .read_more {
    color: #4987C7 !important;
    background-color: white;
}

/* ============================================Blog Detail ================================================ */

.blog-detail {
    width: 70%;
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: justify;
}

.blog-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
}


blockquote {
    font-style: italic;
    background: #f1f1f1;
    padding: 15px;
    border-left: 4px solid #2575fc;
}



/* ======================================== Web Development Service Page===================================== */
.web_hero {
    position: relative;
    width: 100%;
    height: 450px;
    /* margin-top: 70px; */
    background: url('/frontend/images/web-banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.web-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.web_header {
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}


/* Services Intro Section */
.services-intro {
    padding: 80px 0;
    text-align: left;
    width: 75%;
    margin: auto;
}

/* Intro Section Container */
.intro-section {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

/* Background Effect */
.intro-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

/* Foreground Image (Main Image) */
.intro-image .foreground {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.intro-image .foreground.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-image .foreground:hover {
    transform: scale(1.05);
}

/* Services List Section */
.services-list {
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.services-list h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

/* Service Items - Vertical List */
.service-items {
    list-style: none;
    padding: 0;
    position: relative;
}

/* Vertical Accent Line */
/* .service-items::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    height: 100%;
    width: 4px;
    background: #70AAFF;
} */

/* Individual Service Item */
.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    position: relative;
}

/* Floating Effect on Hover */
.service-item:hover {
    transform: translateX(15px);
}

/* Icons */
.service-icon {
    font-size: 30px;
    color: #70AAFF;
    background: rgba(110, 68, 255, 0.1);
    padding: 15px;
    border-radius: 50%;
    transition: background 0.3s ease-in-out;
}

/* Icon Hover Effect */
.service-item:hover .service-icon {
    background: #70AAFF;
    color: white;
}

/* Content Styling */
.service-content h3 {
    margin: 0;
    font-size: 20px;
    color: #000000;
}

.service-content p {
    margin: 5px 0 0;
    color: #666;
}

/* Why Choose Section */
.why-choose {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 30px 60px 80px;
    margin: auto;
    gap: 40px;
}

.why-content {
    flex: 1;
    max-width: 600px;
    background: #70a9ff33;
    color: black;
    padding: 60px 40px;
    position: relative;
    margin: 0 0 0 70px;
    border-radius: 20px;
    transition: all 1s ease-in-out;
}

.why-content:hover {
    transform: scale(1.08);
}

.why-content h2 {
    margin-bottom: 15px;
    max-width: 400px;
}

.why-content p {
    max-width: 400px;
}

.why-image {
    flex: 1;
    text-align: center;
    position: absolute;
    right: 12%;
    bottom: 0;
}

.why-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.why-image:hover img {
    transform: scale(1.05);
}

.why-image.visible img {
    opacity: 1;
    transform: scale(1);
}

/* Approach Section */
.approach {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
}

.approach h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.approach-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
}

/* Step Box */
.approach-step {
    padding: 20px;
    border-radius: 12px;
    max-width: 450px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
}

/* Floating Effect */
.approach-step:hover {
    transform: translateY(10px);
}

/* Icons */
.service-icon {
    font-size: 35px;
    color: #70AAFF;
    background: rgba(110, 68, 255, 0.1);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 50%;
    margin-right: 20px;
    transition: background 0.3s ease-in-out;
}

/* Icon Hover Effect */
.approach-step:hover .service-icon {
    background: #70AAFF;
    color: white;
}

/* Content Styling */
.step-content h3 {
    margin: 0;
    font-size: 22px;
    color: #333;
}

.step-content p {
    margin: 5px 0 0;
    color: #666;
}

/* CSS for animation (Add to styles.css) */
.approach-step {
    transform: translateY(-10px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}


/* FAQ Section */
.faq-container {
    max-width: 750px;
    margin: auto;
}

.faq-item {
    background: white;
    margin: 10px 0 15px;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #70AAFF;
    color: white;
    border: none;
    padding: 15px;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    padding: 15px;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
}

/* ============================================ App Development Services==================================== */
.app_hero {
    position: relative;
    width: 100%;
    height: 450px;
    /* margin-top: 70px; */
    background: url('/frontend/images/appd.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.app-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.app_services {
    max-width: 65%;
    margin: auto;
    padding: 60px 0;
    background: white;
    border-radius: 10px;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
}

.service_list {
    background: #4987C769;
    color: black;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
    border-radius: 10px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: bold;
}

.service_list i {
    font-size: 25px;
    color: #4987C7;
}

.active,
.service_list:hover {
    background-color: #4987C7;
    color: white;
}

.service_list:hover i {
    color: white;
}

.active i {
    color: white;
}

.panel {
    padding: 0 15px;
    background-color: white;
    border-left: 3px solid #4987C7;
    border-radius: 0 0 5px 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.panel.open {
    max-height: 500px;
    padding: 15px;
}

.app_why_choose {
    max-width: 90%;
    margin: 80px auto 40px;
    text-align: center;
}

.grid-container {
    display: flex;
    justify-content: center;
    gap: 30px 0;
    margin-bottom: 30px;
}

.grid-item {
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: left;
    height: 100%;
}

.grid-item:hover {
    transform: translateY(-10px);
}

.icon-box i {
    font-size: 35px;
    background: #70AAFF;
    color: white;
    padding: 15px;
    border-radius: 50%;
    transition: background 0.3s ease-in-out;
    margin-bottom: 20px;
}

.icon-box:hover i {
    color: #70AAFF;
    background: rgba(110, 68, 255, 0.1);
}

.content {
    flex: 1;
}

.content h2 {
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.process-container {
    text-align: center;
    padding: 50px 20px 80px;
}

.timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    width: 4px;
    background: #4987C7;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    width: 45%;
    position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-end;
    padding-right: 80px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 80px;
    padding-right: 0;
}

.timeline-item .content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 80%;
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.timeline-item:hover .content {
    transform: translateY(-5px);
}

.timeline-item:nth-child(even) .content {
    text-align: left;
}

.timeline-item .timeline-icon {
    position: absolute;
    top: 50%;
    left: calc(90% + 10px);
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #4987C7;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: auto;
    left: calc(4% + 20px);
}

.timeline-item h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* ===================================== Software Development services============================= */
.software_services {
    padding: 0px 20px 60px;
}

.section-title h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.software_services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: auto;
}

.service-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-box h4 {
    font-weight: bold;
}

.service-box:hover {
    transform: translateY(-8px);
}

.service-box i {
    font-size: 50px;
    color: #4e9af1;
    margin-bottom: 15px;
}

.software_process {
    padding: 80px 20px;
}

.process-title {
    text-align: center;
    margin-bottom: 60px;
}

.process-title h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 10px;
}

.process-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 1rem;
}

.software-timeline-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.software-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.software-timeline-dot {
    background-color: #4e9af1;
    color: white;
    font-size: 1.2rem;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #e2efff;
    z-index: 1;
}

.software-timeline-item:hover .software-timeline-dot {
    background-color: #ffffff;
    color: #4e9af1;
    box-shadow: 0 0 0 5px #4e9af1;
    ;
}

.software-timeline-content {
    background: #ededed;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    flex: 1;
    transition: transform 0.3s ease;
}

.software-timeline-content h3 {
    margin-bottom: 10px;
    color: #000000;
}

.software-timeline-content p {
    margin: 0;
    color: #272727;
    /* font-size: 0.95rem; */
    line-height: 1.6;
}

.software-timeline-content:hover {
    transform: translateY(-10px);
}

/* ===================================== Ui/Ux services============================= */
.uiux_hero {
    position: relative;
    width: 100%;
    height: 450px;
    /* margin-top: 70px; */
    background: url('/frontend/images/uiux_banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.uiux-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.uiux_header {
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
}


.uiux_header p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.9;
}

.cta-button {
    background: #ff4b2b;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    margin-top: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button:hover {
    background: #ff3a1f;
}

.uiux_section {
    padding: 0px 20px 60px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #203a43;
}

.ui_services-list {
    display: flex;
    gap: 30px;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
}


.ui_service-box {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    width: 100%;
}


.ui_service-box:hover {
    transform: translateY(-5px);
}

.ui_service-box i {
    font-size: 2.5rem;
    color: #70AAFF;
    margin-bottom: 15px;
    transition: transform 0.5s ease-in-out;
    /* Smooth rotation */
}

.ui_service-box:hover i {
    transform: rotate(360deg);
}

.uiux_timeline_section {
    padding: 80px 20px;
}

.uiux_timeline-title {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.uiux_timeline-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #203a43;
}

.uiux_timeline-title p {
    font-size: 1rem;
    color: #666;
}

.uiux_timeline {
    position: relative;
    margin-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
}

.uiux_timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #4062AE, #4062AE);
    transform: translateX(-50%);
}

.uiux_timeline-step {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.uiux_timeline-step.left {
    left: 0;
    text-align: right;
}

.uiux_timeline-step.right {
    left: 50%;
    text-align: left;
}

.uiux_timeline-step::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4062AE;
    border: 3px solid white;
    z-index: 1;
}

.uiux_timeline-step.left::before {
    right: -10px;
}

.uiux_timeline-step.right::before {
    left: -10px;
}

.uiux_timeline-step .content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.uiux_timeline-step h3 {
    margin-top: 0;
    color: #ffffff;
}

.uiux_timeline-step p {
    color: #ffffff;
    font-size: 0.95rem;
}

.uiux_content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    padding: 20px;
    border-radius: 10px;
}

.uiux_content.show {
    opacity: 1;
    transform: translateY(0);
    background-color: #70AAFF;
}

/*==================================== Software Development Services ==================================  */
.software_hero {
    position: relative;
    width: 100%;
    height: 450px;
    /* margin-top: 70px; */
    background: url('/frontend/images/software_banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.software-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* ================================================ Portfolio Page ========================================== */
.portfolio_hero {
    position: relative;
    width: 100%;
    height: 450px;
    /* margin-top: 70px; */
    background: url('/frontend/images/portfolio_banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.web_row,
.app_row {
    display: flex;
    gap: 40px 0;
}

.project_image {
    position: relative;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.623);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    margin: 10px;
}

.project_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    display: block;
    transition: all 0.3s ease-in-out;
}

.project_image:hover img {
    transform: scale(1.03);
    filter: brightness(0.7);
    cursor: pointer;
}


.portfolio_section {
    padding: 50px 0 80px;
}

.portfolio-container {
    display: none;
    background-color: white;
    color: #000;
}

.active {
    display: block;
}

.tabs {
    margin: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.tab-button {
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border: none;
     background: linear-gradient(to right, #4987C7, #4062AE);
    color: white;
    border-radius: 20px 0;
}

.tab-button:hover {
    background: #fafafa;
    color: #4987C7;
    border: 2px solid #4987C7;
}

.tab-button.active {
    background: #fafafa;
    color: #4987C7;
    border: 2px solid #4987C7;
}

/* =========================================== Our Products Page ======================================== */
.ourproduct_hero {
    position: relative;
    width: 100%;
    height: 450px;
    /* margin-top: 70px; */
    background: url('/frontend/images/ourproduct.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.ourproduct-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.product_content {
    padding: 80px 0 10px;
}

.product_content p {
    width: 85%;
    margin: auto;
    text-align: center;
    font-size: 18px;
}

.product-container {
    position: relative;
    padding: 80px 0;
    z-index: 1;
    overflow: hidden;
}

.product_row {
    display: flex;
    gap: 40px 0;
}

.product_row a {
    text-decoration: none;
    color: black;
}

.product_card {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    border-radius: 20px;
    padding: 30px;
    margin: 0 10px;
    z-index: 10;
    background-color: white;
}

.product_card:hover {
    background: linear-gradient(to right, #4062AE, #4989c8, #3865B0);
    ;
    color: white;
    box-shadow: 20px 15px 100px rgba(13, 120, 226, 0.342);
}

.product_icon {
    /* background-color: #b5c4e554; */
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    border-radius: 35px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product_card:hover .product_icon {
    background-color: white;
}

.product_icon img {
    width: 70px;
}

.product_card p {
    margin: 10px 0;
    font-size: 18px;
    text-align: center;
}

.app {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;

}

.boxes ul {
    display: block;
    width: 100%;
    height: inherit;
}

.boxes ul {
    list-style-type: none;
}

.boxes li:nth-child(1) {
    position: absolute;
    left: 10%;
    height: 30px;
    width: 30px;
    background: rgba(56, 173, 223, 0.651);
    animation: animate 10s linear 1s infinite;

}

.boxes li:nth-child(2) {
    position: absolute;
    left: 30%;
    height: 45px;
    width: 45px;
    background: rgba(56, 173, 223, 0.651);
    animation: animate 20s linear 1s infinite;

}

.boxes li:nth-child(3) {
    position: absolute;
    left: 50%;
    height: 70px;
    width: 70px;
    background: rgba(56, 173, 223, 0.651);
    animation: animate 13s linear 1s infinite;

}

.boxes li:nth-child(4) {
    position: absolute;
    left: 80%;
    height: 20px;
    width: 20px;
    background: rgba(56, 173, 223, 0.651);
    animation: animate 18s linear 1s infinite;

}

@keyframes animate {
    from {
        transform: translateY(1000%) rotate(180deg)
    }

    to {
        transform: translateY(-150%) rotate(360deg)
    }
}

/* ======================================== Terms and Condition ===================================== */
.terms_hero {
    position: relative;
    width: 100%;
    height: 450px;
    /* margin-top: 70px; */
    background: url('/frontend/images/terms_banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.tj-service-details {
    max-width: 900px;
    margin: auto;
    line-height: 1.5;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}

.sidebar-wrapper {
    padding: 30px;
}

/* ======================================== Privacy Policy ===================================== */
.privacy_hero {
    position: relative;
    width: 100%;
    height: 450px;
    /* margin-top: 70px; */
    background: url('/frontend/images/privacy_banner.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* ====================================== Join Us ====================================== */
.joinus_hero {
    background: linear-gradient(to right, #3865B0, #4989c8);
    /* text-align: center; */
    padding: 130px 60px;
    /* margin-top: 100px; */
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin: 30px 20px 0;
    border-radius: 10px;
}

.joinus_hero h1 {
    font-size: 45px;
    /* font-weight: bold; */
    position: relative;
    z-index: 2;
    width: 55%;
    color: white;
    text-transform: uppercase;
}

.joinus_hero p {
    color: #dadada;
    position: relative;
    z-index: 2;
    width: 60%;
    font-size: 20px;
}

.openings {
    padding: 60px 20px;
}

.openings h1 {
    padding-bottom: 30px;
}

.job_heading {
    font-weight: bold;
    font-size: 25px;
}

.job-item {
    border-top: 1px solid #ddd;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.job-item:hover {
    background-color: #4987C7;
    color: white;
    border-radius: 20px;
}

.job-title {
    font-weight: bold;
}

.job-arrow i {
    color: white;
    font-size: 20px;
    border-radius: 50%;
    padding: 10px;
    background-color: #000000;
}

.job-item:hover i {
    background-color: white;
    color: black;
}

.joinus_app {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    height: 100%;
    width: 100%;
}

.circle li {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    background: #ffeef3;
    box-shadow: 0 0 10px rgba(56, 173, 223, 0.4);
    animation: circlemove linear infinite;
}

@keyframes circlemove {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-50vh) scale(1.2);
        opacity: 0.4;
    }

    100% {
        transform: translateY(-120vh) scale(1);
        opacity: 0;
    }
}

.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

.job-modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    background: #f8f9fa;
    border-bottom: none;
    padding: 1.25rem 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.modal-body {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

.job-info {
    font-size: 1rem;
    color: #555;
}

.job-section h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.job-list {
    padding-left: 1rem;
    list-style: disc;
}

.job-list li {
    margin-bottom: 0.5rem;
    color: #444;
}

.modal-footer {
    border-top: none;
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
}

/* ================================== join us form ================================= */
.job-application-form {
    padding: 60px 20px 60px;
    background: #f5f7fa;
    display: flex;
    justify-content: center;
}

.joinus-form-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 50px;
    width: 100%;
    max-width: 750px;
    border: 1px solid #dfdfdf;
    box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.5s ease-in-out;
}

.form-title {
    text-align: center;
    margin-bottom: 10px;
    /* font-size: 28px; */
    font-weight: bold;
    color: #000000;
}

.form-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    /* font-size: 16px; */
}

.join-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.join-form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.join-form-group input,
.join-form-group select,
.join-form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fafafa;

}

.join-form-group input:focus,
.join-form-group select:focus,
.join-form-group textarea:focus {
    border-color: #4f9efc;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(79, 158, 252, 0.2);
    outline: none;
}


.submit-btn {
    text-align: center;
    padding: 14px 24px;
    background-color: #4f9efc;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background-color: #367edc;
}

.ctc-input {
    display: flex;
    align-items: center;
}

.ctc-input span {
    margin-left: 8px;
    font-weight: 600;
}




@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.file-upload-modern label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.custom-file-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fafafa;
    padding: 10px;
}

.custom-file-input-wrapper input[type="file"] {
    display: none;
}

.file-placeholder {
    flex-grow: 1;
    color: #666;
    padding: 0 10px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upload-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.upload-btn:hover {
    background-color: #0056b3;
}

.required {
    color: red;
}

/* ========================================= Responsive Design ==========================================*/
@media (max-width: 1224px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        width: 90%;
    }

    .about-content {
        position: relative;
        width: 100%;
        right: auto;
        bottom: auto;
        margin-top: -50px;
        padding: 30px;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);

    }

    .image-box {
        height: 450px;
    }

    .footer-social .social-icons {
        flex-direction: column;
    }

    .abt-image1 img {
        width: 326px;
    }

    .abt-image2 {
        width: 362px;
    }

    .abt-image2 img {
        width: 350px;
    }

    .why-image {
        position: relative;
        right: 7%;
    }

    /* --------------- uiux service ----------- */
    .ui_services-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-detail {
        width: 80%;
    }
}

@media (max-width: 991px) {
    .footer-social .social-icons {
        flex-direction: row;
    }

    .abt-image2 {
        left: 8%;
    }
}

@media (max-width: 768px) {
    .heading_area h1 {
        font-size: 35px;
    }

    .typing-text {
        font-size: 45px;
    }

    .services {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .service_section {
        background: url(/frontend/images/grid_mobile.png) no-repeat center top;
    }

    .skill_card {
        display: block;
        margin: 0;
        padding: 20px;
    }

    .floating-shape {
        top: 0%;
        right: 35px;
        width: 80px;
        height: 80px;
    }

    .floating-shape2 {
        top: 85%;
    }

    .tech-back {
        font-size: 14px;
        padding: 50px 30px;
    }

    .technology-section {
        padding: 30px 20px;
    }

    .years_box {
        margin-bottom: 30px;
    }

    .image-box {
        width: 60%;
    }

    .product_content {
        padding: 80px 20px 10px;
    }


    .product_content p {
        width: 85%;
    }

    .client_image {
        padding: 10px 0;
    }

    .footer-grid {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;
    }

    .footer-links-bottom {
        margin-top: 10px;
    }

    /* about page */
    .abt-image1 img {
        width: 300px;
    }

    .abt-image2 {
        width: 310px;
    }

    .abt-image2 img {
        width: 300px;
        height: 290px;
    }

    .vision-section::after {
        display: none;
    }

    .vision_content {
        padding: 40px 0;
    }

    .faq-section {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 30px 30px;
    }

    .contact-container .row .col-md-4 {
        margin-bottom: 20px;
    }

    .contact-shape2 {
        left: 103px;
        top: -8%;
    }

    .contact-shape3 {
        display: none;
    }

    .blog-content {
        width: 100%;
    }

    .blog-detail {
        width: 90%;
    }

    .contact-shape4 {
        position: absolute;
        width: 230px;
        left: -48px;
        top: -14%;
    }

    .contact-shape5 {
        width: 113px;
    }

    /* ------------------------ web development service -------------------- */
    .services-list {
        padding: 15px;
        max-width: 100%;
    }

    .service-item {
        gap: 0;
    }

    .approach-container {
        flex-direction: column;
    }

    .faq {
        padding: 20px;
    }

    /*--------------------- app development service--------------------- */
    .intro-section {
        padding: 0;
    }

    .why-choose {
        padding: 20px;
        flex-direction: column;
    }

    .why-image {
        position: relative;
        right: 0%;
    }

    .why-content {
        margin: 0;
    }

    .services-intro {
        padding: 50px 0px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 50px;
    }

    .timeline-item .timeline-icon {
        left: calc(4% + 7px);
    }

    .app_services {
        max-width: 85%;
    }

    .tabs {
        gap: 0px;
    }

    /* --------------- uiux service ----------- */
    .ui_services-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .software_services-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .video-section {
        margin: 50px 20px 20px;
    }

    .video-container {
        width: 100%;
        height: 300px;
    }

    .footer-links h3,
    .footer-contact h3,
    .footer-social h3 {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .uiux_timeline {
        padding-left: 0;
    }

    .uiux_timeline::before {
        left: 10px;
        display: none;
    }

    .uiux_timeline-step::before {
        display: none;
    }

    .uiux_timeline-step {
        width: 100%;
        padding-left: 25px;
        padding-right: 0px;
        text-align: left;
    }

    .uiux_timeline-step.left,
    .uiux_timeline-step.right {
        left: 0;
        text-align: left;
    }

    .uiux_timeline-step::before {
        left: 0;
    }

    .joinus_hero {
        padding: 90px 30px;
    }

    .joinus_hero h1 {
        width: 100%;
        font-size: 35px;
        margin-bottom: 20px;
    }

    .joinus_hero p {
        width: 100%;
        font-size: 18px;
    }

    .joinus-form-container {
        padding: 40px 25px;
    }

    .middle_image {
        width: 100% !important;
        margin-bottom: 20px;
        margin-left: 0;
    }
}

@media(max-width:480px) {
    .image-box {
        width: 100%;
    }

    .contact-shape2 {
        left: 27px;
        top: -8%;
    }

    .ui_services-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .ctc-input {
        flex-direction: column;
        align-items: start;
    }

    .ctc-input span {
        margin-left: 0;
        margin-top: 2px;
    }

    .joinus_hero {
        padding: 90px 20px;
    }
}