* {
    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(243, 189, 84, 0.7);
    /* #F3BD54 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: 1000px;
    padding: 0 20px;
    padding-left: clamp(40px, 8vw, 120px);
    padding-right: clamp(60px, 6vw, 100px);
    /* Center content both vertically and horizontally */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
    /* White color for headings */
    font-weight: 300;
    /* Light font weight */
}

.section p {
    font-size: clamp(0.95rem, 1.5vw, 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(243, 189, 84, 0.8);
    /* #F3BD54 with transparency */
    color: #ffffff;
    /* White text on teal background */
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid #F3BD54;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn:hover {
    background: #F3BD54;
    /* Solid teal on hover */
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 189, 84, 0.3);
    /* #F3BD54 shadow */
}

/* Logo styling */
.logo {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 100;
    width: clamp(120px, 12vw, 180px);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 100%;
    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: clamp(40px, 5vw, 55px);
    height: clamp(40px, 5vw, 55px);
    border-radius: 50%;
    background: rgba(243, 189, 84, 0.8);
    /* #F3BD54 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(243, 189, 84, 0.5);
    transition: all 0.3s ease;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.contact-icon:hover {
    transform: translateY(-5px);
    background: rgba(243, 189, 84, 0.9);
    /* More solid teal on hover */
}

.contact-icon.email:hover {
    background: #F3BD54;
    /* Keep teal color for email */
}

.contact-icon.phone:hover {
    background: #F3BD54;
    /* 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: clamp(40px, 5vw, 55px);
    height: clamp(40px, 5vw, 55px);
    border-radius: 50%;
    background: rgba(243, 189, 84, 0.8);
    /* #F3BD54 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(243, 189, 84, 0.5);
    transition: all 0.3s ease;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.social-icon:hover {
    transform: translateY(-5px);
    background: #ffffff;
    color: rgba(243, 189, 84, 0.9);
    /* More solid teal on hover */
}

.social-icon.facebook:hover {
    background: #ffffff;
    color: #F3BD54;
    /* Keep teal color for Facebook */
}

.social-icon.instagram:hover {
    background: #ffffff;
    color: #F3BD54;
    /* Keep teal color for Instagram */
}

.contact-icon.email:hover {
    background: #ffffff;
    color: #F3BD54;
    /* 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: #F3BD54;
    /* Teal color for footer text */
}

