@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
:root {
--color-red: #E71119;
--color-darkblue: #002045;
--color-white: #ffffff;
--color-lightgray: #f7f7f7;
--color-dim-white: rgba(255, 255, 255, 0.95);
--font-family-sans: 'Inter', sans-serif;
}
html, body {
overflow-x: hidden;
}
body {
font-family: var(--font-family-sans);
margin: 0;
padding-top: 80px;
color: var(--color-darkblue);
line-height: 1.6;
background-color: var(--color-white);

}
.container {
max-width: 1280px;
margin: 0 auto; 
padding: 0 20px;
}
h1, h2, h3 {
font-weight: 900;
margin-top: 0;
}
.text-red { color: var(--color-red); }
.text-adleway-red { color: var(--color-red); }
.bg-adleway-red { background-color: var(--color-red); }
.text-adleway-dark { color: var(--color-darkblue); }
.bg-adleway-light-bg { background-color: var(--color-lightgray); }
.border-adleway-dark { border-color: var(--color-darkblue); }
.border-adleway-red { border-color: var(--color-red); }
/* ============
3. NAVBAR SECTION
=========== */
.navbar {
position: fixed;
top: 0;
width: 100%;
height: 80px;
z-index: 1000;
background-color: var(--color-white);
transition: background-color 0.3s, box-shadow 0.3s;
box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.navbar.scrolled {
background-color: var(--color-dim-white);
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}
.navbar .container {
height: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-img {
height: 48px;
width: 170px;
display: block;
}
nav {
flex-grow: 1;
display: flex;
justify-content: center;
}
nav ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
nav ul li {
position: relative;
}
nav ul li a {
color: var(--color-darkblue);
text-decoration: none;
padding: 10px 15px;
display: block;
font-weight: 700;
transition: color 0.3s ease;
}
nav ul li a:hover,
nav ul li a.active {
color: var(--color-red);
}
.dropdown-content {
display: none;
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
background-color: var(--color-white);
min-width: 250px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
z-index: 10;
border-top: 3px solid var(--color-red);
border-radius: 4px;
overflow: hidden;
text-align: left;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-content a {
color: var(--color-darkblue);
padding: 12px 15px;
font-weight: 700;
font-size: 0.95rem;
transition: background-color 0.2s;
}
.dropdown-content a:hover {
background-color: var(--color-lightgray);
color: var(--color-red);
}
.btn {
padding: 12px 25px;
text-decoration: none;
font-weight: 700;
border: 2px solid transparent;
border-radius: 10px;
transition: 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
white-space: nowrap;
}
.btn-cta {
background-color: var(--color-red);
color: var(--color-white);
border-color: var(--color-red);
box-shadow: 0 4px 8px rgba(231, 17, 25, 0.3);
}
.btn-cta:hover {
background-color: var(--color-darkblue);
border-color: var(--color-darkblue);
color: var(--color-white);
box-shadow: 0 4px 12px rgba(0, 32, 69, 0.2);
}
.menu-toggle {
background: none;
border: none;
color: var(--color-darkblue);
font-size: 1.8rem;
cursor: pointer;
display: none;
transition: color 0.3s ease;
}
.menu-toggle:hover {
color: var(--color-red);
}
.nav-actions {
display: flex;
align-items: center;
gap: 10px;
}
@media (max-width: 1024px) {
.navbar {
height: 70px;
}
.logo-img {
height: 70px;
width: 140px;
}
nav ul li a {
padding: 8px 12px;
font-size: 0.95rem;
}
.btn {
padding: 10px 20px;
font-size: 0.9rem;
}
.nav-actions {
gap: 8px;
}
}
@media (max-width: 991px) {
.navbar .container {
padding: 0 15px;
}
.logo-img {
height: 70px;
width: 140px;
}
nav ul li a {
padding: 8px 10px;
font-size: 0.95rem;
}
}
@media (max-width: 768px) {
.navbar {
height: auto;
padding: 15px 0;
}
.navbar .container {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
nav {
position: fixed;
top: 80px;
left: 0;
width: 100%;
height: 100%;
background-color: var(--color-white);
border-top: 2px solid var(--color-red);
display: none;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
overflow-y: auto;
}
nav.active {
display: block;
}
nav ul {
flex-direction: column;
width: 100%;
text-align: left;
}
nav ul li a {
padding: 14px 25px;
border-bottom: 1px solid #eee;
}
.dropdown-content {
position: relative;
left: 0;
top: 0;
transform: none;
min-width: 100%;
box-shadow: none;
border: none;
}
.menu-toggle {
display: block; 
}
}
@media (max-width: 480px) {
.logo-img {
height: 60px;
width: 120px;
}
.nav-actions .btn-cta { 
display: none;
}}



/* ---- HERO SECTION ---- */
.hero-section {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
position: relative;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
overflow: hidden;
}
.hero-video-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
background: var(--color-darkblue);
}
.background-video {
width: 100%;
height: 100%;
object-fit: cover;
}
.hero-video-container::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
}
.hero-content {
position: relative;
z-index: 2;
padding: 20px;
max-width: 800px;
}
.subtitle {
font-size: 1rem;
font-weight: 700;
letter-spacing: 3px;
margin-bottom: 10px;
}
.hero-content h1 {
font-size: clamp(2rem, 6vw, 4.5rem);
line-height: 1.1;
margin-bottom: 30px;
font-family: "Georgia", serif;
}
.hero-buttons {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 12px;
}
.hero-buttons a {
padding: 12px 30px;
font-size: 1rem;
border-radius: 6px;
font-weight: 800;
text-decoration: none;
}
.btn-primary {
background-color: var(--color-red);
color: var(--color-white);
border-color: var(--color-red);
}
.btn-primary:hover {
background: linear-gradient(135deg, #e71118, #0a2e69);
border-color: var(--color-darkblue);
transition: all 0.4s ease;
}
.btn-secondary {
background-color: transparent;
color: var(--color-white);
border: 2px solid var(--color-white);
}
.btn-secondary:hover {
background: linear-gradient(135deg, #e71118, #0a2e69);
transition: all 0.4s ease;
}
@media (max-width: 992px) {
.hero-section {
height: 70vh;
padding: 0 15px;
}
.hero-content h1 {
font-size: clamp(1.8rem, 7vw, 3.5rem);
}
.hero-buttons a {
padding: 12px 28px;
font-size: 0.95rem;
}
}
@media (max-width: 600px) {
.hero-section {
height: 60vh;
padding: 0 10px;
}
.subtitle {
font-size: 0.85rem;
letter-spacing: 2px;
}
.hero-content h1 {
font-size: 1.8rem;
line-height: 1.2;
margin-bottom: 20px;
}
.hero-buttons {
flex-direction: column;
gap: 10px;
padding-right: 43px;
}
.hero-buttons a {
width: 100%;
padding: 12px;
font-size: 0.95rem;
}
}



/* == ABOUT SHORT INFO == */
.about-section-white {
padding: 80px 0;
background-color: var(--color-white);
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding-left: 30px;
padding-right: 60px;
}
.about-flex {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
text-align: left;
max-width: 1150px;
margin: 0 auto;
flex-wrap: wrap;
}
.about-image-column {
flex: 0 0 48%; 
min-width: 300px;
transform: translateX(-20px);
}
.about-side-image {
width: 98%;
height: 320px;
display: block;
object-fit: cover;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 32, 69, 0.1);
border-top: 4px solid #e71119;
border-left: 4px solid #e71119;
}
.about-content-column {
flex: 0 0 48%; 
min-width: 300px;
}
.small-heading {
font-size: 0.10rem;
font-weight: 700;
letter-spacing: 3px;
margin-bottom: 5px;
text-transform: uppercase;
}
.section-title-dark-left {
font-size: 2.6rem;
font-weight: 900;
margin-bottom: 20px;
line-height: 1.1;
font-family: "Georgia", serif;
color: var(--color-darkblue);
text-transform: uppercase;
}
.about-lead-left {
font-size: 1.1rem;
font-weight: 500;
margin-bottom: 15px;
max-width: 550px;
color: var(--color-darkblue);
line-height: 1.5;
text-align: justify;
}
.about-body-dark-left {
font-size: 1rem;
line-height: 1.5;
color: rgba(0, 32, 69, 0.75);
margin-bottom: 30px;
text-align: justify;
}
@media (max-width: 992px) {
.about-section-white {
padding: 80px 20px;
padding-left: 20px;
padding-right: 40px;
}

.about-flex {
gap: 30px;
}

.section-title-dark-left {
font-size: 2rem;
}

.about-lead-left {
font-size: 1rem;
}

.about-side-image {
height: 350px;
}

.about-image-column {
transform: translateX(0);
}
}

@media (max-width: 600px) {
.about-section-white {
padding: 60px 2px 30px 2px;
}

.about-flex {
flex-direction: column;
text-align: center;
}

.about-content-column {
text-align: center;
}

.section-title-dark-left {
font-size: 1.8rem;
}

.small-heading {
font-size: 0.8rem;
letter-spacing: 2px;
}

.about-side-image {
height: 260px;
border-radius: 8px;
}

.about-lead-left,
.about-body-dark-left {
text-align: justify;
}
}




/* --- SERVICES CAROUSEL SECTION STYLES --- */
.services-section-premium {
position: relative;
text-align: center;
background-color: var(--color-white);
padding: 70px 20px 200px;
overflow: hidden; 
display: flex; 
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 85vh; 
}
.container-full {
max-width: 1200px;
margin: 0 auto;
}
.section-header-top {
position: relative; 
top: auto; 
margin-bottom: 70px;
}
.small-heading { 
font-size: 0.9rem;
font-weight: 700;
letter-spacing: 3px;
margin-bottom: 5px;
text-transform: uppercase;
color: var(--color-red); 
}
.section-title-dark {
font-size: 2.5rem;
font-weight: 900;
line-height: 1.1;
color: var(--color-darkblue); 
text-transform: uppercase;
font-family: "Georgia", serif;
}
.accent-red-text { 
color: var(--color-red); 
}
.circle-container {
position: relative;
width: 600px; 
height: 600px;
border-radius: 50%;
animation: rotate 30s linear infinite; 
margin: 0 auto; 
margin-top: 120px;
}
.service-card {
position: absolute;
width: 160px; 
height: 160px; 
background-color: var(--color-white); 
color: var(--color-darkblue);
border-radius: 50%; 
box-shadow: 0 6px 20px rgba(1, 32, 71, 0.304);
padding: 20px; 
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
top: 50%; 
left: 50%;
margin-left: calc(300px * cos(var(--rotation) + 90deg)); 
margin-top: calc(300px * sin(var(--rotation) + 90deg));
transform: translate(-50%, -50%); 
animation: counterRotate 30s linear infinite; 
transform-origin: 50% 50%; 
transition: all 0.3s ease;
cursor: pointer;
text-decoration: none; 
overflow: hidden;
z-index: 1;
}
.service-card::before {
content: "";
position: absolute;
inset: 0; 
background: linear-gradient(135deg, var(--color-red), var(--color-darkblue));
opacity: 0;
transition: opacity 0.4s ease;
z-index: 0;
border-radius: 50%;
}
.service-card:hover::before {
opacity: 1;
}
.service-card:hover {
transform: translate(-50%, -50%) scale(1.08);
box-shadow:
0 0 20px 4px color-mix(in srgb, var(--color-red) 70%, transparent),
0 0 20px 4px color-mix(in srgb, var(--color-darkblue) 70%, transparent);
color: #fff;
transform: translateZ(40px) skewY(0deg) scale(1.03);
box-shadow: 0 0 5px #E71119, 0 15px 40px -10px rgba(231, 17, 25, 0.8);
z-index: 10;
}
.service-icon,
.card-title-small {
font-size: 2rem;
color: var(--color-red);
margin-bottom: 15px;
z-index: 1;
position: relative;
}
.service-card:hover .service-icon,
.service-card:hover .card-title-small {
color: #fff;
}
.card-title-small {
font-size: 1.1rem; 
font-weight: 800;
color: var(--color-darkblue);
margin: 5px 0 5px;
line-height: 1.2;
}
.card-body-small {
display: none; 
}
.circle-center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);   
background-color: var(--color-darkblue);
color: var(--color-white);
border-radius: 50%;
width: 220px;
height: 220px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-transform: uppercase;
box-shadow: 0 4px 20px rgba(0,0,0,0.4);
animation: counterRotate 30s linear infinite;     
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-center:hover {
transform: translate(-50%, -50%) scale(1.08);
box-shadow:
0 0 20px 4px color-mix(in srgb, var(--color-red) 70%, transparent),
0 0 20px 4px color-mix(in srgb, var(--color-darkblue) 70%, transparent);
color: #fff;
}

@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@keyframes counterRotate {
from { transform: translate(-50%, -50%) rotate(0deg); }
to { transform: translate(-50%, -50%) rotate(-360deg); }
}
@media (max-width: 900px) {
.circle-container {
width: 450px;
height: 450px;
}
.service-card {
width: 150px;
height: 150px;
margin-left: calc(225px * cos(var(--rotation) + 90deg));
margin-top: calc(225px * sin(var(--rotation) + 90deg));
}
.circle-center {
width: 150px;
height: 150px;
}
}
@media (max-width: 600px) {
.services-section-premium {
padding: 60px 0;
}
.circle-container {
width: 300px;
height: 300px;
}
.service-card {
width: 110px;
height: 110px;
padding: 10px;
margin-left: calc(150px * cos(var(--rotation) + 90deg));
margin-top: calc(150px * sin(var(--rotation) + 90deg));
}
.service-icon {
font-size: 20px;
}
.card-title-small {
font-size: 0.8rem;
}
.circle-center {
width: 100px;
height: 100px;
}
}




/* === INDUSTRIES SECTION === */
.industries-section {
background-color: var(--color-darkblue);
padding: 100px 20px;
}
.small-heading {
font-size: 0.9rem;
font-weight: 700;
letter-spacing: 3px;
color: var(--color-red);
text-transform: uppercase;
margin-bottom: 10px;
}
.section-title {
font-size: 2.5rem;
font-weight: 800;
color: var(--color-darkblue);
text-transform: uppercase;
}
.section-title span {
color: var(--color-red);
}
.industries-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 35px;
margin-top: 60px;
}
.industry-card {
background-color: #fff;
border-radius: 20px;
padding: 40px 25px;
text-align: center;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
.industry-card::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--color-red), var(--color-darkblue));
transition: all 0.4s ease;
z-index: 0;
}
.industry-card:hover::before {
left: 0;
}
.industry-card:hover {
color: #fff;
transform: translateY(-10px);
box-shadow: 0 8px 25px rgba(10, 46, 105, 0.3);
}
.industry-card .icon {
font-size: 3rem;
color: var(--color-red);
margin-bottom: 15px;
z-index: 1;
position: relative;
}
.industry-card h4 {
font-size: 1.3rem;
font-weight: 700;
color: var(--color-darkblue);
margin-bottom: 10px;
z-index: 1;
font-family: 'Times New Roman', serif;
position: relative;
}
.industry-card p {
font-size: 0.95rem;
color: #444;
line-height: 1.6;
z-index: 1;
position: relative;
}
.industry-card:hover h4,
.industry-card:hover p,
.industry-card:hover .icon {
color: #fff;
}
@media (max-width: 992px) {
.industries-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.industries-grid {
grid-template-columns: 1fr;
}
.section-title {
font-size: 1.8rem;
}
.industry-card {
padding: 30px 20px;
}
}




