/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #eef1f5;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header img {
    height: 55px;
    margin-right: 15px;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #003399;
    letter-spacing: 0.5px;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* HERO (Only Home page uses this) */
.hero {
    height: 80vh;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('bg.jpeg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #f2f5ff;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 18px;
    color: #ffffff;
    text-shadow: 0px 3px 6px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 22px;
    max-width: 850px;
    line-height: 1.6;
    color: #e0e7ff;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
}

.btn {
    margin-top: 30px;
    background: #005eff;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
}

/* ---------------- SERVICES PAGE ---------------- */

.services-big-section {
    position: relative;
    padding: 60px 20px;
    color: white;
}

/* Background */
.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('bg.jpeg') center/cover;
    z-index: -1;
}

/* Top Logo + Company Name */
.services-header-top {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.services-logo {
    height: 70px;
}

.services-company {
    font-size: 28px;
    font-weight: bold;
}

/* Title */
.services-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 10px;
}

.services-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 40px;
}

.service-card {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.15);
}

.service-card .icon {
    font-size: 45px;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #e6e6e6;
}

/* Mobile */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------- ABOUT PAGE ---------------- */

.about-section {
    position: relative;
    padding: 60px 20px;
    color: white;
    min-height: 100vh;
}

/* Background */
.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('bg.jpeg') center/cover;
    z-index: -1;
}

/* CONTACT PAGE */

.contact-section {
    position: relative;
    padding: 80px 20px;
    color: #fff;
}

.contact-bg {
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('bg.jpeg') center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.contact-logo {
    height: 80px;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 35px;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #e6e6e6;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    outline: none;
}

.contact-form button {
    background: #005eff;
    color: #fff;
    padding: 14px 25px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 18px;
}


/* Container */
.about-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Top Logo + Title */
.about-header {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.about-logo {
    height: 70px;
    border-radius: 10px;
}

.about-title {
    font-size: 32px;
    font-weight: bold;
}

/* Main Paragraph */
.about-text {
    font-size: 18px;
    color: #e6e6e6;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Subtitle */
.about-subtitle {
    font-size: 26px;
    margin: 40px 0 20px;
}

/* Cards Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.about-card {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.15);
}

.about-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

