﻿@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Poppins:wght@400;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --theme-color: #00a098;
    --theme-dark: #008780;
    --text-primary: #333;
    --text-secondary: #666;
    --bg-light: #f8f9fa;
    
    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    
    /* Transitions */
    --transition-default: all 0.3s ease;
}

html {
    scroll-behavior: auto; 
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.page-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.inner {
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header Styles */
header {
    background: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    max-width:1500px;
    display:flex;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    margin: 0;
    flex: 0 0 auto;
}

header h1 img {
    max-height: 50px;
    width: auto;
    display: block;
}

nav {
    flex: 0 0 auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

/* Regular nav links */
nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s;
}

nav li:last-child a {
    background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-dark) 50%, var(--theme-color) 100%);
    background-size: 200% 100%;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    transition: all 0.5s ease;
}

nav li:last-child a:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
}

nav a:hover {
    color: var(--theme-color);
}

/* Main Hero Section */
main {
    position: relative;
    z-index: 1;
    min-height: 75vh;
    padding: 60px 0;
    display: flex;
    align-items: center;
    padding-top: 0;
}

main .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

main h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

main h3 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

.button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-dark) 50%, var(--theme-color) 100%);
    background-size: 200% 100%;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.5s ease;
    font-weight: 600;
}

.button:hover {
    background-position: 100% 0;
}

.hero-video {
    position: relative;
    flex: 1;
    max-width: 650px;
}

.video-background {
    position: absolute;
    bottom: -48%;
    right: -35%;
    width: 85%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

main video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Section Styles */
section {
    padding: 100px 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

section h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

section p {
    margin-bottom: 20px;
}

#about {
    position: relative;
    overflow: hidden;
    padding: 45px 0;
    text-align: center;
    max-width: none;
    width: 100%;
    overflow: visible;
    z-index: 1;
}

#about h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--theme-color);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    will-change: transform, opacity;
}

#about h3.animate {
    opacity: 1;
    transform: translateY(0);
}

#about p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

#about video {
    width: 100%;
    max-width: 1000px;
    border-radius: 10px;
    margin: 50px auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
}

#products {
    padding: 80px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

#products h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--text-primary);
}

/* Contact Section */
#contact {
    position: relative;
    overflow: visible;
    max-width: 1450px;
    margin: 0 auto;
}

#contact h2 {
    font-size: 36px;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 24px;
}

#contact h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin: 32px 0 16px;
    padding-bottom: 8px;
}

#contact p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 0px;
    text-align: center;
}

/* Footer */
footer {
    color: var(--text-primary);
    text-align: center;
    padding: 60px 0;
    font-size:12px;
}

.gradient-text {
    background: linear-gradient(90deg, #00a098, #5dcdb4, #035954);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #00a098, #5dcdb4, #035954);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    animation: gradient 3s ease infinite;
}

h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--theme-color);
    display: block;
}

.cloud-icon {
    width: 18px;
    height: 18px;
}

h4 span {
    color: #737373;
}

.gradient-text-wrapper {
    position: relative;
    display: inline-block;
}

.dot-background {
    position: absolute;
    top: -100px;
    left: -80px;  
    z-index: -1;
    width: 240px;    
    height: auto;
    pointer-events: none;
}

.announcement-bar {
    background-color: var(--theme-color);
    padding: 12px 0;
    margin-top: 90px;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.announcement-bar .mobile-text {
    display: none;
}
.announcement-bar .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.announcement-bar p {
    margin: 0;
    color: white;
}

.announcement-button {
    color: white;
    text-decoration: underline;
    font-size: 14px;
    transition: opacity 0.2s;
    background: none;
    padding: 6px 12px;
}

.announcement-button:hover {
    text-decoration: none;
}

/* Add this to prevent animation on page load */
@media (prefers-reduced-motion: no-preference) {
    #about {
        scroll-margin-top: 100px;
    }
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px auto;
    max-width: 1500px;
    padding-top: 45px;
}

.highlight {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 25px;
    transition: var(--transition-default);
}

.highlight:hover {
    transform: translateY(-5px);
}

.highlight .icon {
    width: 60px;
    height: 60px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.highlight .icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.highlight h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--theme-color);
    text-align: center;
}

.highlight p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.about-intro-section {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    background-color: #eafaf9;
    padding: 80px 0;
}

.about-intro-section h3,
.about-intro-section p {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.about-intro-section video {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.products-image {
    padding: 0 20px 20px;
    text-align: center;
    margin-top: -20px;
}

.products-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: var(--transition-default);
}

.contact-card:hover {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 2px rgba(0, 160, 152, 0.1);
}

.contact-card h3 {
    text-align: center;
    color: var(--theme-color);
    font-size: 24px;
    margin-bottom: 24px;
    padding-bottom: 12px;
}

.icon-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--theme-color);
    border-radius: 50%;
    color: white;
}

.contact-card .icon svg {
    width: 24px;
    height: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 20px 0;
}

.contact-info p {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    text-align: left;
    max-width: 400px;
    width: 100%;
    margin: 8px 0;
}

.contact-info p strong {
    color: #333;
}

.hours-info {
    padding-top: 24px;
    text-align: center;
}

