/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth; /* Add smooth scrolling behavior */
    height: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Info Bar */
.contact-bar {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1003;
    box-shadow: 0 2px 10px rgba(39, 174, 96, 0.2);
    height: 80px; /* Increased height for mobile */
    display: flex;
    align-items: center;
}

.contact-info-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.contact-item-top {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.contact-item-top i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item-top span {
    font-weight: 500;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: fixed !important;
    top: 80px !important; /* Position below the taller contact bar */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1002;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(39, 174, 96, 0.1);
    padding: 8px 0 !important;
    height: 65px !important; /* Slightly increased height for better formatting */
    display: flex !important;
    align-items: center;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
    height: 100%;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    height: 100%;
    max-width: 40%;
}

.logo {
    height: 55px !important;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.15);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(39, 174, 96, 0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
    height: 100%;
    flex-shrink: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 14px;
    border-radius: 25px;
    white-space: nowrap;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
    transform: translateY(-1px);
}

.nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

.nav-link.active {
    color: #27ae60;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 2px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 2px;
}

/* Ensure all non-form tabs are normal */
.nav-item:nth-child(1) .nav-link,
.nav-item:nth-child(2) .nav-link,
.nav-item:nth-child(3) .nav-link,
.nav-item:nth-child(6) .nav-link {
    background: none !important;
    color: #333 !important;
    border: none !important;
    font-weight: 500 !important;
    padding: 10px 16px !important;
    border-radius: 25px !important;
    box-shadow: none !important;
}

.nav-item:nth-child(1) .nav-link:hover,
.nav-item:nth-child(2) .nav-link:hover,
.nav-item:nth-child(3) .nav-link:hover,
.nav-item:nth-child(6) .nav-link:hover {
    color: #27ae60 !important;
    background: rgba(39, 174, 96, 0.1) !important;
    transform: translateY(-1px) !important;
}

.nav-item:nth-child(1) .nav-link.active,
.nav-item:nth-child(2) .nav-link.active,
.nav-item:nth-child(3) .nav-link.active,
.nav-item:nth-child(6) .nav-link.active {
    color: #27ae60 !important;
    font-weight: 600 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.nav-item:nth-child(1) .nav-link.active::after,
.nav-item:nth-child(2) .nav-link.active::after,
.nav-item:nth-child(3) .nav-link.active::after,
.nav-item:nth-child(6) .nav-link.active::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 2px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 2px;
}

/* Ensure About Us (3rd item) is normal */

/* Special styling for Get Started and Make a Referral buttons */
.nav-item:nth-child(4) .nav-link {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    color: #27ae60;
    border: 2px solid #27ae60;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
    transition: all 0.3s ease;
}

.nav-item:nth-child(4) .nav-link:hover {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.nav-item:nth-child(5) .nav-link {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    color: #27ae60;
    border: 2px solid #27ae60;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
    transition: all 0.3s ease;
}

.nav-item:nth-child(5) .nav-link:hover {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.get-started-btn {
    background: #e74c3c;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.get-started-btn:hover {
    background: #c0392b;
}

/* Mobile Menu - Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    padding: 4px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    border: 1px solid #27ae60;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(39, 174, 96, 0.2);
    margin-left: auto;
}

.hamburger .bar {
    width: 16px;
    height: 1.5px;
    background: #27ae60;
    margin: 1.5px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

.hamburger:hover {
    background: rgba(39, 174, 96, 0.1);
    border-color: #2ecc71;
    transform: scale(1.05);
}

.hamburger:hover .bar {
    background-color: #2ecc71;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px; /* Adjusted padding to account for fixed header */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 145px; /* Add margin to push content below both contact bar and header */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Reduced gap for better fit */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    height: 100%;
}

.hero-title {
    font-size: 3.2rem; /* Slightly larger for better impact */
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem; /* Slightly larger for better readability */
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #27ae60;
    color: white;
}

.btn-primary:hover {
    background: #2ecc71;
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    color: #27ae60;
    border: 2px solid #27ae60;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.hero-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; /* Reduced padding for better fit */
    max-height: 90vh; /* Increased to better fit screen */
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    width: 100%;
    max-height: 700px; /* Enlarged photo to better fit screen */
}

.hero-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    padding-top: 20px; /* Add some top padding for better spacing */
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    padding: 100px 0; /* Increased padding for better spacing */
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    margin-top: 145px; /* Ensure content is below both contact bar and header */
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(39, 174, 96, 0.03) 0%, rgba(46, 204, 113, 0.03) 100%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.1);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid rgba(39, 174, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.2);
    border-color: rgba(39, 174, 96, 0.3);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2.2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* About Section */
.about {
    padding: 100px 0; /* Increased padding for better spacing */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    margin-top: 145px; /* Ensure content is below both contact bar and header */
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mission-vision {
    margin-bottom: 2rem;
}

.mission, .vision {
    margin-bottom: 1.5rem;
}

.mission h3, .vision h3 {
    color: #27ae60;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission h3 i, .vision h3 i {
    color: #e74c3c;
}

.values h3 {
    color: #27ae60;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.values h3 i {
    color: #f39c12;
}

.values ul {
    list-style: none;
    padding-left: 0;
}

.values li {
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
}

.values li:before {
    content: "•";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-image {
    text-align: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Get Started Section */
.get-started {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.get-started .section-title,
.get-started .section-subtitle {
    color: white;
}

.forms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.form-section {
    background: rgba(52, 152, 219, 0.2);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.form-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Contact Section */
.contact {
    padding: 100px 0; /* Increased padding for better spacing */
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    position: relative;
    margin-top: 145px; /* Ensure content is below both contact bar and header */
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(39, 174, 96, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: #27ae60;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #27ae60;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #555;
}

.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.15);
    border: 2px solid rgba(39, 174, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.contact-form-container h3 {
    color: #27ae60;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #27ae60;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(39, 174, 96, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #27ae60;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: #000;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: #27ae60;
    color: white;
    text-align: center;
    margin-top: 145px; /* Ensure content is below both contact bar and header */
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Form Pages */
.registration-form,
.referral-form {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.form-container h2 {
    text-align: center;
    color: #27ae60;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-section-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.form-section-info h3 {
    color: #27ae60;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Active Navigation */
.nav-link.active {
    color: #27ae60;
    font-weight: 600;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Show hamburger menu on mobile */
    .hamburger {
        display: flex !important;
        padding: 5px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 5px !important;
        border: 1px solid #27ae60 !important;
        margin-left: auto !important;
    }
    
    .hamburger .bar {
        width: 18px !important;
        height: 2px !important;
        background: #27ae60 !important;
        margin: 2px 0 !important;
    }
    
    /* Hide desktop navigation */
    .nav-menu {
        position: fixed !important;
        top: 145px !important; /* Start below contact bar (80px) + header (65px) */
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 145px) !important; /* Adjust height to account for both bars */
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        transition: left 0.3s ease !important;
        z-index: 1001 !important;
        padding: 0.5rem 0 !important;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1) !important;
        display: flex !important;
    }
    
    /* Show mobile menu when active */
    .nav-menu.active {
        left: 0 !important;
        display: flex !important;
    }
    
    /* Style mobile menu items */
    .nav-menu .nav-item {
        margin: 0.1rem 0 !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    /* Mobile menu links */
    .nav-menu .nav-link {
        font-size: 1rem !important;
        padding: 6px 20px !important;
        border-radius: 20px !important;
        background: rgba(39, 174, 96, 0.1) !important;
        color: #27ae60 !important;
        border: 1px solid transparent !important;
        transition: all 0.3s ease !important;
        display: block !important;
        text-align: center !important;
        min-width: 150px !important;
        max-width: 200px !important;
        margin: 0 auto !important;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(39, 174, 96, 0.2) !important;
        color: #27ae60 !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2) !important;
    }
    
    .nav-menu .nav-link.active {
        background: #27ae60 !important;
        color: white !important;
        border-color: #27ae60 !important;
    }
    
    /* Contact bar mobile adjustments */
    .contact-bar {
        height: 80px; /* Taller for mobile stacking */
    }
    
    /* Contact bar adjustments */
    .contact-info-top {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 15px;
    }
    
    .contact-item-top {
        font-size: 0.8rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        height: 45px;
    }
    
    /* Hero section mobile adjustments */
    .hero {
        padding: 60px 0 40px; /* Reduced padding for mobile */
        margin-top: 145px; /* Mobile margin */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image {
        max-height: 50vh;
    }
    
    .hero-img {
        max-height: 300px;
    }
    
    /* Other sections mobile adjustments */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-image {
        max-height: 50vh;
    }
    
    .hero-img {
        max-height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Ensure proper spacing for all sections when scrolling */
.services, .about, .contact {
    scroll-margin-top: 120px; /* Account for both fixed contact bar and header when scrolling to sections */
}