/* === CONTINUOUS PORTFOLIO SLIDER SECTION === */
.portfolio-slider-section {
background-color: var(--color-darkblue);
padding: 30px 0 20px 0; 
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding-left: 30px;
padding-right: 30px;
}
.slider-header {
margin-bottom: 50px;
padding: 0 20px;
}
.slider-sub {
color: var(--color-red);
font-size: 1rem;
font-weight: 900;
letter-spacing: 5px;
text-transform: uppercase;
margin-bottom: 8px;
}
.slider-main {
font-size: clamp(2.5rem, 4vw, 3.5rem);
color: var(--color-white); 
margin: 0;
}
.portfolio-swiper {
width: 100%;
padding: 60px 0;
}
.portfolio-card {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background-color: var(--color-white);
padding: 40px 25px;
border-radius: 20px;
position: relative; 
overflow: hidden; 
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);   
transition: all 0.4s ease; 
cursor: default;
height: 250px;
}
.portfolio-card::before {
content: "";
position: absolute;
top: 0;
left: -100%; 
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--color-red), var(--color-darkblue));
transition: all 0.4s ease;
z-index: 0;
}
.portfolio-card:hover::before {
left: 0; 
}
.portfolio-card:hover {
color: #fff; 
box-shadow: 0 8px 25px rgba(10, 46, 105, 0.3); 
}
.portfolio-card i {
font-size: 3rem;
color: var(--color-red); 
margin-bottom: 15px;
z-index: 1; 
position: relative;
transition: color 0.4s ease;
}
.card-title-dark {
font-size: 1.3rem; 
font-weight: 700; 
color: var(--color-darkblue); 
margin-bottom: 10px;
line-height: 1.2;
z-index: 1; 
font-family: 'Times New Roman', serif; 
position: relative;
transition: color 0.4s ease;
}
.portfolio-card p {
font-size: 0.95rem; 
color: #444; 
line-height: 1.6; 
z-index: 1; 
position: relative;
margin: 0;
transition: color 0.4s ease;
}
.portfolio-slider-section a {
text-decoration: none !important;
color: inherit !important;
}
.portfolio-slider-section a:visited,
.portfolio-slider-section a:hover,
.portfolio-slider-section a:focus,
.portfolio-slider-section a:active {
text-decoration: none !important;
color: inherit !important;
}
.portfolio-card:hover .card-title-dark,
.portfolio-card:hover p,
.portfolio-card:hover i {
color: #fff;
}
@media (max-width: 992px) {
.portfolio-card {
height: 220px;
padding: 30px 20px;
}
.portfolio-card i {
font-size: 2.5rem;
}
}
@media (max-width: 600px) {
.portfolio-slider-section {
padding: 60px 0 80px 0;
}
.slider-main {
font-size: 2rem;
}
.portfolio-card {
height: 200px; 
margin: 0 10px; 
}
}



