/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d8659;
    --secondary-green: #4caf50;
    --light-green: #81c784;
    --primary-blue: #2196f3;
    --secondary-blue: #42a5f5;
    --light-blue: #90caf9;
    --dark-text: #2c3e50;
    --light-text: #ffffff;
    --white-bg: #ffffff;
    --gray-bg: #f8f9fa;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--dark-text);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.bg-green {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%) !important;
}

.navbar-brand {
    padding: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--light-text) !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--light-text);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--light-green) !important;
}

.navbar-toggler {
    border: 2px solid var(--light-text);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background-image: url('cover.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.85) 0%, rgba(33, 150, 243, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light-text);
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5), 0 0 20px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--light-green);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.4s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--secondary-blue) 100%);
    border: none;
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    position: relative;
}

.title-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: var(--gray-bg);
    padding: 5rem 0;
}

.info-card {
    background: var(--white-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-green);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--light-text);
    font-size: 2rem;
}

.info-card h4 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
}

/* Company Introduction */
.company-intro {
    background: transparent;
    padding: 0;
    text-align: center;
    position: relative;
    height: 100%;
}

/* Company Circle Image */
.company-image-circle-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.company-circle-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 8px solid var(--white-bg);
    z-index: 2;
    transition: transform 0.5s ease;
}

.company-circle-image:hover {
    transform: scale(1.05);
}

.company-circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    animation: rotate 20s linear infinite;
}

.circle-decoration.circle-1 {
    width: 450px;
    height: 450px;
    border-color: var(--primary-green);
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.circle-decoration.circle-2 {
    width: 500px;
    height: 500px;
    border-color: var(--primary-blue);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation-duration: 25s;
    animation-direction: reverse;
}

.circle-decoration.circle-3 {
    width: 550px;
    height: 550px;
    border-color: var(--secondary-green);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation-duration: 30s;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.intro-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--light-text);
    font-size: 2.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.intro-title {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.intro-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border-radius: 2px;
}

.intro-content {
    text-align: right;
    max-width: 900px;
    margin: 0 auto;
}

.intro-content p {
    color: var(--dark-text);
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.intro-content p:first-of-type {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.values-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.values-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(45, 134, 89, 0.3);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.values-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    opacity: 0.3;
    z-index: -1;
    animation: ripple 2s ease-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.values-title {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border-radius: 2px;
}

.values-content {
    max-width: 900px;
    margin: 0 auto;
}

.values-intro {
    color: var(--dark-text);
    font-size: 1.3rem;
    line-height: 2;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding: 1.5rem;
    background: var(--white-bg);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-right: 4px solid var(--primary-green);
}

.vision-mission-card {
    background: var(--white-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border-top: 4px solid var(--primary-blue);
}

.vision-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--light-text);
    font-size: 2rem;
}

.vision-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

.mission-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.goal-icon {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-blue) 100%);
}

.vision-mission-card h3 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.vision-mission-card p {
    color: var(--dark-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--white-bg);
}

