/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    background-color: #1b3a50;
    color: #fff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Header Styles */
.transparent-header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0px, transparent 95%) !important;
    backdrop-filter: blur(10px);
    border-bottom: none;
    padding: 15px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Header Layout */
.navbar {
    padding: 0;
/* height: 90px; */
display: flex;
align-items: center;
padding: 30px 0px;
}

.navbar-brand {
    padding: 0px 45px;
    margin: 0;
}

.logo-container img {
    height: 90px;
    width: auto;
}

/* Header Content */
.header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

/* Header Right Section */
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 5px;
}

.social-icon {
    padding: 0;
    border-radius: 50%;
    font-size: 13px;
    line-height: 1.6em;
    height: 1.8em;
    width: 1.8em;
    text-align: center;
    border: 1px solid #DDDDDD;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

/* Navigation Menu */
.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.header-nav .nav-link {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    padding: 0px 18px 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    zoom: 1;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.header-nav .nav-link:hover {
    color: #FFD700 !important;
}

/* Main Content - Carousel */
.main-content {
    margin-top: 0;
    height: 100vh;
}

.carousel {
    height: 100vh;
}

.carousel-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background-color: transparent;
    padding: 0 20px;
    display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

/* Caption Title */
.caption-title {
    font-size: 50px;
    line-height: 40px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    text-decoration: none;
    background-color: transparent;
    border-width: 0px;
    border-color: rgb(255,255,255);
    border-style: none;
    
    letter-spacing: 13px;
    z-index: 5;
    margin-bottom: 20px;
    text-shadow: none;
    text-align: center;
    display: block;
}

/* Caption Subtitle */
.caption-subtitle {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    background-color: transparent;
    text-decoration: none;
    border-width: 0px;
    border-color: rgb(255,255,255);
    border-style: none;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 6;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 30px;
    text-align: center;
    display: block;
}

/* Caption Button */
.caption-button {
    background: #be9f7a;
display: inline-flex;
color: #FFFFFF !important;
letter-spacing: 1px;
text-transform: uppercase;
line-height: 1;
text-align: center;
padding: 11px 18px 13px 18px;
margin: 3px 5px 3px 0px;
text-decoration: none;
font-weight: 500;
font-size: 13px;
font-family: "Montserrat", Helvetica, Arial, sans-serif;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
z-index: 7;
max-width: 165px;
text-align: center;
display: flex;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.5);
    margin: 0 5px;
}

.carousel-indicators button.active {
    background: #FFD700;
}

/* Footer Styles */
.footer {
    background: #1b3a50;
    padding: 50px 0 20px;
    margin-top: 0;
}

.footer-heading {
    color: #eeeeee;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.1px;
}

.footer-text {
    color: #999999;
    line-height: 1.6;
    font-size: 13px;
    margin-bottom: 15px;
}

.footer-services {
    list-style: none;
    padding: 0;
}

.footer-services li {
    color: #999999;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-services li i {
    color: #FFD700;
    font-size: 10px;
}

.contact-info p {
    color: #999999;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.contact-info strong {
    color: #fff;
    font-weight: 600;
}

/* Contact list rows */
.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 3px 0px;
    border-top: 1px dotted rgba(255, 255, 255, 0.1);
}

.contact-row .label {
    font-family: "PT Sans", sans-serif;
    color: #999999;
    font-size: 14px;
    line-height: 1.8;
}

.contact-row .value {
    font-family: "PT Sans", sans-serif;
    color: #999999;
    justify-self: end;
    font-size: 15px;
    font-weight: 600;
}

/* Copyright */
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 30px;
    text-align: left;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin: 20px 0;
    }
    
    .header-icons {
        margin: 20px 0 0 0;
        flex-direction: row;
        justify-content: center;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
        margin-top: 0;
        gap: 8px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        z-index: 1000;
    }
    
    .header-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        width: 100%;
    }
    
    .header-nav {
        flex-wrap: wrap;
        gap: 15px;
        width: 100%;
        justify-content: flex-end;
    }

    .navbar {
        height: auto;
        padding: 15px 0;
        position: relative;
    }

    .caption-title {
        font-size: 40px;
        line-height: 35px;
        letter-spacing: 8px;
    }
    
    .caption-subtitle {
        font-size: 16px;
        line-height: 18px;
        letter-spacing: 1px;
    }
    
    .caption-button {
        font-size: 12px;
        padding: 10px 16px 12px 16px;
    }
}

@media (max-width: 767.98px) {
    .header-content {
        align-items: flex-start;
        padding: 15px;
    }
    
    .header-right {
        align-items: flex-start;
        width: 100%;
    }
    
    .header-nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: flex-start;
    }
    
    .social-icons {
        gap: 5px;
        justify-content: flex-start;
        width: 100%;
    }
    
    .social-icon {
        font-size: 11px;
        height: 1.6em;
        width: 1.6em;
    }
    
    .logo-container img {
        height: 45px;
    }
    
    .navbar-toggler {
        display: block;
    }
    
    .navbar-brand {
        padding: 0px 15px;
    }
}

@media (max-width: 575.98px) {
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon i {
        font-size: 16px;
    }
    
    .logo-main {
        font-size: 18px;
    }
    
    .icon-group {
        gap: 10px;
    }
    
    .icon-link {
        font-size: 14px;
    }
    
    .carousel-caption h2 {
        font-size: 1.3rem;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
    }

    .contact-row {
        grid-template-columns: 1fr;
        row-gap: 6px;
    }
    .contact-row .value {
        justify-self: start;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1b3a50;
}

::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFA500;
}

.services-list {
    margin-top: 8px;
}

.services-list li {
    display: block;
    padding: 0;
}

.services-list .service-row {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 5px 0;
    border-top: 1px dotted rgba(255, 255, 255, 0.1);
}

.services-list .chevron {
    color: #dddddd;
    font-size: 12px;
    line-height: 1;
    transform: translateY(-1px);
}

.services-list .service-text {
    font-family: "PT Sans", sans-serif;
    color: #dddddd;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .services-list .service-text { font-size: 13px; }
    .services-list .chevron { font-size: 11px; }
    .services-list .service-row { padding: 10px 0; }
}

@media (max-width: 575.98px) {
    .services-list .service-text { font-size: 12px; }
    .services-list .chevron { font-size: 10px; }
    .services-list .service-row { padding: 8px 0; }
}

.carousel-item {
    height: 100vh;
    position: relative;
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: none;
    padding: 0;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
