/* Custom Styles to ensure exact font weights and behavior */
body {
    font-family: 'Rajdhani', sans-serif;
    color: #223450;
}
h1, h2, h3, h4, h5, h6, .nav-link, .btn-text {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
}

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

/* Hero Overlay Gradient */
.hero-top-gradient {
    /* Stronger white gradient at the top to blend the nav */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 30%, rgba(255,255,255,0) 100%);
}

/* Accordion Transition */
.accordion-content {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
.accordion-content.active {
    opacity: 1;
}
.accordion-icon {
    transition: transform 0.3s ease;
}
.accordion-btn[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

/* Form styling */
input, textarea {
    border: 1px solid #e5e7eb;
    outline: none;
}
input:focus, textarea:focus {
    border-color: #008080;
    ring: 2px solid #008080;
}