* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans',
        'Segoe UI',
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;
}

/* Navigation */
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    background: rgba(0, 121, 143, 0.7);
    /* #00798f with transparency */
}

/* Section styling */
.section {
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Darker overlay for better text contrast */
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    /* Center content both vertically and horizontally */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    /* White color for headings */
    font-weight: 300;
    /* Light font weight */
}

.section p {
    font-size: 1.2rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(0, 121, 143, 0.8);
    /* #00798f with transparency */
    color: #ffffff;
    /* White text on teal background */
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid #00798f;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn:hover {
    background: #00798f;
    /* Solid teal on hover */
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 121, 143, 0.3);
    /* #00798f shadow */
}

/* Logo styling */
.logo {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 100;
    width: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 150px;
    object-fit: contain;
}

/* Contact icons - Top Right */
.contact-icons {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 121, 143, 0.8);
    /* #00798f with transparency */
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    /* White icon color */
    text-decoration: none;
    border: 1px solid rgba(0, 121, 143, 0.5);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.contact-icon:hover {
    transform: translateY(-5px);
    background: rgba(0, 121, 143, 0.9);
    /* More solid teal on hover */
}

.contact-icon.email:hover {
    background: #00798f;
    /* Keep teal color for email */
}

.contact-icon.phone:hover {
    background: #00798f;
    /* Keep teal color for phone */
}

/* Social media icons - Bottom Left */
.social-media {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100;
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 121, 143, 0.8);
    /* #00798f with transparency */
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    /* White icon color */
    text-decoration: none;
    border: 1px solid rgba(0, 121, 143, 0.5);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: #ffffff;
    color: rgba(0, 121, 143, 0.9);
    /* More solid teal on hover */
}

.social-icon.facebook:hover {
    background: #ffffff;
    color: #00798f;
    /* Keep teal color for Facebook */
}

.social-icon.instagram:hover {
    background: #ffffff;
    color: #00798f;
    /* Keep teal color for Instagram */
}

.contact-icon.email:hover {
    background: #ffffff;
    color: #00798f;
    /* Keep teal color for email */
}

/* Content animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.active .fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Delayed animations for elements */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #00798f;
    /* Teal color for footer text */
}

/* Video controls */
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.video-btn {
    background: rgba(0, 121, 143, 0.8);
    /* #00798f with transparency */
    border: none;
    color: #ffffff;
    /* White text */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* Make it circular */
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    /* Icon size */
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-btn:hover {
    background: #00798f;
    /* Solid teal on hover */
    color: #ffffff;
    transform: scale(1.1);
}

/* Features grid */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 20px;
    background: rgba(0, 121, 143, 0.1);
    /* Light teal background */
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 121, 143, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 121, 143, 0.2);
    /* Slightly darker teal on hover */
    transform: translateY(-5px);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #00798f;
    /* Teal color for feature titles */
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content {
        padding-right: 80px;
        /* Prevent text from going under navigation */
    }

    .section h1 {
        font-size: 2.5rem;
    }

    .section p {
        font-size: 1rem;
    }

    .video-controls {
        bottom: 10px;
        right: 10px;
    }

    .features-grid {
        gap: 15px;
    }

    .feature-item {
        min-width: 100%;
        max-width: 100%;
    }

    .logo {
        top: 20px;
        left: 20px;
        width: 100px;
    }

    .logo img {
        width: 100px;
    }

    .contact-icons {
        top: 20px;
        right: 20px;
        gap: 10px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .social-media {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Loading indicator */
.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00798f;
    /* Teal color for loading text */
    font-size: 1.2rem;
    z-index: 2;
}

/* Additional theme enhancements */
body {
    background-color: #231F20;
    /* Dark background as fallback */
}

/* Enable fullPage.js default navigation */

#fp-nav {
    display: block !important;
    z-index: 9999 !important;
    /* Ensure navigation is on top of everything */
    pointer-events: auto !important;
    /* Ensure it captures clicks */
    right: 30px !important;
    /* Force right positioning */
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    background: #00798f !important;
    /* Teal color for bullets */
    width: 12px !important;
    height: 12px !important;
    margin: -6px 0 0 -6px !important;
}



/* Add spacing between bullets and increase touch target */
#fp-nav ul li {
    margin: 35px 0;
    width: 30px !important;
    /* Larger touch target */
    height: 30px !important;
    /* Larger touch target */
}

#fp-nav ul li a {
    width: 100% !important;
    height: 100% !important;
}

/* Active bullet styling */
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
    width: 20px !important;
    height: 20px !important;
    margin: -10px 0 0 -10px !important;
    background: #00798f !important;
}

/* Add connecting line */
#fp-nav ul::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 50%;
    width: 1px;
    background: rgba(0, 121, 143, 0.4);
    /* Teal line with transparency */
    transform: translateX(-50%);
    z-index: -1;
}


/* Video Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #231F20;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: #00798f;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 121, 143, 0.3);
    border-top: 3px solid #00798f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.preloader-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.preloader-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(0, 121, 143, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #00798f;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.progress-text {
    font-size: 0.9rem;
    color: #00798f;
    font-weight: 400;
    min-width: 40px;
    text-align: right;
}

/* Mobile responsiveness for preloader */
@media (max-width: 768px) {
    .preloader-spinner {
        width: 40px;
        height: 40px;
    }

    .preloader-text {
        font-size: 1rem;
    }

    .progress-bar {
        width: 150px;
    }
}

/* Remove fullPage.js watermark */
.fp-watermark {
    display: none !important;
}

a[href*="fullpage.js"] {
    display: none !important;
}

/* Scroll Down Arrow */
.scroll-down {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    color: #00798f;
    /* font-size removed as it doesn't affect SVG directly usually */
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
}

.scroll-down svg {
    width: 40px;
    height: 40px;
}

.scroll-down:hover {
    color: white;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}