/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1e293b;
}

/* Color Variables */
:root {
    --ace-blue: #1e40af;
    --ace-blue-light: #3b82f6;
    --ace-blue-dark: #1e3a8a;
    --ace-dark: #0f172a;
    --ace-gray: #f8fafc;
    --ace-white: #ffffff;
    --text-gray: #64748b;
    --border-gray: #e2e8f0;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--ace-blue);
    color: var(--ace-white);
}

.btn-primary:hover {
    background-color: var(--ace-blue-dark);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--ace-white);
    color: var(--ace-blue);
}

.btn-light:hover {
    background-color: var(--ace-gray);
}

.btn-outline {
    background-color: transparent;
    color: var(--ace-white);
    border: 2px solid var(--ace-white);
}

.btn-outline:hover {
    background-color: var(--ace-white);
    color: var(--ace-blue);
}

.btn-full {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ace-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

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

/* Navigation Styles */
.navbar {
    background-color: var(--ace-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ace-blue);
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--ace-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--ace-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--ace-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0 60px;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.90) 0%, rgba(30, 58, 138, 0.85) 50%, rgba(15, 23, 42, 0.90) 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--ace-white);
    max-width: 600px;
    flex: 1;
    padding-right: 60px;
}

.slide-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out;
}

.slide-content p {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.slide-description {
    font-size: clamp(1rem, 1.8vw, 1.3rem) !important;
    margin-bottom: 2.5rem !important;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.slide-actions {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.slide-image {
    position: relative;
    z-index: 2;
    flex: 0 0 400px;
    max-width: 400px;
}

.slide-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 120px;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
    background-color: var(--ace-white);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--ace-white);
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 50%;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

/* About Page Testimonial Slider */
.testimonial-slider-about {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-slide-about {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonial-slide-about.active {
    opacity: 1;
    position: relative;
}

.testimonial-slide-about blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    padding: 0;
    border: none;
}

.testimonial-nav-about {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.nav-dot-about {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(30, 64, 175, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot-about.active,
.nav-dot-about:hover {
    background-color: var(--ace-blue);
    transform: scale(1.2);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--ace-gray);
}

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

.service-card {
    background-color: var(--ace-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(30, 64, 175, 0.05);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--ace-blue);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ace-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--ace-blue);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background-color: var(--ace-white);
}

.mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-vision-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission,
.vision {
    margin-bottom: 3rem;
}

.mission h3,
.vision h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ace-blue);
    margin-bottom: 1rem;
}

.mission p,
.vision p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ace-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-weight: 500;
}

/* About Us Section (for about.html) */
.about-section {
    padding: 100px 0;
    background-color: var(--ace-white);
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 80px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--ace-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-hero-content p {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.about-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content-section {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ace-blue);
    margin-bottom: 2rem;
}

.about-content-section p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-principles {
    margin: 80px 0;
}

.about-principles h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ace-blue);
    text-align: center;
    margin-bottom: 3rem;
}

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

.principle-item {
    text-align: center;
    padding: 2.5rem;
    background-color: var(--ace-white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 64, 175, 0.05);
}

.principle-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(30, 64, 175, 0.12);
    border-color: rgba(30, 64, 175, 0.1);
}

.principle-item i {
    font-size: 3rem;
    color: var(--ace-blue);
    margin-bottom: 1rem;
}

.principle-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ace-dark);
    margin-bottom: 1rem;
}

.principle-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.about-testimonial {
    background-color: var(--ace-dark);
    color: var(--ace-white);
    padding: 60px 0;
    margin: 80px 0;
    border-radius: 20px;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--ace-white);
}

.testimonial-text blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.expert-team {
    margin: 80px 0;
}

.expert-team h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ace-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background-color: var(--ace-gray);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--ace-blue);
}

.team-member h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ace-dark);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.key-partnerships {
    margin: 80px 0;
}

.key-partnerships h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ace-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partnership-column ul {
    list-style: none;
    background-color: var(--ace-gray);
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
}

.partnership-column li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-gray);
    color: var(--text-gray);
    font-weight: 500;
}

.partnership-column li:last-child {
    border-bottom: none;
}

.company-stats {
    margin: 60px 0;
    padding: 60px 0;
    background-color: var(--ace-gray);
    border-radius: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ace-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 1.125rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--ace-gray);
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
    opacity: 1;
}

.testimonial-content {
    background-color: var(--ace-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--ace-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ace-white);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonial-text {
    flex: 1;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-rating span {
    color: var(--text-gray);
    font-weight: 500;
}

.testimonial-text p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--ace-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(59, 130, 246, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background-color: var(--ace-blue);
    transform: scale(1.2);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--ace-dark);
    color: var(--ace-white);
}

.contact-section .section-header h2 {
    color: var(--ace-white);
}

.contact-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--ace-blue-light);
    margin-top: 0.25rem;
}

.contact-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 10px;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--ace-white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ace-blue-light);
}

/* Footer */
.footer {
    background-color: var(--ace-dark);
    color: var(--ace-white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ace-blue);
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background-color: var(--ace-blue);
    color: var(--ace-white);
    transform: translateY(-2px);
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--ace-blue-light);
}

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

/* Service Modal Popup */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: var(--ace-white);
    border-radius: 15px;
    padding: 0;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--ace-blue);
    background-color: var(--ace-gray);
}

.modal-header {
    padding: 40px 40px 20px;
    border-bottom: 1px solid var(--border-gray);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ace-blue);
    margin: 0;
}

.modal-body {
    padding: 30px 40px 40px;
}

#modal-description {
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-gray);
}

#modal-description h3 {
    color: var(--ace-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 20px 0 10px;
}

#modal-description p {
    margin-bottom: 15px;
}

#modal-description ul {
    margin: 15px 0;
    padding-left: 20px;
}

#modal-description li {
    margin-bottom: 8px;
    color: var(--text-gray);
}

.modal-contact {
    background-color: var(--ace-gray);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.modal-contact h3 {
    color: var(--ace-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

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

.service-form input,
.service-form select,
.service-form textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
    outline: none;
    border-color: var(--ace-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.service-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 100px;
}

.service-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--ace-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.25rem;
    }

    .slide-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

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

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .partnerships-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

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

    .modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }

    .modal-contact {
        padding: 20px;
    }

    .slide {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .slide-content {
        padding-right: 0;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .slide-image {
        flex: none;
        max-width: 300px;
        width: 100%;
    }

    .slide-image img {
        height: 200px;
    }

    .slider-nav {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .slide-content {
        padding: 0 1rem;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .service-card,
    .testimonial-content,
    .contact-form {
        padding: 1.5rem;
    }

    .slider-arrow {
        display: none;
    }
}