@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;
}

body, html {
margin: 0;
padding: 0;
height: 100%;
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, h4, h5 {
font-weight: 900;
margin-top: 0;
color: var(--color-white);
font-family: 'Times New Roman', serif;
}
.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;
}
}
/* Responsive Styles */
@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 {
position: relative;
height: 90vh;
min-height: 400px;
background-image: url('images/gallery\ hero.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
overflow: hidden;
color: #fff;
}
.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 2;
max-width: 800px;
padding: 0 20px;
}
.hero-content h1 {
font-size: 3.5rem;
font-weight: 900;
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 2px;
}
.hero-content p {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
}
@media (max-width: 1024px) {
.hero-section {
height: 70vh;
background-attachment: scroll;
padding: 5rem 1rem;
}
.hero-content h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero-content p {
font-size: 1.05rem;
margin-bottom: 1.5rem;
}
}
@media (max-width: 768px) {
.hero-section {
height: auto;
min-height: 350px;
padding: 4rem 1.2rem;
text-align: center;
background-position: center center;
}
.hero-content {
padding: 0 10px;
}
.hero-content h1 {
font-size: 1.9rem;
line-height: 1.3;
margin-bottom: 1rem;
letter-spacing: 1px;
}
.hero-content p {
font-size: 0.95rem;
margin-bottom: 1.2rem;
}
}
@media (max-width: 480px) {
.hero-section {
padding: 3.5rem 1rem;
}
.hero-content h1 {
font-size: 1.6rem;
}
.hero-content p {
font-size: 0.9rem;
}
}



/* --- 3. MAIN CONTENT SECTION --- */
.main-content-section {
padding: 5rem 0 8rem 0;
background-color: #fcfcfc;
}
.intro-header-center {
text-align: center;
max-width: 800px;
margin: 0 auto 4rem auto;
padding: 0 20px;
}
.intro-header-center .sub-heading {
color: var(--color-red);
font-size: 0.95rem;
font-weight: 800;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 0.5rem;
}
.intro-header-center h2 {
color: var(--color-darkblue);
font-size: 2.8rem;
font-weight: 900;
margin-bottom: 1rem;
font-family: var(--font-family-sans);
}
.intro-header-center .description {
color: var(--color-text-medium);
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
}



/* Service Block Grid */
.service-block {
display: grid;
grid-template-columns: 450px 1fr;
gap: 4rem;
margin-bottom: 0;
min-height: 120vh;
}
.service-feature {
background: var(--color-white);
padding: 3rem;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 32, 69, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.03);
border-left: 6px solid var(--color-red);
position: sticky;
top: 5px;
height: fit-content;
max-height: calc(100vh - 120px);
transition: all 0.3s ease;
}
.service-icon {
width: 60px;
height: 60px;
background: var(--color-darkblue);
color: var(--color-red);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 2rem;
}
.service-icon svg { width: 32px; height: 32px; }
.service-feature h3 {
color: var(--color-darkblue);
font-size: 2.5rem;
margin-bottom: 1.2rem;
line-height: 1.1;
font-family: var(--font-family-sans);
}
.service-feature p {
color: #4b5563;
line-height: 1.7;
margin-bottom: 2rem;
font-size: 1.05rem;
text-align: justify;
text-justify: inter-word;
}
.service-feature strong { font-weight: 900; color: var(--color-darkblue); }
.service-feature a {
color: var(--color-red);
text-decoration: none;
font-weight: 800;
display: inline-block;
padding-bottom: 2px;
border-bottom: 2px solid rgba(231, 17, 25, 0.3);
}
.service-feature a:hover {
color: var(--color-darkblue);
border-bottom: 2px solid var(--color-darkblue);
}

/* Service Details */
.service-details {
color: var(--color-text-dark);
padding: 1rem 0;
}
.service-details h4 {
color: var(--color-darkblue);
font-size: 2.3rem;
font-weight: 900;
margin-bottom: 2rem;
border-bottom: 4px solid var(--color-red);
padding-bottom: 0.8rem;
width: 100%;
line-height: 1.2;
font-family: var(--font-family-sans);
}
.service-details h5 {
color: var(--color-red);
font-size: 1.5rem;
margin: 3.5rem 0 1rem 0;
font-weight: 900;
line-height: 1.3;
font-family: var(--font-family-sans);
}
.service-details p {
margin-bottom: 1.2rem;
line-height: 1.75;
font-size: 1.05rem;
color: #4c545e;
text-align: justify;
text-justify: inter-word;
}
.service-highlight {
background: #eef7ff;
border-left: 6px solid var(--color-darkblue);
padding: 2rem;
margin-top: 3.5rem;
border-radius: 12px;
}
.service-highlight .highlight-title {
font-weight: 900;
color: var(--color-darkblue);
margin-bottom: 0.2rem;
font-size: 1.15rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}