.hours-info h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 12px;
}

.support-team {
    background: transparent;
    padding: 20px 0;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-person {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

.support-person:last-child {
    border-bottom: none;
}

.support-person strong {
    color: #2c3e50;
    font-size: 1.1em;
    display: block;
    margin-bottom: 8px;
}

.support-person p {
    margin: 5px 0;
    color: #6c757d;
}

.support-person p:first-of-type {
    margin-top: 0;
}

.support-person p:last-of-type {
    margin-bottom: 0;
}

.contact-icon {
    color: var(--theme-color);
    margin-right: 10px;
    vertical-align: middle;
}

.map-container {
    width: 100%;
    max-width: 400px;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
}

.contact-intro {
    margin: 0 auto;
    max-width: 860px;
    text-align: center;
    margin-bottom: 40px;
}

.about-intro-section h3 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.about-intro-section h3.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    main .inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-top: 80px;
        margin-bottom: 40px;
    }

    main h2 {
        font-size: 2.2rem;
    }

    .hero-video {
        width: 100%;
    }
    .about-intro-section h3, .about-intro-section p {
        padding: 0 60px;
    }
}
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    .dropdown-menu {
        display: none !important; /* Use !important to override hover state */
    }
    
    /* Optional: Remove dropdown indicator if you have one */
    .dropdown > a::after {
        display: none;
    }
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 5px rgba(0,0,0,0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        align-items: center;
        text-align: center;
        gap: 0;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 10px 20px;
    }

    nav ul li:last-child a {
        padding: 10px 40px;
    }
    .announcement-bar .full-text {
        display: none;
    }
    
    .announcement-bar .mobile-text {
        display: inline;
    }
    
    .announcement-bar .inner {
        flex-direction: column;
        text-align: center;
        padding: 5px 15px;
        gap: 0;
    }

    .announcement-bar .announcement-button {
        align-self: center;
        width: fit-content;
        padding: 6px 0 0 0;
    }
    main h2 {
        font-size: 2rem;
    }

    main h3 {
        font-size: 1.2rem;
    }
    h4 span {
        font-size: 12px;
    }
    #products h2 {
        font-size: 2em;
    }
    .services-container{
        padding:0 !important;
    }
    .service-card {
        padding: 24px !important;
    }

    .feature-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    section, #products {
        padding: 60px 0;
    }

    section h2 {
        font-size: 1.8rem;
    }

    section h3 {
        font-size: 1.3rem;
    }
    .story-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tab-title .full-text {
        display: none;
    }
    .tab-title .short-text {
        display: inline;
    }
    .tab-content p{
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    main h2 {
        font-size: 1.5rem;
    }

    main h3 {
        font-size: 1rem;
    }
}

/* Services Section */
#services {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-container {
    margin: 0 auto;
    padding: 0 12%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 80px;
    color: #2d3436;
    font-weight: 700;
}

.service-card {
    position: relative;
    padding: 80px 0;
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

/* Alternate alignment for service cards */
.service-card:nth-child(odd) {
    padding-left: 30%;
    text-align: right;
}

.service-card:nth-child(even) {
    padding-right: 30%;
    text-align: left;
}
.service-card:nth-child(odd) .feature-list {
    direction: rtl; 
}
.service-card:nth-child(odd) .service-header {
    justify-content: end;
    flex-direction: row-reverse;
}

.service-card:nth-child(odd) .feature-item {
    text-align: right;
}

.service-card:nth-child(odd) .feature-item:hover {
    transform: translateY(-5px);
}

/* Adjust the large number position */
.service-card:nth-child(odd)::before {
    right: -20px;
    left: auto;
}

/* Large number background */
.service-card::before {
    content: "0" counter(service);
    counter-increment: service;
    position: absolute;
    font-size: 15rem;
    font-weight: 700;
    color: rgba(0, 160, 152, 0.06);
    z-index: 0;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
}

.service-card:nth-child(even)::before {
    right: -20px;
    left:auto;
}

.service-card:nth-child(odd)::before {
    left: -20px;
    right: auto;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-header {
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-header .icon {
    width: 56px;
    height: 56px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-card:hover .icon {
    transform: translateY(-5px);
}

.service-header .icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.service-header h3 {
    font-size: 1.8rem;
    color: #2d3436;
    margin: 0;
    font-weight: 600;
}

.service-card p {
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.feature-title {
    display: block;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
}

.feature-desc {
    display: block;
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Counter reset for service numbers */
.services-container {
    counter-reset: service;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    padding: 8px 16px;
    display: block;
    color: #333;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
}

.dropdown-menu li:last-child a {
    background: none;
    padding: 8px 16px;
    display: block;
    color: #333;
    text-decoration: none;
    border-radius: 0;
}
.dropdown-menu li:last-child a:hover {
    background-color: #f5f5f5;
    box-shadow: none;
    color: var(--theme-color);
    border-radius: 0;
    transform:none;
}

.print-footer {
    display: none;
}

.print-footer a {
    color: var(--theme-color);
    text-decoration: underline;
    cursor: pointer;
}

@media print {
    .print-footer {
        display: block !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 10px;
        z-index: 1000;
        background: white;
    }
}