body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
}
.content {
    flex-grow: 1;
}

.footer a {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Social Icons */
.footer a i {
    transition: transform 0.3s ease;
}

.footer a:hover {
    color: #FFD700 !important;
}

.footer a:hover i {
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 2px 4px rgba(108, 99, 255, 0.3));
}

/* Quick Links */
.footer ul {
    padding: 0;
}

.footer ul li {
    margin-bottom: 6px;
}

.footer ul li a {
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    text-decoration: underline;
    color: #FFD700 !important;
}

/* Button Hover */
.footer .btn-outline-light:hover {
    background: linear-gradient(135deg, #6c63ff 0%, #4a90e2 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.copyright-block {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .border-start {
        border-left: none !important;
        padding-left: 0 !important;
    }
}

.navbar {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    object-fit: cover;
    height: 250px;
    width: 100%;
    border-radius: 10px;
}

.input-group-lg .form-control {
    border-radius: 25px;
    padding: 1rem;
}

.btn-primary {
    border-radius: 25px;
    padding: 0.75rem 2rem;
}

.collapse {
    transition: height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.collapse.show {
    display: block;
    height: auto;
}

.btn-close {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.btn-close:hover {
    color: red;
}

.position-relative {
    position: relative;
}

#form-response {
    z-index: 10;
    margin-bottom: 1rem;
}
.alert {
    margin: 0;
    padding: 0.75rem 1rem;
    border-radius: 5px;
}

.card {
    transition: box-shadow 0.3s ease-in-out;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-text {
    margin-bottom: 1rem;
}

.about-section {
    /*background-color: #f9f9f9;*/
    background: linear-gradient(135deg, #e9f2ff, #ffffff);
    padding: 5rem 0;
}

.about-section h2 {
    font-size: 2.5rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.btn-primary {
    border-radius: 30px;
}

.container {
    max-width: 1000px;
}

.btn-outline-primary {
    border-radius: 30px;
    padding: 0.75rem 2rem;
}

.list-unstyled a {
    font-size: 1.1rem;
}

.list-unstyled a:hover {
    text-decoration: underline;
}

.hero-section {
    background: linear-gradient(135deg, #2b5876 50%, #4e4376 100%);
}

/* Ensures smooth transition between sections */
.sub-hero-container {
    position: relative;
    z-index: 2;
}

.card {
    border: none;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    border-radius: 30px;
    padding: 0.75rem 2rem;
}

.form-control {
    padding: 1rem;
    font-size: 1rem;
}

.btn-primary {
    border-radius: 30px;
    padding: 0.75rem 2rem;
}

.location {
    border-left: 2px solid #fff;
    padding-left: 1.5rem;
}

/* Demo Section Styles */
.demo-pulse {
    animation: pulse 2s infinite;
    border-radius: 50px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(108, 99, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(108, 99, 255, 0); }
}

.ai-response {
    border-left: 3px solid #6c63ff;
    padding-left: 1rem;
    transition: all 0.3s ease;
}

.progress-bar {
    background: linear-gradient(90deg, #6c63ff 0%, #4a90e2 100%);
}

.demo-card {
    max-width: 800px;
    margin: 2rem auto;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.text-gold {
    color: #BD9E24; /* Sets text color to gold */
}