:root {
    --navy-blue: #002366;
    --gold: #FFD700;
    --light-blue: #0066cc;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    /* New variables for feedback system */
    --primary: #4361ee;
    --success: #4cc9f0;
    --text: #2b2d42;
}
html, body {
  overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ======================= */
/* FEEDBACK BUTTON STYLES */
/* ======================= */
.feedback-button-container {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;
    animation: pulse 2.5s infinite;
}

.feedback-btn {
    background-color: var(--navy-blue);
    color: var(--gold);
    border: none;
    padding: 15px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.feedback-btn:hover {
    background-color: var(--light-blue);
    transform: translateX(5px);
}

@keyframes pulse {
    0% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.05); }
    100% { transform: translateY(-50%) scale(1); }
}

/* ===================== */
/* FEEDBACK MODAL STYLES */
/* ===================== */
#feedback-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: flex-start;
    padding-top: 30px;
    overflow-y: auto;
}

#feedback-modal.active {
    display: flex;
}

#feedback-modal .modal-content {
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: fadeInUp 0.5s ease-out;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}

.close-feedback-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--navy-blue);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.close-feedback-modal:hover {
    color: var(--light-blue);
    transform: rotate(90deg);
}

#feedback-modal h2 {
    color: var(--navy-blue);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 28px;
    text-align: center;
}

#feedback-modal p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-size: 16px;
    text-align: center;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.2s; }
.form-group:nth-child(2) { animation-delay: 0.3s; }
.rating-section { animation-delay: 0.4s; }
.form-group:nth-child(4) { animation-delay: 0.5s; }

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

.optional {
    color: #888888;
    font-weight: normal;
    font-size: 13px;
}

/* Star Rating */
.rating-section {
    margin: 25px 0;
}

.star-rating {
    display: flex;
    justify-content: flex-end;
    direction: rtl;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 36px;
    color: #CCCCCC;
    padding: 0 3px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.star-rating label:hover {
    transform: scale(1.2) rotate(5deg);
    color: var(--gold);
    text-shadow: 0 0 8px rgba(212, 160, 23, 0.4);
}

.star-rating label:hover ~ label {
    transform: scale(1.1);
    color: var(--gold);
}

.star-rating input:checked ~ label {
    color: var(--gold);
    text-shadow: 0 0 5px rgba(212, 160, 23, 0.3);
    animation: starBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes starBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.rating-text {
    text-align: right;
    font-size: 14px;
    color: #888888;
    margin-top: 5px;
    font-style: italic;
    opacity: 0.8;
    transition: all 0.3s;
}

/* Success Message Styles */
.success-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.success-message.active {
    display: flex;
}

.feedback-container {
    width: 280px;
    text-align: center;
    position: relative;
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Message bubble animation */
.message-bubble {
    width: 65px;
    height: 45px;
    background: var(--primary);
    border-radius: 22px;
    margin: 0 auto 20px;
    position: relative;
    animation: 
        bubbleFloat 0.8s ease-in-out infinite alternate,
        bubbleShrink 0.4s 0.7s forwards;
    transform-origin: bottom;
}

.message-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    margin-left: -10px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: var(--primary) transparent;
    animation: bubbleTailFade 0.3s 0.7s forwards;
}

@keyframes bubbleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

@keyframes bubbleShrink {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}

@keyframes bubbleTailFade {
    to { opacity: 0; }
}

/* Checkmark that appears */
.checkmark-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    opacity: 0;
    animation: checkmarkAppear 0.4s 0.7s forwards;
}

.checkmark-bg {
    fill: none;
    stroke: #e9ecef;
    stroke-width: 4;
}

.checkmark {
    fill: none;
    stroke: var(--success);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: checkmarkDraw 0.5s 0.9s ease-out forwards;
}

@keyframes checkmarkAppear {
    0% { transform: translateX(-50%) scale(0.5); opacity: 0; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

@keyframes checkmarkDraw {
    to { stroke-dashoffset: 0; }
}

/* Progress bar */
.progress-container {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin: 30px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--success));
    border-radius: 3px;
    animation: progressFill 1.5s linear forwards;
}

@keyframes progressFill {
    0% { width: 0%; }
    70% { width: 70%; }
    100% { width: 100%; }
}

/* Thank you message */
.thank-you {
    opacity: 0;
    transform: translateY(10px);
    animation: thankYouAppear 0.4s 1.1s cubic-bezier(0.2, 0.8, 0.4, 1) forwards;
}

.thank-you-icon {
    font-size: 48px;
    margin-bottom: 10px;
    display: inline-block;
    animation: iconPulse 0.8s 1.5s infinite alternate;
}

.thank-you h2 {
    color: var(--text);
    font-size: 22px;
    font-weight: 700;
    margin: 8px 0;
}

.thank-you p {
    color: #6c757d;
    font-size: 15px;
    margin: 5px 0;
    line-height: 1.4;
}

@keyframes thankYouAppear {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes iconPulse {
    to { transform: scale(1.1); }
}

/* Micro-interactions */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: sparkleFlash 0.3s 1.3s forwards;
}

@keyframes sparkleFlash {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(0); }
}

