body{
    background-color: #001233;
}

/* Global Headings and Links */
h1, h2, h3, h4, h5, h6, i, a {
    color: #ff9f1c; /* Navy Blue */
}

.nav-item a {
    color: #fff !important;
}

.nav-item a.active{
    color: #ff9f1c !important;
}

/* About Image */
.about-img {
    width: 500px;
    height: 500px;
    margin: 0 50px;
}

/* Banner Section */
.banner {
    height: 88vh;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

/* Outline Light Button */
.btn-outline-light {
    background-color: transparent !important;
    color: #fff !important;
}

.btn-outline-light:hover {
    background-color: #ff9f1c !important;
}

.touch{
    background-color: #001233 !important;
    border: 1px solid #fff;
}

.explore:hover{
    background-color: #001233 !important;
    color: #fff !important;
}

.explore{
    background-color: #fff !important;
    color: #000 !important;
}

/* Services Card */
.service-card {
    position: relative;
    background: #f8f8f8;
    color: #333;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.service-card::before {
    content: '';
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .icon{
    background-color: #ff9f1c;
    color: #fff;
}

.icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #ff9f1c; /* Gold */
    background-color: #b5e1f7; /* Light gold background */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.service-card h5,
.service-card p {
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.service-card .read-more {
    opacity: 0;
    position: relative;
    z-index: 1;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
    display: inline-block;
    transform: translateY(10px);
    transition: all 0.4s ease;
    font-size: 14px;
    text-decoration: none;
}

.service-card:hover .read-more {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover h5,
.service-card:hover p,
.service-card:hover i {
    color: #fff;
}

/* About Banner */
.about-banner {
    background: url('assets/banner2.jpg') center center / cover no-repeat;
    height: 300px;
    position: relative;
}

.about-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.about-banner .breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff;
    opacity: 1;
}

.about-banner .container {
    position: relative;
    z-index: 1;
}

/* Service Icon */
.service-icon {
    font-size: 28px;
    color: #ff9f1c; /* Gold */
    background-color: #b5e1f7;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Card Hover */
.card:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: 0.3s;
    transform: translateY(-10px);
    background-color: #D4AF37;
    color: #fff;
}

.card:hover i {
    color: #fff;
    background-color: #ff9f1c; /* Navy background on hover */
}

.card:hover h1,
.card:hover h2,
.card:hover h3,
.card:hover h4,
.card:hover h5,
.card:hover h6,
.card:hover p,
.card:hover a,
.card:hover small,
.card:hover span {
    color: #fff !important;
}

/* Subscribe Box */
.subscribe-box {
    max-width: 500px;
    margin: 50px auto;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    color: #fff;
    background-color: #ff9f1c;
}

.btn:hover {
    background-color: #00142F;
}

.btn-accent {
    background-color: #D4AF37;
    color: #fff;
}

.btn-accent:hover {
    background-color: #B68F2F;
}

/* Responsive */
@media (max-width: 768px) {
    .about-img {
        margin: 0;
    }

    .banner {
        height: 25vh;
        background-position: top;
    }
}
