body,
html {
    height: 100%;
    margin: 0;
    margin: 0;
    /* overflow: hidden; */
    scroll-behavior: smooth;
}


.home-main-cont {
    /* padding-top: 60px; */
    padding-left: unset;
    padding-right: unset;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

a:hover {
    color: #ff4800;
}

/*This is for all the sections of homepage**************
*********************************************************/

/* Section colors for distinction */
.section:nth-child(odd) {
    background-color: #f8f9fa;
    /* Light Gray */
}

.section:nth-child(even) {
    background-color: #343a40;
    /* Dark Gray */
    color: white;
}

.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 2rem; */
    position: relative;
    /* Position relative for absolute background */
    scroll-snap-align: start;
    color: white;
    /* Text color for contrast */
    overflow: hidden;
    /* Hide overflow */
}


/*End ****************************************************
*********************************************************/



/*Section 1 of Home Page**********************************
*********************************************************/
/* #section1,
#section4 {
    height: 100vh;
} */

#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Send it to the back */
}

.overlay {
    position: relative;
    z-index: 1;
    /* Bring it above the particles */
    display: flex;
    flex-direction: column;
    /* Align text vertically */
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Center vertically */
    height: 100%;
    /* Full height */
    text-align: center;
    /* Center text */
    color: #0f1341;
    /* Default text color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    /* Text shadow for readability */
}

.sologon-p {
    font-size: 24px;
    text-transform: uppercase;
    color: #0f1341;
    letter-spacing: 9px;
    font-weight: 400;
    margin: 10px 0;
    /* Add some margin */
    font-family: "Roboto", serif;
}

.sologon-h,
.sologon-hh {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 6rem;
    margin: 5px 0;
    /* Add some margin */
    font-family: "Poppins", serif;
}

.sologon-hh {
    color: #ff4800;
}


.sec-btn-area {
    display: flex;
    /* Use flexbox for alignment */
    justify-content: center;
    /* Center the buttons horizontally */
    gap: 20px;
    /* Add space between buttons */
    margin: 20px 0;
    /* Optional: Add vertical margin */
}

.section1-btn {
    display: inline-block;
    padding: 10px 25px;
    /* Adjusted padding for a tighter look */
    color: white;
    background-color: #0f1341;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    border: 2px solid transparent;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.section1-btn:hover {
    background-color: #ff4800;
    /* Change to accent color on hover */
    color: white;
    /* Text color stays white */
    box-shadow: 0 0 10px rgba(255, 72, 0, 0.8), 0 0 40px rgba(255, 72, 0, 0.5);
}

.section1-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: white;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.section1-btn:hover::before {
    visibility: visible;
    transform: scaleX(1);
    /* Smooth underline animation */
}

.section1-btn span {
    display: block;
    font-size: 14px;
    color: #e0e0e0;
    /* Subtitle color */
    margin-top: 5px;
    /* Reduced space between the main text and span */
    transition: color 0.4s ease;
}

.section1-btn:hover span {
    color: #ffffff;
    /* Subtitle changes to white on hover */
}


.fa-phone-alt,
.fa-phone-flip {
    display: inline-block;
    /* Ensure it behaves like a block element */
    transform: rotate(90deg);
    /* Rotate the icon 90 degrees */
}


.sec-btn-area>a>span {
    font-size: 15px;
}





/*Section 2 of Home Page -  Source of Pride**********************************
*********************************************************/


#section2 {
    padding: 60px 0;
    background-color: #f8f9fa;
    /* Light background */
}

#section2 .display-4 {
    color: #0f1341 !important;
    font-family: "Poppins", serif;
    font-weight: 900;
    font-size: 4rem;
    word-spacing: 12px;
}

#section2 p {
    font-size: 16px;
    line-height: 1.3;
    font-family: "Roboto", serif;
    color: #0f1341 !important;
    font-weight: 400;
    word-spacing: 2px;
}


.heading-wrapper {
    margin-bottom: 9px;
}

.heading-left {
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    color: #0f1341;
    font-family: "Poppins", serif;
}

.heading-right {
    text-align: right;
    font-size: 24px;
    font-weight: 600;
    color: #ff4800;
}

.text-left {
    font-size: 15px !important;
    line-height: 1.3 !important;
    text-align: left;
    opacity: 0.7;
    font-weight: 400 !important;
}

/* Animation for border-bottom */
.our-pride {
    border-bottom: 2px solid #00000052;
    padding-top: 21px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.5s ease;
    /* Animation duration for the border */
}

