/* CSS Document - English Version */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    direction: ltr;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 99px;
    width: auto;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.desktop-nav ul li {
    margin: 0;
}

.desktop-nav ul li a {
    color: #1F1F1F;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
    font-size: 16px;
}

.desktop-nav ul li a:hover {
    color: #9d884d;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #9d884d;
    transition: width 0.3s;
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section - Fixed Background Image */
.hero {
    height: 74vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 130px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../images/all/zam786.jpg') center center/cover no-repeat;
    background-attachment: fixed;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #9d884d 0%, #b8a268 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(157, 136, 77, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #b8a268 0%, #9d884d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(157, 136, 77, 0.4);
}

.gov-details-btn {
    margin-top: 20px;
    display: inline-block;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 36px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #9d884d, #e0a800);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-video {
    flex: 1;
    min-width: 300px;
}

.floating-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.floating-card.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.floating-card.animated {
    opacity: 1;
    transform: translateY(0);
}

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

.video-3d {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-3d.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

.video-3d.animated {
    opacity: 1;
    transform: translateY(0);
}

.video-3d video {
    width: 100%;
    height: auto;
    display: block;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.value-card.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.value-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 40px;
    color: #9d884d;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(15deg);
    color: #e0a800;
}

/* Enhanced Services Section */
.services-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-section {
    background: white;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-section.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.service-section.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.section-title-inner {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    background-color: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #9d884d;
    transition: all 0.3s ease;
}

.service-section:hover .section-icon {
    background: linear-gradient(135deg, #9d884d, #e0a800);
    color: white;
    transform: rotate(15deg) scale(1.1);
}

.section-title-inner h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin: 0;
}

.services-list {
    list-style: none;
}

.services-list li {
    margin-bottom: 12px;
    color: #5a6c7d;
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.services-list li:before {
    content: '•';
    color: #9d884d;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.government-services {
    margin-top: 20px;
}

.government-department {
    margin-bottom: 20px;
}

.government-department h4 {
    color: #2c3e50;
    margin: 15px 0 10px 0;
    font-size: 1.2rem;
    border-left: 3px solid #9d884d;
    padding-left: 10px;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.project-card.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.project-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 95, 0.85);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-content {
    padding: 20px;
    text-align: center;
}

.project-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Image Gallery Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.close:hover {
    color: #000;
}

.modal-header {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.modal-header h3 {
    color: #2c3e50;
    text-align: center;
    font-size: 1.5rem;
}

.main-image-container {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail-container {
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumbnail {
    width: 100px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: #9d884d;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 300px;
}

.contact-info h3 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 300px;
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 20px;
    margin-right: 15px;
    color: #9d884d;
    min-width: 20px;
    margin-top: 3px;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
    background: #f9f9f9;
}

.form-control:focus {
    border-color: #9d884d;
    box-shadow: 0 0 0 2px rgba(157, 136, 77, 0.2);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

#form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

/* Google Maps Section */
.map-section {
    background: #f5f7fa;
    padding: 80px 0;
}

.map-container {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.map-wrapper:hover .map-overlay {
    opacity: 1;
}

.map-overlay-content {
    text-align: center;
    color: white;
}

.map-overlay-content i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.map-overlay-content p {
    font-size: 18px;
    margin: 0;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.2);
    background-color: #128C7E;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #e0e0e0;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #9d884d;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #9d884d, #e0a800);
    bottom: 0;
    left: 0;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    color: #b0b0b0;
    display: flex;
    align-items: flex-start;
}

.footer-links li i {
    color: #9d884d;
    margin-right: 8px;
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #e0e0e0;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, #9d884d 0%, #b8a268 100%);
    color: white;
    transform: translateY(-5px) rotate(10deg);
    border-color: #9d884d;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #b0b0b0;
}

/* Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.animate-fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-panel.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.mobile-logo {
    font-size: 20px;
    font-weight: bold;
    color: #9d884d;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 10px;
}

.mobile-nav-list a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    background: #f1f5f9;
    color: #9d884d;
    border-left-color: #9d884d;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1F1F1F;
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
    z-index: 100;
}

/* Media Queries */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 2% auto;
    }
    
    .main-image-container {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .header-container {
        justify-content: space-between;
        position: relative;
    }
    
    .services-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero {
        height: 60vh;
        margin-top: 100px;
        background-attachment: scroll;
    }
    
    section {
        padding: 60px 0;
    }
    
    .main-image-container {
        height: 250px;
    }
    
    .thumbnail {
        width: 80px;
        height: 60px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .mobile-menu-panel {
        width: 100%;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .contact-form,
    .contact-info {
        padding: 20px;
    }
    
    .modal-content {
        padding: 10px;
    }
    
    .main-image-container {
        height: 200px;
    }
    
    .thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate,
    .animate-fade-in-up {
        transition: none !important;
        animation: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}