* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.theme-toggle:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a:active {
    background: rgba(255,255,255,0.1);
    border-left-color: #8fbc8f;
    padding-left: 2rem;
}

.mobile-theme-toggle {
    margin-top: 0.5rem;
    padding: 0.5rem 1.5rem;
}

.theme-toggle-mobile {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.theme-toggle-mobile:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.02);
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8fbc8f;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 50%, #6fa87f 100%);
    color: white;
    padding: 6rem 1rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><path d="M0,200 Q250,100 500,200 T1000,200 L1000,300 L0,300 Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x;
    animation: wave 10s infinite linear;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-button {
    display: inline-block;
    background: #8fbc8f;
    color: #2c5530;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: 0 10px 30px rgba(143, 188, 143, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(143, 188, 143, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Doctor Section */
.doctor-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.doctor-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
    transform: translateY(20px);
    animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.doctor-card h2 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.doctor-card .credentials {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.doctor-card .description {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 4rem 1rem;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.15);
    border-color: #8fbc8f;
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4a7c59;
}

.service-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Medical Camp Section */
.medical-camp {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Achievements Section */
.achievements {
    padding: 4rem 1rem;
    background: white;
}

.achievements-content {
    max-width: 900px;
    margin: 0 auto;
}

.achievement-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(44, 85, 48, 0.15);
    border-color: #8fbc8f;
}

.achievement-card h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.achievement-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.achievement-description strong {
    color: #2c5530;
    font-weight: 600;
}

.achievement-image-holder {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #f8f9fa;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.achievement-image-holder:hover .achievement-image {
    transform: scale(1.05);
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    color: #666;
}

.image-placeholder span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.1rem;
    color: #888;
}

.camp-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.camp-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.camp-image-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.camp-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.2);
}