/* ======================== */
/* REST OF YOUR EXISTING CSS */
/* ======================== */

/* 3D Animation Elements */
.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.rotate {
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header Styles */
header {linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 1rem 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 100%;
    padding: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 10px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-right: 20px;

    
}

nav ul li a:hover {
    color: var(--gold);
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--gold);
    color: var(--navy-blue);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    margin-left: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}
/* Feedback Form Submit Button */
.submit-btn {
    background: var(--gold); /* Changed from gradient to solid gold */
    color: var(--navy-blue); /* Changed text color to navy blue */
    border: none;
    padding: 15px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(43, 58, 85, 0.2);

}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease-out;
}

.submit-btn:hover::after {
    transform: translateX(100%);
}

/* Hero Section */
.hero {
    padding: 50px 0 50px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    margin-left: 50px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    margin-left: 100px;
    opacity: 0.9;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 500px;
    margin-right: 100px;
}

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




/* Services Section */
.services {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    margin-top: -80px;
    font-size: 2rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--gold);
}

.section-title p {
    color: var(--dark-gray);
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 35, 102, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--white);
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 0 20px;
    position: relative;
    margin-bottom: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    70% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(0.8); opacity: 0.7; }
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.step p {
    color: var(--dark-gray);
    font-size: 0.8rem;
}

/* Contact Form Section */
.contact {
    padding: 99px 0;
    background-color: var(--light-gray);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    margin-left: 20px;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 0.8rem;
    margin-right: 100px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 0.6rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    background-color: var(--gold);
    color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.5rem;
    margin-bottom: 15px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-right: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy-blue);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--navy-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 35, 102, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-left: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold);
    margin-right: 50px;

}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}



/* ===== Services Page Specific Styles ===== */
.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.service-details {
    margin-top: 20px;
}

.service-details li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-details .fa-check {
    color: var(--navy-blue);
    position: absolute;
    left: 0;
    top: 5px;
}