/* Video controls */
.video-controls {
    display: none;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.video-btn {
    background: rgba(243, 189, 84, 0.8);
    /* #F3BD54 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: #F3BD54;
    /* 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(243, 189, 84, 0.1);
    /* Light teal background */
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(243, 189, 84, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(243, 189, 84, 0.2);
    /* Slightly darker teal on hover */
    transform: translateY(-5px);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #F3BD54;
    /* Teal color for feature titles */
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large tablets and small desktops (1024px and below) */
@media (max-width: 1024px) {
    .content {
        padding-left: clamp(60px, 10vw, 150px);
        padding-right: clamp(60px, 10vw, 120px);
    }

    #fp-nav {
        right: 15px !important;
    }

    #fp-nav ul li {
        margin: 25px 0;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .content {
        padding-left: 15px;
        padding-right: 70px;
        max-width: 100%;
        text-align: center;
    }

    .section h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .section p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        max-width: 100%;
    }

    .video-controls {
        bottom: 10px;
        right: 10px;
    }

    .features-grid {
        gap: 15px;
    }

    .feature-item {
        min-width: 100%;
        max-width: 100%;
    }

    .logo {
        top: 15px;
        left: 15px;
        width: clamp(90px, 22vw, 130px);
    }

    .contact-icons {
        top: 15px;
        right: 15px;
        gap: 8px;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .social-media {
        bottom: 15px;
        left: 15px;
        gap: 8px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    /* Adjust fullPage navigation for mobile */
    #fp-nav {
        right: 8px !important;
    }

    #fp-nav ul li {
        margin: 18px 0;
        width: 22px !important;
        height: 22px !important;
    }

    #fp-nav ul li a span,
    .fp-slidesNav ul li a span {
        width: 10px !important;
        height: 12px !important;
        margin: -6px 0 0 -5px !important;
    }

    #fp-nav ul li a.active span,
    .fp-slidesNav ul li a.active span {
        width: 14px !important;
        height: 16px !important;
        margin: -8px 0 0 -7px !important;
    }

    .scroll-down {
        display: none;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {
    .content {
        padding-left: 10px;
        padding-right: 65px;
    }

    .section h1 {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
        margin-bottom: 1rem;
    }

    .section p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .logo {
        top: 10px;
        left: 10px;
        width: 150px;
    }

    .contact-icons {
        top: 10px;
        right: 10px;
        gap: 6px;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .social-media {
        bottom: 10px;
        left: 10px;
        gap: 6px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    #fp-nav {
        right: 5px !important;
    }

    #fp-nav ul li {
        margin: 12px 0;
        width: 18px !important;
        height: 18px !important;
    }

    #fp-nav ul li a span,
    .fp-slidesNav ul li a span {
        width: 8px !important;
        height: 10px !important;
        margin: -5px 0 0 -4px !important;
    }

    #fp-nav ul li a.active span,
    .fp-slidesNav ul li a.active span {
        width: 12px !important;
        height: 14px !important;
        margin: -7px 0 0 -6px !important;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-item h3 {
        font-size: 1.2rem;
    }
}

/* Landscape orientation on mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    .content {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-right: 70px;
    }

    .section h1 {
        font-size: clamp(1.2rem, 5vh, 1.8rem);
        margin-bottom: 0.5rem;
    }

    .section p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }

    .logo {
        top: 10px;
        left: 10px;
        width: 150px;
    }

    .contact-icons {
        top: 10px;
        right: 50px;
    }

    .contact-icon,
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .social-media {
        bottom: 10px;
        left: 10px;
    }

    /* Compact fp-nav in landscape mobile */
    #fp-nav {
        top: 50% !important;
        transform: translateY(-50%);
        right: 5px !important;
    }

    #fp-nav ul li {
        margin: 6px 0;
        width: 16px !important;
        height: 16px !important;
    }

    #fp-nav ul li a span,
    .fp-slidesNav ul li a span {
        width: 6px !important;
        height: 8px !important;
        margin: -4px 0 0 -3px !important;
    }

    #fp-nav ul li a.active span,
    .fp-slidesNav ul li a.active span {
        width: 10px !important;
        height: 12px !important;
        margin: -6px 0 0 -5px !important;
    }


    .btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .scroll-down {
        display: none;
    }
}

/* Very small screens (320px and below) */
@media (max-width: 320px) {
    .content {
        padding-left: 8px;
        padding-right: 40px;
    }

    .section h1 {
        font-size: 1.2rem;
    }

    .section p {
        font-size: 0.85rem;
    }

    .logo {
        width: 60px;
    }

    .contact-icon,
    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    #fp-nav ul li {
        margin: 10px 0;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Loading indicator */
.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #F3BD54;
    /* 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: #F3BD54 !important;
    /* Teal color for bullets */
    width: 14px !important;
    height: 16px !important;
    margin: -8px 0 0 -7px !important;
    border-radius: 0 !important;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}



/* 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: 22px !important;
    height: 25px !important;
    margin: -12.5px 0 0 -11px !important;
    background: #F3BD54 !important;
    border-radius: 0 !important;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Add connecting line */
#fp-nav ul::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 50%;
    width: 1px;
    background: rgba(243, 189, 84, 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: #F3BD54;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(243, 189, 84, 0.3);
    border-top: 3px solid #F3BD54;
    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(243, 189, 84, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #F3BD54;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.progress-text {
    font-size: 0.9rem;
    color: #F3BD54;
    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;
    }
}

@media (max-width: 480px) {
    .preloader-spinner {
        width: 35px;
        height: 35px;
    }

    .preloader-text {
        font-size: 0.9rem;
    }

    .progress-bar {
        width: 120px;
    }

    .preloader-progress {
        gap: 10px;
    }
}

/* 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: #F3BD54;
    /* 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);
    }
}