.our-pride:hover {
    border-color: #ff4800;
    /* Change color on hover */
}

/* Animated Icon in Heading Right */
.heading-right {
    text-align: right;
}

.animated-icon {
    font-size: 24px;
    color: #ff4800;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    cursor: pointer;
}

/* Animation effect for the icon */
.heading-right:hover .animated-icon {
    transform: translateX(5px);
    /* Moves the icon slightly to the right on hover */
    color: #0f1341;
    /* Change color on hover */
}


/* Styling the flags container */
.flag-container {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    /* Space between the flags */
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    /* Makes flags wrap on smaller screens */
}

.flag-icon {
    font-size: 32px;
    /* Adjust the size of the flag */
    transition: transform 0.3s ease-in-out;
}

/* Hover effect for flags */
.flag-icon:hover {
    transform: scale(1.1);
    /* Slight zoom effect on hover */
}





/*Section 3 of Home Page -  Services**********************************
*********************************************************/


/* Section 3 Styling */
#section3 {
    padding: 50px 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e9f2 100%);
}

.content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-heading {
    color: #0f1341 !important;
    font-family: "Poppins", serif;
    font-weight: 900;
    font-size: 4rem;
    word-spacing: 12px;
}

.section-text {
    font-size: 24px;
    line-height: 1.3;
    font-family: "Roboto", serif;
    color: #0f1341 !important;
}

.card-side {
    overflow-y: scroll;
    height: 400px;
    padding-right: 10px;
    scrollbar-width: none;
    padding-bottom: 10px;
    padding-top: 10px;
}

/* For WebKit browsers (Chrome, Safari, Edge) */
.card-side::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar */
}

.card-side::-webkit-scrollbar-thumb {
    background-color: #ff4800;
    border-radius: 3px;
}

/* Service Cards Styling */
.card-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background-color: #ffffff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card h4 {
    margin-bottom: 10px;
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    color: #0f1341;
    font-family: "Poppins", serif;
}

.service-card p {
    font-size: 18px !important;
    text-align: left;
    color: #0f1341;
    font-family: "Roboto", serif;
}

.service-link {
    font-family: "Roboto", serif;
    text-decoration: none;
    color: #0f1341;
    font-size: 24px;
    line-height: 27px;
    display: block;
}

.service-link>span {
    color: #ff4800;
}

.service-link:hover {
    color: #ff4800;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
    gap: 9px;
    /* Adjust the gap between columns */
}




/*Section 3 of Home Page -  Rich Famous**********************************
*********************************************************/
#section4 {
    flex-direction: column;
}

.projcet-showcase>h2 {
    color: #0f1341 !important;
    font-family: "Poppins", serif;
    font-weight: 900;
    font-size: 6rem;
}

.projcet-showcase>h2>span {
    color: #ff4800 !important;
}

.client-logo {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    width: 100%;
    gap: 20px;
    justify-content: center;
}

.client-logo img {
    width: calc(14% - 25px);
    object-fit: contain;
    aspect-ratio: 4/1;
}

/* Section5 of Home Page - Case Study************************************
********************************************************* */
#section5 {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e9f2 100%);
    padding: 80px 0;
    position: relative;
    align-items: flex-start;
}

/* Section Heading with Background Text Effect */
.heading-case {
    color: #0f1341;
    font-family: "Poppins", serif;
    font-weight: 900;
    font-size: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.heading-case::before {
    content: "Case Studies";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    color: rgba(15, 19, 65, 0.05);
    white-space: nowrap;
    font-weight: 900;
    font-family: "Poppins", serif;
    pointer-events: none;
    z-index: -1;
}


/* Project List Styling */
.project-list {
    padding-right: 2rem;
}

.project-item {
    font-size: 28px;
    color: #333;
    padding: 10px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.project-item:hover {
    color: #ff4800;
}

/* Project Details Card Styling */
.project-display {
    position: relative;
    overflow: hidden;
}

.case-study-card {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    border-radius: 8px;
    /* background: #ffffff; */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease;
}

.case-study-card.active {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.project-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    /* margin-bottom: 1rem; */
}

.project-details {
    padding: 1rem;
}

.project-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f1341;
}

.project-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.client-name,
.client-position {
    font-size: 0.9rem;
    color: #666;
}

.project-content p {
    color: #000;
    font-size: 24px;
    margin-bottom: 0px;
}

.project-content strong {
    color: #ff4800;
}

/* .list-unstyled {
    height: 70vh;
    overflow: auto;
}

.list-unstyled::-webkit-scrollbar {
    display: none;
} */

.projects-card {
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.project-content {
    text-align: left;
    color: #333;
}

.project-content p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.6;
}

/*Section 6 of Home Page -  Sales Portal**********************************
*********************************************************/
.projcet-showcase p {
    color: #0f1341;
    font-size: 2rem;
}


/* Footer Sction Css *****************************************************
************************************************* */

.main-footer {
    /* height: 70vh; */
    position: relative;
    background: #fff;
    padding: 50px 0px;
}

.menu-boxes::before {
    content: "Zebaq";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-100%, -50%);
    font-size: 12rem;
    color: rgba(15, 19, 65, 0.05);
    white-space: nowrap;
    font-weight: 900;
    font-family: "Poppins", serif;
    pointer-events: none;
}

