/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1f2937;
    overflow-x: hidden;
}

.logo {
    height: 50px;
    max-width: 100%;
    object-fit: contain;
}



/* ===== HERO ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff, #f5f7ff);
    text-align: center;
    position: relative;
}

/* glow */
.glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4B4BED55, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* content */
.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero p {
    color: #555;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* buttons */
.btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.primary {
    background: #4B4BED;
    color: white;
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(41, 41, 167, 0.789);
}

.secondary {
    border: 1px solid #4B4BED;
    color: #4B4BED;
}

.secondary:hover {
    background: #4B4BED;
    color: white;
}

/* ===== SECTION ===== */
.section {
    padding: 100px 60px;
}

/* SERVICES */
.services {
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.card {
    padding: 30px;
    border-radius: 20px;
    background: white;
    border: 1px solid #eee;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card h3 {
    margin-bottom: 10px;
}

/* ===== SERVICES ===== */
.services {
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* CARD */
.card {
    padding: 30px;
    border-radius: 20px;
    background: white;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

/* hover glow effect */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(75, 75, 237, 0.15);
}

/* ICON */
.icon {
    width: 60px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* icon animation */
.card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

/* TEXT */
.card h3 {
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* KNOW MORE BUTTON */
.know-more {
    text-decoration: none;
    font-weight: 600;
    color: #4B4BED;
    transition: 0.3s;
    display: inline-block;
}

/* arrow animation */
.know-more:hover {
    color: #2f2fcf;
    transform: translateX(5px);
}

/* WHY */
.why {
    background: #f5f7ff;
    text-align: center;
}

.why ul {
    list-style: none;
    margin-top: 30px;
}

.why li {
    margin: 10px 0;
    font-size: 18px;
}

/* ===== QUOTE SECTION ===== */
.quote {
    text-align: center;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #f5f7ff, #ffffff);
}

.quote h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.quote p {
    color: #6b7280;
    font-size: 18px;
}

/* ===== INFO SECTION (LEFT RIGHT) ===== */
.info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

    max-width: 1100px;
    margin: 0 auto;

    padding: 60px 20px 100px;
}

/* ===== GENERAL BOX ===== */
.box {
    background: white;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px;
    transition: 0.3s;
}

/* RIGHT BOX HOVER */
.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ===== LEFT BOX (MATCH YOUR DESIGN) ===== */
.info-left {
    text-align: center;
    background: #f3f4f6;
    border: none;
    box-shadow: none;
}

/* LEFT HEADINGS */
.info-left h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.info-left h4 {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 700;
}

/* LEFT TEXT */
.info-left p {
    font-size: 18px;
    margin: 20px 0;
    color: #111827;
}

/* ===== RIGHT BOX TEXT ===== */
.box p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}
/* ===== RIGHT BOX STYLE ===== */
.info-right {
    background: #f3f4f6;
    /* same as left */
    border: none;
    box-shadow: none;
}

/* TITLE */
.info-right h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* ADDRESS TEXT */
.info-right .address {
    font-size: 16px;
    line-height: 1.7;
    color: #111827;
    margin-bottom: 20px;
}

/* MAP */
.map {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    border: none;
}
/* ===== MAP ===== */
.map {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    margin-top: 15px;
    border: none;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 900px) {
    .info {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: #eee;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 1000px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }
}

@media(max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 15px 20px;
    }
}