.camp-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.camp-image-wrapper:hover .camp-image {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.contact-item .icon {
    font-size: 1.3rem;
    color: #8fbc8f;
    min-width: 30px;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-item p {
    font-size: 0.9rem;
    word-break: break-word;
}

.map-container {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.map-container h3 {
    color: white;
    font-size: 1.3rem;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

.map-container a {
    transition: all 0.3s ease;
}

.map-container a:hover {
    color: #b8d4b8 !important;
    text-decoration: underline !important;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.9);
    color: #333;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #8fbc8f;
    color: #2c5530;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(143, 188, 143, 0.3);
}

/* Footer */
.footer {
    background: #1a3e1f;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .nav-right {
        gap: 0.5rem;
        position: relative;
    }
    
    .theme-toggle {
        display: none;
    }
    
    .header {
        padding: 0.8rem 0;
    }
    
    .mobile-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }

    .hero {
        padding: 5rem 1rem 3rem;
        min-height: 90vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero .subtitle {
        font-size: 1rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .doctor-section {
        padding: 3rem 1rem;
    }
    
    .doctor-card {
        padding: 1.5rem;
    }
    
    .doctor-card h2 {
        font-size: 1.6rem;
    }
    
    .doctor-card .credentials {
        font-size: 0.9rem;
    }
    
    .doctor-card .description {
        font-size: 0.9rem;
    }

    .services {
        padding: 3rem 1rem;
    }
    
    .medical-camp {
        padding: 3rem 1rem;
    }
    
    .achievements {
        padding: 3rem 1rem;
    }
    
    .achievement-card {
        padding: 2rem;
    }
    
    .achievement-card h3 {
        font-size: 1.5rem;
    }
    
    .achievement-description {
        font-size: 1rem;
    }
    
    .achievement-image-holder {
        min-height: 250px;
    }
    
    .image-placeholder {
        min-height: 250px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .camp-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .camp-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-card .icon {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }

    .contact {
        padding: 3rem 1rem;
    }
    
    .contact-content {
        gap: 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 1.6rem;
    }
    
    .map-container {
        padding: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .map-container h3 {
        font-size: 1.2rem;
    }
    
    .map-wrapper {
        height: 250px;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .contact-form h3 {
        font-size: 1.2rem;
    }
    
    .calendly-inline-widget {
        height: 500px !important;
        min-width: 280px !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .theme-toggle {
        padding: 0.2rem 0.4rem;
        font-size: 0.6rem;
        gap: 0.2rem;
    }
    
    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
    }
    
    .mobile-menu {
        top: 55px;
        max-height: calc(100vh - 55px);
    }
    
    .mobile-nav-menu a {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .hero {
        padding: 4rem 0.5rem 2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 0.9rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .doctor-section,
    .services,
    .medical-camp,
    .achievements,
    .contact {
        padding: 2rem 0.5rem;
    }
    
    .achievement-card {
        padding: 1.5rem;
    }
    
    .achievement-card h3 {
        font-size: 1.3rem;
    }
    
    .achievement-description {
        font-size: 0.95rem;
    }
    
    .achievement-image-holder {
        min-height: 200px;
    }
    
    .image-placeholder {
        min-height: 200px;
    }
    
    .image-placeholder span {
        font-size: 3rem;
    }
    
    .image-placeholder p {
        font-size: 0.9rem;
    }
    
    .camp-images {
        gap: 1rem;
    }
    
    .camp-description {
        font-size: 0.95rem;
    }
    
    .doctor-card {
        padding: 1.2rem;
    }
    
    .doctor-card h2 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card .icon {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .contact-info h2 {
        font-size: 1.4rem;
    }
    
    .contact-item {
        padding: 0.8rem;
    }
    
    .contact-item .icon {
        font-size: 1.1rem;
    }
    
    .contact-item h4 {
        font-size: 0.9rem;
    }
    
    .contact-item p {
        font-size: 0.8rem;
    }
    
    .map-container {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .map-container h3 {
        font-size: 1.1rem;
    }
    
    .map-wrapper {
        height: 200px;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .contact-form h3 {
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .calendly-inline-widget {
        height: 450px !important;
        min-width: 250px !important;
    }
}

/* Dark Mode Styles */
body.dark-mode {
    background: #1a1a1a;
    color: #e0e0e0;
}

.dark-mode .header {
    background: linear-gradient(135deg, #1a3e1f 0%, #2c5530 100%);
}

.dark-mode .mobile-menu {
    background: linear-gradient(135deg, #1a3e1f 0%, #2c5530 100%);
}

.dark-mode .hero {
    background: linear-gradient(135deg, #1a3e1f 0%, #2c5530 50%, #4a7c59 100%);
}

.dark-mode .doctor-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
}

.dark-mode .doctor-card {
    background: #2d2d2d;
    color: #e0e0e0;
}

.dark-mode .doctor-card h2 {
    color: #8fbc8f;
}

.dark-mode .services {
    background: #1a1a1a;
}

.dark-mode .medical-camp {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
}

.dark-mode .achievements {
    background: #1a1a1a;
}

.dark-mode .achievement-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #333333 100%);
    color: #e0e0e0;
}

.dark-mode .achievement-card h3 {
    color: #8fbc8f;
}

.dark-mode .achievement-description {
    color: #ccc;
}

.dark-mode .achievement-description strong {
    color: #8fbc8f;
}

.dark-mode .achievement-image-holder {
    background: #2d2d2d;
}

.dark-mode .image-placeholder {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    color: #999;
}

.dark-mode .image-placeholder p {
    color: #aaa;
}

.dark-mode .camp-description {
    color: #ccc;
}

.dark-mode .camp-image-wrapper {
    background: #2d2d2d;
}

.dark-mode .section-title {
    color: #8fbc8f;
}

.dark-mode .service-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #333333 100%);
    color: #e0e0e0;
}

.dark-mode .service-card h3 {
    color: #8fbc8f;
}

.dark-mode .service-card:hover {
    border-color: #8fbc8f;
}

.dark-mode .contact {
    background: linear-gradient(135deg, #1a3e1f 0%, #2c5530 100%);
}

.dark-mode .map-container {
    background: rgba(255,255,255,0.05);
}

.dark-mode .map-container h3 {
    color: #e0e0e0;
}

.dark-mode .contact-form {
    background: rgba(255,255,255,0.05);
}

.dark-mode .form-group input,
.dark-mode .form-group textarea {
    background: rgba(255,255,255,0.1);
    color: #e0e0e0;
    border: 1px solid rgba(255,255,255,0.2);
}

.dark-mode .form-group input::placeholder,
.dark-mode .form-group textarea::placeholder {
    color: #ccc;
}

.dark-mode .footer {
    background: #0d0d0d;
}

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #4a7c59 0%, #6fa87f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(74, 124, 89, 0.3); }
    50% { box-shadow: 0 10px 30px rgba(74, 124, 89, 0.6); }
    100% { box-shadow: 0 10px 30px rgba(74, 124, 89, 0.3); }
}

/* Scroll Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #8fbc8f, #4a7c59);
    z-index: 1001;
    transition: width 0.3s ease;
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: white;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid #8fbc8f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 180px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -90px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Notification Toast */
.toast {
    position: fixed;
    top: 80px;
    right: 10px;
    background: linear-gradient(135deg, #4a7c59 0%, #6fa87f 100%);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1002;
    font-size: 0.9rem;
    max-width: 250px;
}

.toast.show {
    transform: translateX(0);
}

/* Enhanced Service Cards with Icons */
.service-card .icon {
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

/* Particle Background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Additional utility classes for fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back to top button styling */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4a7c59 0%, #6fa87f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.4);
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    .floating-btn {
        bottom: 20px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .toast {
        right: 10px;
        top: 70px;
        max-width: 200px;
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .tooltip .tooltiptext {
        width: 150px;
        margin-left: -75px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .floating-btn {
        bottom: 15px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .back-to-top {
        bottom: 70px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .toast {
        right: 5px;
        top: 65px;
        max-width: 180px;
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
}

/* Ensure no horizontal overflow */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    padding: 0 1rem;
}

/* Fix any potential overflow issues */
* {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Ensure text doesn't break layout */
p, h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    hyphens: auto;
}