.section-buttons {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
margin-top: 50px;

}
.section-btn {
padding: 12px 30px;
border: 2px solid var(--color-darkblue);
color: white;
background-color: var(--color-red);
border-radius: 50px;
font-weight: 600;
text-transform: uppercase;
text-decoration: none;
letter-spacing: 0.5px;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
.industry-link {
text-decoration: none;
color: inherit;
display: inline-block;
}
.industry-link:hover .industry-card {
transform: translateY(-10px);
box-shadow: 0 8px 25px rgba(10, 46, 105, 0.3);
}
.industry-card {
position: relative;
background: #fff;
border-radius: 20px;
padding: 30px;
text-align: center;
transition: all 0.4s ease;
overflow: hidden;
}



/* === GALLERY SECTION === */
.gallery-section {
background-color: var(--color-darkblue);
padding: 120px 0 60px 0;
overflow: hidden; 
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding-left: 30px;
padding-right: 30px;
}
.gallery-header {
margin-bottom: 70px;
}
.gallery-sub {
color: var(--color-red);
font-size: 1rem;
font-weight: 900;
letter-spacing: 5px;
text-transform: uppercase;
margin-bottom: 8px;
}
.gallery-main {
font-size: clamp(2.5rem, 4vw, 3.5rem);
color: var(--color-white);
margin: 0;
}
.gallery-description {
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.7);
margin-top: 15px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.modern-gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: minmax(100px, auto);
gap: 20px;
padding: 0 20px;
}
.gallery-card {
display: block;
position: relative;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
cursor: pointer;
text-decoration: none;
z-index: 1;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.card-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.6s ease, filter 0.6s ease;
}
.card-wide {
grid-column: span 2;
}
.card-tall {
grid-row: span 2;
height: 100%;
}
.card-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
to top,
rgba(0, 32, 69, 0.9) 0%,
rgba(0, 32, 69, 0.4) 50%,
rgba(0, 32, 69, 0) 100%
);
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: flex-start;
padding: 25px;
color: var(--color-white);
transition: background 0.4s ease, opacity 0.4s ease;
}
.overlay-caption {
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 5px;
font-family: 'Times New Roman', serif;
}
.card-overlay i {
font-size: 1.5rem;
color: var(--color-red);
opacity: 0;
transform: translateY(10px);
transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-card:hover .card-img {
transform: scale(1.05);
filter: brightness(0.85);
}
.gallery-card:hover .card-overlay {
background: linear-gradient(
to top,
rgba(231, 17, 25, 0.9) 0%,
rgba(231, 17, 25, 0.4) 50%,
rgba(231, 17, 25, 0) 100%
);
}
.gallery-card:hover .card-overlay i {
opacity: 1;
transform: translateY(0);
}
.gallery-card * {
pointer-events: none; 
}
.gallery-card {
cursor: pointer;
position: relative;
z-index: 2;
}
.gallery-card::after {
content: "";
position: absolute;
inset: 0;
z-index: 3;
pointer-events: none;
}
.gallery-cta-wrapper {
margin-top: 50px;
}
@media (max-width: 992px) {
.modern-gallery-grid {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.card-tall {
grid-row: span 1;
}
}
@media (max-width: 600px) {
.gallery-section {
padding: 60px 0;
}
.modern-gallery-grid {
grid-template-columns: 1fr;
gap: 15px;
padding: 0 15px;
}
.card-wide {
grid-column: span 1;
}
.card-img {
height: 300px;
}
}





/* === MODERN TESTIMONIALS SECTION === */
.testimonials-section {
background-color: var(--color-white);
padding: 100px 20px;
position: relative;
overflow: hidden;
}
.testimonial-sub {
color: var(--color-red);
font-size: 1rem;
font-weight: 900;
letter-spacing: 5px;
text-transform: uppercase;
margin-bottom: 8px;
}
.testimonial-title {
font-size: clamp(2.5rem, 4vw, 3.5rem);
font-weight: 800;
text-transform: uppercase;
color: var(--color-darkblue);
margin-bottom: 60px;
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 35px;
}
.testimonial-card {
position: relative;
background-color: var(--color-lightgray);
border-radius: 20px;
padding: 40px 25px;
text-align: center;
color: var(--color-darkblue);
transition: all 0.5s ease;
overflow: hidden;
box-shadow: 0 6px 20px rgba(1, 32, 71, 0.505);
}
.testimonial-card::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(135deg, var(--color-red), var(--color-darkblue));
opacity: 0;
transition: opacity 0.5s ease;
z-index: 0;
border-radius: 20px;
}
.testimonial-card:hover::before {
opacity: 1;
}
.testimonial-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow:
0 0 20px 4px color-mix(in srgb, var(--color-red) 50%, transparent),
0 0 20px 4px color-mix(in srgb, var(--color-darkblue) 50%, transparent);
color: var(--color-white);
z-index: 10;
}
.testimonial-content,
.testimonial-footer {
position: relative;
z-index: 1;
}
.testimonial-content p {
font-size: 1rem;
font-style: italic;
line-height: 1.7;
color: #333;
transition: color 0.4s ease;
}
.testimonial-card:hover p {
color: var(--color-dim-white);
}
.testimonial-footer {
margin-top: 12px;
}
.testimonial-img {
width: 70px;
height: 70px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--color-red);
margin-bottom: 8px;
transition: all 0.3s ease;
}
.testimonial-card:hover .testimonial-img {
border-color: var(--color-white);
transform: scale(1.05);
}
.client-name {
font-size: 1.3rem;
font-weight: 700;
color: var(--color-darkblue);
transition: color 0.4s ease;
font-family: 'Times New Roman', serif;
}
.client-role {
font-size: 0.9rem;
color: #666;
transition: color 0.4s ease;
}
.testimonial-card:hover .client-name,
.testimonial-card:hover .client-role {
color: var(--color-dim-white);
}
@media (max-width: 992px) {
.testimonials-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.testimonials-grid {
grid-template-columns: 1fr;
}
.testimonial-title {
font-size: 2rem;
}
}




