@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css');
@import url(course-detail.css);

:root {
    --white-color: #fff;
    --black-color: #000;
    --yellow-color: #EEB300;
    --green-color: #11A700;
    --body-font-color: #333;
    --heading-color: #333;
    --blue-color: #275DF5;
    --primary-color: #275DF5;
    --border-color: #E6E6E6;
    --gradient-bg: radial-gradient(circle, rgba(15, 94, 224, 1) 0%, rgba(0, 52, 137, 1) 58%);
    --font-poppins: "Poppins", sans-serif;
    --hero-overlay-bg: #cce2fd70;
    --light-theme-color: #F4F9FF;
    --gray-text: #808181;
    --light-gray-bg: ebebeb;
    --footer-bg: #F3F3F3;
    --footer-text: #777;
    --copy-right-bg: #F0F0F0;
    --footer-border: #E0E0E0;
    --input-fields-color: #717182;

}

body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    font-family: var(--font-poppins);
    color: var(--body-font-color);
}

.container {
    /* max-width: 1440px; */
    max-width: 1340px;
    width: 100%;
}

.btn-gradient,
.gradient-bg {
    background: linear-gradient(90deg, #275DF5 0%, #78B9E2 100%);
    color: var(--white-color);
}

.btn-gradient:hover {
    background: var(--theme-color);
    color: var(--white-color);
}

section {
    padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--heading-color);
}

h1 {
    font-size: 54px;
}

h2 {
    font-size: 30px;
    font-weight: 500;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

.link-text {
    color: var(--theme-color);
}

.btn {
    transition: all 0.3s ease-in-out;
    border: 0;
}

.btn:hover {
    transition: all 0.3s ease-in-out;
}

.bg-light-theme {
    background-color: var(--light-theme-color);
}

.theme-btn {
    border: 1px solid var(--blue-color);
    color: var(--white-color);
    border: 0;
    padding: 8px 24px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.theme-btn:hover {
    background: var(--blue-color);
    color: var(--white-color);
}

.iti {
    width: 100%;
}

input[type="tel"] {
    outline: none;
    font-size: 14px;
    width: 100%;
}

.modal-backdrop {
    --bs-backdrop-bg: #000208;
    --bs-backdrop-opacity: 0.9;

}

form label {
    font-size: 14px;
}

.form-control {
    padding: 12px 12px;
    font-size: 14px;
    color: var(--input-fields-color);
    background-color: var(--light-theme-color);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}
h2 span {
    color: var(--blue-color);
    font-weight: 700;
}
/************* Header CSS ******************/
.header {
    background-color: var(--white-color);
    width: 100%;
    height: 90px;
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 6%);
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    position: sticky;
    top: 0;
}

.header nav.navbar.navbar-expand-lg {
    padding: 17px 0;
}

.header .navbar-nav .nav-link {
    padding: 14px;
    color: var(--body-font-color);
}

.header .navbar-nav .nav-link {
    color: var(--body-font-color);
}

.header .navbar-nav .nav-link.active,
.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link.show {
    color: var(--blue-color);
}

.header .header-button-wrap {
    display: flex;
    gap: 16px;
    /* margin-left: 10px; */
}

.header-button-wrap a.btn-primary {
    color: var(--white-color);
    background: linear-gradient(135deg, #275DF5 0%, #78B9E2 100%);
    background-size: 100%;
    opacity: 1;
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 8px;
    padding-left: 20px;
    gap: 10px;
    border: 0;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-button-wrap a.btn-primary:hover {
    background-size: 200% 0;
    background: var(--blue-color);
}

.CryptoMenuNavigation .navbar-nav {
    margin-right: 14px;
}

.header button.navbar-toggler {
    font-size: 36px;
    color: var(--blue-color);
    padding: 0;
    border: 0;
    box-shadow: none;
    margin-left: 5px;
}

.header button.navbar-toggler:focus {
    box-shadow: none;
    border: 0;
}

/* user area */
.header-button-wrap .user-area {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative
}

.header-button-wrap .icon-btn {
    background: none;
    border: 0;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer
}

.header-button-wrap .logged-user-btn {
    background-color: var(--light-theme-color);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 36px;
    height: 36px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
}

.header-button-wrap .logged-user {
    border-radius: 50%;
    display: inline-block;
    overflow: hidden
}

.header-button-wrap .logged-user img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.header-button-wrap .username {
    font-size: 14px;
    font-weight: 600
}


/* dropdown */
.header-button-wrap .dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 17px);
    min-width: 200px;
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 2px 2px rgba(17, 24, 39, 0.08);
    padding: 8px 6px;
    display: none;
    z-index: 50;
    border-top: 0;
}

.header-button-wrap .dropdown.show {
    display: block
}

.header-button-wrap .dropdown .item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer
}

