/* Modern and Sleek CSS for Typeon Media Homepage */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #202124;
    line-height: 1.6;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 50px;
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.header-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 15px;
}

.header-content p {
    font-size: 1.5em;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
    width: 90%;
    max-width: 1100px;
}

.service-item {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    width: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-item h2 {
    font-size: 2.2em;
    color: #1a73e8;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-item p {
    font-size: 1.2em;
    color: #5f6368;
    line-height: 1.8;
}

.footer {
    margin-top: 50px;
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.9em;
    width: 100%;
}

@media (max-width: 600px) {
    .header-content h1 {
        font-size: 2.5em;
    }

    .header-content p {
        font-size: 1.2em;
    }

    .service-item h2 {
        font-size: 1.6em;
    }

    .service-item p {
        font-size: 1em;
    }
}

@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: 1fr;
        width: 90%;
    }

    header {
        padding: 30px;
    }

    .header-content h1 {
        font-size: 3em;
    }

    .header-content p {
        font-size: 1.3em;
    }
}
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
  }
  
  .popup-content {
    position: relative;
  }
  
  .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 1.5em;
  }
  