/* Creative Gallery Section */
.creative-gallery-section {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.gallery-intro {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.creative-gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    position: relative;
    height: 100%;
}

.creative-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.creative-gallery-item.large-item .gallery-image-container {
    height: 500px;
}

.creative-gallery-item.small-item .gallery-image-container {
    height: 240px;
}

.creative-gallery-item.full-width-item .gallery-image-container {
    height: 400px;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.creative-gallery-item:hover .gallery-image-container img {
    transform: scale(1.15);
}

.gallery-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.9) 0%, rgba(33, 150, 243, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--light-text);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.creative-gallery-item:hover .gallery-overlay-content {
    opacity: 1;
}

.gallery-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.creative-gallery-item:hover .gallery-icon {
    transform: scale(1.1) rotate(5deg);
}

.gallery-overlay-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gallery-overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gallery-overlay-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.creative-gallery-item.small-item .gallery-overlay-content p {
    font-size: 1rem;
}

.creative-gallery-item .btn-light {
    background: var(--white-bg);
    color: var(--primary-green);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.creative-gallery-item .btn-light:hover {
    background: var(--primary-green);
    color: var(--white-bg);
    transform: translateX(-5px);
}

@media (max-width: 992px) {
    .creative-gallery-item.large-item .gallery-image-container {
        height: 400px;
    }
    
    .creative-gallery-item.small-item .gallery-image-container {
        height: 200px;
    }
    
    .creative-gallery-item.full-width-item .gallery-image-container {
        height: 350px;
    }
    
    .gallery-overlay-content h3 {
        font-size: 1.5rem;
    }
    
    .gallery-overlay-content h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .creative-gallery-item.large-item .gallery-image-container {
        height: 300px;
    }
    
    .creative-gallery-item.small-item .gallery-image-container {
        height: 250px;
    }
    
    .creative-gallery-item.full-width-item .gallery-image-container {
        height: 300px;
    }
    
    .gallery-overlay-content {
        padding: 1.5rem;
    }
    
    .gallery-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .gallery-overlay-content h3 {
        font-size: 1.3rem;
    }
    
    .gallery-overlay-content h4 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay-content p {
        font-size: 0.95rem;
    }
}

.gallery-item {
    background: var(--white-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.8) 0%, rgba(33, 150, 243, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    padding: 2rem;
}

.gallery-content h4 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.gallery-content p {
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.gallery-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-features li {
    padding: 0.5rem 0;
    color: var(--dark-text);
    display: flex;
    align-items: center;
}

.gallery-features li i {
    color: var(--primary-green);
    margin-left: 0.5rem;
    font-size: 1.1rem;
}

/* Products Section */
.products-section {
    background: var(--white-bg);
    padding: 5rem 0;
}

.products-intro {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: var(--white-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card-green {
    border-top-color: var(--primary-green);
}

.product-card-blue {
    border-top-color: var(--primary-blue);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--light-text);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.product-card-green .product-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

.product-card-blue .product-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-card h4 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-blue h4 {
    color: var(--primary-blue);
}

.product-card p {
    color: var(--dark-text);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: var(--gray-bg);
    padding: 5rem 0;
}

.contact-card {
    background: var(--white-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-blue);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--light-text);
    font-size: 2rem;
}

.contact-card h4 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--dark-text);
    margin: 0.5rem 0;
}

.contact-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-green);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    color: var(--light-text);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--light-text);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .gallery-image-wrapper {
        height: 250px;
    }
    
    .company-circle-image {
        width: 350px;
        height: 350px;
    }
    
    .circle-decoration.circle-1 {
        width: 390px;
        height: 390px;
    }
    
    .circle-decoration.circle-2 {
        width: 430px;
        height: 430px;
    }
    
    .circle-decoration.circle-3 {
        width: 470px;
        height: 470px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .info-card,
    .vision-mission-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .company-circle-image {
        width: 300px;
        height: 300px;
    }
    
    .circle-decoration.circle-1 {
        width: 340px;
        height: 340px;
    }
    
    .circle-decoration.circle-2 {
        width: 380px;
        height: 380px;
    }
    
    .circle-decoration.circle-3 {
        width: 420px;
        height: 420px;
    }
    
    .company-intro {
        padding: 2rem 1.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
}

/* Company Images Section */
.company-images-section {
    background: var(--gray-bg);
    padding: 5rem 0;
}

.company-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.company-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.company-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.company-image-wrapper:hover .company-image {
    transform: scale(1.05);
}

.image-overlay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    color: var(--white-bg);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.image-overlay-badge i {
    font-size: 1.2rem;
}

.company-content {
    padding: 2rem;
}

.content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-bg);
    font-size: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(45, 134, 89, 0.3);
}

