/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #16a34a, #15803d);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo h2 {
    color: #000;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.nav-logo h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    transition: width 0.3s ease;
}

.nav-logo:hover h2::after {
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 100px;
}

.nav-logo:hover .logo-img {
    transform: scale(1.1);
}

    .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.08);
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.3);
    box-shadow: 0 4px 8px rgba(34, 197, 94, 0.2);
}

.contact-btn {
    border: 2px solid #22c55e;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.contact-btn:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(34, 197, 94, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: #3b82f6;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #22c55e;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #22c55e;
}

/* Banner Section */
.banner {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    margin-top: 80px;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.banner-text {
    padding-right: 2rem;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.banner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.banner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-image:hover img {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(30,41,59,0.85) 0%, rgba(51,65,85,0.85) 50%, rgba(71,85,105,0.85) 100%), url('bg-image.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-btn {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    background: linear-gradient(45deg, #16a34a, #15803d);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.4);
}

/* Management Section */
.management {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.management::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    color: #22c55e;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* Removed the line through text */

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    z-index: 1;
}

.team-member:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 2rem;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
}

.member-title {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.member-subtitle {
    font-size: 0.9rem;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-details {
    margin: 1.5rem 0;
}

.member-details p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info strong {
    color: #333;
}

.read-more-btn {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.read-more-btn:hover {
    background: linear-gradient(45deg, #16a34a, #15803d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4), 0 0 20px rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
    z-index: 9999;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: chatPulse 2s ease-in-out infinite;
}

.chat-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.chat-widget:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.chat-widget:hover {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.6), 0 0 30px rgba(139, 92, 246, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.chat-widget i {
    color: white;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes chatPulse {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4), 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 15px 35px rgba(139, 92, 246, 0.6), 0 0 30px rgba(139, 92, 246, 0.5);
    }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 90%;
    animation-delay: 4s;
    animation-duration: 6s;
}

.particle:nth-child(6) {
    top: 70%;
    left: 30%;
    animation-delay: 5s;
    animation-duration: 8s;
}

.particle:nth-child(7) {
    top: 10%;
    left: 60%;
    animation-delay: 6s;
    animation-duration: 7s;
}

.particle:nth-child(8) {
    top: 90%;
    left: 40%;
    animation-delay: 7s;
    animation-duration: 9s;
}

/* Responsive Design */




/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    animation: float 3s ease-in-out infinite;
}

.hero-btn {
    animation: pulse 2s ease-in-out infinite;
}

.team-member {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.team-member:nth-child(1) {
    animation-delay: 0.1s;
}

.team-member:nth-child(2) {
    animation-delay: 0.2s;
}

.team-member:nth-child(3) {
    animation-delay: 0.3s;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    color: white;
}

.contact::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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #22c55e;
}

.contact-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1e293b;
    color: white;
}

.submit-btn {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    position: relative;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #22c55e;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #22c55e;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.footer-contact i {
    color: #22c55e;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom-content i {
    color: #ef4444;
    animation: pulse 2s ease-in-out infinite;
} 

/* Team Members Section */
.team-members {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.team-members::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
}

.team-member-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-member-card .member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(34, 197, 94, 0.2);
}

.team-member-card .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .member-image img {
    transform: scale(1.1);
}

.team-member-card .member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-member-card .member-title {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-member-card .member-experience {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
}

.services::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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.services-content {
    position: relative;
    z-index: 1;
}

.services-description {
    text-align: center;
    margin-bottom: 4rem;
}

.services-description h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-description p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.charges-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.charges-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #22c55e;
}

.charges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.charge-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.charge-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.charge-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.charge-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.note {
    margin-top: 3rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.note p {
    color: #cbd5e1;
    font-weight: 500;
}

.note strong {
    color: #22c55e;
}

/* Booking Section */
.booking {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
}

.booking::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 100 100"><defs><pattern id="booking-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23booking-dots)"/></svg>');
    opacity: 0.2;
}

.booking-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-info {
    margin-bottom: 4rem;
}

.booking-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #22c55e;
    text-align: center;
}

.booking-requirements {
    display: grid;
    gap: 1.5rem;
}

.requirement-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.requirement-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

.requirement-item p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

