:root {
  /* existing palette (kept for navbar) */
  --black:#000; --off-white:#e0e0e0; --white:#fff; --light-grey:#dadada;
  /* site palette */
  --bg:#0b1220; --bg-soft:#0f1a30; --text:#e8ecf3; --muted:#ffffff;
  --brand:#e7b44b; --brand-2:#5cc8ff; --stroke:rgba(255,255,255,.08);
  --shadow:0 10px 30px rgba(0,0,0,.35); --radius:16px;


}



/* General Styles */
html { background: var(--bg); scroll-padding-top: 55; }
html, body { height: 100%; }
body {
  margin: 0; color: var(--text);
  font-family: 'Lato', sans-serif;
  line-height: 1.35;
  min-height: 100dvh;
  padding-top: 55px;        
  position: relative;               
}

.btn{padding:10px 16px; border-radius:999px; border:2px solid var(--stroke);
     background:rgba(255,255,255,.02); color:var(--text); font-weight:600; text-decoration:none; display:inline-block}

     .btn:hover{transform:translateY(-1px)}

.btn.gold{background:linear-gradient(135deg, var(--brand), #ffd98a); color:#1a1a1a; border:none}



h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #fff; /* Ensures white text on black background */
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #fff;
}

a {
    text-decoration: none;
    color: #FFB800;
}

a:hover {
    color: #FF9500;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-color: black; /* Black background for fallback */
    margin-top: 60px; /* To avoid overlap with navbar */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* Ensures video is behind the content */
}

.hero-content {
    z-index: 1;
    max-width: 600px;
    background-color: rgba(0, 0, 50, 0.5); /* Transparent dark blue overlay */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Client Sections */
.client-section {
    display: flex;
    padding: 60px 20px;
    align-items: center;
    justify-content: center;
}

.dark {
    background-color: #111;
    color: #fff;
}

/* Light Client Section with Dark Gray Text */
.light {
    background-color: #1e1010; /* Light background */
    color: #333; /* Dark gray text */
}

.client-section .content {
    flex: 1;
    padding: 20px;
    color: #333; /* Dark gray text applied to content */
}

.client-section .image-container {
    flex: 1;
    padding: 20px;
}

.client-section img {
    width: 100%;
    height: 400px; /* Set a fixed height for all images */
    object-fit: cover; /* Ensures the image covers the container and crops excess parts */
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Links */
.cta-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2737e8;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #01019f;
}


/* Base Footer Styles */
footer {
    background-color: var(--black);
    color: var(--off-white);
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid var(--silver);
    font-size: 80em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer a {
    color: var(--copper);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    text-decoration: underline;
    color: var(--deep-blue); /* Adds a slight color change on hover */
}

/* Footer Content Container */
.footer-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Footer Links Styling */
.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links li {
    margin: 0 5px;
}

.footer-links a {
    font-size: 0.9em;
}

/* Mobile-first approach already provided */

/* Medium screens (tablets, 768px and up) */
@media (min-width: 768px) {
    .client-section {
        flex-direction: row;
    }

    .hero-content {
        max-width: 700px;
        padding: 30px;
    }

    .client-section img {
        height: 350px;
    }
}

/* Large screens (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-section {
        height: 80vh;
    }

    .hero-content {
        max-width: 900px;
        padding: 40px;
    }

    .client-section .content {
        padding: 40px;
    }

    .client-section img {
        height: 450px;
    }
}

/* Extra large screens (1200px and up) */
@media (min-width: 1200px) {
    .hero-section {
        height: 75vh;
    }

    .hero-content {
        max-width: 1000px;
        padding: 50px;
    }

    .client-section {
        padding: 80px 40px;
    }

    .client-section img {
        height: 500px;
    }
}

/* Small screens (max-width: 600px) */
@media (max-width: 600px) {
    .hero-content {
        max-width: 90%;
        padding: 15px;
    }

    .client-section {
        flex-direction: column;
        padding: 20px;
    }

    .client-section .content, .client-section .image-container {
        padding: 10px;
    }

    .client-section img {
        height: auto;
        margin-bottom: 20px;
    }

    .cta-link {
        display: block;
        margin-top: 15px;
        width: fit-content;
    }
}


/* Small screens (max-width: 600px) */
@media (max-width: 600px) {
    footer {
        padding: 15px 20px;
        font-size: 0.50em;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Medium screens (600px to 992px) */
@media (min-width: 600px) and (max-width: 992px) {
    footer {
        padding: 20px 30px;
        font-size: 0.70em;
    }

    .footer-content {
        justify-content: space-around;
    }
}

/* Large screens (992px and up) */
@media (min-width: 992px) {
    footer {
        padding: 25px 50px;
        font-size: 0.80em;
    }

    .footer-content {
        justify-content: space-between;
    }
}

/* Extra large screens (1200px and up) */
@media (min-width: 1200px) {
    footer {
        padding: 30px 60px;
    }

    .footer-content {
        max-width: 1400px;
    }
}