/* ============================
   GLOBAL RESET
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fb;
    color: #0A2E5F;
    line-height: 1.55;
    letter-spacing: 0.2px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================
   NAVBAR
============================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 8%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo img {
    height: 110px;
    width: auto;
}

nav a {
    margin-left: 18px;
    font-size: 0.95rem;
    color: #334155;
    transition: 0.25s;
}

nav a.active {
    font-weight: 600;
    color: #0A2E5C;
}

nav a:hover {
    color: #ff7a00;
}

.btn-nav {
    padding: 8px 16px;
    border-radius: 999px;
    background: #ff7a00;
    color: #fff;
    font-weight: 500;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0A2E5C;
}

/* ============================
   HERO SECTION (PREMIUM)
============================ */


.premium-hero {
    position: relative;
    padding: 100px 8%;
    text-align: left;
    color: #ffffff;
    background: url('images/hero-new.webp') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

/* Dark overlay */
.premium-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* Bring hero content above overlay */
.premium-hero * {
    position: relative;
    z-index: 2;
}

/* Hero text */
.premium-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.premium-hero p {
    max-width: 500px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-primary {
    padding: 10px 22px;
    border-radius: 999px;
    background: #ff7a00;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background: #ff9a33;
    transform: translateY(-1px);
}

.btn-secondary {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    color: #e2e8f0;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background: #e2e8f0;
    color: #0A2E5C;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 25px;
}

.hero-stats div {
    text-align: center;
}

.hero-stats i {
    color: #ff7a00;
    margin-bottom: 8px;
}

/* ============================
   GLOBAL SECTIONS
============================ */
section {
    padding: 60px 8%;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #0A2E5C;
}

/* ============================
   DIVIDER
============================ */
.divider {
    width: 100%;
    height: 60px;
    background: linear-gradient(to right, #0A2E5C, #ff7a00);
    opacity: 0.15;
    margin: 40px 0;
}

/* ============================
   ABOUT SECTION
============================ */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text ul {
    margin-top: 10px;
    padding-left: 18px;
}

.about-text ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

.about-text i {
    color: #ff7a00;
    margin-right: 6px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ============================
   SERVICES SECTION
============================ */
.services-wrapper {
    padding-top: 20px;
}

.services-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #ff7a00;
    box-shadow: 0 8px 20px rgba(255,122,0,0.15);
}

.service-card i {
    color: #ff7a00;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0A2E5C;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

.service-card ul {
    margin-top: 10px;
    padding-left: 18px;
}

.service-card ul li {
    font-size: 15px;
    margin-bottom: 6px;
    color: #444;
}

/* ============================
   CAREERS SECTION
============================ */
.careers-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* ============================
   GALLERY SECTION
============================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* ============================
   TESTIMONIALS SECTION
============================ */
.testimonials-section {
    text-align: center;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin: 15px auto;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ============================
   CONTACT SECTION
============================ */
.contact-section {
    padding: 60px 8%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.contact-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-box h2 {
    margin-bottom: 15px;
    color: #0A2E5C;
}

.contact-box p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-box i {
    color: #ff7a00;
    margin-right: 8px;
}

.contact-box a {
    color: #0A2E5C;
    font-weight: 500;
}

.contact-box a:hover {
    color: #ff7a00;
}

.team-title {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0A2E5C;
    font-size: 18px;
    font-weight: 600;
}

/* FORM */
.form-group {
    margin-bottom: 15px;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: 0.25s;
}

.contact-box input:focus,
.contact-box textarea:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 5px rgba(255,122,0,0.3);
}

/* MAP */
.map-box {
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
}

/* ============================
   FOOTER
============================ */
.footer {
    background: #0A2E5C;
    color: white;
    padding: 50px 8% 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section p,
.footer-section a {
    font-size: 16px;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    opacity: 0.8;
}

/* ============================
   FLOATING WHATSAPP BUTTON
============================ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ============================
   STICKY CALL NOW BUTTON (MOBILE)
============================ */
.call-now-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ff7a00;
    color: white;
    text-align: center;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    display: none;
    z-index: 999;
}

.call-now-btn i {
    margin-right: 8px;
}

@media (max-width: 600px) {
    .call-now-btn {
        display: block;
    }
}

/* ============================
   ANIMATIONS
============================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #ffffff;
        padding: 15px 0;
        border-top: 1px solid #e5e7eb;
    }

    nav a {
        padding: 12px 20px;
        font-size: 1rem;
        display: block;
    }

    .hamburger {
        display: block;
    }

    nav.show {
        display: flex;
    }
}

@media (max-width: 600px) {
    section {
        padding: 40px 6%;
    }
}
