.hero-slider-section {
position: relative; background-color: #000;
}
.hero-slider-container {
width: 100%;
height: 100%;
}
.hero-slide {
position: relative;
width: 100%; min-height: var(--hero-min-height, 600px);
display: flex !important;
align-items: center;
justify-content: center;
color: #fff;
padding: var(--spacing-xxl) 0;
overflow: hidden;
box-sizing: border-box;
} .hero-slider-section.h-full .hero-slide {
min-height: 100vh;
} .hero-bg-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
} .hero-overlay {
position: absolute;
inset: 0;
background: rgba(19, 30, 74, 0.7);
z-index: 1;
} .hero-content {
position: relative;
z-index: 2;
max-width: 800px;
margin: 0 auto;
text-align: center;
} .align-left .hero-content {
text-align: left;
margin-left: 0;
}
.align-right .hero-content {
text-align: right;
margin-right: 0;
}
.align-left .hero-buttons,
.align-right .hero-buttons {
justify-content: flex-start;
}
.align-right .hero-buttons {
justify-content: flex-end;
} .hero-title {
font-size: 64px;
font-weight: 800;
line-height: 1.1;
text-transform: uppercase;
margin-bottom: var(--spacing-sm);
color: #fff;
}
.hero-subtitle {
font-size: 20px;
line-height: 1.6;
margin-bottom: var(--spacing-lg);
color: rgba(255, 255, 255, 0.9);
max-width: 600px;
margin-left: auto;
margin-right: auto;
} .align-left .hero-subtitle {
margin-left: 0;
}
.align-right .hero-subtitle {
margin-right: 0;
} .hero-buttons {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
} .hero-slider-section .swiper-button-next,
.hero-slider-section .swiper-button-prev {
color: #ffffff;
transition: opacity 0.3s ease;
}
.hero-slider-section .swiper-button-next:hover,
.hero-slider-section .swiper-button-prev:hover {
opacity: 0.8;
}
.hero-slider-section .swiper-pagination-bullet {
background: #ffffff;
opacity: 0.4;
}
.hero-slider-section .swiper-pagination-bullet-active {
opacity: 1;
background: var(--primary-color, #fd5f17);
} @media (max-width: 991px) {
.hero-title {
font-size: 48px;
} .hero-slide {
min-height: 500px;
}
}
@media (max-width: 767px) {
.hero-title {
font-size: 36px;
}
.hero-subtitle {
font-size: 16px;
}
.hero-slider-section {
padding: 0;
} .hero-slide {
min-height: var(--hero-mobile-min-height, 400px);
padding: var(--spacing-lg) 0;
}
.hero-buttons {
flex-direction: column;
align-items: center;
gap: 15px;
} .hero-content,
.align-left .hero-content,
.align-right .hero-content {
text-align: center;
}
.hero-subtitle,
.align-left .hero-subtitle,
.align-right .hero-subtitle {
margin-left: auto;
margin-right: auto;
}
.hero-buttons,
.align-left .hero-buttons,
.align-right .hero-buttons {
justify-content: center;
}
.hero-buttons .btn {
width: 100%;
max-width: 300px;
}
.hero-slider-section .swiper-button-next::after,
.hero-slider-section .swiper-button-prev::after {
font-size: 20px;
}
}.projects-section {
padding: var(--spacing-xxl) 0;
background-color: #fff;
}
.projects-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.project-item {
position: relative;
overflow: hidden;
}
.project-image-wrapper {
position: relative;
overflow: hidden;
aspect-ratio: 4/3;
} .project-image-wrapper.ratio-1-1 { aspect-ratio: 1/1; }
.project-image-wrapper.ratio-4-3 { aspect-ratio: 4/3; }
.project-image-wrapper.ratio-3-4 { aspect-ratio: 3/4; }
.project-image-wrapper.ratio-16-9 { aspect-ratio: 16/9; }
.project-image-wrapper.ratio-9-16 { aspect-ratio: 9/16; }
.project-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.project-overlay {
position: absolute;
inset: 0;
background: rgba(19, 30, 74, 0.9); display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
padding: 20px;
text-align: center;
}
.project-item:hover .project-image {
transform: scale(1.1);
}
.project-item:hover .project-overlay {
opacity: 1;
}
.project-content {
transform: translateY(20px);
transition: transform 0.3s ease;
}
.project-item:hover .project-content {
transform: translateY(0);
}
.project-category {
display: block;
color: var(--primary-color);
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 10px;
}
.project-title {
margin: 0;
font-size: 24px;
font-weight: 700;
color: #fff;
}
.project-title a {
color: #fff;
text-decoration: none;
}
.project-title a:hover {
color: var(--primary-color);
} @media (max-width: 991px) {
.projects-grid {
grid-template-columns: repeat(2, 1fr);
}
.projects-section {
padding: var(--spacing-lg) 0;
}
}
@media (max-width: 767px) {
.projects-grid {
grid-template-columns: 1fr;
}
.projects-section {
padding: var(--spacing-md) 0;
}
}.featured-grid-section {
padding: var(--spacing-xxl) 0 0;
}
.featured-grid-section .section-header {
margin-bottom: 60px;
} .featured-grid-content {   position: relative;
overflow: hidden;
}
.grid-bg-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}
.featured-grid-content::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(19, 30, 74, 0.3);
pointer-events: none;
z-index: 1;
}
.grid-wrapper {
display: flex;
flex-wrap: wrap;
position: relative;
z-index: 1;
} .grid-item {
width: 25%;
border-right: 1px solid rgba(255, 255, 255, 0.2);
min-height: 400px;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}
.grid-item:nth-child(4n) {
border-right: none;
} .grid-overlay {
padding: 280px 60px 60px;
position: relative;
top: 60px;
height: 100%;
display: flex;
flex-direction: column;
justify-content: flex-end;
transition: all 0.5s ease;
}
.grid-item:hover .grid-overlay {
background-color: rgba(19, 30, 74, 0.9);
top: 0;
} .grid-number {
font-size: 40px;
font-weight: 700;
color: #fff;
margin-bottom: 1em;
display: block;
} .grid-item-title {
font-size: 22px;
font-weight: 700;
color: #fff;
margin: 0 0 1em;
} .grid-item-desc {
color: #cecccc;
margin: 0;
padding-bottom: 2em;
flex-grow: 1;
line-height: 1.6;
transition: all 0.3s ease;
}
.grid-item:hover .grid-item-desc {
opacity: 1;
visibility: visible;
} .grid-btn {
background-color: var(--primary-color);
color: #fff;
font-size: 14px;
font-weight: 700;
padding: 17px 30px;
border: 0;
text-transform: uppercase;
display: inline-block;
line-height: initial;
text-decoration: none;
transition: all 0.3s ease;
align-self: flex-start;
position: relative;
top: 100px;
opacity: 0;
visibility: hidden;
}
.grid-btn:hover {
background-color: var(--secondary-color);
color: #fff;
text-decoration: none;
}
.grid-item:hover .grid-btn {
top: 0;
opacity: 1;
visibility: visible;
} @media (max-width: 1199px) {
.grid-item {
width: 50%;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.grid-item:nth-child(4n) {
border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.grid-item:nth-child(2n) {
border-right: none;
}
}
@media (max-width: 991px) {
.featured-grid-section {
padding: var(--spacing-lg) 0 0;
}
.featured-grid-section .section-header {
margin-bottom: 50px;
}
.grid-item {
background-color: rgba(19, 30, 74, 0.9);
}
.grid-overlay {
padding: 80px 30px 50px;
top: 0;
}
.grid-number {
font-size: 30px;
}
.grid-item-title {
font-size: 18px;
}
.grid-item-desc {
font-size: 14px;
opacity: 1;
visibility: visible;
}
.grid-btn {
font-size: 13px;
padding: 15px 25px;
top: 0;
opacity: 1;
visibility: visible;
}
}
@media (max-width: 767px) {
.featured-grid-section {
padding: var(--spacing-md) 0 0;
}
.featured-grid-section .section-header {
margin-bottom: 40px;
}
.grid-btn {
padding: 13px 20px;
font-size: 13px;
}
}
@media (max-width: 600px) {
.grid-item {
width: 100%;
border-right: none;
}
.grid-item:nth-child(4n),
.grid-item:nth-child(2n) {
border-right: none;
}
}.services-section {
padding: var(--spacing-xxl) 0;
background-color: var(--background-light);
}
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.service-card {
background: #fff;
padding: 40px 30px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
height: 100%;
position: relative;
text-align: center;
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.service-link {
text-decoration: none;
color: inherit;
display: block;
height: 100%;
}
.service-icon {
width: 70px;
height: 70px;
margin: 0 auto 25px;
color: var(--primary-color);
display: flex;
align-items: center;
justify-content: center;
}
.service-icon svg {
width: 40px;
height: 40px;
fill: currentColor;
}
.service-title {
font-size: 22px;
font-weight: 700;
margin-bottom: 15px;
color: var(--secondary-color);
}
.service-desc {
color: var(--text-muted);
line-height: 1.6;
margin: 0;
} @media (max-width: 991px) {
.services-grid {
grid-template-columns: repeat(2, 1fr);
}
.services-section {
padding: var(--spacing-lg) 0;
}
}
@media (max-width: 767px) {
.services-grid {
grid-template-columns: 1fr;
}
.services-section {
padding: var(--spacing-md) 0;
}
.service-card {
padding: 30px 20px;
}
}.content-card {
position: relative;
background-color: #fff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
height: 100%;
}
.content-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.content-card__image-wrapper {
position: relative;
width: 100%;
padding-top: 60%; overflow: hidden;
}
.content-card__image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
margin: 0 !important; }
.content-card:hover .content-card__image {
transform: scale(1.05);
}
.content-card__content {
padding: 1.5rem;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.content-card__title {
margin: 0 0 0.75rem;
font-size: 1.25rem;
font-weight: 600;
color: #333;
}
.content-card__description {
margin: 0 0 1.5rem;
color: #666;
font-size: 0.95rem;
line-height: 1.6;
flex-grow: 1;
}
.content-card__link {
display: inline-block;
color: var(--primary-color, #007bff);
text-decoration: none;
font-weight: 500;
margin-top: auto;
}
.content-card__link:hover {
text-decoration: underline;
}
.content-card__overlay-link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
} .block-editor-block-list__block .content-card .content-card__overlay-link,
.block-editor-block-list__block .content-card .content-card__link {
pointer-events: none;
} .block-editor-block-list__block .content-card {
pointer-events: auto;
} .content-card--overlay {
color: #fff;
}
.content-card--overlay .content-card__image-wrapper {
padding-top: 0;
height: 100%;
position: absolute;
z-index: 0;
}
.content-card--overlay .content-card__image {
height: 100%;
}
.content-card--overlay::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
z-index: 1;
pointer-events: none;
transition: background 0.3s ease;
}
.content-card--overlay:hover::after {
background: rgba(0, 0, 0, 0.5);
}
.content-card--overlay .content-card__content {
position: relative;
z-index: 2;
justify-content: center;
align-items: center;
text-align: center;
background: transparent;
}
.content-card--overlay .content-card__title {
color: #fff;
font-size: 1.75rem; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.content-card--overlay .content-card__description {
color: rgba(255, 255, 255, 0.9);
flex-grow: 0;
margin-bottom: 1rem;
}
.content-card--overlay .content-card__link {
color: #fff;
opacity: 0.9;
margin-top: 0;
} .content-card--horizontal {
flex-direction: row;
align-items: center;
}
.content-card--horizontal .content-card__image-wrapper {
width: 35%;
padding-top: 0;
height: 100%;
min-height: 200px;
}
.content-card--horizontal .content-card__content {
width: 65%;
padding: 2rem;
}
@media (max-width: 768px) {
.content-card--horizontal {
flex-direction: column;
}
.content-card--horizontal .content-card__image-wrapper {
width: 100%;
height: 200px;
}
.content-card--horizontal .content-card__content {
width: 100%;
}
}.cta2-section {
padding: var(--spacing-xl) 0;
color: #fff;
}
.cta2-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
gap: 60px;
} .cta2-wrapper>.cta2-text {
flex: 1;
}
.cta2-wrapper>.cta2-text .cta2-title {
font-size: 32px;
font-weight: 700;
color: #fff;
margin-bottom: 15px;
line-height: 1.3;
}
.cta2-desc {
font-size: 15px;
line-height: 1.6;
color: rgba(255, 255, 255, 0.85);
margin: 0;
} .cta2-contacts {
display: flex;
align-items: center;
gap: 50px;
}
.cta2-item {
display: flex;
align-items: center;
gap: 15px;
transition: var(--transition-base);
text-decoration: none;
color: inherit;
}
.cta2-item:hover {
opacity: 0.85;
transform: translateX(5px);
}
.cta2-item:hover .cta2-icon {
transform: scale(1.1);
}
.cta2-icon {
flex-shrink: 0;
width: 70px;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid var(--primary-color);
border-radius: 50%;
color: var(--primary-color);
transition: var(--transition-base);
}
.cta2-icon svg {
width: 44px;
height: 44px;
fill: currentColor;
}
.cta2-content {
display: flex;
flex-direction: column;
gap: 2px;
}
.cta2-content .cta2-title {
font-size: 24px;
font-size: 1.5rem;
margin: 0 0 0.3em;
font-weight: 700;
color: #fff;
}
.cta2-content .cta2-text {
font-size: 14px;
color: rgba(255, 255, 255, 0.9);
margin: 0;
font-weight: 400;
line-height: 1.2;
} @media (max-width: 991px) {
.cta2-wrapper {
flex-direction: column;
gap: 40px;
text-align: center;
}
.cta2-contacts {
flex-direction: column;
gap: 30px;
}
.cta2-wrapper>.cta2-text .cta2-title {
font-size: 28px;
}
.cta2-section {
padding: var(--spacing-lg) 0;
}
}
@media (max-width: 767px) {
.cta2-wrapper>.cta2-text .cta2-title {
font-size: 24px;
}
.cta2-desc {
font-size: 14px;
}
.cta2-item {
gap: 12px;
}
.cta2-icon {
width: 45px;
height: 45px;
}
.cta2-icon svg {
width: 20px;
height: 20px;
}
.cta2-content .cta2-title {
font-size: 15px;
}
.cta2-content .cta2-text {
font-size: 13px;
}
.cta2-section {
padding: var(--spacing-md) 0;
}
}