    /* Import Google Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

    /* Global Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
        height: 100vh;
    }

    /* Video Section */
    .video-section {
        position: relative;
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    /* Background Image Slideshow */
    .background-slideshow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        overflow: hidden;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 2s ease-in-out;
    }

    .slide.active {
        opacity: 1;
        animation: zoomIn 8s ease-out forwards;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    @keyframes zoomIn {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.1);
        }
    }

    /* Video Overlay */
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
        z-index: -1;
    }

    /* Header Container */
    .header-container {
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 90%;
        max-width: 1400px;
    }

    /* Contact Info */
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex: 1;
        min-width: 0;
    }

    .contact-left {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: row;
        gap: 12px;
    }

    .contact-right {
        align-items: flex-end;
        flex-direction: row;
        gap: 10px;
        justify-content: flex-end;
    }

    .logo-container {
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .logo-container:hover {
        transform: scale(1.05);
    }

    @keyframes flash {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.3;
        }
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
        border: 1px solid rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .contact-item i {
        font-size: 16px;
        color: #4fc3f7;
    }

    .contact-item.email i {
        color: #4fc3f7;
    }

    .contact-item.phone i {
        color: #66bb6a;
    }

    .contact-item.whatsapp-contact i {
        color: #25D366;
    }

    .contact-item a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        transition: color 0.3s ease;
    }



    .logo {
        height: 80px;
        width: auto;
        display: block;
        filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
        transition: all 0.3s ease;
    }

    .logo-container:hover .logo {
        filter: brightness(1.1) drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
    }


    /* Glass Boxes Container */
    .boxes-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        padding: 20px 40px;
        max-width: 1400px;
        width: 100%;
        z-index: 1;
    }

    @media (max-width: 1200px) {
        body {
            overflow-y: auto;
            height: auto;
        }

        .video-section {
            height: auto;
            min-height: 100vh;
            padding: 100px 0 50px;
            overflow: visible;
        }

        .boxes-container {
            grid-template-columns: repeat(2, 1fr);
            height: auto;
            gap: 20px;
            padding: 20px;
            max-width: 100%;
            width: 100%;
        }
    }

    @media (max-width: 600px) {
        .boxes-container {
            grid-template-columns: 1fr;
            padding: 15px;
            max-width: 100%;
            width: 100%;
        }
    }

    /* Glass Box Styling */
    .glass-box {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        padding: 25px 20px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        animation: fadeInUp 0.6s ease-out forwards;
        opacity: 0;
        transform: translateY(30px);
        text-decoration: none;
        display: block;
    }

    /* Service Colors */
    /* Service Colors (Gradient Icons) */
    .service-web i {
        background: linear-gradient(135deg, #60a5fa, #3b82f6);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .service-seo i {
        background: linear-gradient(135deg, #34d399, #10b981);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .service-digital i {
        background: linear-gradient(135deg, #f87171, #ef4444);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .service-ads i {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .service-content i {
        background: linear-gradient(135deg, #a78bfa, #8b5cf6);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .service-ecommerce i {
        background: linear-gradient(135deg, #f472b6, #ec4899);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .service-responsive i {
        background: linear-gradient(135deg, #2dd4bf, #14b8a6);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .service-social i {
        background: linear-gradient(135deg, #818cf8, #6366f1);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Indigo */

    .service-web:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(96, 165, 250, 0.3);
    }

    .service-seo:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(52, 211, 153, 0.3);
    }

    .service-digital:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(248, 113, 113, 0.3);
    }

    .service-ads:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(251, 191, 36, 0.3);
    }

    .service-content:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(167, 139, 250, 0.3);
    }

    .service-ecommerce:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(244, 114, 182, 0.3);
    }

    .service-responsive:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(45, 212, 191, 0.3);
    }

    .service-social:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(129, 140, 248, 0.3);
    }

    .service-web:hover .icon-wrapper {
        border-color: #60a5fa;
        background: rgba(96, 165, 250, 0.1);
    }

    .service-seo:hover .icon-wrapper {
        border-color: #34d399;
        background: rgba(52, 211, 153, 0.1);
    }

    .service-digital:hover .icon-wrapper {
        border-color: #f87171;
        background: rgba(248, 113, 113, 0.1);
    }

    .service-ads:hover .icon-wrapper {
        border-color: #fbbf24;
        background: rgba(251, 191, 36, 0.1);
    }

    .service-content:hover .icon-wrapper {
        border-color: #a78bfa;
        background: rgba(167, 139, 250, 0.1);
    }

    .service-ecommerce:hover .icon-wrapper {
        border-color: #f472b6;
        background: rgba(244, 114, 182, 0.1);
    }

    .service-responsive:hover .icon-wrapper {
        border-color: #2dd4bf;
        background: rgba(45, 212, 191, 0.1);
    }

    .service-social:hover .icon-wrapper {
        border-color: #818cf8;
        background: rgba(129, 140, 248, 0.1);
    }


    /* Fade in animation */
    .glass-box:nth-child(1) {
        animation-delay: 0.1s;
    }

    .glass-box:nth-child(2) {
        animation-delay: 0.2s;
    }

    .glass-box:nth-child(3) {
        animation-delay: 0.3s;
    }

    .glass-box:nth-child(4) {
        animation-delay: 0.4s;
    }

    .glass-box:nth-child(5) {
        animation-delay: 0.5s;
    }

    .glass-box:nth-child(6) {
        animation-delay: 0.6s;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Glass box before effect */
    .glass-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }

    .glass-box:hover::before {
        left: 100%;
    }

    .glass-box:hover {
        transform: translateY(-10px) scale(1.02);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }

    .glass-box:active {
        transform: translateY(-12px) scale(1.03);
    }

    /* Icon Wrapper */
    .icon-wrapper {
        width: 70px;
        height: 70px;
        margin: 0 auto 15px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .icon-wrapper::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(94, 114, 235, 0.6), rgba(255, 107, 181, 0.6));
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .glass-box:hover .icon-wrapper::after {
        opacity: 1;
    }

    .icon-wrapper i {
        font-size: 32px;
        color: #fff;
        z-index: 1;
        transition: all 0.4s ease;
    }

    .glass-box:hover .icon-wrapper {
        transform: rotateY(360deg);
        border-color: rgba(255, 255, 255, 0.6);
    }

    /* Hover Arrow */
    .hover-arrow {
        position: absolute;
        bottom: 20px;
        right: -50px;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, rgba(94, 114, 235, 0.8), rgba(255, 107, 181, 0.8));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
    }

    .hover-arrow i {
        color: #fff;
        font-size: 18px;
        transform: translateX(-2px);
        transition: transform 0.3s ease;
    }

    .glass-box:hover .hover-arrow {
        right: 20px;
        opacity: 1;
    }

    .glass-box:hover .hover-arrow i {
        transform: translateX(2px);
        animation: arrowBounce 1s ease-in-out infinite;
    }

    @keyframes arrowBounce {

        0%,
        100% {
            transform: translateX(2px);
        }

        50% {
            transform: translateX(6px);
        }
    }

    /* Text Styling */
    .glass-box h3 {
        font-size: 22px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .glass-box:hover h3 {
        color: #fff;
        text-shadow: 0 2px 15px rgba(94, 114, 235, 0.6),
            0 0 30px rgba(255, 107, 181, 0.4);
        transform: translateX(-5px);
    }

    .glass-box p {
        font-size: 14px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.5;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .glass-box:hover p {
        color: rgba(255, 255, 255, 0.95);
        transform: translateX(-5px);
    }

    /* Social Icons */
    .social-icons {
        position: fixed;
        top: 50%;
        right: 30px;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 1000;
        opacity: 1;
        pointer-events: all;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        animation: socialSlideIn 0.5s ease-out forwards;
        opacity: 0;
        transform: translateX(50px);
    }

    @keyframes socialSlideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .social-icon:nth-child(1) {
        animation-delay: 0.1s;
    }

    .social-icon:nth-child(2) {
        animation-delay: 0.2s;
    }

    .social-icon:nth-child(3) {
        animation-delay: 0.3s;
    }

    .social-icon:nth-child(4) {
        animation-delay: 0.4s;
    }

    .social-icon:nth-child(5) {
        animation-delay: 0.5s;
    }

    .social-icon:nth-child(6) {
        animation-delay: 0.6s;
    }

    .social-icon:nth-child(7) {
        animation-delay: 0.7s;
    }

    .social-icon i {
        font-size: 20px;
        color: #fff;
        z-index: 1;
        transition: all 0.3s ease;
    }

    /* Individual social icon colors */
    .social-icon.facebook i {
        background: linear-gradient(135deg, #3b5998, #2d4373);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .social-icon.facebook::before {
        background: linear-gradient(135deg, #3b5998, #2d4373);
    }

    .social-icon.twitter i {
        background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .social-icon.twitter::before {
        background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    }

    .social-icon.instagram i {
        background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .social-icon.instagram::before {
        background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    }

    .social-icon.linkedin i {
        background: linear-gradient(135deg, #0077B5, #005885);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .social-icon.linkedin::before {
        background: linear-gradient(135deg, #0077B5, #005885);
    }

    .social-icon.youtube i {
        background: linear-gradient(135deg, #FF0000, #cc0000);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .social-icon.youtube::before {
        background: linear-gradient(135deg, #FF0000, #cc0000);
    }

    .social-icon.whatsapp i {
        background: linear-gradient(135deg, #25D366, #128C7E);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .social-icon.whatsapp::before {
        background: linear-gradient(135deg, #25D366, #128C7E);
    }

    .social-icon.location i {
        background: linear-gradient(135deg, #ff4444, #cc0000);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .social-icon.location::before {
        background: linear-gradient(135deg, #ff4444, #cc0000);
    }

    .social-icon:hover i {
        background: none;
        -webkit-text-fill-color: #fff;
        color: #fff;
    }

    .social-icon::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .social-icon:hover::before {
        opacity: 1;
    }

    .social-icon:hover {
        transform: scale(1.15) translateX(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    /* Address Section */
    .address-section {
        position: fixed;
        bottom: 30px;
        left: 30px;
        z-index: 1000;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 10px 15px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        max-width: 340px;
    }

    .address-section:hover {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
        border: 1px solid rgba(255, 255, 255, 0.4);
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    }

    .address-section i {
        font-size: 18px;
        color: #ff4444;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .address-section p {
        margin: 0;
        font-size: 12px;
        line-height: 1.5;
        color: #ffffff;
        font-weight: 400;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .boxes-container {
            padding: 40px 40px;
            gap: 20px;
        }

        .glass-box {
            padding: 30px 20px;
        }
    }

    /* Medium Screens - Tablet/Small Desktop */
    @media (max-width: 1074px) and (min-width: 769px) {
        .header-container {
            gap: 12px;
        }

        .contact-left {
            gap: 8px;
        }

        .contact-right {
            gap: 8px;
        }

        .contact-item {
            padding: 6px 12px;
        }

        .contact-item i {
            font-size: 13px;
        }

        .contact-item a {
            font-size: 13px;
        }

        .logo {
            height: 70px;
        }
    }

    @media (max-width: 768px) {
        .header-container {
            position: fixed;
            top: 15px;
            gap: 10px;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            left: 50%;
            transform: translateX(-50%);
            width: 98%;
            display: flex;
            padding: 0 10px;
        }

        .contact-left {
            order: 1;
            align-items: center;
            flex-direction: column;
            gap: 8px;
        }

        .logo-container {
            order: 2;
            display: flex;
            justify-content: center;
        }

        .contact-right {
            order: 3;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            gap: 8px;
        }

        .logo {
            height: 55px;
        }

        .contact-item {
            padding: 4px 10px;
        }

        .contact-item i {
            font-size: 11px;
        }

        .contact-item a {
            font-size: 11px;
        }

        .contact-item.email a {
            font-size: 10px;
        }

        .boxes-container {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            padding: 30px 20px;
            gap: 20px;
        }

        .glass-box {
            padding: 30px 20px;
        }

        .glass-box h3 {
            font-size: 20px;
        }

        .glass-box p {
            font-size: 14px;
        }

        .icon-wrapper {
            width: 70px;
            height: 70px;
        }

        .icon-wrapper i {
            font-size: 30px;
        }

        .social-icons {
            right: 15px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
        }

        .social-icon i {
            font-size: 18px;
        }

        .address-section {
            bottom: 15px;
            left: 15px;
            padding: 12px 15px;
            max-width: 250px;
        }

        .address-section i {
            font-size: 16px;
        }

        .address-section p {
            font-size: 11px;
        }
    }

    @media (max-width: 480px) {
        .boxes-container {
            grid-template-columns: 1fr;
            padding: 20px 15px;
        }
    }