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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e74c3c;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section Background */
.hero {
    position: relative;
    background: url('homepage1.jpg') center center/cover no-repeat;
    min-height: 480px;
    padding: 4rem 0 2rem 0;
    z-index: 1;
}
.hero-bg-image {
    display: none;
}
.hero-image {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

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

.hero-photo {
    max-width: 220px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(60, 80, 180, 0.10);
}

.hero-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    backdrop-filter: blur(10px);
}

.hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about-content {
    display: block;
}

/* Make About Us and Our Mission sections more colorful and attractive */
.about-text {
    background: linear-gradient(135deg, #f0f7fa 60%, #e0e7ff 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(60, 80, 180, 0.08);
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s;
}
.about-text:hover {
    box-shadow: 0 8px 32px rgba(60, 80, 180, 0.16);
}
.about-text h3 {
    color: #2a4d8f;
    font-size: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.about-text h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4f8cff 0%, #6ee7b7 100%);
    border-radius: 2px;
    margin-top: 0.5rem;
}
.about-text p {
    color: #333a4d;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #666;
    font-size: 0.9rem;
}

.about-image {
    display: none;
}

.about-photo {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    object-fit: cover;
    border: 4px solid #fff;
}

.values-grid img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid #e74c3c;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

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

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: block;
}

.gallery-item p {
    background: #fff;
    margin: 0;
    padding: 0.75rem 0.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 1rem;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.gallery-placeholder {
    background: linear-gradient(135deg, #667eea, #764ba2);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.gallery-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.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: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    width: 40px;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e74c3c;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Testimonials Section */
.testimonials {
    background: #f8f9fa;
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid #e74c3c;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
    quotes: "\201C" "\201D" "\2018" "\2019";
}

.testimonial-card blockquote:before {
    content: open-quote;
    color: #e74c3c;
    font-size: 2rem;
    vertical-align: -0.4em;
}

.testimonial-card blockquote:after {
    content: close-quote;
    color: #e74c3c;
    font-size: 2rem;
    vertical-align: -0.4em;
}

.testimonial-author {
    color: #764ba2;
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255,255,255,0.85);
        backdrop-filter: blur(12px);
        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;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image {
        margin-top: 2rem;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-photo {
        margin: 2rem auto 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

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

    .hero-buttons {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

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

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.service-card,
.value-item {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* About Staff Section */
.about-staff {
    margin-top: 3rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
}
.about-staff h3 {
    color: #e74c3c;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.about-staff p {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.team-member {
    background: #f8f9fa;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1.5rem 1rem;
    width: 180px;
    text-align: center;
    transition: transform 0.2s;
}
.team-member:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 6px 18px rgba(231,76,60,0.10);
}
.team-member img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.75rem;
    border: 2px solid #e74c3c;
}
.team-member h4 {
    color: #764ba2;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.team-member p {
    color: #333;
    font-size: 0.98rem;
}
.team-member span {
    color: #888;
    font-size: 0.92rem;
}
@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .team-member {
        width: 100%;
        max-width: 320px;
    }
} 

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 0.4em;
    cursor: pointer;
}
.nav-dropdown .fa-caret-down {
    font-size: 0.85em;
    margin-left: 0.2em;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 0 0 12px 12px;
    z-index: 2000;
    padding: 0.5rem 0;
    transition: all 0.2s;
}
.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu {
    display: block;
}
.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.6em;
    padding: 0.7em 1.2em;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    background: none;
    border: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.dropdown-link:hover, .dropdown-link:focus {
    background: #f8f9fa;
    color: #e74c3c;
}
@media (max-width: 900px) {
    .dropdown-menu {
        min-width: 170px;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
    }
    .nav-dropdown {
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255,255,255,0.97);
        border-radius: 0 0 12px 12px;
        padding: 0.2rem 0 0.5rem 0;
    }
    .dropdown-link {
        padding-left: 2.2em;
    }
} 

.value-icon {
    font-size: 2.5rem;
    color: #4f8cff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}
.value-item:hover .value-icon {
    color: #6ee7b7;
} 

.gallery-icon {
    font-size: 3rem;
    color: #4f8cff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}
.gallery-item:hover .gallery-icon {
    color: #6ee7b7;
} 