.terms-conditions {
    margin-bottom: 4rem;
}

.terms-conditions h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #22c55e;
    text-align: center;
}

.terms-list {
    display: grid;
    gap: 1.5rem;
}

.term-item {
    background: rgba(34, 197, 94, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.term-item:hover {
    background: rgba(34, 197, 94, 0.15);
    transform: translateX(5px);
}

.term-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #22c55e;
}

.term-item p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

.booking-contact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.booking-contact h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #22c55e;
}

.contact-person h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

.designation {
    font-size: 1.1rem;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.company {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.contact-details {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.contact-details strong {
    color: #22c55e;
}

.email-list {
    list-style: none;
    margin-top: 0.5rem;
    margin-left: 1rem;
}

.email-list li {
    color: #cbd5e1;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.email-list li:before {
    content: "•";
    color: #22c55e;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Working Procedures Section */
.working-procedures {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.working-procedures::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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%2322c55e" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.procedures-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.procedure-description {
    margin-bottom: 4rem;
}

.procedure-description h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.procedure-description p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.procedure-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.procedure-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.procedure-box:nth-child(1) { animation-delay: 0.1s; }
.procedure-box:nth-child(2) { animation-delay: 0.2s; }
.procedure-box:nth-child(3) { animation-delay: 0.3s; }
.procedure-box:nth-child(4) { animation-delay: 0.4s; }
.procedure-box:nth-child(5) { animation-delay: 0.5s; }
.procedure-box:nth-child(6) { animation-delay: 0.6s; }
.procedure-box:nth-child(7) { animation-delay: 0.7s; }
.procedure-box:nth-child(8) { animation-delay: 0.8s; }
.procedure-box:nth-child(9) { animation-delay: 0.9s; }
.procedure-box:nth-child(10) { animation-delay: 1.0s; }
.procedure-box:nth-child(11) { animation-delay: 1.1s; }
.procedure-box:nth-child(12) { animation-delay: 1.2s; }
.procedure-box:nth-child(13) { animation-delay: 1.3s; }
.procedure-box:nth-child(14) { animation-delay: 1.4s; }
.procedure-box:nth-child(15) { animation-delay: 1.5s; }
.procedure-box:nth-child(16) { animation-delay: 1.6s; }
.procedure-box:nth-child(17) { animation-delay: 1.7s; }
.procedure-box:nth-child(18) { animation-delay: 1.8s; }
.procedure-box:nth-child(19) { animation-delay: 1.9s; }

.procedure-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s ease;
}

.procedure-box:hover::before {
    left: 100%;
}

.procedure-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

.box-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: relative;
    transition: all 0.3s ease;
}

.box-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.procedure-box:hover .box-image::after {
    opacity: 1;
}

.procedure-box:hover .box-image {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.2);
}

.box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.procedure-box:hover .box-image img {
    transform: scale(1.1);
}

.box-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.procedure-box:hover .box-name {
    color: #22c55e;
}

.box-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    transition: width 0.3s ease;
}

.procedure-box:hover .box-name::after {
    width: 50%;
}

/* Loading state for procedure boxes */
.procedure-box.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Professional focus states for accessibility */
.procedure-box:focus-within {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
    transform: translateY(-4px);
}

