/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --primary-color: #002B5B;
    /* Deep Navy Blue */
    --accent-color: #C5A059;
    /* Sophisticated Gold */
    --text-color: #333333;
    --light-bg: #F9F9F9;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair+Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation Style Update */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    margin-bottom: 0;
}

.top-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0;
    font-size: 0.75rem;
    height: 35px;
    display: flex;
    align-items: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 40px;
    height: 100%;
}

.top-left {
    display: flex;
    gap: 15px;
    color: #555;
    font-family: 'Montserrat', sans-serif;
}

.top-left span i {
    color: #333;
    margin-right: 5px;
}

.top-right {
    background: #004a55;
    /* Dark Teal */
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px 0 60px;
    position: relative;
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%);
    margin-right: -40px;
}

.top-right a {
    color: #fff;
    margin-left: 10px;
    font-weight: 500;
    text-decoration: none;
}

/* Main Header */
.main-header {
    padding: 20px 0 0 0;
}

.main-header .container {
    max-width: 1300px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Logo on left, menu to the right */
    gap: 50px;
}

/* Logo Styling */
.logo-box {
    text-align: center;
    min-width: 300px;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #004a55;
    line-height: 1;
    letter-spacing: 2px;
}

.logo-line {
    width: 100%;
    height: 1px;
    background: #c5a059;
    margin: 5px 0;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #004a55;
    font-weight: 500;
    letter-spacing: 3px;
    margin-top: -5px;
}

.logo-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #004a55;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Navigation & Dropdowns */
nav ul {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #004a55;
    letter-spacing: 0.5px;
    padding: 10px 0;
    display: block;
}

nav ul li a i {
    font-size: 0.7rem;
    margin-left: 3px;
}

nav ul li a:hover {
    color: #c5a059;
}

/* Dropdown Menu Styling */
nav ul li ul.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    z-index: 1001;
    border-top: 3px solid #c5a059;
}

nav ul li:hover ul.dropdown {
    display: flex;
}

nav ul li ul.dropdown li {
    width: 100%;
}

nav ul li ul.dropdown li a {
    padding: 12px 20px;
    font-size: 0.75rem;
    border-bottom: 1px solid #f5f5f5;
    white-space: normal;
    line-height: 1.4;
}

nav ul li ul.dropdown li a:hover {
    background: #fbfbfb;
    color: #c5a059;
    padding-left: 25px;
}

nav ul li ul.dropdown li:last-child a {
    border-bottom: none;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 43, 91, 0.7), rgba(0, 43, 91, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn:hover {
    background: #b08d4a;
    transform: translateY(-2px);
}

/* Image Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 765px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    padding: 0;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.slide-content {
    text-align: left;
    color: var(--white);
    max-width: 100%;
    padding: 40px 60px;
    animation: slideInUp 0.8s ease-out;
    width: 100%;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    font-weight: 600;
}

.slide-content p {
    display: none;
}

.slide-content .btn {
    display: none;
}

/* Slider Controls Container (Bottom Right) */
.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

/* Navigation Arrows */
.slider-nav {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Slider */
@media (max-width: 1024px) {
    .slider-container {
        height: 680px;
    }

    .slide-content {
        padding: 35px 50px;
    }

    .slide-content h2 {
        font-size: 2.2rem;
    }

    .slider-controls {
        right: 30px;
        bottom: 25px;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 595px;
    }

    .slide-content {
        padding: 30px 40px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slider-controls {
        right: 25px;
        bottom: 20px;
    }

    .slider-nav {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 510px;
    }

    .slide-content {
        padding: 25px 30px;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slider-controls {
        right: 20px;
        bottom: 15px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    border-bottom: 4px solid var(--accent-color);
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Values Section */
.values {
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-item {
    background: var(--white);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.value-item i {
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Contact Strip */
.contact-strip {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.contact-strip h2 {
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #111;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}