.header-button-wrap .dropdown .item:hover {
    background: var(--light-theme-color)
}

.header-button-wrap .dropdown .divider {
    height: 1px;
    background: var(--border-color);
    margin: 6px 6px;
    border-radius: 1px
}

.header-button-wrap .item .icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f6ff;
    font-size: 14px
}

.header-button-wrap .logout {
    color: #b00020;
    font-weight: 600
}
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        gap: 10px;
        margin-right: 20px;
    }

/* small responsive tweaks */
@media (max-width:520px) {
    .username {
        display: none
    }

    .avatar-btn {
        padding: 6px
    }
}

/****************** Hero Section CSS *********************/
section.hero-section {
    position: relative;
    z-index: 8;
    padding: 60px 0;
    background-image: url(../images/Hrhub-pricing-bg-img.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center left;
}

section.hero-section>div {
    position: relative;
    z-index: 12;
}

section.hero-section:before {
    content: "";
    position: absolute;
    z-index: 8;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffed;
    /* padding: 30px; */
}


section.hero-section h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: 600;
}

section.hero-section p {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0;
}

.hero-card-wrap {
    max-width: 1130px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    margin-top: 40px;
    align-items: stretch;
}

.hero-card {
    position: relative;

    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-card img {
    width: 100%;
    height: 522px;
    object-fit: cover;
}

.hero-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
    background: var(--blue-color);
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgb(44 98 244 / 71%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
}

.hero-card:hover .hero-card-content {
    background-color: var(--blue-color);
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
}

.hero-card-content h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--white-color);
}

section.hero-section .hero-card-content p {
    font-size: 16px;
    color: var(--white-color);
}

section.hero-section .hero-card-content .btn-gradient {
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    /* text-transform: uppercase; */
    display: inline-block;
    flex-direction: row;
    gap: 10;
}

section.hero-section .hero-card-content .btn-gradient i {
    margin-left: 5px;
}

section.hero-section .hero-card-content .btn-gradient:hover {
    background-color: var(--yellow-color);
    color: var(--black-color);
}

section.hero-section .hero-card-content .btn-gradient:hover i {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}






/********************** Hiring Partner Logo Section*********************/
.sub-heading-main-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--blue-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    line-height: 1.5;
    text-align: center;
}