/* Improved touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
    .procedure-box {
        min-height: 280px;
    }
    
    .procedure-box:active {
        transform: scale(0.98);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .procedure-box {
        border: 2px solid #22c55e;
        background: white;
    }
    
    .box-name {
        color: #000;
    }
}

/* Customers Section */
.customers {
    padding: 6rem 0;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.customers::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 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.customers::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.customers .section-title {
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.customers .section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.customers .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.customer-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.customer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.customer-item:hover::before {
    left: 100%;
}

.customer-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.customer-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    border-radius: 20px 20px 0 0;
}

.customer-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.customer-item:hover .customer-logo {
    transform: scale(1.2) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.customer-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.customer-category {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive styles for new sections */


 

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    /* Tablet Styles */
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .charges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .customers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .procedure-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .procedure-box {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }
    
    .box-image {
        width: 160px;
        height: 160px;
        margin-bottom: 1.5rem;
        border-radius: 14px;
    }
    
    .box-name {
        font-size: 1rem;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    /* Mobile Landscape and Small Tablet */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(34, 197, 94, 0.2);
        border-top: 1px solid rgba(34, 197, 94, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        color: #1f2937;
        font-weight: 600;
        margin: 0.25rem 0;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(34, 197, 94, 0.1);
        color: #22c55e;
        transform: translateX(5px);
    }

    .contact-btn {
        margin-top: 1rem;
        padding: 0.75rem 2rem;
        background: linear-gradient(135deg, #22c55e, #16a34a);
        border: 2px solid #22c55e;
        color: white !important;
        border-radius: 8px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }

    .contact-btn:hover {
        background: linear-gradient(135deg, #16a34a, #15803d);
        border-color: #16a34a;
        transform: translateX(5px);
        box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .management-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .charges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .customers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .procedure-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }

    .procedure-box {
        padding: 1.5rem;
    }

    .box-image {
        width: 140px;
        height: 140px;
        margin-bottom: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 45px;
        max-width: 80px;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }

    /* Enhanced Contact Section Responsive */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }

    /* Enhanced Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    /* Enhanced Services Section */
    .services-description {
        text-align: center;
        margin-bottom: 2rem;
    }

    .services-description h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .charges-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .note {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    /* Booking Section Responsive */
    .booking-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .booking-info h3,
    .terms-conditions h3,
    .booking-contact h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .booking-requirements {
        gap: 1rem;
    }

    .requirement-item {
        padding: 1rem;
    }

    .requirement-item h4 {
        font-size: 1rem;
    }

    .terms-list {
        gap: 1rem;
    }

    .term-item {
        padding: 1rem;
    }

    .term-item h4 {
        font-size: 1rem;
    }

    .booking-contact {
        padding: 2rem 1.5rem;
    }

    .contact-person h4 {
        font-size: 1.3rem;
    }

    .designation {
        font-size: 1rem;
    }

    .contact-details {
        max-width: 100%;
    }

    .email-list {
        margin-left: 0.5rem;
    }

    /* Enhanced Working Procedures */
    .procedure-description {
        text-align: center;
        margin-bottom: 2rem;
    }

    .procedure-description h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    /* Enhanced Customers Section */
    .customers .section-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .customers .section-subtitle {
        text-align: center;
        margin-bottom: 2rem;
    }

    .customer-item {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .customer-logo {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto 1rem;
    }
    
    .customer-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .customer-category {
        font-size: 0.9rem;
    }

    /* Enhanced Chat Widget */
    .chat-widget {
        width: 70px;
        height: 70px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .chat-widget i {
        font-size: 1.5rem;
    }

    /* Enhanced Banner Section */
    .banner-container {
        padding: 3rem 1rem;
    }

    .banner-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .banner-subtitle {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .banner-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }

    /* Enhanced Management Section */
    .member-info {
        padding: 1.5rem;
    }

    .member-name {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .member-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .member-details {
        margin: 1rem 0;
    }

    .contact-info p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .read-more-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Mobile Portrait - Extra Small Screens */
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .logo-img {
        height: 35px;
        max-width: 60px;
    }
    
    .nav-logo h2 {
        font-size: 0.9rem;
    }
    
    /* Enhanced Hero for Small Screens */
    .hero-container {
        padding: 3rem 0.75rem 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-btn {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    /* Enhanced Management for Small Screens */
    .management {
        padding: 2rem 0;
    }
    
    .management-grid {
        gap: 2rem;
    }
    
    .team-member {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .member-info {
        padding: 0.75rem;
    }

    .member-name {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .member-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .member-company {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .member-details {
        margin: 0.5rem 0;
    }

    .contact-info p {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.25rem;
    }

    .read-more-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    /* Enhanced Team Members for Small Screens */
    .team-members {
        padding: 2rem 0;
    }
    
    .team-member-card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .team-member-card .member-image {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .team-member-card .member-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .team-member-card .member-title {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .team-member-card .member-experience {
        font-size: 0.75rem;
    }

    /* Enhanced Services for Small Screens */
    .services {
        padding: 2rem 0;
    }
    
    .services-description {
        padding: 1.25rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
    
    .services-description h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .services-description p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .charges-grid {
        gap: 1rem;
    }
    
    .charge-item {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .charge-item h4 {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .charge-item .price {
        font-size: 1rem;
    }
    
    .charges-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .note {
        padding: 1rem;
        border-radius: 10px;
        font-size: 0.8rem;
    }

    /* Enhanced Booking for Small Screens */
    .booking {
        padding: 2rem 0;
    }
    
    .booking-content {
        gap: 1.5rem;
    }
    
    .booking-info, .terms-conditions, .booking-contact {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .booking-info h3, .terms-conditions h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .requirement-item, .term-item {
        margin-bottom: 1rem;
        padding: 0.75rem;
        border-radius: 10px;
    }
    
    .requirement-item h4, .term-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .requirement-item p, .term-item p {
        font-size: 0.8rem;
    }
    
    .contact-person h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .designation, .company {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .email-list {
        margin-top: 0.5rem;
    }
    
    .email-list li {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    /* Enhanced Working Procedures for Small Screens */
    .working-procedures {
        padding: 2rem 0;
    }
    
    .procedure-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .procedure-box {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .box-image {
        width: 100px;
        height: 100px;
        margin-bottom: 0.75rem;
        border-radius: 10px;
    }
    
    .box-name {
        font-size: 0.85rem;
        font-weight: 600;
    }

    /* Enhanced Customers for Small Screens */
    .customers {
        padding: 2rem 0;
    }
    
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .customer-item {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .customer-logo {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }
    
    .customer-logo i {
        font-size: 1.2rem;
    }
    
    .customer-name {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .customer-category {
        font-size: 0.7rem;
    }

    /* Enhanced Contact for Small Screens */
    .contact {
        padding: 2rem 0;
    }
    
    .contact-content {
        gap: 1.5rem;
    }
    
    .contact-info-section {
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .contact-card h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-card p {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-form {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        border-radius: 10px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.75rem 1.5rem;
        border-radius: 10px;
        font-size: 0.9rem;
    }

    /* Enhanced Footer for Small Screens */
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section {
        padding: 0.75rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links li {
        margin-bottom: 0.25rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-contact p {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-bottom-content p {
        font-size: 0.75rem;
    }

    /* Enhanced Chat Widget for Small Screens */
    .chat-widget {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
        border-radius: 12px;
    }
    
    .chat-widget i {
        font-size: 1.2rem;
    }
    
    /* Enhanced Hamburger Menu */
    .hamburger {
        width: 30px;
        height: 30px;
    }
    
    .bar {
        height: 3px;
        width: 25px;
    }
    
    /* Enhanced Section Spacing */
    .management,
    .team-members,
    .services,
    .working-procedures,
    .customers,
    .contact {
        padding: 2rem 0;
    }
    
    /* Professional Mobile Enhancements */
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
    }
    
    /* Better touch targets */
    .nav-link, .hero-btn, .read-more-btn, .submit-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improved form accessibility */
    input:focus, select:focus, textarea:focus {
        outline: 2px solid #22c55e;
        outline-offset: 2px;
    }
    
    /* Better image loading */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Enhanced readability */
    p, li {
        line-height: 1.6;
    }
    
    /* Better spacing for touch devices */
    .procedure-box, .customer-item, .charge-item {
        margin-bottom: 0.5rem;
    }
    
    /* Improved navigation accessibility */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Better button states */
    .hero-btn:active, .submit-btn:active, .read-more-btn:active {
        transform: scale(0.98);
    }
    
    /* Enhanced loading states */
    .procedure-box img, .customer-item img {
        transition: opacity 0.3s ease;
    }
    
    .procedure-box img:hover, .customer-item img:hover {
        opacity: 0.8;
    }
        font-size: 1.4rem;
    }

    .note {
        padding: 1rem;
        font-size: 0.9rem;
    }

    /* Enhanced Working Procedures */
    .procedure-description h3 {
        font-size: 1.4rem;
    }

    .procedure-box {
        padding: 1.5rem;
    }

    .box-name {
        font-size: 1rem;
    }

    /* Enhanced Customers */
    .customer-item {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }
    
    .customer-logo {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .customer-name {
        font-size: 1rem;
    }
    
    .customer-category {
        font-size: 0.8rem;
    }
    
    .customers .section-title {
        font-size: 2rem;
    }
    
    .customers .section-subtitle {
        font-size: 1rem;
    }

    /* Enhanced Contact */
    .contact-card {
        padding: 1.25rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }

    /* Enhanced Footer */
    .footer-title {
        font-size: 1.3rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-subtitle {
        font-size: 1.1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
    }

    /* Enhanced Banner */
    .banner-container {
        padding: 2rem 1rem;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .banner-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Enhanced Chat Widget */
    .chat-widget {
        width: 60px;
        height: 60px;
        bottom: 1rem;
        right: 1rem;
    }

    .chat-widget i {
        font-size: 1.3rem;
    }

    /* Enhanced Grid Layouts */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .procedure-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .procedure-box {
        padding: 1.5rem;
    }

    .box-image {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }

    .box-name {
        font-size: 1rem;
    }

    /* Enhanced Spacing */
    .container {
        padding: 0 0.75rem;
    }

    .nav-container {
        padding: 0 0.75rem;
    }

    /* Enhanced Typography */
    .hero-container {
        padding: 2rem 0.75rem;
    }

    .management,
    .team-members,
    .services,
    .working-procedures,
    .customers,
    .contact {
        padding: 3rem 0;
    }
}

/* Additional Tablet-Specific Enhancements */
@media (min-width: 481px) and (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .customers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .procedure-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-container {
        padding: 1.5rem 0;
    }

    .management,
    .team-members,
    .services,
    .working-procedures,
    .customers,
    .contact {
        padding: 2rem 0;
    }

    .nav-menu {
        max-height: 70vh;
        overflow-y: auto;
    }
}

/* High DPI Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .chat-widget,
    .particles {
        display: none !important;
    }

    .hero,
    .management,
    .team-members,
    .services,
    .working-procedures,
    .customers,
    .contact {
        page-break-inside: avoid;
    }
} 

/* Mobile-Specific Enhancements */
@media (max-width: 768px) {
    /* Touch-friendly elements */
    button, .nav-link, .contact-btn, .read-more-btn, .submit-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    /* Improved form elements for mobile */
    input, select, textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
        touch-action: manipulation;
    }
    
    /* Better spacing for mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Enhanced Navigation for Mobile */
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    /* Improved Mobile Menu */
    .nav-menu {
        padding: 1.5rem 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        margin: 0.25rem 1rem;
        border-radius: 12px;
    }
    
    /* Enhanced Hero Section */
    .hero-container {
        padding: 4rem 1rem 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    /* Enhanced Management Section */
    .management {
        padding: 3rem 0;
    }
    
    .management-grid {
        gap: 2.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }
    
    .member-name {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .member-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .member-company {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    /* Enhanced Team Members */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .team-member-card .member-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    
    /* Enhanced Services */
    .services {
        padding: 3rem 0;
    }
    
    .services-description {
        margin-bottom: 2rem;
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .services-description h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .charges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .charge-item {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .charge-item h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .charge-item .price {
        font-size: 1.1rem;
    }
    
    /* Enhanced Booking Section */
    .booking {
        padding: 3rem 0;
    }
    
    .booking-content {
        gap: 2rem;
    }
    
    .booking-info, .terms-conditions, .booking-contact {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .requirement-item, .term-item {
        margin-bottom: 1.5rem;
        padding: 1rem;
        border-radius: 12px;
    }
    
    .requirement-item h4, .term-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-person {
        text-align: center;
    }
    
    .email-list {
        text-align: left;
        margin-top: 0.5rem;
    }
    
    /* Enhanced Working Procedures */
    .working-procedures {
        padding: 4rem 0;
    }
    
    .procedure-description h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .procedure-description p {
        font-size: 1.1rem;
        max-width: 500px;
    }
    
    .procedure-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .procedure-box {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }
    
    .box-image {
        width: 140px;
        height: 140px;
        margin-bottom: 1.5rem;
        border-radius: 14px;
    }
    
    .box-name {
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* Enhanced Customers */
    .customers {
        padding: 3rem 0;
    }
    
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .customer-item {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .customer-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .customer-name {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .customer-category {
        font-size: 0.8rem;
    }
    
    /* Enhanced Contact */
    .contact {
        padding: 3rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        border-radius: 16px;
        text-align: center;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        border-radius: 12px;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        border-radius: 12px;
        font-size: 1rem;
    }
    
    /* Enhanced Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        padding: 1rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    /* Enhanced Chat Widget */
    .chat-widget {
        width: 60px;
        height: 60px;
        bottom: 2rem;
        right: 2rem;
    }
    
    .chat-widget i {
        font-size: 1.5rem;
    }
    }
    
    /* Enhanced mobile navigation */
    .nav-menu {
        padding: 1rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 8px;
        margin: 0.25rem 1rem;
        transition: all 0.3s ease;
        color: #1f2937;
        font-weight: 600;
        display: block;
        text-align: center;
    }
    
    .nav-link:hover {
        background: rgba(34, 197, 94, 0.1);
        color: #22c55e;
        transform: translateX(5px);
    }
    
    .nav-link.active {
        background: rgba(34, 197, 94, 0.15);
        color: #22c55e;
    }
    
    .contact-btn {
        background: linear-gradient(45deg, #22c55e, #16a34a);
        color: white;
        border-radius: 25px;
        margin: 0.5rem 1rem;
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    }
    
    /* Enhanced mobile cards */
    .team-member, .team-member-card, .contact-card, .charge-item, .customer-item {
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        touch-action: manipulation;
    }
    
    .team-member:active, .team-member-card:active, .contact-card:active, 
    .charge-item:active, .customer-item:active {
        transform: scale(0.98);
    }
    
    /* Better mobile images */
    .member-image img, .team-member-card .member-image img {
        border-radius: 12px;
        object-fit: cover;
    }
    
    /* Enhanced mobile buttons */
    .hero-btn, .read-more-btn, .submit-btn {
        border-radius: 25px;
        font-weight: 600;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
        transition: all 0.3s ease;
    }
    
    .hero-btn:active, .read-more-btn:active, .submit-btn:active {
        transform: scale(0.95);
        box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
    }
    
    /* Mobile-optimized forms */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input, .form-group select, .form-group textarea {
        border-radius: 12px;
        border: 2px solid transparent;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
        border-color: #22c55e;
        box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
        transform: translateY(-2px);
    }
    
    /* Mobile-optimized chat widget */
    .chat-widget {
        border-radius: 50%;
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
        transition: all 0.3s ease;
    }
    
    .chat-widget:active {
        transform: scale(0.9);
    }
    
    /* Better mobile typography */
    .hero-title, .section-title, .customers .section-title {
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Mobile-optimized spacing */
    .management, .team-members, .services, .working-procedures, .customers, .contact {
        padding: 3rem 0;
    }
    
    /* Enhanced mobile grid layouts */
    .management-grid, .team-grid, .charges-grid, .customers-grid, .procedure-gallery {
        gap: 1.5rem;
    }
    
    /* Mobile-optimized contact section */
    .contact-content {
        gap: 2rem;
    }
    
    .contact-info-section {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 1rem;
    }
    
    /* Mobile-optimized footer */
    .footer-content {
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-link {
        margin: 0 0.5rem;
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile optimizations */
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    /* Smaller touch targets for very small screens */
    .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Optimized grid layouts for very small screens */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .procedure-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .procedure-box {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .box-image {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    
    .box-name {
        font-size: 0.95rem;
    }
    
    /* Smaller cards for very small screens */
    .team-member-card, .charge-item, .customer-item {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    /* Optimized typography for very small screens */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
    
    .member-title {
        font-size: 0.9rem;
    }
    
    /* Smaller chat widget for very small screens */
    .chat-widget {
        width: 55px;
        height: 55px;
        bottom: 0.75rem;
        right: 0.75rem;
    }
    
    .chat-widget i {
        font-size: 1.2rem;
    }
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-container {
        padding: 1rem 0;
    }
    
    .management, .team-members, .services, .working-procedures, .customers, .contact {
        padding: 2rem 0;
    }
    
    .nav-menu {
        max-height: 60vh;
        overflow-y: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .member-image img, .team-member-card .member-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particle {
        animation: none !important;
    }
    
    .hero-title {
        animation: none !important;
    }
    
    .hero-btn {
        animation: none !important;
    }
}

/* Dark mode support for mobile */
@media (prefers-color-scheme: dark) {
    .nav-menu {
        background-color: rgba(0, 0, 0, 0.95);
        color: white;
    }
    
    .nav-link {
        color: white;
    }
    
    .nav-link:hover {
        background: rgba(34, 197, 94, 0.2);
    }
}

/* Mobile-specific loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #22c55e;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile-specific focus indicators */
.keyboard-navigation button:focus,
.keyboard-navigation a:focus,
.keyboard-navigation input:focus,
.keyboard-navigation select:focus,
.keyboard-navigation textarea:focus {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

/* Mobile-specific hover states (for devices that support hover) */
@media (hover: hover) {
    .team-member:hover,
    .team-member-card:hover,
    .contact-card:hover,
    .charge-item:hover,
    .customer-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
}

/* Mobile-specific active states */
.team-member:active,
.team-member-card:active,
.contact-card:active,
.charge-item:active,
.customer-item:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Mobile-specific scrollbar */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 6px;
    }
    
    ::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
    }
    
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(45deg, #22c55e, #16a34a);
        border-radius: 3px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(45deg, #16a34a, #15803d);
    }
} 

/* Mobile Navbar Theme Override */
@media (max-width: 768px) {
    /* Slide-in panel from right */
    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        right: 0 !important;
        left: auto !important;
        height: calc(100vh - 70px) !important;
        width: 80% !important;
        transform: translateX(100%) !important;
        transition: transform 0.4s ease-out !important;
        background: linear-gradient(135deg, #22c55e, #10b981) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 16px !important;
        margin: 0.5rem !important;
        padding: 1.5rem 0 !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .nav-menu.active {
        transform: translateX(0) !important;
    }
    .logo-img {
        filter: drop-shadow(0 0 4px rgba(0,0,0,0.3));
    }
    .nav-link {
        color: #fff !important;
        font-size: 1.2rem;
        font-weight: 600;
        text-align: center;
        padding: 1rem 0 !important;
        position: relative;
        transition: color 0.3s ease !important;
    }
    .nav-link::after {
        content: '';
        position: absolute !important;
        bottom: 8px !important;
        left: 50% !important;
        width: 0 !important;
        height: 3px !important;
        background: #fff !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }
    .nav-link:hover,
    .nav-link.active {
        color: #fff !important;
        background: rgba(255,255,255,0.2) !important;
    }
    .nav-link:hover::after,
    .nav-link.active::after {
        left: 25%;
        width: 50%;
    }
    /* Smooth cross animation origin */
    .bar {
        transform-origin: left center !important;
    }
    /* Toggle bars color */
    .bar {
        background: #3b82f6 !important;
    }
    .hamburger.active .bar {
        background: #fff !important;
    }
 }

/* Desktop Navbar Background Removal */
@media (min-width: 769px) {
    .nav-menu {
        background: linear-gradient(90deg, #22c55e, #10b981);
        padding: 0.5rem 1rem;
        border-radius: 30px;
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: transform 0.3s ease, background 0.3s ease;
    }
    .nav-menu:hover {
        transform: scale(1.02);
    }
    .nav-link {
        color: #fff !important;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, color 0.3s ease;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        width: 0;
        height: 3px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255,255,255,0.2) !important;
        color: #fff !important;
        transform: scale(1.05);
    }
    .nav-link:hover::after,
    .nav-link.active::after {
        left: 15%;
        width: 70%;
    }
    .contact-btn {
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .contact-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 24px rgba(0,0,0,0.3);
    }
    .logo-img {
        filter: drop-shadow(0 0 6px rgba(0,0,0,0.3));
        transition: filter 0.3s ease;
    }
    .logo-img:hover {
        filter: drop-shadow(0 0 10px rgba(34,197,94,0.6));
    }
}

@media (max-width: 768px) {
    .bar {
        background: #3b82f6 !important;
    }
    .navbar {
        padding: 0.5rem 0 !important;
    }
    .logo-img {
        height: 45px !important;
        max-width: 80px !important;
    }
}