body {
    font-family: 'Open Sans', sans-serif;
    color: #374151; /* Softer black */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Cormorant Garamond', serif;
}
.nav-link {
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #CBA65E;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}
.nav-link:hover::after, .nav-link-active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
/* Styling for the new services tabs */
.service-tab {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.service-tab.active {
    background-color: #1A294D;
    color: white;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border-color: #1A294D;
}
.service-content {
    display: none;
}
.service-content.active {
    display: block;
    animation: fadeIn 0.6s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.cta-button svg {
    transition: transform 0.3s ease;
}
.cta-button:hover svg {
    transform: translateX(4px);
}



/*
Custom CSS rules
*/

h4 {
    font-size: 1.5rem !important;
    line-height: 1;
}

.bg-brand-gold {
    background-color: rgb(203 166 94) !important;
}

.font-semibold {
    font-weight: 900 !important;
}

@media (min-width: 768px) {
    h1 {
        font-size: 4rem !important;
        line-height: 1;
    }

    .main-desc {
        font-size: 1.8rem !important;
        line-height: 2.2rem !important;
    }

    .second-desc {
        font-size: 1.5rem !important;
        line-height: 2.6rem !important;
    }

    .second-btn {
        font-size: 1.5rem !important;
        margin-top: 20px;
    }

    h2 {
        font-size: 4.5rem !important;
        line-height: 1;
    }

    .third-desc {
        font-size: 1.5rem !important;
        line-height: 2.6rem !important;
    }

    h4 {
        font-size: 1.8rem !important;
        line-height: 1;
    }

    .third-p {
        font-size: 1.2rem !important;
    }

    .fourth-p {
        font-size: 1.2rem !important;
        line-height: 1.9rem !important;
    }

    .fifth-p {
        font-size: 1rem !important;
        line-height: 1.9rem !important;
    }
}

@media (min-width: 1024px) {

    .second-desc {
        font-size: 1.3rem !important;
        line-height: 2.3rem !important;
    }
}

@media (min-width: 1280px) {
    h1 {
        font-size: 5rem !important;
        line-height: 1;
    }

    .second-desc {
        font-size: 1.5rem !important;
        line-height: 2.6rem !important;
    }
}

@media (min-width: 1536px) {
    h1 {
        font-size: 6rem !important;
        line-height: 1;
    }
}