html,
        body {
            width: 100%;
            height: 100%;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, sans-serif;
            background-color: #0e0e0e;
            color: #f5f5f5;
            line-height: 1.6;
        }

        header {
            background-color: #111;
            border-bottom: 2px solid #e63900;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav {
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            font-size: 1.4rem;
            font-weight: bold;
            letter-spacing: 1px;
            color: #f5f5f5;
        }

        .menu {
            display: flex;
            gap: 25px;
        }

        .menu a {
            text-decoration: none;
            color: #f5f5f5;
            font-weight: 500;
        }

        .menu a:hover {
            color: #e63900;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            background: #f5f5f5;
            height: 3px;
            width: 25px;
            margin: 4px 0;
        }

        section {
            max-width: 1200px;
            margin: auto;
            padding: 80px 20px;
        }

        .hero {
            text-align: center;
            padding-top: 120px;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #e63900;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: auto;
        }

        h2 {
            color: #e63900;
            margin-bottom: 25px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .card {
            background: #161616;
            padding: 30px;
            border-left: 4px solid #e63900;
        }

        .logo img {
            height: 48px;
            width: auto;
            display: block;
        }

        .hero-logo {
            max-width: 240px;
            margin: 0 auto 25px;
            display: block;
        }

        footer {
            background: #111;
            text-align: center;
            padding: 30px;
            font-size: 0.9rem;
            border-top: 2px solid #e63900;
        }

        @media (max-width: 992px) {
            .grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .menu {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: #111;
                flex-direction: column;
                display: none;
                text-align: center;
                padding: 20px 0;
            }

            .menu.active {
                display: flex;
            }

            .hamburger {
                display: flex;
            }

            .grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.05rem;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 60px 15px;
            }

            .hero h1 {
                font-size: 1.9rem;
            }

            .logo img {
                height: 40px;
            }

            .hero-logo {
                max-width: 150px;
            }
        }
        
        .social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #f5f5f5;
    font-size: 0.95rem;
}

.social-link:hover {
    color: #e63900;
}

/******Whatsapp******/

.whatsapp-float{
    position: fixed;
    bottom: 25px;
    right: 25px;

    background-color: #25D366;
    color: white;

    width: 60px;
    height: 60px;

    border-radius: 50%;

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

    box-shadow: 0 6px 15px rgba(0,0,0,0.3);

    z-index: 1000;

    transition: transform 0.2s ease;
}

.whatsapp-float:hover{
    transform: scale(1.1);
}