/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f4f7fb;
    color: #333;
    line-height: 1.6;
}

/* ================= HEADER ================= */
header {
    background: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #38bdf8;
}

/* NAV */
nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.3s;
}

nav a:hover {
    background: #38bdf8;
    color: #0f172a;
}

/* MENU ICON */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* ================= HERO ================= */
.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;

    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("../images/hero.jpg") center/cover no-repeat;
}

.hero h1 {
    font-size: 48px;
    max-width: 800px;
}

.hero p {
    margin: 15px 0;
    font-size: 18px;
    color: #e2e8f0;
}

.hero-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #38bdf8;
    color: #0f172a;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
}

/* ================= ABOUT ================= */
.about {
    padding: 80px 40px;
    background: #fff;
}

.about-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}



/* ================= SERVICES ================= */
.services {
    padding: 80px 40px;
    background: #f4f7fb;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #0f172a;
}

/* 🔥 FIXED 3x2 GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* SERVICE CARD */
.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

/* ICON */
.service-card i {
    font-size: 35px;
    color: #38bdf8;
    margin-bottom: 10px;
}

/* TITLE */
.service-card h3 {
    margin-bottom: 8px;
    color: #0f172a;
}

/* TEXT */
.service-card p {
    color: #555;
    font-size: 14px;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ================= MOBILE ================= */
@media (max-width:768px){

    .service-grid {
        grid-template-columns: 1fr;  /* single column mobile */
        padding: 0 10px;
    }

    .services {
        padding: 50px 20px;
    }
}
/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 80px 40px;
    background: #f4f7fb;
}

/* TITLE */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #0f172a;
}

/* MAIN WRAPPER */
.contact-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    align-items: stretch;
}

/* LEFT SIDE BOX (PROFESSIONAL CARD) */
.contact-info {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* TEXT STYLE */
.contact-info h3 {
    color: #0f172a;
    margin-top: 15px;
    font-size: 18px;
}

.contact-info p {
    margin-top: 6px;
    color: #555;
    line-height: 1.6;
}

/* PHONE CLICK */
.contact-info a {
    color: #0f172a;
    font-weight: bold;
    text-decoration: none;
}

/* RIGHT SIDE MAP (FIX SIZE BIGGER) */
.contact-map {
    flex: 1;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* ================= MOBILE ================= */
@media (max-width:768px){

.contact-wrapper {
    flex-direction: column;
}

.contact-map iframe {
    min-height: 280px;
}

}

/* ================= FOOTER ================= */
footer {
    background: #0f172a;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

/* CONTENT CENTER */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* TITLE */
.footer-content h3 {
    color: #38bdf8;
    font-size: 18px;
}

/* TEXT */
.footer-content p {
    color: #cbd5e1; 
    font-size: 14px;
}

/* COPYRIGHT */
.footer-bottom {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #1e293b;
    font-size: 13px;
    color: #94a3b8;
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width:768px){

.menu-toggle {
    display: block;
}

/* MOBILE NAV */
nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    background: rgba(15, 23, 42, 0.97);
    padding: 15px;
    border-radius: 12px;
    z-index: 9999;
    text-align: center;
}

nav.active {
    display: flex;
}

/* HERO */
.hero h1 {
    font-size: 28px;
}

/* ABOUT */
.about-container {
    flex-direction: column;
}

/* SERVICES */
.service-grid {
    grid-template-columns: 1fr;
}

/* CONTACT */
.contact-wrapper {
    flex-direction: column;
}

/* FOOTER */
.footer-content {
    flex-direction: column;
    gap: 20px;
}
}