.service-notes {
    margin-top: 50px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-notes h3 {
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.service-notes li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.service-notes .fa-info-circle {
    color: var(--navy-blue);
    position: absolute;
    left: 0;
    top: 5px;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-section p {
    margin-top: 15px;
    font-style: italic;
}



.close-modal {
    color: var(--navy-blue);
    font-size: 28px;
    font-weight: bold;
    transition: all 0.3s;
}

.close-modal:hover {
    color: var(--light-blue);
    transform: rotate(90deg);
}

/* Home Button Styles */
.home-button-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.home-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #002366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.home-button:hover {
    background-color: #FFD700;
    color: #002366;
    transform: translateY(-2px);
}

/* Optional field styling */
.optional-field {
    color: #6c757d;
    font-size: 0.85em;
    font-weight: normal;
    font-style: italic;
    margin-left: 5px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-image {
        width: 45%;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image {
        position: relative;
        width: 80%;
        margin: 40px auto 0;
        top: auto;
        right: auto;
        transform: none;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 80%;
        margin-bottom: 40px;
    }
    
    .contact-container {
        flex-direction: column;
    }

    /* Feedback Modal Responsive */
    #feedback-modal {
        padding-top: 20px;
    }

    #feedback-modal .modal-content {
        padding: 20px;
        max-height: calc(100vh - 40px);
    }
    
    .star-rating label {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px 10px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-card, .step {
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-content {
        width: 90%;
        margin: 30px auto;
        padding: 20px;
    }

    /* Feedback Modal Responsive */
    #feedback-modal {
        padding-top: 10px;
    }

    #feedback-modal .modal-content {
        width: 95%;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 50px 0 60px;
    }
    
    .hero h1 {
        font-size: 0.8rem;
        margin-bottom: 15px;
	margin-right: 30px;
    }
    
    .hero p {
        font-size: 0.5rem;
        margin-right: 80px;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .section-title h1 {
        font-size: 1rem;
    }
    
    .section-title p {
        font-size: 0.7rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-control {
        padding: 10px 12px;
    }
    
    .footer-col {
        margin-bottom: 20px;
    }
    
    /* Adjust the floating animation for mobile */
    .floating {
        animation: floating-mobile 4s ease-in-out infinite;
    }
    
    @keyframes floating-mobile {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }
}

/* Special Tablet Landscape Adjustments */
@media (min-width: 768px) and (max-width: 992px) and (orientation: landscape) {
    .hero-content {
        max-width: 60%;
    }
    
    .hero-image {
        width: 35%;
    }
    
    .steps {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .step {
        width: 45%;
        min-width: auto;
    }
}

@media (max-width: 768px) {
  /* Mobile Navigation Reset */
  #navbar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Space between buttons */
    padding: 0;
    margin: 10px 0 0 0;
    list-style: none;
  }

  #navbar ul li {
    margin: 0;
    padding: 0;
  }

  /* Pure Text Buttons */
  #navbar ul li a {
    display: block;
    padding: 6px 10px;
    color: white; /* Keep your text color */
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    background: none !important; /* Remove all backgrounds */
    border-radius: 0 !important; /* Remove rounded corners */
    box-shadow: none !important; /* Remove shadows */
    border: none !important; /* Remove borders */
  }

  /* Hover Effect (Optional) */
  #navbar ul li a:hover {
    text-decoration: underline; /* Simple hover effect */
    color: var(--gold); /* Use your gold color */
  }
}

/* Form Field Adjustments for Mobile */
@media (max-width: 576px) {
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-control {
        font-size: 0.9rem;
    }
    
    #terms-link-2 {
        display: block;
        margin-top: 5px;
    }
    
    #terms-error {
        display: block !important;
        margin-top: 5px;
    }
}

/* Modal Content Adjustments */
@media (max-width: 768px) {
    .modal-content {
        padding: 20px 15px;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-content h3 {
        font-size: 1.2rem;
    }
    
    .modal-content p, .modal-content li {
        font-size: 0.9rem;
    }
}

/* Footer Text Adjustments */
@media (max-width: 576px) {
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Image Optimization for Mobile */
@media (max-width: 768px) {
    .hero-image img {
        max-height: 150px;
        object-fit: contain;
    }
}

/* Button Size Adjustments */
@media (max-width: 400px) {
    .btn {
        margin-left: 5px;
        text-align: center;
    }
}


.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 40px;
  width: min-content;
  margin-left: 5px;
  border-radius: 50px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #FFD700;
  text-decoration: none;
}

.logo-text i {
  margin-right: 6px;
  color: #FFD700;
}

.error-page {
    padding: 50px 0;
    text-align: center;
}
.error-page h1 {
    font-size: 48px;
    color: #002366;
}
.error-page p {
    font-size: 18px;
    margin: 10px 0;
}
.error-page ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.error-page ul li {
    margin: 10px 0;
}
.error-page .btn {
    background: #002366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
}


/* ===== TRACK PAGE SPECIFIC STYLES ===== */

/* Main content container */
.track-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.track-main-content {
    padding-top: 100px; /* Space for fixed header */
    min-height: 100vh;
}

/* Search section */
.track-search-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 35, 102, 0.1);
    margin-bottom: 40px;
}

