body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f8;
}

header {
    background: #0a4d8c;
    color: white;
    text-align: center;
    padding: 20px;
}

nav {
    background: #083a66;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

section {
    background: white;
    margin: 20px;
    padding: 20px;
    border-radius: 8px;
}

ul {
    padding-left: 20px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
}

button {
    background: #0a4d8c;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #083a66;
}

footer {
    background: #0a4d8c;
    color: white;
    text-align: center;
    padding: 15px;
}
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f2f6fb;
}

header {
    background: linear-gradient(135deg, #0a4d8c, #0077b6);
    color: white;
    text-align: center;
    padding: 30px 15px;
}

nav {
    background: #083a66;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    color: white;
    padding: 12px 18px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    background: #0a4d8c;
}

section {
    padding: 30px;
    max-width: 1100px;
    margin: auto;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

button {
    background: #0a4d8c;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #083a66;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

footer {
    background: #083a66;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
}
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f2f6fb;
}

header {
    background: linear-gradient(135deg, #0a4d8c, #0077b6);
    color: white;
    text-align: center;
    padding: 30px 15px;
}

nav {
    background: #083a66;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    color: white;
    padding: 12px 18px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    background: #0a4d8c;
}

section {
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
}

/* 🔹 IMAGE SLIDER */
.slider {
    position: relative;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
}

.slides {
    display: flex;
    transition: 0.6s ease;
}

.slides img {
    width: 100%;
    border-radius: 12px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 22px;
    padding: 10px 15px;
    cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

/* 🔹 SERVICE CARDS */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card h3 {
    color: #0a4d8c;
}

/* 🔹 FORM */
input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    background: #0a4d8c;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #083a66;
}

footer {
    background: #083a66;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* 🔹 WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
}
/* About Section Split Layout */
.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
}

.about-text {
    flex: 1 1 50%;
    min-width: 300px;
}

.about-text h2 {
    color: #0a4d8c;
    margin-bottom: 15px;
}

.about-text p {
    line-height: 1.6;
    text-align: justify;
}

.about-image {
    flex: 1 1 50%;
    min-width: 300px;
}
/* Hero Section */
.hero {
    background: url('images/hero_bg.jpg') center/cover no-repeat;
    height: 450px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
}

.hero-overlay h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Counters */
.counters {
    display: flex;
    justify-content: space-around;
    text-align: center;
    background: #e6f0ff;
    padding: 40px 20px;
    gap: 20px;
}

.counter h3 {
    font-size: 36px;
    color: #0a4d8c;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    background: #f4f6f8;
    padding: 40px 20px;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-top: 20px;
}

.testimonial-slider .slide {
    min-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.testimonial-slider img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}
/* Branch Page */
.branch-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.branch-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0a4d8c;
}

.branch-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.branch-card {
    display: flex;
    gap: 20px;
    background: #f9fbff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.branch-info {
    flex: 1 1 40%;
}

.branch-info h3 {
    margin-bottom: 10px;
    color: #0a4d8c;
}

.branch-info p {
    line-height: 1.6;
    font-size: 15px;
}

.branch-map {
    flex: 1 1 55%;
}

.branch-map iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .branch-card {
        flex-direction: column;
    }
    .branch-map iframe {
        height: 220px;
    }
}
/* Top Bar */
.top-bar {
    background: #0a4d8c;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 14px;
}

/* Why Choose Us */
.why-us {
    padding: 40px 20px;
    background: #f2f6ff;
    text-align: center;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: auto;
}

.why-box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Process */
.process {
    padding: 40px 20px;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.step {
    background: #eaf1ff;
    padding: 20px;
    border-radius: 12px;
    width: 180px;
}

.step span {
    font-size: 26px;
    font-weight: bold;
    color: #0a4d8c;
}

/* CTA */
.cta {
    background: #0a4d8c;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #fff;
    color: #0a4d8c;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 25px 10px;
}

