Files
GNX-WEB/gnx-react/public/styles/sections/_all-sections.scss
Iliyan Angelov f962401565 update
2025-10-10 02:01:46 +03:00

2627 lines
50 KiB
SCSS

/* ====
--------- (5.0) all sections styles start ---------
==== */
@use "../abstracts/mixins" as *;
// 5.01 overview section styles start
.tp-overview {
.tp-overview-single {
display: flex;
align-items: center;
gap: 30px;
padding: 60px 0px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
&:nth-of-type(1) {
padding-top: 0px;
}
.thumb {
min-width: 124px;
}
.wrapper {
flex-grow: 1;
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
}
.content {
flex-grow: 1;
}
.cta {
a {
font-size: 40px;
color: var(--tertiary-color);
&:hover {
color: var(--primary-color);
}
}
}
&:hover {
h4 {
a {
color: var(--primary-color);
}
}
.cta {
a {
color: var(--primary-color);
}
}
}
}
}
// 5.02 story section styles start
.tp-story {
.tp-story__single {
padding: 60px 0px;
border-bottom: 1px solid #ffffff40;
&:nth-of-type(1) {
padding-top: 80px;
}
&:nth-last-of-type(1) {
padding-bottom: 0px;
border-bottom: 0px;
}
a {
color: white;
&:hover {
color: var(--enterprise-blue);
}
}
p {
&:nth-last-of-type(1) {
color: #ffffff80;
text-transform: none;
}
}
}
.active {
a {
color: var(--enterprise-blue);
}
}
.tp-story-thumb {
display: none;
}
.thumb-active {
display: block;
animation: zoom 0.5s ease;
}
@keyframes zoom {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
}
// 5.04 latest post section styles start
.tp-latest-post {
overflow-x: clip;
.tp-lp-slider-wrapper {
min-width: 100vw;
}
.tp-lp-slider {
.swiper-slide {
max-width: 416px !important;
}
}
.tp-lp-slider__single {
width: 100%;
padding: 20px;
background-color: white;
box-shadow: 0px 4px 14px 0px rgba(163, 163, 163, 0.25);
.thumb {
img {
transition: var(--transition);
}
}
&:hover {
.thumb {
img {
transform: scale(1.2) rotate(-6deg);
}
}
a {
color: var(--primary-color);
}
}
}
.tp-lp-post__meta {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
span {
width: 1px;
height: 20px;
background-color: var(--tertiary-color);
}
}
}
// 5.05 sponsor section styles start
.sponsor {
img {
transition: var(--transition);
}
.swiper-slide-active {
img {
filter: brightness(0) saturate(100%) invert(12%) sepia(96%)
saturate(6152%) hue-rotate(233deg) brightness(100%) contrast(113%);
}
}
}
// 5.06 case study section styles start
.tp-study {
position: relative;
overflow-x: clip;
.tp-study-arrows {
gap: 30px;
button {
position: relative;
font-size: 30px;
z-index: 1;
font-weight: 200;
span {
font-weight: 200;
}
&::before {
content: "";
position: absolute;
width: 34px;
height: 34px;
border-radius: 50%;
background-color: var(--white);
z-index: -1;
top: 50%;
left: 8px;
transform: translateY(-50%);
transition: var(--transition);
}
&:hover {
color: var(--secondary-color);
&::before {
background-color: var(--enterprise-blue);
}
}
}
.prev-study {
&::before {
left: unset;
right: 8px;
}
}
}
.slick-list {
overflow: visible !important;
}
.tp-study-slider-wrapper {
min-width: 100vw;
margin: 100px 0px 40px;
}
.tp-study-slider {
overflow-x: clip;
overflow-y: unset !important;
.swiper-slide {
max-width: 306px;
&:hover {
z-index: 2;
}
}
}
.tp-study-slider__single {
width: 100%;
transition: var(--transition);
position: relative;
z-index: 1;
overflow: hidden;
&::before {
content: "";
position: absolute;
inset: 0px;
transition: var(--transition);
background: linear-gradient(
180deg,
rgba(0, 0, 0, 0) -2.65%,
rgba(0, 0, 0, 0.55) 45.47%,
#000 100%
);
transform: translateY(100%);
}
&:hover {
transform: scale(1.2);
z-index: 2;
&::before {
transform: scale(1);
}
.content {
transform: translateY(0px);
}
}
}
.content {
padding: 40px 20px;
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
transform: translateY(100%);
transition: var(--transition);
transition-delay: 0.2s;
a {
color: white;
}
}
.counter__single {
border-right: 1px solid #00000030;
padding: 0px 20px;
h2 {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
}
}
}
// 5.07 gallery section styles start
.tp-gallery {
.tp-gallery-inner {
position: relative;
z-index: 1;
border-bottom: 1px solid #ffffff40;
overflow: hidden;
&::after {
content: "";
position: absolute;
bottom: 0px;
left: 10%;
width: 10vw;
height: 10vw;
min-width: 80px;
min-height: 80px;
border-radius: 50%;
background-image: linear-gradient(
to bottom,
#2563eb60 50%,
transparent 50%
);
transform: translateY(50%);
z-index: -1;
animation: moveInfinite 20s alternate infinite;
}
}
.parallax-image-wrap {
min-width: 100vw;
}
.tp-gallery-slider-wrapper {
min-width: 100vw;
}
.tp-gallery-slider {
.swiper-slide {
width: 100%;
max-width: 306px;
cursor: pointer;
}
}
}
// 5.08 service section styles start
.tp-service {
position: relative;
z-index: 1;
overflow: hidden;
.service-hr {
position: relative;
z-index: 1;
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
overflow: hidden;
&::after {
content: "";
position: absolute;
bottom: 0px;
left: 10%;
width: 10vw;
height: 10vw;
min-width: 80px;
min-height: 80px;
border-radius: 50%;
background-image: linear-gradient(
to bottom,
#2563eb60 50%,
transparent 50%
);
transform: translateY(50%);
z-index: -1;
animation: moveInfinite 20s alternate infinite;
}
}
.tp-service__thumb {
.parallax-image-wrap {
width: 100%;
}
}
}
// 5.09 transform section styles start
.transform {
position: relative;
overflow-x: clip;
.anime {
position: absolute;
left: 0px;
display: flex;
align-items: center;
gap: 30px;
z-index: 1;
span {
width: 8vw;
height: 8vw;
border-radius: 50%;
background-image: linear-gradient(
to right,
#2563eb50 50%,
transparent 50%
);
margin-left: -90px;
display: inline-block;
&:nth-of-type(1) {
margin-left: 20px;
background-image: linear-gradient(
to right,
#2563eb20 50%,
transparent 50%
);
}
&:nth-of-type(2) {
background-image: linear-gradient(
to right,
#2563eb30 50%,
transparent 50%
);
}
&:nth-of-type(3) {
background-image: linear-gradient(
to right,
#2563eb40 50%,
transparent 50%
);
}
&:nth-of-type(4) {
background-image: linear-gradient(
to right,
#2563eb50 50%,
transparent 50%
);
}
&:nth-of-type(6) {
background-image: linear-gradient(
to right,
#2563eb80 50%,
transparent 50%
);
}
}
}
.transform-inner {
border-top: 1px solid rgba(0, 0, 0, 0.2);
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.transform-slider-wrapper {
min-width: 100vw;
}
.transform-slider {
margin-left: -40px;
.swiper-slide {
max-width: 326px !important;
}
}
.transform-single {
padding: 0px 40px;
border-right: 1px solid #2563eb;
width: 100%;
h5 {
position: relative;
display: inline-block;
z-index: 1;
&::after {
content: "";
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
height: calc(100% - 20px);
background-color: var(--enterprise-blue);
z-index: -1;
}
}
}
.team-single {
h4 {
position: relative;
display: inline-block;
z-index: 1;
&::after {
content: "";
position: absolute;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
height: calc(100% - 20px);
background-color: var(--enterprise-blue);
z-index: -1;
}
}
}
.tp-team-arrow {
display: flex;
align-items: center;
gap: 12px;
button,
span {
color: var(--tertiary-color);
}
.divider {
width: 1px;
height: 24px;
background-color: var(--tertiary-color);
}
button {
font-size: 30px;
&:hover {
span {
color: var(--primary-color);
}
}
}
}
}
// 5.10 process section styles start
.tp-process {
.process__single {
margin-bottom: 80px;
&:nth-last-of-type(1) {
margin-bottom: 0px;
}
}
.op-text {
position: relative;
z-index: 1;
&::before {
content: "";
position: absolute;
width: 80px;
height: 80px;
background-color: var(--primary-color);
border-radius: 50%;
z-index: -1;
left: 50%;
top: -10px;
transform: translateX(-50%);
}
&::after {
content: "";
position: absolute;
width: 40px;
height: 40px;
border-radius: 50%;
border: 12px solid black;
background-color: var(--enterprise-blue);
left: -100px;
top: 50%;
transform: translateY(-50%);
}
}
}
// 5.11 case study main section styles start
.c-study {
.c-study-banner {
position: relative;
z-index: 1;
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
overflow: hidden;
&::after {
content: "";
position: absolute;
bottom: 0px;
left: 10%;
width: 10vw;
height: 10vw;
min-width: 80px;
min-height: 80px;
border-radius: 50%;
background-image: linear-gradient(
to bottom,
#2563eb60 50%,
transparent 50%
);
transform: translateY(50%);
z-index: -1;
animation: moveInfinite 20s alternate infinite;
}
}
.c-study-btns {
display: flex;
align-items: center;
gap: 40px;
flex-wrap: wrap;
span {
width: 2px;
height: 30px;
background-color: #44444480;
}
button {
font-size: 32px;
font-weight: 600;
line-height: 1;
font-family: var(--mont);
}
.study-btn-active {
color: var(--primary-color);
}
}
.thumb {
border: 10px solid #fff;
background: #ebebeb;
box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.06);
}
.c-study-single {
a {
color: var(--primary-color);
}
h4 {
a {
color: var(--secondary-color);
&:hover {
color: var(--primary-color);
}
}
}
}
}
.c-tab-single {
display: none;
}
.active-tab {
display: block;
animation: fadeInc 1s ease-in;
}
@keyframes fadeInc {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
// 5.12 open position section styles start
.op-position {
.op-position-single {
flex-wrap: wrap;
padding: 40px 0px;
border-bottom: 1px solid rgba(0, 0, 0, 0.17);
&:nth-of-type(1) {
padding-top: 0px;
}
.vertical-column-gap {
row-gap: 16px;
}
h4,
h5 {
color: var(--tertiary-color);
display: inline-block;
}
.cta {
a {
font-size: 40px;
}
}
&:hover {
a {
color: var(--secondary-color);
}
}
}
}
// 5.13 thrive section styles start
.thrive {
.thumb {
@include box(200px);
background-color: var(--enterprise-blue);
border-radius: 0px;
}
p {
max-width: 500px;
}
}
// 5.14 masonry gallery styles start
.mason {
img {
width: 100%;
max-height: 470px;
min-height: 470px;
}
.botter {
min-height: 420px !important;
}
.toper {
margin-top: -50px;
}
}
// 5.15 job details styles start
.job-single {
.j-d-sidebar {
border: 1px solid rgba(0, 0, 0, 0.14);
background: #fff;
box-shadow: 0px 4px 31px 0px rgba(118, 118, 118, 0.09);
padding: 40px;
.cta {
a {
width: 100%;
background-color: var(--secondary-color);
color: white;
transition: all 0.6s ease-in-out;
&::before {
transition: all 0.6s ease-in-out;
}
}
}
}
}
// 5.16 blog main styles start
.blog-m {
.post-filter__wrapper {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
button {
padding: 10px 24px;
font-weight: 500;
background-color: #ebebeb;
color: black;
border-radius: 50px;
&:hover {
background-color: black;
color: white;
}
}
.active {
background-color: black;
color: white;
}
}
.tp-lp-slider__single {
padding: 20px;
background: #fff;
box-shadow: 0px 4px 14px 0px rgba(163, 163, 163, 0.25);
}
.tp-lp-post__meta {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
span {
width: 1px;
height: 20px;
background-color: var(--tertiary-color);
}
}
.masonry-grid {
margin-bottom: -40px;
}
.grid-item-main {
margin-bottom: 40px;
}
}
// 5.17 blog details styles start
.tp-post-details {
.tppr {
flex-wrap: wrap;
gap: 24px;
row-gap: 30px;
}
.tp-post-tags-container {
gap: 16px;
flex-wrap: wrap;
}
.tp-post-meta,
.tp-post-tags {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
span {
width: 1px;
height: 20px;
background-color: var(--tertiary-color);
}
}
.bd-social {
padding: 30px 0px;
border-top: 1px solid #c1c1c1;
border-bottom: 1px solid #c1c1c1;
justify-content: flex-start;
display: flex;
align-items: center;
gap: 30px;
flex-wrap: wrap;
a {
width: auto;
background-color: transparent;
color: var(--tertiary-color);
padding: 0px;
min-width: auto;
font-size: 18px;
&:hover {
color: var(--secondary-color);
}
}
}
}
// 5.18 contact section enterprise styles start
.tp-contact {
background: #f8fafc;
position: relative;
.contact-info-card {
background: #fafbfc;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 16px 12px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
height: 100%;
&:hover {
transform: translateY(-2px);
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
border-color: var(--primary-color);
}
.contact-info-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--primary-color), var(--enterprise-blue));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 12px;
transition: all 0.3s ease;
i {
font-size: 16px;
color: white;
}
}
h4 {
font-size: 14px;
font-weight: 600;
margin-bottom: 4px;
color: #334155;
}
p {
color: #64748b;
margin-bottom: 8px;
font-size: 12px;
}
a {
color: var(--primary-color);
font-weight: 600;
text-decoration: none;
font-size: 12px;
display: block;
margin-bottom: 4px;
&:hover {
color: var(--enterprise-blue);
}
}
.contact-hours {
color: #94a3b8;
font-size: 11px;
font-style: italic;
}
address {
font-style: normal;
color: #475569;
line-height: 1.3;
margin-bottom: 6px;
font-size: 12px;
}
}
.contact-section-header {
margin-bottom: 30px;
.contact-subtitle {
font-size: 16px;
color: #64748b;
line-height: 1.5;
margin-top: 12px;
}
}
.enterprise-form {
background: #fafbfc;
border: 1px solid #e2e8f0;
border-radius: 12px;
padding: 30px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
.form-section {
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 1px solid #f1f5f9;
&:last-of-type {
border-bottom: none;
margin-bottom: 0;
}
.form-section-title {
display: flex;
align-items: center;
gap: 10px;
font-size: 18px;
font-weight: 600;
color: var(--secondary-color);
margin-bottom: 20px;
padding-bottom: 8px;
border-bottom: 2px solid var(--primary-color);
i {
color: var(--primary-color);
font-size: 16px;
}
}
}
.input-single {
margin-bottom: 20px;
label {
display: block;
font-weight: 600;
color: var(--secondary-color);
margin-bottom: 6px;
font-size: 13px;
}
input,
select,
textarea {
width: 100%;
padding: 12px 16px;
border: 1px solid #e2e8f0;
border-radius: 6px;
font-size: 14px;
transition: all 0.3s ease;
background: #ffffff;
&:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}
&::placeholder {
color: #9ca3af;
}
}
textarea {
resize: vertical;
min-height: 80px;
}
select {
cursor: pointer;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
background-position: right 10px center;
background-repeat: no-repeat;
background-size: 14px;
padding-right: 32px;
appearance: none;
}
}
.checkbox-group {
display: flex;
flex-direction: column;
gap: 12px;
.checkbox-single {
display: flex;
align-items: flex-start;
gap: 10px;
input[type="checkbox"] {
width: auto;
margin: 0;
margin-top: 2px;
accent-color: var(--primary-color);
}
label {
margin: 0;
font-size: 13px;
line-height: 1.4;
color: #374151;
a {
color: var(--primary-color);
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
}
}
.form-actions {
text-align: center;
.enterprise-btn {
background: var(--primary-color) !important;
border: 2px solid var(--primary-color) !important;
padding: 14px 32px;
border-radius: 8px;
color: white !important;
font-weight: 600;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
&:hover {
background: var(--enterprise-blue) !important;
border-color: var(--enterprise-blue) !important;
color: white !important;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
span {
color: white !important;
}
i {
transition: transform 0.3s ease;
font-size: 12px;
color: white !important;
}
&:hover span {
color: white !important;
}
&:hover i {
transform: translateX(2px);
color: white !important;
}
}
.form-disclaimer {
margin-top: 16px;
color: #6b7280;
font-size: 12px;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
i {
color: #10b981;
font-size: 12px;
}
}
}
}
.tp-contact__sidebar {
.contact-sidebar-card {
background: #fafbfc;
border: 1px solid #e2e8f0;
border-radius: 12px;
padding: 24px;
margin-bottom: 20px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
h3 {
font-size: 18px;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 20px;
position: relative;
&::after {
content: '';
position: absolute;
bottom: -6px;
left: 0;
width: 40px;
height: 2px;
background: linear-gradient(135deg, var(--primary-color), var(--enterprise-blue));
border-radius: 2px;
}
}
.sidebar-features {
.feature-item {
display: flex;
gap: 12px;
margin-bottom: 16px;
&:last-child {
margin-bottom: 0;
}
.feature-icon {
width: 36px;
height: 36px;
background: linear-gradient(135deg, var(--primary-color), var(--enterprise-blue));
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
i {
color: white;
font-size: 16px;
}
}
.feature-content {
flex: 1;
h4 {
font-size: 14px;
font-weight: 600;
color: var(--secondary-color);
margin-bottom: 6px;
}
p {
font-size: 12px;
color: #6b7280;
line-height: 1.4;
margin: 0;
}
}
}
}
.next-steps {
.step-item {
display: flex;
gap: 12px;
margin-bottom: 16px;
&:last-child {
margin-bottom: 0;
}
.step-number {
width: 24px;
height: 24px;
background: var(--primary-color);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 12px;
flex-shrink: 0;
}
.step-content {
flex: 1;
h4 {
font-size: 14px;
font-weight: 600;
color: var(--secondary-color);
margin-bottom: 6px;
}
p {
font-size: 12px;
color: #6b7280;
line-height: 1.4;
margin: 0;
}
}
}
}
}
.company-map {
.map-container {
margin-bottom: 16px;
iframe {
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
}
.map-info {
.location-details {
display: flex;
gap: 12px;
margin-bottom: 12px;
.location-icon {
width: 32px;
height: 32px;
background: linear-gradient(135deg, var(--primary-color), var(--enterprise-blue));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
i {
color: white;
font-size: 14px;
}
}
.location-text {
flex: 1;
h4 {
font-size: 14px;
font-weight: 600;
color: var(--secondary-color);
margin-bottom: 4px;
}
p {
font-size: 12px;
color: #6b7280;
line-height: 1.4;
margin: 0;
}
}
}
.location-actions {
.map-link {
display: inline-flex;
align-items: center;
gap: 6px;
background: var(--primary-color);
color: white;
padding: 8px 16px;
border-radius: 6px;
text-decoration: none;
font-size: 12px;
font-weight: 500;
transition: all 0.3s ease;
&:hover {
background: var(--enterprise-blue);
transform: translateY(-1px);
}
i {
font-size: 11px;
}
}
}
}
}
}
}
// Contact Banner Styles
.tp-contact-banner {
background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
position: relative;
overflow: hidden;
padding: 120px 0;
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
z-index: 1;
}
.contact-banner-bg {
position: relative;
z-index: 2;
}
.tp-contact-banner__content {
.tp-contact-banner__badge {
.badge {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
color: white;
padding: 12px 24px;
border-radius: 50px;
font-size: 14px;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 8px;
backdrop-filter: blur(10px);
i {
color: var(--primary-color);
}
}
}
.tp-contact-banner__title {
font-size: 48px;
font-weight: 700;
color: white;
line-height: 1.2;
.gradient-text {
background: linear-gradient(135deg, var(--primary-color), var(--enterprise-blue));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
}
.tp-contact-banner__text {
font-size: 20px;
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
}
.tp-contact-banner__features {
.feature-item {
text-align: center;
padding: 20px;
.feature-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary-color), var(--enterprise-blue));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
transition: all 0.3s ease;
&:hover {
transform: scale(1.1);
}
i {
color: white;
font-size: 32px;
}
}
h4 {
font-size: 20px;
font-weight: 600;
color: white;
margin-bottom: 12px;
}
p {
font-size: 14px;
color: rgba(255, 255, 255, 0.7);
line-height: 1.5;
}
}
}
.tp-contact-banner__stats {
.stat-item {
text-align: center;
.stat-number {
font-size: 36px;
font-weight: 700;
color: white;
margin-bottom: 8px;
background: linear-gradient(135deg, var(--primary-color), var(--enterprise-blue));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.stat-label {
font-size: 14px;
color: rgba(255, 255, 255, 0.7);
font-weight: 500;
}
}
}
}
}
// 5.19 enterprise capabilities section styles start
.enterprise-capabilities {
position: relative;
z-index: 1;
overflow: hidden;
background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
z-index: -1;
}
.stat-item {
padding: 15px;
text-align: center;
transition: var(--transition);
&:hover {
transform: translateY(-3px);
}
h3 {
font-size: 32px;
font-weight: 700;
line-height: 1;
margin-bottom: 6px;
background: linear-gradient(135deg, var(--primary-color), var(--enterprise-blue));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
p {
font-size: 14px;
font-weight: 500;
color: var(--tertiary-color);
margin: 0;
}
}
.capability-card {
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 25px 20px;
text-align: center;
transition: var(--transition);
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
height: 100%;
&:hover {
transform: translateY(-4px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
border-color: var(--primary-color);
}
.capability-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-color), var(--enterprise-blue));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 16px;
transition: var(--transition);
i {
font-size: 20px;
color: white;
}
}
&:hover .capability-icon {
transform: scale(1.05);
}
h4 {
font-size: 16px;
font-weight: 600;
color: var(--secondary-color);
margin-bottom: 12px;
line-height: 1.3;
}
p {
color: var(--tertiary-color);
line-height: 1.5;
margin: 0;
font-size: 14px;
}
}
}
// 5.20 enterprise values section styles start
.enterprise-values {
position: relative;
z-index: 1;
overflow: hidden;
background: #ffffff;
&::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f1f5f9' fill-opacity='0.5'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E") repeat;
z-index: -1;
opacity: 0.3;
}
.value-card {
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 25px 20px;
text-align: center;
transition: var(--transition);
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
height: 100%;
&:hover {
transform: translateY(-4px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
border-color: var(--primary-color);
}
.value-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-color), var(--enterprise-blue));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 16px;
transition: var(--transition);
i {
font-size: 20px;
color: white;
}
}
&:hover .value-icon {
transform: scale(1.05);
}
h4 {
font-size: 16px;
font-weight: 600;
color: var(--secondary-color);
margin-bottom: 12px;
line-height: 1.3;
}
p {
color: var(--tertiary-color);
line-height: 1.5;
margin: 0;
font-size: 14px;
}
}
.certifications-section {
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 12px;
padding: 30px 25px;
position: relative;
overflow: hidden;
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(135deg, var(--primary-color), var(--enterprise-blue));
}
h3 {
font-size: 20px;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 12px;
text-align: center;
}
p {
color: var(--tertiary-color);
text-align: center;
margin-bottom: 25px;
font-size: 14px;
}
.certification-item {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
background: white;
border: 1px solid #e2e8f0;
border-radius: 6px;
transition: var(--transition);
margin-bottom: 12px;
&:hover {
transform: translateX(4px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
border-color: var(--primary-color);
}
i {
font-size: 16px;
color: var(--primary-color);
flex-shrink: 0;
}
span {
font-size: 13px;
font-weight: 500;
color: var(--secondary-color);
line-height: 1.4;
}
}
}
// Form Status Messages
.form-status {
padding: 16px 20px;
border-radius: 8px;
border: 1px solid;
margin-bottom: 20px;
animation: slideIn 0.3s ease-out;
&.success {
background: #f0f9ff;
border-color: #10b981;
color: #065f46;
.status-content i {
color: #10b981;
}
}
&.error {
background: #fef2f2;
border-color: #ef4444;
color: #991b1b;
.status-content i {
color: #ef4444;
}
}
.status-content {
display: flex;
align-items: center;
gap: 12px;
font-weight: 500;
font-size: 14px;
i {
font-size: 18px;
flex-shrink: 0;
}
}
}
// Disabled button styles
.enterprise-btn:disabled {
opacity: 0.6;
cursor: not-allowed;
pointer-events: none;
}
// Spinner animation
.fa-spinner {
animation: spin 1s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
}
// 5.XX service detail components styles start
.service-features {
.tp-service-single {
padding: 40px 30px;
border-radius: 12px;
background: var(--white);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
height: 100%;
&:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.icon-wrapper {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
i {
font-size: 32px;
color: var(--white);
}
}
}
}
.service-pricing {
.pricing-card {
border: 1px solid rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
&:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}
}
.price-display {
.price-amount {
font-size: 48px;
line-height: 1;
display: block;
}
.price-period {
font-size: 16px;
text-transform: none;
letter-spacing: 1px;
}
}
.feature-list {
list-style: none;
padding: 0;
.feature-item {
padding: 12px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
&:last-child {
border-bottom: none;
}
}
}
}
.service-details {
.service-stats {
.stat-item {
padding: 20px;
background: var(--white);
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.stat-number {
font-size: 24px;
line-height: 1;
}
.stat-label {
font-size: 14px;
text-transform: none;
letter-spacing: 1px;
}
}
.service-meta {
.meta-item {
display: flex;
align-items: center;
font-size: 16px;
i {
width: 20px;
text-align: center;
}
}
}
.service-image-wrapper {
position: relative;
overflow: hidden;
border-radius: 12px;
img {
transition: transform 0.3s ease;
}
&:hover img {
transform: scale(1.05);
}
}
.service-technologies {
.tech-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
.tech-tag {
background: var(--primary-color);
color: var(--white);
padding: 6px 12px;
border-radius: 20px;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
&:hover {
background: var(--secondary-color);
transform: translateY(-2px);
}
}
}
}
.service-deliverables {
background: var(--light);
padding: 30px;
border-radius: 12px;
border-left: 4px solid var(--primary-color);
}
}
.service-deliverables-section {
.deliverable-card {
padding: 40px 30px;
border-radius: 12px;
background: var(--white);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
height: 100%;
&:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.icon-wrapper {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, var(--success-color, #28a745), var(--primary-color));
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
i {
font-size: 32px;
color: var(--white);
}
}
}
.timeline-card {
border: 1px solid rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
&:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}
}
.timeline-features {
.timeline-feature {
text-align: center;
i {
font-size: 24px;
display: block;
}
p {
font-size: 14px;
margin: 0;
}
}
}
}
.transform-benefits {
.benefit-item {
padding: 30px 20px;
border-radius: 12px;
background: var(--white);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
height: 100%;
&:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.benefit-icon {
i {
font-size: 48px;
}
}
}
}
.expertise-content {
.expertise-item {
padding: 20px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
&:last-child {
border-bottom: none;
}
}
}
// 5.XX service detail components styles end
// 5.YY Enhanced Service Page Design Styles
// Consistent container alignment for all service sections
.service-banner,
.service-details,
.service-features,
.service-deliverables-section,
.service-pricing,
.transform,
.tp-process {
.container {
max-width: 1200px;
margin: 0 auto;
padding-left: 15px;
padding-right: 15px;
}
.row.justify-content-center {
margin: 0 auto;
}
.col-xl-10 {
max-width: 100%;
@media (min-width: 1200px) {
max-width: 83.333333%;
}
}
// Consistent row spacing
.row {
margin-left: -15px;
margin-right: -15px;
&.g-3 {
margin-left: -12px;
margin-right: -12px;
> * {
padding-left: 12px;
padding-right: 12px;
}
}
&.g-4 {
margin-left: -16px;
margin-right: -16px;
> * {
padding-left: 16px;
padding-right: 16px;
}
}
}
// Consistent column padding
[class*="col-"] {
padding-left: 15px;
padding-right: 15px;
}
}
.service-banner {
.service-badge {
.badge-text {
background: var(--primary-color);
color: var(--white);
padding: 8px 20px;
border-radius: 25px;
font-size: 14px;
font-weight: 600;
text-transform: none;
letter-spacing: 1px;
}
}
.service-highlights {
.highlight-item {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px 15px;
background: rgba(255, 255, 255, 0.1);
border-radius: 12px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
&:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateY(-5px);
}
i {
font-size: 24px;
margin-bottom: 10px;
}
span {
font-size: 14px;
text-align: center;
}
}
}
.banner-cta {
.btn {
min-width: 180px;
padding: 15px 30px;
font-weight: 600;
border-radius: 8px;
transition: all 0.3s ease;
&:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
}
}
}
.section-header {
.section-tag {
display: inline-block;
background: var(--primary-color);
color: var(--white);
padding: 8px 20px;
border-radius: 25px;
font-size: 14px;
font-weight: 600;
text-transform: none;
letter-spacing: 1px;
margin-bottom: 20px;
}
h2 {
font-size: 48px;
line-height: 1.2;
@media (max-width: 768px) {
font-size: 36px;
}
}
p {
font-size: 18px;
line-height: 1.6;
}
}
.max-width-600 {
max-width: 600px;
}
.max-width-800 {
max-width: 800px;
}
// Enhanced feature cards
.service-features {
.tp-service-single {
padding: 50px 30px;
border-radius: 16px;
background: var(--white);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.4s ease;
height: 100%;
border: 1px solid rgba(0, 0, 0, 0.05);
&:hover {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
border-color: var(--primary-color);
}
.icon-wrapper {
width: 90px;
height: 90px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
position: relative;
&::before {
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
opacity: 0.2;
z-index: -1;
}
i {
font-size: 36px;
color: var(--white);
}
}
h4 {
font-size: 22px;
margin-bottom: 20px;
color: var(--secondary-color);
}
p {
font-size: 16px;
line-height: 1.6;
color: var(--text-muted);
}
}
}
// Enhanced deliverables section
.service-deliverables-section {
.deliverable-card {
padding: 50px 30px;
border-radius: 16px;
background: var(--white);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.4s ease;
height: 100%;
border: 1px solid rgba(0, 0, 0, 0.05);
&:hover {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
border-color: var(--success-color, #28a745);
}
.icon-wrapper {
width: 90px;
height: 90px;
border-radius: 50%;
background: linear-gradient(135deg, var(--success-color, #28a745), var(--primary-color));
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
position: relative;
&::before {
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
background: linear-gradient(135deg, var(--success-color, #28a745), var(--primary-color));
border-radius: 50%;
opacity: 0.2;
z-index: -1;
}
i {
font-size: 36px;
color: var(--white);
}
}
h5 {
font-size: 20px;
margin-bottom: 20px;
color: var(--secondary-color);
}
}
.timeline-card {
border: 1px solid rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
&:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}
}
}
// Enhanced pricing section
.service-pricing {
.pricing-card {
border: 1px solid rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}
&:hover {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}
}
.price-display {
.price-amount {
font-size: 56px;
line-height: 1;
display: block;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.price-period {
font-size: 16px;
text-transform: none;
letter-spacing: 1px;
color: var(--text-muted);
}
}
.feature-list {
list-style: none;
padding: 0;
.feature-item {
padding: 15px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
&:last-child {
border-bottom: none;
}
i {
font-size: 18px;
margin-right: 15px;
color: var(--success-color, #28a745);
}
}
}
}
// Enhanced process section
.tp-process {
.section-header {
.section-tag {
background: rgba(255, 255, 255, 0.2);
color: var(--white);
border: 1px solid rgba(255, 255, 255, 0.3);
}
}
.process__single {
padding: 30px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
&:last-child {
border-bottom: none;
}
.op-text {
font-size: 48px;
font-weight: 700;
color: var(--primary-color);
display: block;
margin-bottom: 20px;
}
h5 {
font-size: 24px;
margin-bottom: 15px;
color: var(--white);
}
p {
font-size: 16px;
line-height: 1.6;
color: rgba(255, 255, 255, 0.8);
}
}
}
// Enhanced transform section
.transform {
.section-header {
.section-tag {
background: var(--primary-color);
color: var(--white);
}
}
.benefit-item {
padding: 40px 25px;
border-radius: 16px;
background: var(--white);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.4s ease;
height: 100%;
border: 1px solid rgba(0, 0, 0, 0.05);
&:hover {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
border-color: var(--primary-color);
}
.benefit-icon {
i {
font-size: 56px;
color: var(--primary-color);
}
}
h5 {
font-size: 22px;
margin-bottom: 20px;
color: var(--secondary-color);
}
p {
font-size: 16px;
line-height: 1.6;
color: var(--text-muted);
}
}
.expertise-content {
.expertise-item {
padding: 25px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
&:last-child {
border-bottom: none;
}
h5 {
font-size: 22px;
margin-bottom: 15px;
color: var(--secondary-color);
}
p {
font-size: 16px;
line-height: 1.6;
color: var(--text-muted);
}
}
}
}
// Consistent spacing and alignment
.service-details,
.service-features,
.service-deliverables-section,
.service-pricing,
.transform,
.tp-process {
.row {
margin-left: -15px;
margin-right: -15px;
}
.col-12,
.col-md-6,
.col-lg-4,
.col-lg-6,
.col-lg-8,
.col-xl-10 {
padding-left: 15px;
padding-right: 15px;
}
}
// Ensure consistent vertical spacing
.service-details,
.service-features,
.service-deliverables-section,
.service-pricing,
.transform,
.tp-process {
.section-header {
margin-bottom: 80px;
@media (max-width: 768px) {
margin-bottom: 60px;
}
}
.row {
margin-bottom: 0;
}
.mb-40 {
margin-bottom: 40px;
@media (max-width: 768px) {
margin-bottom: 30px;
}
}
.mb-60 {
margin-bottom: 60px;
@media (max-width: 768px) {
margin-bottom: 40px;
}
}
.mb-80 {
margin-bottom: 80px;
@media (max-width: 768px) {
margin-bottom: 60px;
}
}
}
// Responsive improvements
@media (max-width: 768px) {
.section-header {
h2 {
font-size: 32px;
}
p {
font-size: 16px;
}
}
.service-banner {
.service-highlights {
.highlight-item {
margin-bottom: 20px;
}
}
.banner-cta {
.btn {
display: block;
width: 100%;
margin-bottom: 15px;
}
}
}
.service-features,
.service-deliverables-section {
.tp-service-single,
.deliverable-card {
padding: 30px 20px;
}
}
// Mobile alignment fixes
.service-details,
.service-features,
.service-deliverables-section,
.service-pricing,
.transform,
.tp-process {
.col-xl-10 {
padding-left: 15px;
padding-right: 15px;
}
.container {
padding-left: 20px;
padding-right: 20px;
}
}
// Mobile grid improvements
.row.g-3,
.row.g-4 {
margin-left: -10px;
margin-right: -10px;
> * {
padding-left: 10px;
padding-right: 10px;
}
}
}
@media (max-width: 576px) {
.service-banner,
.service-details,
.service-features,
.service-deliverables-section,
.service-pricing,
.transform,
.tp-process {
.container {
padding-left: 15px;
padding-right: 15px;
}
.row {
margin-left: -10px;
margin-right: -10px;
> * {
padding-left: 10px;
padding-right: 10px;
}
}
}
.section-header {
h2 {
font-size: 28px;
}
p {
font-size: 14px;
}
}
}
// 5.YY Enhanced Service Page Design Styles end
/* ====
--------- (5.0) all sections styles end ---------
==== */