.track-search-form {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.track-search-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e6ef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.track-search-input:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
    outline: none;
}

.track-search-btn {
    background: var(--navy-blue);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.track-search-btn:hover {
    background: var(--light-blue);
}

/* Headings */
.track-h2 {
    color: var(--navy-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

/* Error messages */
.track-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #f5c6cb;
}

.track-form-error-msg {
    color: #dc3545;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Query grid */
.track-query-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Query cards */
.track-query-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 35, 102, 0.1);
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--light-blue);
    transition: transform 0.3s, box-shadow 0.3s;
}

.track-query-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 35, 102, 0.15);
}

.track-query-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.track-query-id {
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 1.2rem;
}

/* Status pills */
.track-status-pill {
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: capitalize;
}

.track-status-pending {
    background: #fff3cd;
    color: #856404;
}

.track-status-inprogress {
    background: #cce5ff;
    color: #004085;
}

.track-status-resolved, 
.track-status-fixed,
.track-status-completed {
    background: #d4edda;
    color: #155724;
}

/* Highlight for resolved queries */
.track-highlight {
    border-left-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}

/* Checkmark for resolved queries */

.track-check-path {
    stroke: var(--gold);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: draw-check 0.6s 0.3s ease-out forwards;
}

@keyframes draw-check {
    to { stroke-dashoffset: 0; }
}

/* No results message */
.track-no-results {
    text-align: center;
    color: #666;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 30px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .track-main-content {
        padding-top: 80px;
    }
    
    .track-search-form {
        flex-direction: column;
    }
    
    .track-query-grid {
        grid-template-columns: 1fr;
    }
    
    .track-h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .track-search-section {
        padding: 20px;
    }
    
    .track-query-card {
        padding: 20px;
    }
}



/* Slider Container */
#partners {
  background: white;
  padding: 40px 0;
}

#partners .container {
  width: 80%;
  max-width: 1200px;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

.slider-title {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

.slider-wrapper {
  width: 100%;
  height: 100px;
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.slider-track a {
  display: inline-block;
  margin: 0 60px;
}

.slider-track img {
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: all 0.3s ease;
}

/* Glow on hover */
.slider-track img:hover {
  transform: scale(1.15);
  box-shadow:
    0 0 15px rgba(0, 255, 200, 0.9),
    0 0 30px rgba(0, 255, 200, 0.6),
    0 0 45px rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Fading edges */
.slider-wrapper::before,
.slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, white 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
}

.slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, white 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
}

/* Donation Page */
.donation-page {
    padding: 100px 0;
    background-color: var(--light-gray);
    text-align: center; /* Center all content */
}

.donation-content {
    text-align: center; /* Ensure content is centered */
    max-width: 600px;
    margin: 0 auto;
}

.donation-qr-wrapper {
    display: flex;
    justify-content: center; /* Center the QR code horizontally */
    margin: 20px 0;
}

.qr-img {
    max-width: 150px; /* Adjusted QR code size */
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.qr-img:hover {
    transform: scale(1.05); /* Subtle hover effect */
}

.donation-thankyou {
    font-style: italic;
    color: var(--navy-blue);
    font-weight: 500;
    text-align: center; /* Ensure text is centered */
}

/* Donation Section (Footer) */
.donation-section {
    margin-top: 40px;
    text-align: center; /* Center all content */
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.donation-section h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.donation-section p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments for donation sections */
@media (max-width: 768px) {
    .donation-page {
        padding: 80px 0;
    }

    .donation-section {
        padding: 20px;
    }

    .donation-section h3 {
        font-size: 1.3rem;
    }

    .donation-section p {
        font-size: 0.95rem;
    }

    .qr-img {
        max-width: 120px; /* Smaller QR code for mobile */
    }
}