.menu-boxes {
    position: relative;
    overflow: hidden;
}

.menu-boxes ul {
    list-style: none;
    padding: 0;
}

.loc h6 {
    color: #ff4800;
}


.low-sec ul {
    list-style: none;
    display: inline-flex;
    gap: 20px;
    padding: 0px;
    margin: 0px;
}

.big-button a {
    color: #191b1d;
    text-decoration: none;
    font-size: 38px;
    font-weight: 700;
    position: relative;
}

.big-button a:hover {
    color: #ff4800;
}

.big-button a::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    font-size: 40px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -5px;
}

.menu-boxes ul li {
    font-size: 20px;
    padding-bottom: 3px;
}

.loc h6 {
    font-size: 24px;
}

.loc p {
    font-size: 16px;
}

.low-sec ul li {
    font-size: 18px;
}

.contact-btn h6 {
    font-size: 24px;
    font-weight: 600;
}

.contact-btn h6 i {
    color: #ff4800;
}

.social ul {
    display: flex;
    gap: 20px;
}

.social ul li {
    font-size: 30px;
}


/* .devide ul {
    border-right: 1px solid #ccc;
} */
.full-width {
    border-left: 1px solid #ccc;
}

/* Services main section  *********************************************
***********************************************************************/
#Sersection2 {
    padding: 100px 0;
    background-color: #f4f4f4;
}

.big-font .display-4 {
    color: #0f1341 !important;
    font-family: "Poppins", serif;
    font-weight: 900;
    font-size: 4rem;
    word-spacing: 12px;
}

.big-font p {
    font-size: 24px;
    line-height: 1.3;
    font-family: "Roboto", serif;
    color: #0f1341 !important;
    font-weight: 400;
    word-spacing: 2px;
}

.mid-font {
    font-size: 16px !important;
    line-height: 1.3 !important;
    font-family: "Roboto", serif;
    text-align: left;
    font-weight: 400 !important;
}


/* Service Inner Pages CSS ********************************************
*********************************************************************** */
.ser-showcase>h2 {
    color: #0f1341 !important;
    font-family: "Poppins", serif;
    font-weight: 900;
    font-size: 74px;
}

.ser-showcase p {
    color: #0f1341;
    font-size: 2rem;
}

.ser-showcase h4 {
    font-size: 48px;
    color: #0f1341;
    font-family: "Poppins", serif;
    font-weight: 900;
}



/* Services inner pages CTA Section**************************************
************************************************************************ */

.sch-btn i {
    margin-left: 5px;
    transition: all 0.3s ease-in-out;
}

.sch-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #ff4800;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.sch-btn {
    display: inline-block;
    padding: 10px 0px;
    font-size: 24px;
    color: #0f1341;
    font-family: "Poppins", sans-serif;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sch-btn:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

.sch-btn:hover i {
    margin-left: 10px;
}


/* Case study sction *************************************************
********************************************************************** */
.border-right {
    position: relative;
}

.border-right::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, #ff480000, #ff480054, #ff4800, #ff480054, #ff480000);
}

.arr-btn {
    font-size: 48px;
    color: #ff4800;
    padding: 10px 20px;
    border-radius: 50%;
    background: #ffa17d1f;
}

/* Happy Clients*****************************************************************
****************************************************************************** */
.inner-block {
    text-align: center;
}

.owl-nav {
    display: none;
}

.rv-top i {
    color: goldenrod;
}

.rv-top img {
    width: 135px !important;
    padding-top: 10px;
}

.rv-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.r-card {
    padding: 10px;
    height: 100%;
}


