* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    filter: hue-rotate(0deg) saturate(1.2) brightness(1.1);
    transition: filter 0.3s ease;
    animation: colorShift 6s infinite;
}

@keyframes colorShift {
    0% { filter: hue-rotate(0deg) saturate(1.2) brightness(1.1); }
    25% { filter: hue-rotate(90deg) saturate(1.4) brightness(1.2); }
    50% { filter: hue-rotate(180deg) saturate(1.3) brightness(1.1); }
    75% { filter: hue-rotate(270deg) saturate(1.4) brightness(1.2); }
    100% { filter: hue-rotate(360deg) saturate(1.2) brightness(1.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #4A90E2;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: #FFD700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideIn 0.3s ease;
}

/* Full-screen modal for services */
.modal.services-modal .modal-content {
    margin: 0;
    padding: 40px;
    border-radius: 0;
    width: 100%;
    max-width: none;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: auto;
}

.modal.services-modal .close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 40px;
    z-index: 2001;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal.services-modal .close:hover {
    background: rgba(255,255,255,1);
    transform: scale(1.1);
}

.modal.services-modal h2 {
    font-size: 3rem;
    margin-top: 60px;
    margin-bottom: 50px;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 25px;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #4A90E2;
}

.modal-content h2 {
    color: #4A90E2;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.services-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.service-modal-item {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-modal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4A90E2, #FFD700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-modal-item:hover::before {
    transform: scaleX(1);
}

.service-modal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.service-modal-item h3 {
    color: #4A90E2;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #4A90E2, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(74, 144, 226, 0.3);
    position: relative;
    padding-bottom: 8px;
}

.service-modal-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #4A90E2, #FFD700);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-modal-item:hover h3::after {
    width: 100%;
}

.service-modal-item p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Modal Styles */
.contact-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.contact-section {
    padding: 25px 0;
    transition: none;
}

.contact-section:hover {
    transform: none;
    box-shadow: none;
}

.contact-section h3 {
    color: #4A90E2;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-section p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-section strong {
    color: #333;
    font-weight: 600;
}

.opening-times {
    grid-column: 1 / -1;
}

.opening-schedule {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: none;
}

.opening-schedule p {
    margin-bottom: 8px;
}

.opening-schedule .note {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.opening-schedule .closed {
    color: #d32f2f;
    background: #ffebee;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
}

/* Referral Form Styles */
.referral-modal .modal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.referral-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4A90E2;
}

.form-section h3 {
    color: #4A90E2;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group input:required:invalid,
.form-group select:required:invalid,
.form-group textarea:required:invalid {
    border-color: #dc3545;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.btn-cancel,
.btn-submit {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel {
    background: #6c757d;
    color: white;
}

.btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #357ABD, #2E6DA4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4A90E2 0%, #87CEEB 100%);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    margin-top: 20px;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    color: white;
    padding-right: 40px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Workforce Section (In Memory of Frankie) */
.workforce {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.workforce .container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #4A90E2, #87CEEB);
    padding: 60px 40px;
    border-radius: 50px;
    color: white;
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.workforce .container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: bubble-float 6s ease-in-out infinite;
}

@keyframes bubble-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.workforce h2 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.workforce p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto 20px auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.about-section h2 {
    text-align: center;
    color: #4A90E2;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text {
    max-width: 800px;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

/* Slideshow Section */
.slideshow-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.slideshow-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.slide {
    display: none;
    position: relative;
    animation: fadeIn 0.8s ease-in-out;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-section h2 {
    text-align: center;
    color: #4A90E2;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    text-align: center;
    transition: all 0.3s ease;
}

.form-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-download-item {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block; /* Ensure the whole box is clickable */
}

.form-download-item h3 {
    color: #4A90E2; /* Blue color for titles */
    font-size: 1.4rem;
    margin-bottom: 10px;
    transition: none; /* Remove animation */
}

.form-download-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #FFD700; /* Yellow border on hover */
}

.form-download-item u {
    color: #4A90E2;
    font-weight: bold;
}

.service-card h3 {
    color: #4A90E2;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFF8DC 100%);
    text-align: center;
}

.experience-section h2 {
    color: #4A90E2;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.experience-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #4A90E2;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: start;
}

.company-info-footer h3 {
    color: #FFD700;
    font-family: 'Fuzzy Bubbles', cursive;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.company-info-footer p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.contact-info h3 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-info p {
    font-size: 1.1rem;
    font-weight: bold;
}

.company-details p {
    margin-bottom: 5px;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 8px 16px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .slideshow-container {
        margin: 0 10px;
    }
    
    .slide img {
        height: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .company-info-footer h3 {
        font-size: 1.5rem;
    }
    
    .services-modal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .modal.services-modal .modal-content {
        padding: 30px 20px;
    }
    
    .modal.services-modal h2 {
        font-size: 2.5rem;
        margin-top: 40px;
    }
    
    .modal.services-modal .close {
        width: 50px;
        height: 50px;
        font-size: 30px;
        top: 15px;
        right: 20px;
    }
    
    .contact-modal-grid {
        grid-template-columns: 1fr;
    }
    
    .referral-modal .modal-content {
        max-width: 95%;
        margin: 5% auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .service-modal-item {
        padding: 20px;
    }
    
    .contact-section {
        padding: 20px;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .workforce .container {
        padding: 40px 25px;
        border-radius: 40px;
    }
    
    .workforce h2 {
        font-size: 2rem;
    }
    
    .workforce p {
        font-size: 1.1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 1.8rem;
    }
    
    .modal-content p {
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
    }
    
    .btn-cancel,
    .btn-submit {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .contact-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-section p {
        font-size: 0.9rem;
    }
    
    .opening-schedule p {
        font-size: 0.9rem;
    }
    
    .opening-schedule .note {
        font-size: 0.8rem;
    }
    
    .opening-schedule .closed {
        font-size: 0.9rem;
    }
    
    .company-info-footer h3 {
        font-size: 1.3rem;
    }
    
    .company-info-footer p {
        font-size: 0.8rem;
    }
    
    .contact-info h3 {
        font-size: 1.1rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .company-details p {
        font-size: 0.8rem;
    }
}



/* Form Download Grid */
.form-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-download-item {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.form-download-item::before {
    content: ‘’;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4A90E2, #FFD700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.form-download-item:hover::before {
    transform: scaleX(1);
}

.form-download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.form-download-item h3 {
    color: #4A90E2;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #4A90E2, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(74, 144, 226, 0.3);
    position: relative;
    padding-bottom: 8px;
}

.form-download-item h3::after {
    content: ‘’;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #4A90E2, #FFD700);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.form-download-item:hover h3::after {
    width: 100%;
}

.form-download-item p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Modal specific styles for forms */
.modal .form-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4A90E2;
    margin-bottom: 20px;
}

.modal .form-section h3 {
    color: #4A90E2;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

.modal .form-group {
    margin-bottom: 15px;
}

.modal .form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 0.95rem;
    display: block;
}

.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.modal .form-group input:focus,
.modal .form-group select:focus,
.modal .form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.modal .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.modal .btn-submit {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
}

.modal .btn-submit:hover {
    background: linear-gradient(135deg, #357ABD, #2E6DA4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

@media (max-width: 768px) {
    .form-download-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .form-download-item {
        padding: 20px;
    }

    .form-download-item h3 {
        font-size: 1.2rem;
    }

    .modal .form-group input,
    .modal .form-group select,
    .modal .form-group textarea {
        font-size: 0.9rem;
    }

    .modal .btn-submit {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}



/* Form Download Grid Styles */
.form-download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.form-download-item {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.form-download-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4A90E2, #FFD700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.form-download-item:hover::before {
    transform: scaleX(1);
}

.form-download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.form-download-item h3 {
    color: #4A90E2;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #4A90E2, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 8px;
}

.form-download-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #4A90E2, #FFD700);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.form-download-item:hover h3::after {
    width: 80%;
}

.form-download-item p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.referral-section-content {
    padding: 40px 20px;
    text-align: center;
}

.referral-section-content h2 {
    color: #4A90E2;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive adjustments for form grid */
@media (max-width: 768px) {
    .form-download-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 10px;
    }
    
    .form-download-item {
        padding: 20px;
    }
    
    .form-download-item h3 {
        font-size: 1.1rem;
    }
    
    .referral-section-content h2 {
        font-size: 2rem;
    }
}



.form-download-item h3 {
    color: #4A90E2; /* Solid blue color */
    background: none; /* Remove gradient background */
    -webkit-background-clip: unset; /* Remove background clip */
    -webkit-text-fill-color: #4A90E2; /* Ensure text color is blue */
    text-shadow: none; /* Remove text shadow */
    padding-bottom: 0; /* Remove padding if not needed */
}

.form-download-item h3::after {
    display: none; /* Hide the animated underline */
}

.form-download-item:hover h3::after {
    width: 0; /* Ensure no animation on hover */
}



/* Pricing Page Styles */
.pricing-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-intro {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-intro h3 {
    color: #4A90E2;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-intro p {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #4A90E2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-header h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.price {
    color: #4A90E2;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.pricing-description {
    text-align: left;
}

.pricing-description p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.pricing-note {
    margin-top: 50px;
}

.note-card {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.note-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.note-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    background: white;
    color: #4A90E2;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for pricing page */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .pricing-intro h3 {
        font-size: 1.8rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .note-card {
        padding: 30px 20px;
    }
    
    .note-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-header h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
}


/* Chatbot Styles */
/* Floating circular chat bubble */
#chatbotToggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #4A90E2;
  color: #ffffff;
  font-weight: bold;
  font-family: "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}
#chatbotToggle:hover { background: #357ABD; transform: scale(1.08); }

/* Tooltip label */
#chatbotLabel {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #4A90E2;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  z-index: 10001;
  opacity: 0.95;
}

/* Chat window */
#chatbot {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 360px;
  max-width: 90%;
  height: 520px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  font-family: "Segoe UI", Arial, sans-serif;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10000;
}
#chatbot.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* Header */
#chatHeader {
  background: #4A90E2;
  color: #ffffff;
  padding: 12px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px 16px 0 0;
}
#closeBtn { cursor: pointer; font-size: 18px; }

/* Messages */
#chatMessages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: #f0f8ff;
  display: flex;
  flex-direction: column;
}
.message {
  margin: 8px 0;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 80%;
  word-wrap: break-word;
  line-height: 1.4;
  animation: fadeIn 0.3s ease;
}
.bot { background: #e0f0ff; color: #003366; align-self: flex-start; }
.user { background: #4A90E2; color: #ffffff; align-self: flex-end; }
.typing { font-style: italic; color: #888; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* Input */
#chatInputContainer { display: flex; padding: 10px; background: #f1f1f1; }
#chatInput { flex: 1; padding: 8px; border-radius: 8px; border: 1px solid #4A90E2; font-family: inherit; }
#sendBtn { margin-left: 5px; padding: 8px 14px; border: none; background: #4A90E2; color: #ffffff; border-radius: 8px; cursor: pointer; }
#sendBtn:hover { background: #357ABD; }

/* Option buttons */
.option-btn { display: inline-block; margin: 5px 4px; padding: 6px 12px; background: #4A90E2; color: #ffffff; border-radius: 8px; cursor: pointer; font-size: 14px; }
.option-btn:hover { background: #357ABD; }

/* Responsive adjustments for chatbot */
@media (max-width: 768px) {
  #chatbotToggle { width: 55px; height: 55px; bottom: 15px; right: 15px; font-size: 12px; }
  #chatbot { width: 100%; right: 0; bottom: 0; height: 100%; max-width: none; border-radius: 0; }
  #chatbotLabel { bottom: 80px; right: 15px; font-size: 12px; }
}
@media (max-width: 480px) {
  #chatbotToggle { width: 50px; height: 50px; font-size: 11px; bottom: 12px; right: 12px; }
  #chatbot { width: 100%; height: 100%; bottom: 0; right: 0; border-radius: 0; }
}

