﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        main {
            padding-top: 88px;
        }

        :root {
            --primary-color: #FFBE1D;
            --secondary-color: #2180CE;
            --accent-color: #C21515;
            --text-dark: #333;
            --text-light: #666;
            --white: #ffffff;
            --light-bg: #f8f9fa;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--secondary-color);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            min-height: calc(100vh - 88px);
            background-image:
                linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%),
                url('your-image.jpg');
            /* replace with your image path */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
            margin-top: 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .hero-title-line {
            display: block;
        }

        .hero-title-highlight {
            background: linear-gradient(90deg, #ffffff 0%, #ffe08a 35%, #ffffff 70%);
            background-size: 220% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: titleShimmer 3s ease-in-out infinite, titleRise 2.4s ease-in-out infinite;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.7s forwards;
        }

        .rating-section {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.9s forwards;
        }

        .stars {
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        .rating-text {
            font-size: 1.1rem;
        }

        .cta-button {
            display: inline-block;
            background: var(--white);
            color: var(--secondary-color);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInUp 1s ease 1.1s forwards;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Sections */
        section {
            padding: 5rem 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 3rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Video Gallery */
        .video-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .video-hover {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .video-hover:hover {
            transform: translateY(-10px);
        }

        .video-hover iframe {
            width: 100%;
            height: 250px;
            border: none;
        }

        /* Why Fradopix Section */
        .why-fradopix {
            background: var(--light-bg);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: var(--white);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        /* Logos Section */
        .logos-section {
            padding: 40px 0;
            text-align: center;
        }

        .logos-section h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .logos-section p {
            font-size: 1rem;
            margin-bottom: 30px;
            color: #666;
        }

        #logo-wrapper {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            display: flex;
            justify-content: center;
        }

        #logo-container {
            display: flex;
            justify-content: space-between;
            width: 100%;
            transition: transform 0.6s ease-in-out;
            flex-wrap: wrap;
            gap: 15px;
        }

        .logo-img {
            height: 100px;
            width: 200px;
            object-fit: contain;
            border-radius: 12px;
            padding: 10px;
            background: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease-in-out;
        }

        .logo-img:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }

        /* Map Section */
        .map-section {
            padding: 4rem 0;
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #555;
            color: #ccc;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes titleShimmer {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 220% 50%;
            }
        }

        @keyframes titleRise {
            0%, 100% {
                transform: translateY(0);
                filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
            }
            50% {
                transform: translateY(-4px);
                filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
            }
        }

        @keyframes slideOut {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(-100%); opacity: 0; }
        }

        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--white);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                min-height: calc(100vh - 72px);
                margin-top: 0;
                padding: 1rem;
            }

            .hero-content {
                padding: 1rem;
                max-width: 90%;
            }

            .hero h1 {
                font-size: 2.5rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
            }

            .rating-section {
                flex-direction: column;
                gap: 1rem;
                margin-bottom: 1.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .video-gallery {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .video-hover iframe {
                height: 200px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .feature-card {
                padding: 1.5rem;
            }

            /* Logo section mobile fixes */
            .logos-section {
                padding: 30px 0;
            }

            .logos-section h2 {
                font-size: 1.5rem;
            }

            #logo-wrapper {
                padding: 0 1rem;
            }

            #logo-container {
                justify-content: center;
                gap: 10px;
            }

            .logo-img {
                height: 80px;
                width: 160px;
                flex: 0 1 calc(50% - 5px);
                max-width: 160px;
            }

            /* Footer mobile fixes */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-section {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero {
                margin-top: 0;
            }

            .hero h1 {
                font-size: 2rem;
                line-height: 1.3;
            }

            .hero p {
                font-size: 1rem;
            }

            .container {
                padding: 0 1rem;
            }

            nav {
                padding: 0 1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }

            .video-hover iframe {
                height: 180px;
            }

            .feature-card {
                padding: 1rem;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            /* Logo section extra small screens */
            .logo-img {
                height: 70px;
                width: 140px;
            }

            .logos-section h2 {
                font-size: 1.3rem;
            }

            .logos-section p {
                font-size: 0.9rem;
                padding: 0 1rem;
            }
        }

        @media (max-width: 320px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .logo-img {
                height: 60px;
                width: 120px;
            }
        }