/* About Us Page CSS *****************************************************************
************************************************************************************* */
.breadcrumb a {
    padding: 5px 15px;
    color: #000;
    border: 1px solid #4f4f4f;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

.breadcrumb i {
    color: #000;
    font-weight: 900;
}

.breadcrumb .active {
    border: 1px solid #ff4800;
    background: #ff4800c4;
    color: #fff;
}

.breadcrumb a:hover {
    border: 1px solid #ff4800;
    background: #ff4800c4;
    color: #fff;
}

.ofc-img {
    height: 100%;
    width: 100%;
    border-radius: 25px;
}

.ofc {
    font-size: 3rem;
}

.img-spin {
    position: absolute;
    top: -15px;
    height: 100px;
    width: 100px;
}

.img-spin img {
    height: 100%;
    width: 100%;
    animation: rotate 9s normal linear infinite;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }

    50% {
        -webkit-transform: rotate3d(0, 0, 1, 180deg);
        transform: rotate3d(0, 0, 1, 180deg);
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg);
    }
}


/* Contact Page CSS **********************************************************************
************************************************************************************** */
.form-container {
    max-width: 960px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px #0f134170;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-column {
    flex: 1;
    min-width: 300px;
}


.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0f134170;
    outline: none;
    box-shadow: 0 2px 10px #0f134170;
}


label {
    font-weight: bold;
    margin-bottom: 8px;
}


.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.radio-group input {
    cursor: pointer;
}


.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-column {
        min-width: 100%;
    }
}


/* Career CSS ***********************************************************
*********************************************************************** */
.sub-section-text {
    font-size: 20px;
    font-weight: 700;
    color: #0f1341;
}

.job-card {
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 10px #0f134170;
}

.job-card .card-body {
    padding: 20px;
}

.job-banner {
    background: linear-gradient(45deg, #ff4800, #ed5316);
    border-radius: 8px;
    padding: 10px 15px;
    color: #fff;
    display: inline-flex;
}

.job-banner .icon-container {
    background: rgba(0, 0, 0, 0.07);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-box {
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.info-box p {
    margin-bottom: 5px;
}

.scrollable-description {
    max-height: 115px;
    overflow-y: auto;
    padding: 10px;
}

.scrollable-description::-webkit-scrollbar {
    width: 6px;
}

.scrollable-description::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

.scrollable-description::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.btn-primary {
    background-color: #4285f4;
    border-color: #4285f4;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #357ae8;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.posted-time {
    font-size: 0.9rem;
}

hr {
    border-top: 1px solid #ddd;
}

.car-text {
    color: #0f1341;
}

.img-box {
    max-height: 700px;
    object-fit: cover;
    object-position: top;
    width: 100%;
}

.pos-abs {
    position: absolute;
    right: 0;
    bottom: 0;
}


/* Apply Jobs CSS ***********************************************************
**************************************************************************** */
.custom-file-input .clear-file {
    font-size: 28px;
    color: #888;
    cursor: pointer;
    display: none;
}

.custom-file-input label {
    font-size: 24px;
}

.custom-file-input input:valid+.upl-cv+.clear-file {
    display: inline-block;
}

input#upload_cv {
    margin-left: 30px;
    background: #fff;
    border-radius: 40px;
    padding: 9px;
    display: none;
}

i.fa.fa-paper-plane {
    color: #ff4800;
}


.upl-cv:hover {
    background-size: 100% 2px;
}

.upl-cv {
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #000;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: all 270ms ease-in-out 0s;
    background-image: linear-gradient(currentcolor, currentcolor);
    background-position: 0% 100%;
}

input#formFile {
    margin-left: 30px;
}

.fw-bolder.fs-4 {
    z-index: -1;
}

.upld-cv {
    z-index: -1;
    position: relative;
    margin-left: 30px;
}



/* Service inner Sections *******************************************************
******************************************************************************* */
.smm-pricing {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    /* padding: 50px 0; */
}

.pricing-table {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
    text-align: center;
    max-width: 400px;
    min-height: 500px;
}

.pricing-table:hover {
    transform: translateY(-10px);
}

.pricing-table p {
    font-size: 14px;
    font-weight: 700;
    padding: 10px;
    border-radius: 6px 6px 0 0;
}

.pricing-table h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 15px 0;
}

.pricing-table span {
    font-size: 16px;
    color: #666666;
}

.pricing-table h4 {
    margin: 20px 0;
}

.pricing-table ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-table ul li {
    font-size: 14px;
    color: #333;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.pricing-table ul li:last-child {
    border-bottom: none;
}

.smm-pricing h4 span {
    font-size: 64px;
    font-weight: 700;
}