/* CSS Variables for consistent styling */
:root {
    --bg-dark: #0A0A1E;
    --bg-deep-dark: #0F0F2A;
    --text-light: #C0C0C0; /* Silver */
    --accent-cyan: #00FFFF;
    --accent-violet: #8A2BE2;
    --border-transparent: rgba(255, 255, 255, 0.1);
    --glow-effect: 0 0 10px var(--accent-cyan), 0 0 20px var(--accent-violet);

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;

    --spacing-unit: 1.5rem;
    --common-padding: 6rem 0; /* Adjusted for overall section padding */
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: var(--spacing-unit);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: calc(var(--spacing-unit) * 1.5); }
h3 { font-size: 1.8rem; margin-bottom: var(--spacing-unit); }

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--accent-violet);
    text-shadow: var(--glow-effect);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.common-padding {
    padding: var(--common-padding);
    position: relative; /* For layered sections */
    z-index: 1; /* Ensure content is above parallax effects */
}

/* Header & Navigation */
.main-header {
    background-color: rgba(15, 15, 42, 0.8); /* Semi-transparent deep blue-black */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-transparent);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 0 5px var(--accent-cyan);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-light);
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Crucial for background and overlay */
    background: url('images/image_9.jpg') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(15, 15, 42, 0.8) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr; /* Asymmetrical positioning */
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 var(--spacing-unit);
    margin: 0 auto;
}

.hero-text {
    grid-column: 2 / 3; /* Positioned in the middle column */
    background: rgba(15, 15, 42, 0.6);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--border-transparent);
    box-shadow: var(--glow-effect);
    text-align: left;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px var(--accent-cyan);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* About Section */
.about-section .content-wrapper,
.services-section .content-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
    background-color: var(--bg-deep-dark);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--border-transparent);
    box-shadow: var(--glow-effect);
    position: relative;
    overflow: hidden;
}

.about-section .image-content,
.services-section .image-content {
    flex: 1;
}

.about-section .image-content img,
.services-section .image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    opacity: 1;.9;
    transition: opacity 0.5s ease;
}

.about-section .image-content img:hover,
.services-section .image-content img:hover {
    opacity: 1;
}

.about-section .text-content,
.services-section .text-content {
    flex: 2;
}

.about-section ul,
.services-section ul {
    list-style: none;
    margin-top: 1.5rem;
    padding-left: 0;
}

.about-section ul li,
.services-section ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.about-section ul li::before,
.services-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-violet));
    border-radius: 50%;
    box-shadow: var(--glow-effect);
}

/* Services Section - reversed layout for visual variety */
.services-section .content-wrapper {
    flex-direction: row-reverse;
}

/* Products Section - Icon Grid */
.products-section {
    background: linear-gradient(180deg, var(--bg-deep-dark) 0%, var(--bg-dark) 100%);
}

.products-section h2, .products-section p {
    text-align: center;
    margin-bottom: 2rem;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.grid-item {
    background-color: rgba(15, 15, 42, 0.7);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-transparent);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.05) 0%, rgba(138, 43, 226, 0.05) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.8s ease-out;
    opacity: 1;
}

.grid-item:hover::before {
    transform: rotate(0deg);
    opacity: 1;
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-effect);
}

.icon-placeholder {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 8px var(--accent-cyan);
    position: relative;
    z-index: 1;
}

.grid-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.grid-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Story Section - Interactive Map */
.journey-section {
    background: url('images/image_10.jpg') no-repeat center center/cover fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 30, 0.85);
    z-index: 0;
}

.journey-section h2, .journey-section p {
    position: relative;
    z-index: 1;
}

.interactive-map {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 400px;
    margin: 4rem auto 2rem auto;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 50%, transparent 70%),
                url('images/image_11.jpg') no-repeat center center/cover;
    border-radius: 15px;
    border: 2px solid var(--border-transparent);
    box-shadow: var(--glow-effect);
    transition: transform 0.5s ease;
}

