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

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    line-height: 1.6;
}

/* BUTTON */
.btn-primary {
    padding: 12px 25px;
    background: #00b7ff;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* UNIFORM IMAGE SIZE */
.same-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
}

.small-img {
    height: 120px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
}

/* HERO */
.hero {
    background: url('./ab2.webp') no-repeat center/cover;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.hero-content h1 { font-size: 45px; color:black; }
.hero-content p { color:black; font-size: 18px; margin: 15px 0; }

/* ABOUT */
.about {
    padding: 60px 20px;
    background: #fff;
}
.about-container {
    display: flex;
    gap: 25px;
}
.about-text { width: 50%; }
.about-img { width: 50%; }

/* SERVICES */
.services {
    padding: 60px 20px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.service-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

/* WHY US */
.why-us {
    background: url('./ab1.webp') no-repeat center/cover;
    padding: 60px 20px;
    color: black;
    text-align: center;
}
.why-overlay { backdrop-filter: blur(4px); padding: 20px; }

/* TECH */
.tech { padding: 60px 20px; background: #fff; }
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.tech-img { width: 150px; }

/* CTA */
.cta {
    background: url('./ab.webp') no-repeat center/cover;
    color: black;
    padding: 70px 20px;
    text-align: center;
}
.cta-overlay { backdrop-filter: blur(4px); padding: 20px; }

/* ANIMATIONS */
.fade-in {
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
}

.slide-up {
    animation: slideUp 1.3s ease forwards;
    opacity: 0;
}

.zoom-in {
    animation: zoomIn 1.4s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .hero-content h1 { font-size: 32px; }
    .about-container { flex-direction: column; }
    .about-img, .about-text { width: 100%; }
}

@media (max-width: 600px) {
    .hero { height: 65vh; }
    .hero-content h1 { font-size: 26px; }
    .hero-content p { font-size: 15px; }
    .small-img { height: 90px; }
}