/* 4. OTHER SERVICES SECTION (with gradient hover) */
.other-services-section {
background: var(--color-white);
padding: 5rem 0;
text-align: center;
}
.other-services-section .section-heading {
color: var(--color-darkblue);
font-size: 2.2rem;
font-weight: 900;
margin-bottom: 0.5rem;
font-family: var(--font-family-sans);
}
.other-services-section .section-subtext {
color: var(--color-text-medium);
font-size: 1.1rem;
max-width: 800px;
margin: 0 auto 3rem auto;
}
.services-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
max-width: 1200px;
margin: 0 auto;
}
.service-link-card {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 1.5rem 1rem;
background-color: var(--color-white);
color: var(--color-darkblue);
text-decoration: none;
font-weight: 700;
font-size: 1.05rem;
border-radius: 12px;
transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s ease;
box-shadow: 0 6px 20px rgba(1, 32, 71, 0.304);
z-index: 1;
overflow: hidden;
}
.service-link-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: -1;
border-radius: 12px;
}
.service-link-card:hover::before { opacity: 1; }
.service-link-card:hover {
transform: translateY(-8px) scale(1.02);
box-shadow: 0 0 20px 4px rgba(231, 17, 25, 0.3), 0 0 20px 4px rgba(0, 32, 69, 0.3);
color: var(--color-white);
border-color: transparent;
}
.service-link-card i {
font-size: 2.5rem;
color: var(--color-darkblue);
margin-bottom: 0.5rem;
transition: color 0.5s ease;
}
.service-link-card:hover i { color: var(--color-white); }

/* Active Card */
.active-service-card {
background: linear-gradient(135deg, var(--color-red), var(--color-darkblue)) !important;
color: var(--color-white) !important;
border-color: transparent !important;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(231, 17, 25, 0.4);
z-index: 2;
}
.active-service-card::before { opacity: 0 !important; }
.active-service-card i { color: var(--color-white) !important; }
.active-service-card:hover {
transform: translateY(-3px) scale(1.01);
box-shadow: 0 8px 18px rgba(231, 17, 25, 0.7);
}




/* === 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;
}
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
.service-block { grid-template-columns: 1fr; gap: 3rem; min-height: auto; }
.service-feature { position: relative; top: auto; max-height: none; padding: 2rem; }
.service-details h4 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.services-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
}






/* =============
7. BUTTONS
=============== */
.btn-primary {
background-color: var(--color-red);
color: white;
padding: 1rem 2rem;
border-radius: 5px;
font-weight: 700;
text-transform: uppercase;
font-size: 1.125rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
0 4px 6px -4px rgba(0, 0, 0, 0.1);
transition: all 0.3s;
transform: scale(1);
}
.btn-primary:hover {
background: linear-gradient(135deg, #e71118, #0a2e69);
transition: all 0.4s ease;
}
.btn-secondary {
color: white;
padding: 1rem 2rem;
border-radius: 0.75rem;
font-weight: 700;
text-transform: uppercase;
font-size: 1.125rem;
border: 2px solid white;
transition: all 0.3s;
}
/* Wrapping container for CTA button */
.cta-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px 10px;
    text-align: center;
}
.cta-wrapper .btn-primary {
    display: inline-block;
}
.btn-secondary:hover {
background: linear-gradient(135deg, #e71118, #0a2e69);
transition: all 0.4s ease;
}
.btn-dark {
background-color: var(--color-darkblue);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 0.75rem;
font-weight: 700;
text-transform: uppercase;
font-size: 0.875rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
0 2px 4px -2px rgba(0, 0, 0, 0.1);
transition: all 0.3s;
}
.btn-dark:hover {
background: linear-gradient(135deg, #e71118, #0a2e69);
transition: all 0.4s ease;
}
.btn-primary,
.btn-secondary,
.btn-dark {
text-decoration: none;
display: inline-block;
}
@media (max-width: 1024px) {
.btn-primary,
.btn-secondary,
.btn-dark {
font-size: 1rem;
padding: 0.9rem ;
border-radius: 0.65rem;
}
}
@media (max-width: 768px) {
.btn-primary,
.btn-secondary,
.btn-dark {
display: block;
width: 92%;
font-size: 0.95rem;
padding: 0.8rem ;
border-radius: 0.6rem;
text-align: center;
margin-bottom: 10px;
}
.btn-primary:hover,
.btn-secondary:hover,
.btn-dark:hover {
transform: scale(1.02);
}
}
@media (max-width: 768px) {
    .cta-wrapper {
        padding: 10px 15px;
    }
    .cta-wrapper .btn-primary {
        width: 80%;
        margin-right: 30px;
    }
}
