/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f7f7f7;
    color: #222;
}

/* NAVIGATION */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

nav img {
    max-width: 100px;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #e60000;
}

/* DROPDOWN */
.dropdown-parent {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    background: white;
    list-style: none;
    min-width: 250px;
    padding: 10px 0;
    border-radius: 6px;
    z-index: 10;
}

.dropdown li a {
    display: block;
    padding: 10px 15px;
    color: #222;
}

.dropdown li a:hover {
    color: #e60000;
}

.dropdown-parent:hover .dropdown {
    display: block;
}

/* SEARCH BOX */
.search-box {
    position: relative;
    width: 250px;
}

.search-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.search {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border-radius: 25px;
    border: 1px solid #ccc;
}

.search:focus {
    border-color: #e60000;
}

/* HERO SECTION */
.hero {
    padding: 120px 40px;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('network-3.jpg') center/cover no-repeat;
}

.hero h1 {
    font-size: 2.5rem;
    max-width: 900px;
    margin: auto;
    animation: slideInUp 1s ease;
}

.hero p {
    max-width: 700px;
    margin: 20px auto;
}

.hero a {
    display: inline-block;
    margin: 10px 12px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: #e60000;
    color: #fff;
}

.btn-primary:hover {
    background: transparent;
    border: 2px solid #e60000;
    color: #e60000;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #e60000;
}

/* WhatsApp */
.fa-whatsapp {
    color: #25D366;
    font-size: 3rem;
}
.fa-whatsapp:hover {
    color: #128C7E;
    font-size: 4rem;
}

/* CHOOSE US SECTION */
.choose-us {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    color: black;
}
.choose-h3 {
    margin-bottom: 20px;
    color: black;
}

.choose-us img {
    max-width: 100px;
    height: auto;
    border-radius: 15px;
}

.choose-content a {
   background: red;
    border-radius: 10px;
    color: white;
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px; 
    text-decoration: none;
}

.choose-card:hover {
    cursor: pointer;
    color:#f7f7f7;
    background: url('red-blk-3.jpg') center/cover no-repeat;
}

.choose-card:hover h3 {
    color: white; 
}

.btn-choose:hover {
    background: black; 
color:white; 
}

.choose-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.9;
}



.choose-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.choose-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

/* SERVICE CARDS */
.service-cards {
    padding: 80px 40px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.card {
    background: white;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    min-height: 300px;
    transform: translateY(40px);
    opacity: 0;
    transition: 0.8s ease;
}

.card.show {
    opacity: 1;
    transform: translateY(0);
}

.card i {
    font-size: 3rem;
    color: #e60000;
}

.card:hover {
    cursor: pointer;
    color: white;
    transform: scale(1.05);
}

.web-dev:hover { background: url('red-blk-3.jpg') center/cover no-repeat; }
.print:hover { background: url('red-blk-3.jpg') center/cover no-repeat; }
.digital:hover { background: url('red-blk-3.jpg') center/cover no-repeat; }
.HR:hover { background: url('red-blk-3.jpg') center/cover no-repeat; }

.btn-service {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #000;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-service:hover {
    background: #e60000;
}

/* BENEFITS */
.benefits {
    padding: 80px 40px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('hero.jpg') center/cover no-repeat;
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.benefit-card {
    background: transparent;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(20px);
    opacity: 0;
    transition: 0.8s ease;
}

.benefit-card:hover {
    background: white;
    color: black;
    transform: scale(1.05);
    transition: 0.3s ease;
}

.benefit-card i {
    color: #e60000;
    font-size: 3rem;
    margin-bottom: 15px;
}

/* ABOUT */
.about {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
    align-items: center;
    width: 100%;
}
.about.show {
    opacity: 1;
    transform: translateY(0);
}
.about-card {
    width:100%;
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 20px;
    text-align: left;
}

.about h2 {
    margin-bottom: 20px;
}

.about h3 {
    margin-bottom: 15px;
    color: red;
    font-weight: lighter;
}

.about p {
    max-width: 500px;
    margin: auto;
    line-height: 1.6;
}

.about img {
    max-width: 400px;
    height: auto;
    margin-top: 30px;
    }

/* CONTACT */
.contact {
    padding: 80px 40px;
    background: #111;
    color: white;
    text-align: center;
}

.contact-form {
    max-width: 650px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.contact-form.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    padding: 12px;
    background: #e60000;
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}

.contact-form button:hover {
    background: #b30000;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    background: #000;
    color: white;
}

/* ANIMATIONS */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
}

[data-animate].show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav ul { display: none; }
    .hero h1 { font-size: 1.9rem; }
    .hero { padding: 90px 20px; }
}
