body {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-style: normal;
}
.hero-section {
    background: url('../images/back.jpg') no-repeat center center/cover;
    color: white;
    padding: 120px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
}
.btn-custom {
    background: linear-gradient(135deg, gold, goldenrod);
    color: brown;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: bold;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 10px rgba(218, 165, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-custom:hover::before {
    transform: translateX(100%);
}




/* Navbar Enhancements */
.text-gold {
    color: #d4af37 !important; /* Gold color */
}

.navbar-brand {
    transition: all 0.3s ease-in-out;
}

.navbar-brand:hover {
    transform: scale(1.1);
    color: #fff !important;
}

/* Navbar Link Hover Effect */
.nav-hover {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.nav-hover::after {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    background: #d4af37;
    transition: width 0.3s ease-in-out;
}

.nav-hover:hover::after {
    width: 100%;
}

/* Adjust icons for a sleek look */
.nav-hover i {
    transition: color 0.3s ease-in-out;
}

.nav-hover:hover i {
    color: #d4af37;
}


.dark-mode {
    background-color: #121212;
    color: #ffffff;
}
.testimonials-section, .services-section {
    padding: 100px 0;
    text-align: center;
}
.fixed-top {
    position: fixed;
    width: 100%;
    z-index: 1030;
}
#darkModeToggle {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1050;
    border-radius: 70%;
}

/*Service cards*/
.service-card img {
    width: 100%; /* Makes images responsive */
    height: 250px; /* Ensures all images have the same height */
    object-fit: cover; /* Ensures images maintain aspect ratio and cover the area */
    border-radius: 10px 10px 0 0; /* Rounds only the top corners */
}

.service-card {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}


/* Footer */
.footer {
    background-color: #5a3e1b;
    color: white;
    text-align: center;
    padding: 20px 0;
}


.service-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
    #darkModeToggle {
        position: fixed;
        bottom: 15px; /* Fix it at the bottom */
        right: 15px; /* Keep it at the right */
        top: auto; /* Remove top positioning */
    }
}


.service-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