.content-title {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-text {
    color: var(--dark-text);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.content-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.content-features li {
    padding: 0.75rem 0;
    color: var(--dark-text);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-features li i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.content-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-text);
    font-weight: 600;
}

@media (max-width: 992px) {
    .content-title {
        font-size: 1.75rem;
    }
    
    .content-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .company-content {
        padding: 1.5rem;
    }
    
    .content-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .content-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .content-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .content-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
        background: var(--white-bg);
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }
    
    .image-overlay-badge {
        top: 10px;
        left: 10px;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Products Scroll Section */
.products-scroll-section {
    background: var(--white-bg);
    padding: 5rem 0;
    position: relative;
}

.products-scroll-wrapper {
    position: relative;
    padding: 0 60px;
}

.products-scroll-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.products-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.product-scroll-item {
    flex: 0 0 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: var(--white-bg);
}

.product-scroll-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-scroll-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: var(--gray-bg);
}

.product-scroll-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.5s ease;
}

.product-scroll-item:hover .product-scroll-image {
    transform: translate(-50%, -50%) scale(1.05);
}

.product-scroll-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.9) 0%, rgba(33, 150, 243, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-scroll-item:hover .product-scroll-overlay {
    opacity: 1;
}

.product-scroll-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white-bg);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-scroll-link:hover {
    transform: scale(1.1);
    background: var(--primary-green);
    color: var(--white-bg);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white-bg);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
}

.scroll-btn:hover {
    background: var(--primary-green);
    color: var(--white-bg);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.scroll-btn-left {
    right: 0;
}

.scroll-btn-right {
    left: 0;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    color: var(--white-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.btn-show-more::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;
}

.btn-show-more:hover::before {
    left: 100%;
}

.btn-show-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-show-more i {
    transition: transform 0.3s ease;
}

.btn-show-more:hover i {
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .products-scroll-wrapper {
        padding: 0 50px;
    }
    
    .product-scroll-item {
        flex: 0 0 250px;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .btn-show-more {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .products-scroll-wrapper {
        padding: 0 40px;
    }
    
    .product-scroll-item {
        flex: 0 0 200px;
    }
    
    .scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    position: relative;
    padding-top: 100px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--light-text);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.contact-hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--light-green);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.contact-page-section {
    background: var(--gray-bg);
    padding: 5rem 0;
}

.contact-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border-radius: 2px;
}

.contact-info-wrapper {
    background: var(--white-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-info-card {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.contact-info-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info-card h4 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.contact-info-card p {
    color: var(--dark-text);
    margin: 0.5rem 0;
    line-height: 1.8;
}

.contact-info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    margin: 0.5rem 0;
}

.contact-info-card a:hover {
    color: var(--primary-green);
}

.contact-form-wrapper {
    background: var(--white-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-description {
    color: var(--dark-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-form .form-label {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-form .form-label i {
    color: var(--primary-green);
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.contact-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(45, 134, 89, 0.25);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
}

@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 40vh;
        padding-top: 80px;
    }
    
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-section-title {
        font-size: 1.5rem;
    }
}

/* Products Page Styles */
.products-hero-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    position: relative;
    padding-top: 100px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.products-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--light-text);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.products-hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--light-green);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.products-page-section {
    background: var(--gray-bg);
    padding: 5rem 0;
}

/* Product Image Cards */
.product-image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--white-bg);
}

.product-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 10px;
}

.product-image-card:hover .product-image {
    transform: translate(-50%, -50%) scale(1.05);
}

.product-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.85) 0%, rgba(33, 150, 243, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-card:hover .product-overlay-hover {
    opacity: 1;
}

.zoom-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white-bg);
    border: none;
    color: var(--primary-green);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.zoom-btn:hover {
    transform: scale(1.1);
    background: var(--primary-green);
    color: var(--white-bg);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--white-bg);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-bg);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-prev {
    right: 20px;
}

.lightbox-next {
    left: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .products-hero-section {
        min-height: 40vh;
        padding-top: 80px;
    }
    
    .lightbox-close {
        top: 10px;
        left: 10px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        right: 10px;
    }
    
    .lightbox-next {
        left: 10px;
    }
    
    .lightbox-image {
        max-height: 85vh;
    }
    
    .zoom-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .product-image-wrapper {
        padding-top: 100%;
    }
    
    .lightbox-close {
        top: 5px;
        left: 5px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