.sub-heading-main-title::after {
    content: "";
    height: 6px;
    background-image: url("../images/sub-heading-main-title-border.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    
}

/* For centered version */
.sub-heading-main-title.border-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.partners-section .sub-heading-main-title {
    margin-bottom: 30px;
}




.businesses-partner-logos-wrap {
    background: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.partner-logos {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 30px 30px;
    justify-content: center;
    align-items: center;
}

.partner-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo-wrap img {
    max-height: 45px;
    width: 100%;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

.partner-logo-wrap img:hover {
    transform: scale(1.05);
}




/*****************************/

.businesses-service-section {
    background-color: var(--blue-color);
background: linear-gradient(-45deg, #275DF5 0%, #000c8f );
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
    overflow: hidden;
    position: relative;
}
.businesses-service-section::before{
   position: absolute;
   left: -100px;
   bottom: 0;
   z-index: 9;
   content: "";
   background-image: url(../images/shape2.png);
   background-repeat: no-repeat;
   height: 100%;
   width: 100%;
   opacity: .7;
}
.businesses-service-section::after{
    position: absolute;
    right:-100px;
    bottom: 0;
    content: "";
    background-image: url(../images/shape.png);
    background-repeat: no-repeat;
    height: 100%;
    width: 350px;
    opacity: .7;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.businesses-service-section >div{
position: relative;
z-index: 99;
}


.businesses-service-section .container-fluid {
    padding: 0;
    position: relative;
}

.services-section {
    overflow: hidden;
}

.service-box {
    color: var(--white-color);
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: center;
    padding-right: 80px;
}

/* .corporate-section {
    height: 400px;
} */

.service-box h2 {
    margin-bottom: 0;
}

.corporate-section .service-image {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.corporate-section .service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    border-top-right-radius: 100px;
}

.professional-section {
    height: 500px;
    position: relative;
}

.professional-section .service-image img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    border-bottom-left-radius: 100px;
}

.professional-section .service-box {
    padding-left: 0;
}

.service-box h2 {
    color: var(--white-color);
    font-weight: 500;
}

.service-box p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 300;
}

.service-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    font-size: 300;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

.service-box ul li {
    font-size: 16px;
    font-weight: 300;

}

.service-box ul li::before {
    content: "\F270";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--yellow-color);
    margin-right: 10px;
    font-size: 20px;
}

.service-box .popular-courses-wrap h5 {
    color: var(--white-color);
    margin-bottom: 15px;
    margin-top: 20px;
}

.service-box .popular-courses {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 15px;
}

.service-box .popular-courses span {
    font-size: 14px;
    font-weight: 300;
    padding: 4px 16px;
    background-color: #4E7DFF;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.service-box .btn-yellow {
    background-color: var(--yellow-color);
    color: var(--black-color);
    font-weight: 600;
    padding: 8px 24px;
    border: 1px solid transparent;
}

.service-box .btn-yellow i {
    margin-left: 10px;
}

.btn-yellow:hover {
    background: linear-gradient(90deg, #275DF5 0%, #78B9E2 100%);
    color: var(--white-color);
    border-color: var(--white-color);

}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/******************* Staffing Services ******************/
.staffing-service-section h4 {
    margin-bottom: 5px;
}

.staffing-service-section h2 {
    margin-bottom: 20px;
}

.staffing-service-section h2 span {
    color: var(--blue-color);
    font-weight: 700;
}

.staffing-services-card-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    padding: 20px 0;
}

.staffing-services-card {
    background: #fff;
    padding: 25px;
    border: 1px solid #e7e7e7;
    transition: 0.3s ease;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.staffing-services-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.staffing-services-card .title-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}

.staffing-services-card .icon {
    width: 62px;
    height: 62px;
    background: var(--blue-color);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.staffing-services-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.staffing-services-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/***************************** Testimonials CSS ************************/


.techvibz-testimonials-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.techvibz-testimonials-card-wrap {
    padding: 10px;
}

.techvibz-testimonials-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    border: 1px solid #0000000f;
}

/* Profile Header */
.profile-header {
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.profile-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.user-info {
    flex-grow: 1;
}

.name {
    font-weight: 500;
    color: var(--body-font-color);
    margin: 0;
    font-size: 18px;
    margin-bottom: 5px;
}

.role {
    color: #666;
    margin: 0;
    font-size: 0.9em;
}

/* Tag Styles */
.tag {
    display: inline-block;
    margin-left: 20px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 400;
    background-color: var(--blue-color);
    color: var(--body-font-color);
}



/* Quote Content */
.quote-content {
    position: relative;
    padding-top: 15px;
}

.quote-icon {
    display: block;
    margin-bottom: 20px;
}

.quote-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}



/* Customizing Arrows */
.slick-prev:before,
.slick-next:before {
    color: #ff7f50 !important;
    /* Arrow color */
    font-size: 30px !important;
}

/* Customizing Dots */
.slick-dots li button:before {
    font-size: 10px !important;
    color: #ccc !important;
}

.slick-dots li.slick-active button:before {
    color: #ff7f50 !important;
    /* Active dot color */
}

.slick-dots {
    bottom: -40px !important;
}


button.slick-arrow {
    height: 42px;
    width: 42px;
    border: 0;
    position: absolute;
    top: 50%;
    z-index: 11;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    transform: translate(0%, -70%);
    -webkit-transform: translate(0%, -70%);
    -moz-transform: translate(0%, -70%);
    -ms-transform: translate(0%, -70%);
    -o-transform: translate(0%, -70%);
    background-color: var(--white-color);
}

button.slick-prev.slick-arrow {
    left: -40px;
}

button.slick-next.slick-arrow {
    right: -40px;
}

/********************* Why Choose Us CSS ************************/


/* Main Section Styling */
.choose-us-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Left Side Image Container */
.choose-us-section .image-container {
    height: 100%;
    min-height: 550px;
}

.choose-us-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit:fill;
    vertical-align: middle;
    border-radius: 0 100px 100px 0;
    -webkit-border-radius: 0 100px 100px 0;
    -moz-border-radius: 0 100px 100px 0;
    -ms-border-radius: 0 100px 100px 0;
    -o-border-radius: 0 100px 100px 0;
}

/* Right Side Content */
.choose-us-section .content-area {
    padding: 50px;
}

.choose-us-section h2 span {
    color: var(--blue-color);
    font-weight: 700;
}

.section-title {
    margin-bottom: 30px;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.features-grid  .feature-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features-grid .icon-title-wrap {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 10px;
}

.features-grid .icon-title-wrap .icon-wrap {
    width: 50px;
    height: 50px;
    background: var(--blue-color);
    color: #fff;    
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

/* Individual Feature Item */
.feature-item i {
    font-size: 2rem;
    color: var(--white-color);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

.feature-item p {
    margin-bottom: 0;
}



/*********************** Industries We Serve *******************/

.industries-we-serve-section h2 {
    margin-bottom: 10px;
}

.industries-we-serve {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.industries-we-serve-card-wrap {}

/* Individual Card Styling */
.industries-we-serve-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    height: 100%;
    border: 1px solid #00000010;
}

.industries-we-serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Image Container Styling */
.card-image-container {
    padding: 20px;
    padding-bottom: 0;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.card-image-container img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

/* Card Title Styling */
.card-title {
    font-size: 18px;
    font-weight: 400;
    padding: 20px 15px;
    margin: 0;
    line-height: 1.4;
}



/******************** Industries We Serve *****************/

.case-studies-section {
    background-color: var(--blue-color);
    background-image: linear-gradient(rgb(39 93 245 / 90%), rgb(39 93 245 / 90)), url(../images/case-studies/case-studies.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: white;
    text-align: center;
}

.case-studies-section h2 {
    color: var(--white-color);
}

.case-studies-section .sub-heading-main-title {
    color: var(--white-color);
}

.case-studies-section .sub-heading-main-title::after {
    background-image: url(../images/case-studies/sub-heading-main-title-border.svg);
}

.case-studies-slider {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 50px;
}

.case-study-slide {
    padding: 20px 0;
}

.case-study-card {
    background: var(--white-color);
    color: var(--body-font-color);
    border-radius: 10px;
    padding: 40px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 30px;
}

.case-study-content {
    flex-grow: 1;
}

.case-study-content h3 {
    color: var(--blue-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.meta-info {
    font-size: 1em;
    margin: 0 0 5px 0;
}

.meta-info-sub {
    font-size: 0.9em;
    color: #999;
    font-style: italic;
    margin: 0 0 20px 0;
}

.main-body-text p {
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.05em;
}

.case-study-logo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--light-theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/****************--- Footer CSS *********************--- */
.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-size: 0.95rem;
}

.footer-top {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    /* Column width distribution */
    gap: 40px;
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

/* --- Company Info Column --- */
.footer-logo img {
    width: 200px;
    margin-bottom: 10px;
}

.company-description {
    line-height: 1.7;
}

/* --- Links Columns (Services, Important Links) --- */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 20px;
}

.footer-links ul li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: var(--footer-link-hover);
}

/* --- Get in Touch Column --- */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--blue-color);
    font-size: 1rem;
    margin-right: 10px;
    margin-top: 3px;
    /* Align icon with text */
}

.contact-item p {
    margin: 0;
}

.follow-heading {
    margin-top: 30px;
    margin-bottom: 15px;
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--blue-color);
    margin-right: 15px;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: var(--body-font-color);
}

/* --- Footer Bottom (Copyright) --- */
.footer-bottom {
    background-color: var(--copy-right-bg);
    border-top: 1px solid var(--footer-border);
    padding: 15px 0;
    text-align: center;
    font-size: 0.85rem;
}

.copyright {
    color: var(--body-font-color);
    margin: 0;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.floating-button:hover {
    transform: scale(1.05);
}

.whatsapp-button {
    background-color: #25D366;
    /* WhatsApp Green */
}

.chat-button {
    background-color: #007bff;
    /* General Chat Blue (can be customized) */
}

.floating-button i {
    color: white;
    font-size: 24px;
}

@media (max-width: 1400px) {
    button.slick-next.slick-arrow {
        right: 6px;
    }

    button.slick-prev.slick-arrow {
        left: 6px;
    }



}

@media (max-width: 1200px) {

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
        font-weight: 500;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    section {
        padding: 50px 0;
    }

    section.hero-section {
        padding: 40px 0;
    }

    section.hero-section h1 {
        font-size: 36px;
    }

    section.hero-section p {
        font-size: 20px;
    }

    .hero-card-wrap {
        gap: 15px;
    }

    .partner-logo-wrap img {
        max-height: 35px;
    }

    .partner-logos {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }

    .corporate-section .service-image img {
        border-top-right-radius: 50px;
    }

    .professional-section .service-image img {
        border-bottom-left-radius: 50px;
    }
        .choose-us-section .image-container img {
    object-fit:cover;
}
}

@media (max-width: 992px) {
    .header {
        height: 72px;
    }

    section.hero-section p {
        font-size: 16px;
    }

    section.hero-section p br {
        display: none;
    }
    .header-button-wrap a.btn-primary {
    padding:6px 16px;
    font-size: 16px;
}

    .industries-we-serve {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px 40px;
    }

    .case-study-card {
        flex-direction: column;
        text-align: center;
    }

    .case-study-logo {
        margin-bottom: 20px;
    }

    .case-study-content {
        text-align: center;
    }

    .slick-prev {
        left: 0;
    }

    .slick-next {
        right: 0;
    }

    .case-studies-slider {
        padding: 0 20px;
    }

    .service-box {
        padding: 0 0 30px 0px;
    }

    .professional-section.container-fluid {
        padding-top: 30px;
    }
   

    .choose-us-section .content-area{
        padding: 40px 15px 40px 15px;
        /* Adjust padding for smaller screens */
    }

    .choose-us-section .image-container {
        min-height: 350px;
        border-radius: .5rem;
        padding: 15px;
    }
    .choose-us-section .image-container img {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.businesses-service-section::after{
display: none;
}
}

@media (max-width: 768px) {
    .hero-card img {
        height: 375px;
    }

    .businesses-service-section {
        padding: 50px 0;
    }


    .corporate-section,
    .professional-section {
        height: auto;
    }

    .corporate-section .container .row>div:first-child {
        order: 2;
    }

    .corporate-section .container .row>div:nth-child(2) {
        order: 1;
    }

    .corporate-section .service-image img,
    .professional-section .service-image img {
        position: static;
        width: 100%;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
    }

    .staffing-services-card-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .techvibz-testimonials-card {
        min-height: 350px;
    }

    .case-study-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 0;
    }

    .case-studies-section h2 br,
    .testimonial-section p br {
        display: none;
    }

    .footer-top {
        padding: 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
        gap: 30px;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .contact-item {
        margin-bottom: 10px;
    }

    .footer-heading {
        margin-bottom: 10px;
    }

    .footer-grid {
        gap: 10px;
    }

    .company-info {
        grid-column: auto;
    }

    .info-grid {

        grid-template-columns: repeat(2, 1fr);
    }
       
}

@media (max-width: 576px) {

    .header-button-wrap a.btn-primary {
        padding: 6px 12px;
        gap: 5px;
        font-size: 14px;
        font-weight: 400;

    }

    section.hero-section h1 {
        font-size: 24px;
    }

    .hero-card img {
        height: 330px;
    }

    .hero-card-wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    .hero-card-content {
        gap: 5px;
    }

    .industries-we-serve {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .partner-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .partner-logo-wrap img {
        max-height: 35px;
    }

    .staffing-services-card-wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    .staffing-services-card h4 {
        font-size: 16px;
    }

    .staffing-services-card {
        padding: 15px;
    }

    .staffing-services-card h4 br {
        display: none;
    }

    .staffing-services-card .title-wrap {
        flex-wrap: wrap;
    }

    .staffing-services-card .icon {
        margin-bottom: 0;
    }
     .choose-us-section .features-grid {
          grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }    
    
}

@media (max-width: 479px) {
    .navbar-brand img {
        width: 100px;
    }
    .header .header-button-wrap {
    gap: 10px;
    margin-left: 0;
}
}

@media (max-width: 375px) {
    .navbar-brand img {
        width: 80px;
    }

    .header-button-wrap a.btn-primary {
        padding: 6px 12px;
        gap: 5px;
        font-size: 12px;
    }

}