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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

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

/* Header Styles */
.header-top {
    background-color: #0066CC;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

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

.header-top a {
    color: white;
    text-decoration: none;
}

.header-top a:hover {
    opacity: 0.8;
}

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #333;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background-color: #0066CC;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.logo h1 {
    font-size: 24px;
    color: #333;
}

.logo p {
    font-size: 12px;
    color: #666;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #0066CC;
}

.btn-primary {
    background-color: #0066CC;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #0052A3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: #0066CC;
    border: 2px solid #0066CC;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E6F2FF 0%, #ffffff 50%, #E6F2FF 100%);
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 .highlight {
    color: #0066CC;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-badge h3 {
    font-size: 32px;
    color: #0066CC;
    margin-bottom: 5px;
}

.hero-badge p {
    color: #666;
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

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

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

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

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

.service-card {
    background-color: white;
    border: 2px solid #E6F2FF;
    border-radius: 15px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    border-color: #0066CC;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: #E6F2FF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #0066CC;
}

.service-card:hover .service-icon {
    color: white;
}

.service-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #F8FAFE;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background-color: #0066CC;
    color: white;
}

.feature-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

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

.testimonial-card {
    background-color: white;
    border: 2px solid #E6F2FF;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
}

.stars {
    color: #FFC107;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    border-top: 2px solid #E6F2FF;
    padding-top: 15px;
}

.testimonial-author h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 14px;
}

/* CTA Section */
.cta {
    background-color: #0066CC;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background-color: white;
    color: #0066CC;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-light:hover {
    background-color: #E6F2FF;
    transform: translateY(-2px);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #E6F2FF 0%, #ffffff 50%, #E6F2FF 100%);
    padding: 60px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.quote-box {
    background-color: #E6F2FF;
    border-left: 4px solid #0066CC;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.quote-box p {
    color: #0066CC;
    font-style: italic;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
}

.stats-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #0066CC;
    color: white;
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stats-badge h3 {
    font-size: 36px;
    margin-bottom: 5px;
}

.stats-badge p {
    font-size: 14px;
    opacity: 0.9;
}

.mission-vision {
    padding: 80px 0;
    background-color: #F8FAFE;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card,
.vision-card {
    background-color: white;
    border: 2px solid #E6F2FF;
    border-radius: 15px;
    padding: 40px;
    transition: border-color 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    border-color: #0066CC;
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.8;
}

.values {
    padding: 80px 0;
}

.values-list {
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    background-color: #F8FAFE;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: background-color 0.3s ease;
}

.value-item:hover {
    background-color: #E6F2FF;
}

.value-item span {
    color: #0066CC;
    font-size: 24px;
    flex-shrink: 0;
}

.value-item p {
    color: #666;
    line-height: 1.8;
}

.team {
    padding: 80px 0;
    background-color: #F8FAFE;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background-color: #E6F2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #0066CC;
}

.team-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.team-card .role {
    color: #0066CC;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-card .qualification {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.team-card p {
    color: #666;
    line-height: 1.8;
}

/* Contact Page Styles */
.contact-info {
    padding: 60px 0;
    background-color: white;
}

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

.contact-info-card {
    background-color: white;
    border: 2px solid #E6F2FF;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: #E6F2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #0066CC;
}

.contact-info-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
    color: #666;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: #0066CC;
}

.contact-section {
    padding: 80px 0;
    background-color: #F8FAFE;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-container h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.contact-form-container > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E6F2FF;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

.submit-btn {
    width: 100%;
    background-color: #0066CC;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #0052A3;
    transform: translateY(-2px);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.additional-info {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.additional-info h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 2px solid #E6F2FF;
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-item span:first-child {
    color: #666;
    font-weight: 500;
}

.hours-item span:last-child {
    color: #333;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    line-height: 1.8;
    text-decoration: none;
}

.footer-section a:hover {
    color: #0066CC;
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-item span {
    color: #0066CC;
    flex-shrink: 0;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #0066CC;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container,
    .about-content,
    .mission-vision-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-light {
        width: 100%;
        text-align: center;
    }
    
    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .stats-badge {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}
