﻿/* Reset default margin and padding */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,800;0,900;1,100;1,200;1,300;1,400;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;   
}
html, body {
    background-color: #fbe9d0;
}


/* Hero Section */
.hero-section {
    background: url('../../../../../../../../images/it\ back\ \(1\).jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: rgba(49, 12, 3, 0.6); /*Warm dark overlay for better text visibility */
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    color: #fbe9d0; /* Light, warm text color */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

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

/* Content Section Styling */
.content {
    padding: 40px 20px;
    background-color: #fbe9d0; /* Consistent light beige background */
    text-align: center;
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

/* Services Grid */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    cursor: pointer;
}

/* Individual Service */
.service {
    position: relative;
    width: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service .description {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(135, 79, 65, 0.8); /* Warm overlay */
    color: #fbe9d0;
    text-align: center;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.service h3 {
    margin: 5px 0;
    font-size: 1.5rem;
}

.service p {
    font-size: 0.9rem;
    margin: 0;
}

/* Hover Effects */
.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service:hover img {
    transform: scale(1.1);
}

.service:hover .description {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 480px) {    .service.description {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(135, 79, 65, 0.8); /* Warm overlay */
    color: #fbe9d0;
    text-align: center;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.service {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.service .description {
    transform: translateY(0);
    opacity: 1;
}

}
@media (max-width: 790px) {    .service.description {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(135, 79, 65, 0.8); /* Warm overlay */
    color: #fbe9d0;
    text-align: center;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.service {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.service .description {
    transform: translateY(0);
    opacity: 1;
}

}
.whatsapp {
            font-size: 50px; /* Increase icon size */
            color: #25D366; /* WhatsApp green */
            text-decoration: none; /* Remove underline */
            position: fixed;
            bottom: 90px;
            right: 35px;
        }

        .whatsapp:hover {
            color: #1ebe5d; /* Slightly darker green on hover*/
}