body {
    font-family: 'Roboto', sans-serif;
    background-color: #FAFAFA;
}
html, body
{ 
    overflow-x: hidden; 
    
}
.navbar {
    padding: 1rem 2rem;
}
.navbar-brand {
    font-weight: bold;
}

body {
    padding-top: 70px; 
}

.hero-section {
    background-color: #FAFAFA;
    padding: 4rem 2rem;
    text-align: center;
}
.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.hero-section .btn {
    margin: 0 0.5rem;
}
.about-section, .services-section, .team-section, .contact-section, .footer-section {
    padding: 4rem 2rem;
}
.about-section img, .services-section img, .team-section img, .contact-section img {
    max-width: 100%;
}
.services-section .card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}
.team-section .team-member {
    text-align: center;
    margin-bottom: 2rem;
}
.team-section .team-member img {
    border-radius: 50%;
    margin-bottom: 1rem;
}
.contact-section .form-control {
    margin-bottom: 1rem;
}
/* .footer-section {
    background-color: #343a40;
    color: #fff;
}
.footer-section a {
    color: #fff;
} */
@media only screen and (max-width: 768px) {
    .hero-section p {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}


  @media (max-width: 768px) {
    .btn-group a {
        padding: 8px 16px; /* Reduce padding */
        font-size: 1rem;  /* Reduce font size */
    }
}

/* Keyframe animation for bottom-to-top slide and fade-in effect */
@keyframes slideUpFadeInOut {
    0%, 33% {
        opacity: 0;
        transform: translateY(30px); /* Start below the final position */
    }
    40%, 60% {
        opacity: 1;
        transform: translateY(0); /* Fully visible in place */
    }
    67%, 100% {
        opacity: 0;
        transform: translateY(-30px); /* Fade out and move up */
    }
}

/* Common styling for all animated text */
.text-animate {
    position: absolute;
    transform: translateX(-50%);
    opacity: 0;
    font-size: 33px;
    color: #6a00b9;
    left: 29%;
    top: 0;
}

/* Vision text animation */
.text-animate-vision {
    animation: slideUpFadeInOut 18s ease-in-out infinite;
    animation-delay: 0s; /* Starts immediately */
}

/* Innovation text animation */
.text-animate-innovation {
    animation: slideUpFadeInOut 18s ease-in-out infinite;
    animation-delay: 6s; /* Starts after Vision */
}

/* Codepix Solution text animation */
.text-animate-codepix {
    animation: slideUpFadeInOut 18s ease-in-out infinite;
    animation-delay: 12s; /* Starts after Innovation */
}




/* Center align container */
.text-center {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically (optional) */
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
}

.position-relative {
    position: relative;
}

.background-image {
    width: 100%;
    height: auto;
}

.foreground-image {
    position: absolute;
    top: 56%;
    /* top: 53%; */
    left: 82%;
    transform: translate(-52%, -53%);
    z-index: 1;
    /* width: 50px; */
    height: 144%;
}

img.backgroundcolor {
    /*margin-top: 143px;*/
    margin-top: 220px;
}

/*1st section media query*/
/* Media query for mobile devices (max-width: 768px) */
@media only screen and (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .text-content {
        text-align: center;
    }

    /* Reduce button size for smaller screens */
    .btn-group .btn {
        font-size: 1rem;
        padding: 10px 20px;
        margin-bottom: 10px; /* Add margin for spacing */
    }

    .text-animate-vision,
    .text-animate-innovation,
    .text-animate-codepix {
        font-size: 1.5rem;
        margin-bottom: 15px; /* Adjust margin between texts */
    }

    .foreground-image {
        position: relative;
        top: 0;
        left: 0;
        transform: none; /* Disable transform for mobile */
        width: 100%;
        height: auto;
        z-index: 1;
    }

    .image-content {
        margin-top: 20px;
    }

    .backgroundcolor {
        margin-top: 20px;
        width: 100%;
    }
    .backgroundcolor {
        display: none; /* Hide the background image on mobile */
    }
}


/*About Section css*/
.about{
   font-size: 20px;
   color:#6c757d;
   margin-top: 26px;
}


.about-title {
    font-size: 2em; /* Adjust size as needed */
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin-bottom: 12px; /* Add spacing between the title and the line */
}


/* .red-line {
    width: 102px;
    height: 5px;
    background: linear-gradient(to right, red, transparent); 
    margin-top: -6px;
    margin-left: 44px;
} */

/* What We Do  css*/

.services-section {
    /* background-color: #f9f9f9; */
    padding: 3rem 0;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    text-align: center;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card img {
    max-width: 60px;
    height: auto;
    margin-bottom: 1rem;
}

.service-card .card-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: -3.25rem;
}

/* .service-card .card-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
} */

.service-card .card-text {
    font-size: 1rem;
    color: #666;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
}
img.marketing{
    margin-top: 46px;
}

/* h2.about-title {
    margin-left: 41%;
} */


.red-line {
    width: 102px;
    height: 4px;
    background: linear-gradient(to right, red, transparent);
    margin-top: -7px;
    margin-left: 50%;
}



.service-card.p-4.shadow-sm.box {
    box-shadow:  inset 0 5px 15px rgb(0 0 0 / 45%) !important;
}


/*Media Query*/
@media only screen and (max-width: 768px) {
    .about {
        font-size: 16px;
        color: #6c757d;
        margin-top: 24px;
        text-align: start;
    }
}

/*What We Do media query*/

    /* Media query for screens smaller than 768px (tablets and mobile devices) */
    @media (max-width: 768px) {
        .services-section {
            padding: 2rem 0;
        }
        
        .service-card {
            padding: 2rem;
        }

        .service-card h5 {
            font-size: 1.25rem;
        }

        .service-card p {
            font-size: 0.95rem;
        }

        .icon-container img {
            width: 60px; /* Adjust icon size for smaller screens */
            height: auto;
        }

        /* Stack the service cards vertically */
        .services-section .row {
            flex-direction: column;
            align-items: center;
        }

        .services-section .col-md-4 {
            max-width: 100%;
            margin-bottom: 2rem;
        }

        
    }

    /* Media query for very small devices, such as phones under 480px */
    @media (max-width: 480px) {
        .service-card {
            padding: 1.5rem;
        }

        .service-card h5 {
            font-size: 1.1rem;
        }

        .service-card p {
            font-size: 0.9rem;
        }

        .icon-container img {
            width: 50px;
        }

       
    }


    @media (max-width: 768px) {
        .section p {
            color: #6c757d;
            font-size: 16px!important;
            line-height: 1.6;
        }
        .our-services-section p {
            font-size: 16px!important;
            color: #6c757d;
            margin-bottom: 40px;
        }
        .subtitle {
           
            color: #6c757d;
            margin-bottom: 30px;
            font-size: 16px!important;
        }
    }
    
    
    
/* Mouse-Over Animation */
.hover-animate-heading {
    transition: transform 0.3s ease, color 0.3s ease;
}

.hover-animate-heading:hover {
    transform: translateY(-5px);
    color: #ff4a57;
}

.hover-animate-line {
    transition: width 0.4s ease;
}

.hover-animate-line:hover {
    width: 80px; /* Increases the line width on hover */
}

.hover-animate-paragraph {
    transition: color 0.3s ease, transform 0.3s ease;
}

.hover-animate-paragraph:hover {
    color: #007bff; /* Changes text color on hover */
    transform: scale(1.05); /* Slightly enlarges the paragraph */
}


.hover-animate-circle {
    transition: transform 0.5s ease;
}

.hover-animate-circle:hover {
    transform: scale(1.2) rotate(15deg); /* Grows and rotates the circle */
}


/*End*/

/*job for our client css*/

   .section {
            padding: 50px 0;
            position: relative;
        }
        .section h2 {
            color: #ff4a57;
            font-size: 24px;
            font-weight: bold;
        }
        .section h1 {
            color: #000;
            font-size: 36px;
            font-weight: bold;
        }
        .section p {
            color: #6c757d;
            font-size: 18px;
            line-height: 1.6;
        }
        .section .btn {
            background-color: #ff4a57;
            color: #fff;
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
        }
        .section .btn i {
            margin-left: 10px;
        }
        .images {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
        }
        .images img {
            border-radius: 10px;
            margin: 10px;
        }
        .decorative-circle {
            width: 20px;
            height: 20px;
            background-color: #ff4a57;
            border-radius: 50%;
            position: absolute;
        }
        .decorative-circle.blue {
            background-color: #2c3e50;
        }
        .decorative-circle.red {
            background-color: #ff4a57;
        }
        .decorative-circle-1 {
            top: 20%;
            right: 20%;
        }
        .decorative-circle-2 {
            top: 40%;
            right: 10%;
        }
        .decorative-circle-3 {
            top: 60%;
            right: 30%;
        }

        @media (max-width: 768px) {
            .images {
                position: absolute;
                top: 104%;
                right: 12px;
                transform: translateY(-50%);
            }
            .decorative-circle.blue {
                display: none;
            }
            .decorative-circle.red{
                display: none;
            }
        }

   /*Our Services css*/

    .our-services-section {
        padding: 212px 0;
        text-align: center;
    }
    .our-services-section h2 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
    }
    /* .our-services-section h2::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background-color: #e74c3c;
        margin: 10px auto;
    } */
    .our-services-section p {
        font-size: 20px;
        color: #6c757d;
        margin-bottom: 40px;
    }
    .our-service-box {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        padding: 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        
    }
    .our-service-box:hover {
        box-shadow: 0 0 15px rgba(207, 26, 26, 0.959);
        /*background-color: gray;*/
        /*color: white;*/
    }

    .our-service-box:hover p {
      /*color: white;*/
    }
    .our-service-box i {
        font-size: 40px;
        color: #e74d3c;
        margin-bottom: 20px;
    }
    .our-service-box h3 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .our-service-box p {
        font-size: 16px;
        color: #6c757d;
    }
    @media (max-width: 767.98px) {
        .our-service-box {
            margin-bottom: 20px;
        }
    }

    .our-service-box {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .our-service-box p {
        /* flex-grow: 1; */
        display: flex;
        align-items: flex-end; /* Align the text at the bottom */
    }


    /*Team Css*/
    .container.team-section {
        margin-top: -183px;
    }

    .team-section {
        text-align: center;
        padding: 50px 0;
    }
    .team-section h2 {
        font-size: 36px;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }
    /* .team-section h2::after {
        content: '';
        width: 50px;
        height: 3px;
        background-color: #6c63ff;
        display: block;
        margin: 10px auto 0;
    } */
    .team-member {
        margin: 20px;
    }
    .team-member img {
        border-radius: 50%;
        width: 150px;
        height: 150px;
        object-fit: cover;
    }
    .team-member h5 {
        margin-top: 15px;
        font-size: 18px;
        font-weight: bold;
    }
    .team-member p {
        font-size: 14px;
        color: #6c757d;
    }

    /*Retail & E commernec*/


    .container.Ecommerce {
        margin-top: 123px;
    }

    .container {
        text-align: center;
       
        position: relative;
    }
    .title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #333333;
    }
    .subtitle {
        font-size: 1.3rem;
        color: #6c757d;
        margin-bottom: 30px;
    }
    .btn-primary {
        border: 2px solid #6c757d;
        color: #6c757d;
        background-color: transparent;
        padding: 10px 20px;
        margin-right: 10px;
    }
    .btn-danger {
        background-color: #dc3545;
        color: #fff;
        padding: 10px 20px;
    }
    .image-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
    }
    .image-container img {
        width: 100%;
        max-width: 600px;
        border-radius: 50px;
        margin-top: 430px;
    }
    .image-container .left-image,
    .image-container .right-image {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 50px;
        overflow: hidden;
        /*width: 300px;*/
        
    }


    .image-container .right-image {
        right: 0;
        margin-right: -315px;
    }

    .image-container .left-image {
        left: 0;
        margin-left: -314px;
    }
    .decorative-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
    }
    .decorative-elements span {
        position: absolute;
        font-size: 1.5rem;
        color: #6c757d;
    }
    .decorative-elements .element1 { top: 10%; left: 10%; }
    .decorative-elements .element2 { top: 20%; right: 15%; }
    .decorative-elements .element3 { bottom: 15%; left: 20%; }
    .decorative-elements .element4 { bottom: 10%; right: 10%; }

    @media (max-width: 768px) {
        .image-container {
            flex-direction: column;
        }
        .image-container .left-image,
        .image-container .right-image {
            position: relative;
            width: 100%;
            max-width: 300px;
            margin-bottom: 20px;
        }
        .btn-primary, .btn-danger {
            width: 100%;
            margin-bottom: 10px;
        }
    }


    @media only screen and (max-width: 768px) {
        .left-image img,
        .right-image img {
            display: none;
        }
    }
    


    /*Contact*/

    .contact-section {
        padding: 50px;
    }
    .contact-form {
        background-color: #f0f4ff;
        padding: 30px;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    .contact-form input, .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    .contact-form button {
        background-color: #2c3e50;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
    }
    .contact-info {
        background-color: #2c3e50;
        color: white;
        padding: 35px;
        border-radius: 5px;
    }
    .contact-info .info-item {
        margin-bottom: 30px;
    }
    .contact-info .info-item i {
        font-size: 30px;
        margin-right: 15px;
    }
    .contact-info .info-item h5 {
        margin-bottom: 10px;
    }
    .contact-info .info-item p {
        margin: 0;
    }
    .contact-info .info-item a {
        color: white;
        text-decoration: none;
    }
    .contact-info .info-item a:hover {
        text-decoration: underline;
    }
    .contact-title {
        text-align: center;
        margin-bottom: 30px;
        font-size: 24px;
        font-weight: bold;
    }

    .container.contact {
        margin-top: 158px;
    }


    .navbar-nav .nav-link.active {
        color: #007bff; 
        font-weight: bold;
    }
    

    @media (max-width: 767.98px) {
        .footer .section-title {
            text-align: center!important;
          
        }

        .red-line1 {
            width: 75px;
            height: 3px;
            background: linear-gradient(to right, red, transparent);
            margin-top: -6px;
            margin-left: 42%!important;
        }

        .team-section h2 {
            font-size: 26px!important;
            margin-bottom: 19px;
            margin-top: 16px!important;
        }

        .our-services-section h2 {
            font-size: 26px!important;
            margin-bottom: 19px;
            margin-top: 16px!important;
        }

        .about-title {
            /* font-size: 2em; */
            font-weight: bold;
            position: relative;
            display: inline-block;
            margin-bottom: 19px;
            font-size: 26px!important;
            margin-top: 16px!important;
        }

        .section h1 {
            color: #000;
            font-size: 26px;
            font-weight: bold;
            margin-top: 16px!important;
        }

        .title {
         
            margin-bottom: 20px;
            color: #333333;
            font-size: 26px;
            margin-top: 16px!important;
        }

        .container.contact {
            margin-top: 68px!important;
        }

        .contact-section {
            padding: 23px 0px 2px 19px!important;
        }

        .navbar-light .navbar-toggler {
            color: rgba(0, 0, 0, .55);
            border-color: rgb(0 0 0 / 0%);
        }
        .navbar-nav .nav-link {
            padding-right: 301px!important;
            padding-left: 0;
        }
        .bg-light {
            --bs-bg-opacity: 1;
            background-color: rgb(200 125 125 / 77%) !important;
        }

        .navbar-light .navbar-toggler {
            color: rgba(0, 0, 0, .55);
            border-color: rgba(0, 0, 0, .1);
            margin-right: 12px!important;
        }
        

    }
    
  /*client Css */
  
       
        .container {
            text-align: center;
            max-width: 800px;
        }

        .title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #1a202c;
        }

        .logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .logos .row {
            display: flex;
            justify-content: center;
            width: 100%;
            margin-bottom: 15px;
        }

        .logos img {
            height: 40px;
            max-width: 120px;
            object-fit: contain;
        }
  /*End*/



    


  