/* === CONTACT & CTA SECTION STYLES === */
.contact-section {
background-color: var(--color-white); 
padding: 80px 0;
overflow: hidden;
border-top: 1px solid #eee; 
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding-left: 30px;
padding-right: 30px;
}
.contact-grid {
max-width: 1200px; 
margin: 0 auto;
padding: 0 20px; 
display: grid;
grid-template-columns: 1.1fr 0.9fr; 
gap: 80px;
align-items: center;
}
.contact-info {
color: var(--color-darkblue); 
padding: 20px 0;
}
.contact-heading {
font-size: clamp(2.3rem, 3.5vw, 3.3rem);
font-weight: 900;
line-height: 1.2;
margin-bottom: 20px;
}
.contact-description {
font-size: 1.1rem;
line-height: 1.6;
color: #555; 
margin-bottom: 40px;
}
.contact-details {
margin-bottom: 40px;
}
.detail-item {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.detail-item i {
font-size: 1.5rem;
color: var(--color-red); 
margin-right: 15px;
width: 25px;
text-align: center;
}
.detail-text {
font-size: 1rem;
color: var(--color-darkblue); 
text-decoration: none;
transition: color 0.3s ease;
}
.detail-item a:hover {
color: var(--color-red);
}
.social-links {
margin-top: 30px;
display: flex;
}
.social-icon {
display: inline-flex;
justify-content: center;
align-items: center;
width: 45px;
height: 45px;
border-radius: 50%;
background-color: rgba(0, 32, 69, 0.1); 
color: var(--color-darkblue); 
font-size: 1.1rem;
margin-right: 15px;
transition: background-color 0.3s, color 0.3s;
}
.social-icon:hover {
background-color: var(--color-red);
color: var(--color-white);
}
.contact-form-wrapper {
background-color: var(--color-white);
padding: 40px;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(1, 32, 71, 0.505);
transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0.4s;
position: relative; 
z-index: 1;
}
.contact-form-wrapper:hover {
transform: translateY(-10px) scale(1.02);
box-shadow:
0 0 20px 4px rgba(231, 17, 25, 0.5), 
0 0 20px 4px rgba(0, 32, 69, 0.5), 
0 15px 40px rgba(0, 0, 0, 0.2); 
z-index: 10;
}
.form-title {
font-size: 1.8rem;
font-weight: 900;
color: var(--color-darkblue);
margin-bottom: 30px;
text-align: center;
font-family: 'Times New Roman', serif;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-size: 0.9rem;
font-weight: 700;
color: var(--color-darkblue);
margin-bottom: 8px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
width: 93%;
padding: 12px 15px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 1rem;
color: #333;
background-color: #f9f9f9;
transition: border-color 0.3s, box-shadow 0.3s;
resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
border-color: var(--color-red); 
box-shadow: 0 0 0 3px rgba(231, 17, 25, 0.2);
outline: none;
background-color: var(--color-white);
}
.btn-submit {
width: 100%;
padding: 15px;
border: none;
border-radius: 8px;
background-color: var(--color-red);
color: var(--color-white);
font-size: 1.1rem;
font-weight: 700;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s;
text-transform: uppercase;
letter-spacing: 1px;
}
.btn-submit:hover {
background-color: #c90f16; 
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(231, 17, 25, 0.4);
}
.contact-form select {
width: 100%;
padding: 12px 15px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 1rem;
color: #333;
background-color: #f9f9f9;
transition: border-color 0.3s, box-shadow 0.3s;
cursor: pointer;
}
.contact-form select:focus {
border-color: var(--color-red);
box-shadow: 0 0 0 3px rgba(231, 17, 25, 0.2);
outline: none;
background-color: var(--color-white);
}
@media (max-width: 768px) {
.contact-form select {
font-size: 0.95rem;
padding: 12px;
border-radius: 6px;
}
}
@media (max-width: 480px) {
.contact-form select {
font-size: 0.9rem;
padding: 10px;
border-radius: 6px;
}
}
@media (max-width: 992px) {
.contact-grid {
grid-template-columns: 1fr; 
gap: 60px;
}
.contact-info {
padding: 0 20px; 
}
.contact-form-wrapper {
margin: 0 20px;
padding: 30px;
}
}
@media (max-width: 600px) {
.contact-section {
padding: 60px 0;
}
.contact-heading {
font-size: 2rem;
}
.contact-description {
font-size: 1rem;
margin-bottom: 30px;
}
.contact-form-wrapper {
margin: 0 15px;
padding: 25px;
}
}





/* === FOOTER === */
.main-footer {
position: relative;
padding-top: 40px;
color: #ffffff;
overflow: hidden;
background-color: #000000eb;
}
.footer-video-wrapper {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;

}
.footer-video {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.2;
}
.footer-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.041);
z-index: 1;
}
.footer-content {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: repeat(4, 1fr); 
gap: 40px;
padding-bottom: 40px;
margin-left: auto;
margin-right: auto;
max-width: 1300px;
width: 100%;
margin: 0 auto;
padding-left: 40px;
padding-right: 30px;
}
.footer-col {
padding: 0; 
}
.footer-logo-img {
max-width: 190px;
height: auto;
display: block;
margin-left: 0;
margin-top: 0;
border-radius: 10px;
}
.footer-logo {
margin-bottom: 10px;
}
.footer-tagline {
color: rgba(255, 255, 255, 0.7);
font-size: 0.95rem;
margin-bottom: 30px;
}
.footer-heading {
font-size: 1.1rem;
font-weight: 700;
color: #E71119;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
font-family: 'Times New Roman', serif;
}
.footer-contact-details {
margin-bottom: 30px;
}
.footer-contact-details p,
.footer-contact-details a {
display: block;
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
font-size: 0.9rem;
line-height: 1.6;
margin-bottom: 5px;
transition: color 0.3s;
}
.footer-contact-details a:hover {
color: #E71119;
}
.footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.3s, transform 0.3s;
display: inline-block;
}
.footer-links a:hover {
color: #E71119;
transform: translateX(5px);
}
.footer-socials .footer-social-icon {
display: inline-flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
color: #ffffff;
font-size: 1rem;
margin-right: 10px;
transition: background-color 0.3s;
}
.footer-socials .footer-social-icon:hover {
background-color: #E71119;
}
.footer-copyright {
position: relative;
z-index: 2;
text-align: center;
padding: 20px 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-copyright p {
margin: 0;
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 992px) {
.footer-content {
grid-template-columns: 1fr 1fr;
gap: 30px;
text-align: left;
}
.footer-logo-img {
margin: 0 auto;
align-items: left !important;
}
.footer-socials {
justify-content: center;
}
}
@media (max-width: 768px) {
.footer-content {
grid-template-columns: 1fr; 
gap: 30px;
}
.footer-logo-img {
margin: 0 auto 15px;
align-items: left !important;
}
.footer-tagline {
margin-bottom: 20px;
}
.footer-links a {
font-size: 0.95rem;
}
.footer-heading {
font-size: 1rem;
}
}
@media (max-width: 480px) {
.footer-socials .footer-social-icon {
width: 36px;
height: 36px;
font-size: 0.9rem;
}
.footer-copyright p {
font-size: 0.8rem;
}
}
@media (max-width: 992px) {
.footer-content {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.footer-content {
grid-template-columns: 1fr;
}
}
.reach-item {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
}
.reach-icon {
font-size: 20px;
color: #E71119; 
margin-right: 10px;
margin-top: 3px;
}
.reach-text {
margin: 0;
color: white;
line-height: 1.6;
font-size: 0.95rem;
margin-top: 5px;
}
.reach-email {
color: white;
text-decoration: none;
font-size: 0.95rem;
transition: 0.3s;
margin-top: 5px;
}
.reach-email:hover {
color: #E71119;
}
@media (max-width: 768px) {
.footer-content {
grid-template-columns: 1fr !important;
text-align: left !important;
}
.footer-col,
.footer-links,
.footer-links li,
.footer-links a,
.reach-item,
.reach-text,
.reach-email,
.footer-socials,
.footer-logo-bottom,
.footer-logo-img {
text-align: left !important;
justify-content: flex-start !important;
align-items: flex-start !important;
margin-left: 0 !important;
}
.footer-socials {
display: flex;
gap: 10px;
margin-top: 10px;
}
.footer-logo-bottom img {
margin-left: 0 !important;
}
}
