/* Universal Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #ffffff;
}

/* Header Styling */
.main-header {
    background-color: #efefef; /* Light grey background from image */
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.main-logo {
    height: 90px;
    margin-right: 50px;
}

.nav-bar ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-bar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 900;
    font-size: 14px;
}

.nav-bar ul li a.active, 
.nav-bar ul li a:hover {
    color: #1a1a8c; /* Blue color for active link */
}

.bottom-navy-line {
    height: 7px;
    background-color: #1e1e50; /* Thick navy line */
}

.banner-slider {
    width: 100%;
    margin-top: 30px;
}

.slider-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border: 4px solid #a0522d;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 12px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
}
.left-arrow { left: 10px; }
.right-arrow { right: 10px; }

/* Dots */
.dots-container {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
}
.dot.active {
    background: #000;
}


/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.footer {
    background-color: #06061a; /* Deep black background */
    color: #ffffff;
    padding: 60px 10% 20px 10%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

/* Brand Column Specifics */
.brand-col {
    flex: 2; /* Makes the first column wider */
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 14px;
}

/* List Styles */
.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

/* Social Media Icons */
.social-links {
    margin-top: 25px;
}

.icons {
    display: flex;
    gap: 10px;
}

.icon-box {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 12px;
}

/* Footer Bottom */
.footer-divider {
    border: 0;
    border-top: 1px solid #333;
    margin: 40px 0 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}