.interactive-map:hover {
    transform: scale(1.01);
}

.map-point {
    position: absolute;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, var(--accent-violet) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-cyan), 0 0 25px var(--accent-violet);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-point:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 20px var(--accent-cyan), 0 0 35px var(--accent-violet);
}

.map-point .point-label {
    position: absolute;
    top: -30px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: var(--font-heading);
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    background: rgba(15, 15, 42, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid var(--border-transparent);
}

.map-point:hover .point-label {
    opacity: 1;
}

/* Specific point positions */
.map-point.point-1 { top: 70%; left: 15%; }
.map-point.point-2 { top: 40%; left: 30%; }
.map-point.point-3 { top: 60%; left: 50%; }
.map-point.point-4 { top: 30%; left: 70%; }
.map-point.point-5 { top: 55%; left: 85%; }
.map-point.point-6 { top: 20%; left: 90%; }


.info-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    opacity: 1;
    transition: opacity 0.5s ease;
    border: 1px solid var(--border-transparent);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.interactive-map:hover .info-box {
    opacity: 1;
}


/* Reviews Section - Carousel Slider */
.reviews-section {
    background-color: var(--bg-deep-dark);
}

.reviews-section h2, .reviews-section p {
    text-align: center;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid var(--border-transparent);
    box-shadow: var(--glow-effect);
    background-color: rgba(15, 15, 42, 0.8);
    padding: 3rem;
}

.carousel-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-slide {
    min-width: 100%;
    flex-shrink: 0;
    text-align: center;
    padding: 2rem;
}

.review-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent-cyan);
    box-shadow: 0 0 15px var(--accent-cyan);
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.reviewer-name {
    font-weight: 500;
    color: var(--accent-violet);
    font-family: var(--font-heading);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 8px;
    background-color: var(--border-transparent);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: var(--accent-cyan);
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--accent-cyan);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--text-light);
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-transparent);
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: var(--glow-effect);
}

.carousel-button.prev {
    left: 1rem;
}

.carousel-button.next {
    right: 1rem;
}


/* Team Section - Circular Photos */
.team-section {
    background-color: var(--bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background-color: rgba(15, 15, 42, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-transparent);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-effect);
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-violet);
    box-shadow: 0 0 20px var(--accent-cyan);
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease, border-color 0.5s ease;
}

.team-member:hover .team-photo {
    transform: scale(1.05) rotate(5deg);
    border-color: var(--accent-cyan);
}

.team-member h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

.team-title {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* FAQ Section - Accordion Style */
.faq-section {
    background-color: var(--bg-deep-dark);
}

.faq-section h2, .faq-section p {
    text-align: center;
}

.accordion {
    max-width: 900px;
    margin: 4rem auto;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-transparent);
    box-shadow: var(--glow-effect);
    background-color: rgba(15, 15, 42, 0.8);
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background-color: transparent;
    color: var(--text-light);
    padding: 1.5rem 2rem;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(0, 255, 255, 0.05);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--accent-cyan);
}

.accordion-header[aria-expanded="true"]::after {
    content: '-';
    transform: rotate(180deg);
    color: var(--accent-violet);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 2rem;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

.accordion-header[aria-expanded="true"] + .accordion-content {
    max-height: 200px; /* Adjust as needed */
    padding: 1.5rem 2rem;
}

/* Location Section - Social Focus */
.location-focus-section {
    background: url('images/image_12.jpg') no-repeat center center/cover fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-focus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 30, 0.85);
    z-index: 0;
}

.location-focus-section h2, .location-focus-section p {
    position: relative;
    z-index: 1;
}

.contact-options {
    background-color: rgba(15, 15, 42, 0.7);
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-transparent);
    box-shadow: var(--glow-effect);
    position: relative;
    overflow: hidden;
}

.contact-options h3 {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.contact-options p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Footer */
.main-footer {
    background-color: var(--bg-deep-dark);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-transparent);
    font-size: 0.9rem;
    color: rgba(192, 192, 192, 0.7);
}

