:root {
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
}

body {
    font-family: var(--body-font);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

section {
    scroll-margin-top: 80px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background: #20cd8d;
    transition: all 0.3s linear;
}

/* Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
}

.sidebar-nav.active {
    right: 0;
}

.sidebar-content {
    padding: 40px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.close-sidebar {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 24px;
    color: #20cd8d;
    cursor: pointer;
    padding: 10px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.sidebar-links a {
    color: #20cd8d;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    transition: background 0.3s ease;
}

.sidebar-links a:hover {
    background: rgba(32, 205, 141, 0.1);
}

.sidebar-contact-btn {
    background: #20cd8d;
    color: white !important;
    padding: 15px 20px !important;
    text-align: center;
    margin-top: 20px;
}

/* Update media queries */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
}

@media (min-width: 769px) {
    .sidebar-nav {
        display: none;
    }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #FFFFFF;
}

.logo {
    width: 100px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #20cd8d;
}

.cta {
    margin-top: 10px;
}

.contact-btn {
    background: #20cd8d;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 0px;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background-color: #ffffff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(32, 205, 141, 0.1), rgba(32, 205, 141, 0.05));
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25em;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.primary-cta,
.secondary-cta {
    padding: 15px 35px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.primary-cta {
    background-color: #20cd8d;
    color: white;
    border: 2px solid #20cd8d;
}

.primary-cta:hover {
    background-color: #1ba876;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 205, 141, 0.3);
}

.secondary-cta {
    background-color: transparent;
    color: #20cd8d;
    border: 2px solid #20cd8d;
}

.secondary-cta:hover {
    background-color: rgba(32, 205, 141, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #20cd8d;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1em;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 0px 20px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
}

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

.hero h1,
.hero-subtitle,
.hero-cta,
.hero-stats {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-cta {
    animation-delay: 0.4s;
}

.hero-stats {
    animation-delay: 0.6s;
}

.services {
    padding: 80px 5%;
    /* background: #f8f9fa; */
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2320cd8d' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");

}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.2em;
    line-height: 1.6;
}

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

.service-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 4px solid #20cd8d;
    padding: 40px;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card i {
    font-size: 2.5em;
    color: #20cd8d;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #20cd8d;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card ul {
    list-style-type: none;
    padding-left: 0;
}

.service-card ul li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #20cd8d;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px;
    }
}


.why-us {
    /* background: linear-gradient(45deg, #20cd8d 0%, #1ba876 100%); */
    padding: 80px 0;
    background-color: #20cd8d;
    color: #FFFFFF;
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

.left-column h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.usp-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.usp-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 0px;
    color: #333;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 5px solid black;
}

.usp-card:hover {
    transform: translateX(10px);
}

.usp-card i {
    font-size: 2em;
    color: #20cd8d;
    margin-bottom: 15px;
}

.usp-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #20cd8d;
}

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

.right-column {
    position: relative;
}

.overview-panel {
    background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
    padding: 40px;
    border-radius: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.overview-panel h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.overview-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-us-container {
        grid-template-columns: 1fr;
    }
    
    .right-column {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 40px 0;
    }
    
    .left-column h1 {
        font-size: 2.5em;
    }
    
    .usp-card {
        padding: 20px;
    }
    
    .overview-panel {
        padding: 30px;
    }
    
    .overview-panel h2 {
        font-size: 2em;
    }
}

.services h2 {
    text-align: center;
}


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

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
}

/* Contact Form Styles */
.contact-form-container {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    color: #20cd8d;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 0px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #20cd8d;
    background: white;
    outline: none;
}

.submit-btn {
    background: #20cd8d;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: black;
}

/* Team Showcase Styles */
.team-showcase {
    flex: 1;
}

.team-showcase h2 {
    color: #20cd8d;
    margin-bottom: 30px;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.member-image-container {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.member-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1;
}

.member-info h3 {
    color: #20cd8d;
    margin-bottom: 5px;
}

.member-info h4 {
    color: black;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.member-info p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }

    .team-showcase {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

    .form-row {
        flex-direction: column;
    }

    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .member-image-container {
        width: 180px;
        height: 180px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .contact-form-container,
    .team-member {
        padding: 20px;
    }

    .member-info h3 {
        font-size: 1.2em;
    }
}

/* Footer */
.footer {
    background-color: #20cd8d;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

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

.footer-logo {
    max-width: 400px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 0.9em;
    line-height: 1.6;
    color: #FFFFFF;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.social-links h3,
.address-section h3 {
    margin-bottom: 0px;
    font-size: 1.2em;
    color: #FFFFFF;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
}

.social-icons a {
    color: #FFFFFF;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: black;
    background: rgba(255, 255, 255, 0.2);
}

.address-section address {
    font-style: normal;
    line-height: 1.5;
    color: #FFFFFF;
}

.address-section address p {
    margin-bottom: 2px;
}

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

.footer-bottom p {
    font-size: 0.9em;
    color: #FFFFFF;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    font-size: 1.1em;
}

.footer-links {
    margin-top: 20px;
}

.footer-links p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links i {
    font-size: 1.1em;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: black;
}

@media (max-width: 768px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links p {
        justify-content: center;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-right {
        width: 100%;
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }

    .address-section {
        text-align: center;
    }
}

/* Add this to your existing CSS */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    
    .hamburger-menu {
        display: flex;
    }
}

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

.service-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.4s; }

@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

.schedule-section {
    padding: 20px 20px;
    background-color: #f8f9fa;
}

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

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

.schedule-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.schedule-content p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

.calendly-inline-widget {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .schedule-section {
        padding: 40px 15px;
    }

    .schedule-content h2 {
        font-size: 2em;
    }

    .schedule-content p {
        font-size: 1em;
    }
}
