/* 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.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #1a1a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #f39c12;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #f39c12;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-text {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.btn {
    background-color: #f39c12;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-image-container {
    margin-bottom: 3rem;
}

.profile-pic {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.about h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-weight: 700;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.about-text h3 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.about-text .emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f39c12;
    margin-top: 2rem;
    font-style: italic;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #ffffff;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a2e;
    font-weight: 700;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #667eea;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
    border-left-color: #f39c12;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
text-align: center;
display: block;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #1a1a2e;
    font-weight: 700;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #34495e;
}

.service-card ul {
    margin: 1rem 0 1rem 1.5rem;
    color: #34495e;
}

.service-card li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.service-emphasis {
    font-weight: 600;
    color: #667eea;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.why-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: white;
    font-weight: 700;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.why-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #f39c12;
    font-weight: 700;
}

.why-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.why-emphasis {
    font-weight: 600;
    font-style: italic;
    margin-top: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a2e;
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #f39c12;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: #667eea;
    font-size: 1rem;
}

/* Contact/CTA Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
    line-height: 1.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-emphasis {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f39c12;
    margin: 2rem 0;
    font-style: italic;
}

/* Footer */
footer {
    background-color: #0f0f1e;
    color: #ecf0f1;
    text-align: center;
    padding: 3rem 0;
}

.footer-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f39c12;
    margin-bottom: 1rem;
}

footer p {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f39c12;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .about h2,
    .services h2,
    .why-section h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .about-text {
        padding: 2rem;
    }
    
    .service-grid,
    .why-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
.profile-pic {
    width: 250px;              /* Same as height */
    height: 250px;             /* Same as width */
    border-radius: 50%;        /* Makes it a circle */
    object-fit: cover;         /* Crops to fill circle */
    display: block;            /* Makes it a block element */
    margin: 0 auto 2rem;       /* Centers it horizontally */
    border: 5px solid #667eea; /* Purple border */
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3); /* Subtle shadow */
}