.main-footer a {
    color: rgba(192, 192, 192, 0.7);
    margin: 0 0.5rem;
}

.main-footer a:hover {
    color: var(--accent-cyan);
    text-shadow: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .nav-links {
        display: none; /* Hide for smaller screens, could implement hamburger menu if allowed */
    }

    .hero-text {
        grid-column: 1 / -1; /* Full width on smaller screens */
        padding: 2rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .about-section .content-wrapper,
    .services-section .content-wrapper {
        flex-direction: column;
        padding: 2rem;
    }

    .products-section .icon-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-button {
        padding: 0.8rem 1.2rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }

    .common-padding {
        padding: 4rem 0;
    }

    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-section {
        height: auto;
        min-height: 80vh;
        padding: 8rem 0;
    }

    .hero-text {
        padding: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .products-section .icon-grid,
    .team-grid {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }

    .grid-item, .team-member {
        padding: 1.5rem;
    }

    .interactive-map {
        height: 300px;
        margin-top: 2rem;
    }

    .map-point {
        width: 20px;
        height: 20px;
    }
    .map-point .point-label {
        font-size: 0.8rem;
        top: -25px;
    }

    .review-text {
        font-size: 1rem;
    }

    .carousel-button.prev {
        left: 0.5rem;
    }

    .carousel-button.next {
        right: 0.5rem;
    }

    .accordion-header {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .accordion-content p {
        padding: 0 1.5rem 1rem;
    }

    .accordion-header[aria-expanded="true"] + .accordion-content {
        padding: 1rem 1.5rem;
    }

    .contact-options {
        padding: 2rem;
    }

    .contact-options h3 {
        font-size: 1.5rem;
    }

    .contact-options p {
        font-size: 1rem;
    }
}


javascript
/* Visible state helpers */
+ .animate-fade-in-up.visible,
+ .animate-fade-in-left.visible,
+ .animate-fade-in-right.visible,
+ .animate-bounce-y.visible,
+ .section-scroll-animate.visible,
+ .text-animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Universal Icon Fixes for Buttons */
button svg, .carousel-next svg, .carousel-prev svg, .slider-next svg, .slider-prev svg,
.next svg, .prev svg, .tab-button svg, .tab-btn svg {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

button i, .carousel-next i, .carousel-prev i, .slider-next i, .slider-prev i,
.next i, .prev i, .tab-button i, .tab-btn i {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
    font-style: normal;
}

button .icon, .carousel-next .icon, .carousel-prev .icon,
.slider-next .icon, .slider-prev .icon, .tab-button .icon {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
}

/* Ensure carousel buttons are clickable even with icons */
.carousel-next, .carousel-prev, .slider-next, .slider-prev,
.next, .prev, .next-btn, .prev-btn {
    cursor: pointer;
    position: relative;
}

.carousel-next *, .carousel-prev *, .slider-next *, .slider-prev *,
.next *, .prev *, .next-btn *, .prev-btn * {
    pointer-events: none;
}

/* Tab button icon fixes */
.tab-button, .tab-btn, .tab {
    cursor: pointer;
    position: relative;
}

.tab-button *, .tab-btn *, .tab * {
    pointer-events: none;
}

/* Ensure icons don't block clicks */
button > svg, button > i, button > .icon,
.carousel-next > svg, .carousel-prev > svg,
.tab-button > svg, .tab-button > i {
    pointer-events: none !important;
}

/* Enhanced: Team grid stabilization */
+ .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
+ @media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
+ @media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* Enhanced: Smooth scroll CSS fallback */
html { scroll-behavior: smooth; }

/* Enhanced: Missing animation classes from JS */
.reveal-on-scroll {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Safe visibility overrides (auto-added) */
:root, html, body, main, header, footer, section, .container, .content {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Accessibility focus outlines */
:focus{outline:2px solid #5ac8fa;outline-offset:2px;}
:focus:not(:focus-visible){outline:none;}
