/* Google Fonts - Cairo */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', Arial, Helvetica, sans-serif;
}

:root {
    --primary-teal: #1a5f7a;
    --dark-teal: #0d3a52;
    --light-teal: #2a8fb8;
    --gold: #d4af37;
    --light-gold: #f4d03f;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --medium-gray: #666666;
}

body {
    font-family: 'Cairo', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background-color: #f8f9fa;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Header */
.main-header {
    background-color: #374D86;
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* Header Right - Logo and Company Info */
.header-right {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.logo-wrapper {
    flex-shrink: 0;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.company-slogan {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

/* Header Left - Navigation */
.header-left {
    flex-shrink: 0;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
    overflow: hidden;
}

.hero {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: block;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(248, 249, 250, 0.2));
    z-index: 1;
    pointer-events: none;
}

.hero-link:hover .hero {
    transform: scale(1.02);
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.8) 90%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 80%, rgba(0,0,0,0.8) 90%, rgba(0,0,0,0) 100%);
}

/* Product Showcase */
.product-showcase {
    padding: 60px 0;
    background-color: transparent;
}

.showcase-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.product-card {
    background: transparent;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
    transition: transform 0.3s;
    max-width: 800px;
    width: 100%;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card h3 {
    font-size: 28px;
    margin-top: 20px;
}

.product-image {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volcanic-block-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.block-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.block {
    width: 120px;
    height: 40px;
    background: linear-gradient(to bottom, #4a5568, #718096);
    border: 2px solid #2d3748;
    border-radius: 3px;
    position: relative;
}

.block::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #a0aec0;
    transform: translateY(-50%);
}

.block-1 {
    width: 100px;
}

.block-2 {
    width: 120px;
}

.block-3 {
    width: 140px;
}

/* Our Products Section */
.our-products {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: var(--primary-teal);
    margin-bottom: 30px;
    font-weight: bold;
}

.btn-view-products {
    display: inline-block;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    border: 2px solid var(--primary-teal);
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 500;
}

.btn-view-products:hover {
    background-color: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(26, 95, 122, 0.3);
}

/* Why Us Section */
.why-us {
    padding: 60px 0;
    background-color: var(--white);
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gold-dots {
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 5px;
}

.gold-line {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
}

.why-us .section-title {
    font-size: 36px;
    color: var(--primary-teal);
    margin-bottom: 0;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.feature-item {
    text-align: right;
    padding: 20px;
    position: relative;
}

.feature-number {
    font-size: 80px;
    font-weight: bold;
    color: #e2e8f0;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
}

.gold-line-under {
    width: 50px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 20px;
}

.feature-item h3 {
    color: var(--primary-teal);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
}

.feature-item p {
    color: var(--medium-gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.volcanic-block-section {
    background: #c0c0c0;
    padding: 80px 0;
    position: relative;
    color: var(--white);
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.volcanic-block-section::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url('../img/IMG_1904-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(15px);
    z-index: 0;
}

.volcanic-block-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 120, 139, 0.6);
    z-index: 1;
}

.volcanic-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.volcanic-main-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.volcanic-container {
    position: relative;
    z-index: 2;
}

.volcanic-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr auto 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.volcanic-benefits-right,
.volcanic-benefits-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.volcanic-benefit-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: right;
}

.volcanic-benefit-number {
    font-size: 60px;
    font-weight: bold;
    color: var(--gold);
    line-height: 1;
}

.volcanic-benefit-text {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    word-spacing: 2px;
}

.volcanic-block-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.volcanic-block-img {
    max-width: 800px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.block-cross-section {
    width: 180px;
    height: 350px;
    background: linear-gradient(to bottom, #ffffff, #f0f4f8);
    border: 5px solid #2d3748;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.block-cross-section::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: repeating-linear-gradient(
        90deg,
        #cbd5e0 0px,
        #cbd5e0 2px,
        transparent 2px,
        transparent 8px
    );
    border-radius: 4px;
}

.block-hole {
    position: absolute;
    width: 40px;
    height: 50px;
    background: #e2e8f0;
    border: 2px solid #cbd5e0;
    border-radius: 3px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.block-hole-left {
    top: 25px;
    left: 30px;
}

.block-hole-right {
    top: 25px;
    right: 30px;
}

/* What Distinguishes Us */
.distinguishes-us {
    padding: 80px 0;
    background-color: var(--white);
}

.reports-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reports-banner-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reports-banner-title {
    font-size: 48px;
    color: var(--primary-teal);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    min-height: 1.2em;
    display: inline-block;
}

.reports-banner-title#typing-title {
    border-right: 2px solid var(--primary-teal);
    padding-right: 5px;
    animation: blink-cursor 0.8s infinite;
}

.reports-banner-title#typing-title.typed {
    border-right: none;
    animation: none;
}

@keyframes blink-cursor {
    0%, 50% {
        border-right-color: var(--primary-teal);
    }
    51%, 100% {
        border-right-color: transparent;
    }
}

.reports-banner-text {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin: 0;
}

.btn-browse-reports {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #7cc0f8;
    color: white;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-browse-reports:hover {
    background-color: #c49564;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.reports-banner-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reports-banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .reports-banner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .reports-banner-image {
        order: -1;
    }
    
    .reports-banner-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .distinguishes-us {
        padding: 60px 0;
    }
    
    .reports-banner {
        padding: 30px;
    }
    
    .reports-banner-title {
        font-size: 32px;
    }
    
    .reports-banner-text {
        font-size: 16px;
    }
}

.distinguish-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.distinguish-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.distinguish-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-image i {
    font-size: 50px;
    color: var(--white);
}

.distinguish-card h3 {
    font-size: 24px;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.btn-read-more {
    background-color: var(--gold);
    color: var(--dark-teal);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-read-more:hover {
    background-color: var(--light-gold);
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background-color: var(--white);
}

.partners-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logo {
    width: 150px;
    height: 100px;
    background-color: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-teal);
    font-weight: bold;
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: scale(1.1);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.faq-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.faq-title-section {
    text-align: right;
}

.faq-title-section h2 {
    font-size: 36px;
    color: var(--primary-teal);
    font-weight: bold;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--light-teal);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Footer */
.main-footer {
    background-color: var(--dark-teal);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 20px;
}

.footer-column p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column p a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-column p a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-column i {
    color: var(--gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.social-links a i {
    font-size: 18px;
    color: inherit;
}

.social-links a:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .header-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        width: 100%;
        align-items: center;
    }

    .logo-wrapper {
        display: flex;
        justify-content: center;
    }

    .logo-img {
        width: 70px;
        height: 70px;
    }

    .company-info {
        width: 100%;
        text-align: center;
    }

    .company-name {
        font-size: 18px;
        line-height: 1.4;
    }

    .company-slogan {
        font-size: 11px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .header-left {
        position: absolute;
        top: 0;
        left: 0;
        width: auto;
    }

    .navbar {
        position: relative;
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(255,255,255,0.1);
        border-radius: 5px;
        padding: 10px;
        transition: background-color 0.3s;
    }

    .hamburger:hover {
        background-color: rgba(255,255,255,0.2);
    }

    .hamburger.active {
        background-color: rgba(255,255,255,0.15);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 80%;
        max-width: 300px;
        text-align: right;
        transition: left 0.3s ease;
        box-shadow: 2px 0 15px rgba(0,0,0,0.7);
        padding: 80px 20px 20px;
        gap: 0;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: block;
        font-size: 16px;
        transition: all 0.3s;
    }

    .nav-menu a:hover {
        color: var(--gold);
        padding-right: 10px;
    }

    /* Overlay when menu is open */
    .nav-menu.active::after {
        content: '';
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.6);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .hero-banner {
        min-height: auto;
        object-fit: contain;
        width: 100%;
        height: auto;
    }
    
    .hero {
        height: auto;
    }
    
    .hero::after {
        height: 40px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .volcanic-block-section {
        padding: 40px 0;
    }
    
    .volcanic-container {
        padding: 0 20px;
    }
    
    .volcanic-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .volcanic-block-image {
        order: -1;
    }
    
    .volcanic-main-title {
        font-size: 36px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .distinguish-grid {
        grid-template-columns: 1fr;
    }

    .faq-content {
        grid-template-columns: 1fr;
    }

    .faq-title-section {
        text-align: center;
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 12px 0;
    }

    .logo-img {
        width: 60px;
        height: 60px;
    }

    .company-name {
        font-size: 16px;
        line-height: 1.3;
    }

    .company-slogan {
        font-size: 10px;
        line-height: 1.4;
    }

    .nav-menu {
        width: 85%;
        max-width: 280px;
        padding: 70px 15px 15px;
    }

    .nav-menu a {
        font-size: 15px;
        padding: 12px 0;
    }

    .hamburger {
        top: -3px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }
}

