* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }












/* ========== TOP HEADER ========== */
.top-header {
    background: white;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    z-index: 1000;
}

.logo img { width: 80px; height: auto; display: block; }

.top-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-links a {
    color: black;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.top-links a i { color: #61CE70; }
.top-links a:hover { color: #4caf50; }

.contact-btn {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #7DC35F;
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.contact-btn:hover { background-color: #8AE165; }

/* ========== HAMBURGER ========== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== MAIN NAV ========== */
.main-nav {
    background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(27,111,127,0.75) 100%);
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 900;
}

.nav-left {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-left a {
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.nav-left a:hover { opacity: 0.7; }

.follow-section {
    display: flex;
    gap: 12px;
    align-items: center;
    color:white;
}

.follow-label,
.follow-text {
    color: white;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: #003b49;
    border-color: white;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 2000;
}

.mobile-menu-overlay.active { display: block; }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -290px;
    width: 290px;
    height: 100%;
    background: #003b49;
    z-index: 2100;
    transition: right 0.32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

 

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
}

.mobile-section-title {
    color: rgba(255,255,255,0.45);
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 16px 22px 6px;
    display: block;
}

.mobile-menu nav a {
    display: block;
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 14px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.2s;
}

.mobile-menu nav a:hover { background: rgba(255,255,255,0.08); }

.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    padding: 12px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}

.mobile-menu-links a i { color: #7DC35F; width: 16px; text-align: center; }
.mobile-menu-links a:hover { background: rgba(255,255,255,0.06); }

.mobile-menu-social {
    padding: 18px 22px;
    display: flex;
    gap: 12px;
}

.mobile-menu-social a {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    transition: all 0.25s;
}

.mobile-menu-social a:hover { background: #7DC35F; border-color: #7DC35F; }

/* ========== HERO (inner pages) ========== */
.hero {
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(27,111,127,0.4) 100%), center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p,
.tagline,
.hero-tagline {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.75); transition: color 0.3s; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ========== HERO SLIDER (index) ========== */
.hero-slider-section {
    height: 580px;
    overflow: hidden;
    position: relative;
}

.slider { height: 100%; position: relative; }

.slide {
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
}

.slide.active { opacity: 1; }

.slide-content {
    color: white;
    padding: 60px;
    max-width: 520px;
    margin-left: 80px;
    z-index: 2;
}

.slide-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.slide-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 28px;
    opacity: 0.9;
}

.slide-btn {
    background-color: #84d462;
    color: #003b49;
    border: none;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-btn:hover { background-color: white; }

.slider-controls {
    position: absolute;
    top: 50%; left: 20px; right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255,255,255,0.25);
    color: white;
    border: 2px solid white;
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
}

.slider-btn:hover { background: white; color: #003b49; }

.slider-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px;
    z-index: 10;
}

.indicator {
    width: 10px; height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid white;
}

.indicator.active { background-color: white; transform: scale(1.3); }

/* ========== VISION & VALUE ========== */
.vision-value-section { padding: 60px 40px; background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%); }

.vision-value-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vision-card { background: white; padding: 40px; border-radius: 8px; box-shadow: 0 3px 15px rgba(0,0,0,0.08); }
.value-card { background: #003b49; color: white; padding: 40px; border-radius: 8px; box-shadow: 0 3px 15px rgba(0,0,0,0.15); }
.vision-icon, .value-icon { font-size: 36px; margin-bottom: 16px; }
.vision-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #003b49; }
.value-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: white; }
.vision-text { font-size: 14px; line-height: 1.8; color: #666; }
.value-text { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.85); }

/* ========== ABOUT (index) ========== */
.about-section { padding: 80px 40px; background-color: white; }

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title { font-size: 38px; line-height: 1.3; margin-bottom: 24px; }
.about-title .dark { color: #003b49; }
.about-title .light { color: #84d462; }
.about-description { font-size: 15px; line-height: 1.8; color: #666; margin-bottom: 16px; }

.more-about-link {
    display: inline-block;
    margin-top: 12px;
    color: #003b49;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    border-bottom: 2px solid #003b49;
    padding-bottom: 4px;
    transition: all 0.3s;
}

.more-about-link:hover { color: #84d462; border-bottom-color: #84d462; }

.about-image { border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.about-image img { width: 100%; height: auto; display: block; }

/* ========== ORUM SECTION (about page) ========== */
.orum-section { padding: 80px 40px; background-color: #f9f9f9; }
.orum-container { max-width: 1200px; margin: 0 auto; }

.orum-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.orum-text-content { flex: 1; min-width: 280px; }
.orum-image-content { flex: 1; min-width: 280px; }

.orum-image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: block;
}

.orum-text-content h2 { font-size: 48px; font-weight: 700; margin-bottom: 10px; line-height: 1.2; }
.orum-heading-main { color: #003b49; }
.orum-heading-highlight { color: #7CC25F; display: inline-block; }
.orum-description { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 25px; font-weight: 500; }
.orum-secondary-text { font-size: 14px; color: #999; line-height: 1.8; margin-bottom: 30px; }

.button1 {
    background-color: #d4dce3;
    color: #3d4f5c;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 16px 36px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.button1:hover {
    background-color: #7db863;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

/* ========== PARALLAX (about page) ========== */
.parallax-section { padding: 60px 40px; background-color: #fff; }

.parallax-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 460px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.parallax-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

/* ========== SERVICES SECTION ========== */
.services-section { padding: 80px 40px; background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%); }
.services-container { max-width: 1200px; margin: 0 auto; }
.services-header { max-width: 600px; margin-bottom: 50px; }
.services-title { font-size: 38px; line-height: 1.2; margin-bottom: 16px; }
.services-title .dark { color: #003b49; }
.services-title .light { color: #84d462; }

.services-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #003b49;
    margin-top: 12px;
}

.services-description { font-size: 15px; line-height: 1.8; color: #666; margin-bottom: 24px; }

.explore-btn {
    background-color: #003b49;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.explore-btn:hover { background-color: #145a69; }

/* Services grid (services page) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 28px 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border-top: 3px solid #84d462;
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 10px 24px rgba(0,0,0,0.12); }

.service-card .service-icon { font-size: 40px; margin-bottom: 14px; display: block; }
.service-card h3, .service-card .service-name { font-size: 16px; font-weight: 700; color: #003b49; margin-bottom: 10px; }
.service-card p, .service-card .service-text { font-size: 13px; color: #666; line-height: 1.7; }

/* ========== CONTACT PAGE FORM ========== */
.contact-section { padding: 80px 40px; background-color: white; }
.contact-container { max-width: 1200px; margin: 0 auto; }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.form-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #003b49;
    line-height: 1.2;
    margin-bottom: 28px;
}

.form-section h2 .easy { color: #84d462; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { display: flex; flex-direction: column; }

.form-group input,
.form-group textarea {
    padding: 13px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7DC35F;
    box-shadow: 0 0 0 3px rgba(125,195,95,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.submit-btn {
    padding: 14px 32px;
    background-color: #7DC35F;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.submit-btn:hover { background-color: #5fa847; transform: translateY(-1px); }

.right-section { display: flex; flex-direction: column; gap: 28px; }

.green-box {
    background: linear-gradient(135deg, #003b49 0%, #1b6f7f 100%);
    color: white;
    padding: 28px;
    border-radius: 8px;
}

.green-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #84d462; }
.green-box p { font-size: 14px; line-height: 1.8; opacity: 0.9; }

.phone-section { display: flex; flex-direction: column; gap: 18px; }

.phone-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f5f5f5;
    border-radius: 8px;
    border-left: 4px solid #84d462;
}

.phone-icon { font-size: 24px; color: #003b49; }
.phone-details h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 4px; }
.phone-details p { font-size: 16px; font-weight: 700; color: #003b49; }

.map-section { margin-top: 10px; }

.map-iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 10px;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ========== STATISTICS ========== */
.statistics-section { padding: 80px 40px; background: linear-gradient(180deg, #e8e8e8 0%, #d5d5d5 100%); }

.statistics-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.stat-card:hover { transform: translateY(-8px); }
.stat-icon { font-size: 36px; margin-bottom: 16px; }
.stat-number { font-size: 42px; font-weight: 800; color: #84d462; margin-bottom: 8px; }
.stat-label { font-size: 15px; color: #333; font-weight: 500; }

/* ========== TESTIMONIALS ========== */
.testimonials-section { padding: 80px 40px; background-color: white; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }

.testimonials-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.testimonials-title { font-size: 38px; line-height: 1.2; margin-bottom: 16px; }
.testimonials-title .dark { color: #003b49; }
.testimonials-title .light { color: #84d462; }

.testimonials-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #003b49;
    margin-top: 12px;
}

.company-description { font-size: 15px; line-height: 1.8; color: #666; margin-bottom: 24px; }

.reach-us-btn {
    background-color: #003b49;
    color: white;
    border: none;
    padding: 13px 32px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.reach-us-btn:hover { background-color: #145a69; }

.testimonial-card {
    background: white;
    padding: 36px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.testimonial-card:hover { border-color: #84d462; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }

.testimonial-avatar {
    width: 64px; height: 64px;
    border: 2px solid #003b49;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.testimonial-name { font-size: 16px; font-weight: 700; color: #003b49; margin-bottom: 4px; }
.testimonial-title { font-size: 13px; color: #999; margin-bottom: 16px; }
.testimonial-text { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-rating { color: #84d462; letter-spacing: 2px; }

.carousel-controls { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }

.carousel-btn {
    width: 40px; height: 40px;
    border: 2px solid #003b49;
    background: white;
    color: #003b49;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.carousel-btn:hover { background: #003b49; color: white; }

/* ========== TEAM ========== */
.team-section { padding: 60px 40px; background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%); }
.team-container { max-width: 1200px; margin: 0 auto; }
.team-image { border-radius: 8px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.1); }
.team-image img { width: 100%; height: auto; display: block; }

/* ========== ARTICLES ========== */
.articles-container { padding: 60px 40px; background-color: #f9f9f9; }

.articles-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.3s; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.article-image { width: 100%; height: 200px; object-fit: cover; }
.article-content { padding: 20px; }
.article-title { font-size: 16px; font-weight: 700; color: #0088cc; margin-bottom: 8px; line-height: 1.4; }
.article-meta { font-size: 12px; color: #999; margin-bottom: 10px; }
.article-description { font-size: 14px; color: #666; line-height: 1.6; }

/* ========== BLOG PAGE ========== */
.blog-section { background: #f9f9f9; }

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 10px 24px rgba(0,0,0,0.12); }
.blog-image { width: 100%; height: 220px; object-fit: cover; }
.blog-content { padding: 22px; }
.blog-title { font-size: 17px; margin-bottom: 12px; color: #1b6f7f; line-height: 1.4; font-weight: 700; }
.blog-meta { display: flex; gap: 14px; margin-bottom: 14px; font-size: 12px; color: #999; flex-wrap: wrap; }
.blog-meta-item { display: flex; align-items: center; gap: 5px; }
.blog-meta-icon { color: #84d462; }
.blog-description { font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 14px; }
.read-more { display: inline-block; color: #7DC35F; font-weight: 600; font-size: 13px; transition: color 0.3s; }
.read-more:hover { color: #5fa847; }

/* ========== FOOTER ========== */
footer {
    background-color: #003b49;
    color: white;
    padding: 50px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #84d462;
}

.footer-logo-box {
    background: white;
    padding: 10px 16px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-box span { color: #003b49; font-weight: 700; font-size: 16px; }

.footer-info { font-size: 13px; line-height: 1.9; }
.footer-info p { margin-bottom: 6px; }
.footer-info a { color: white; }
.footer-info strong { color: white; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before { content: "▸"; color: #84d462; flex-shrink: 0; }
.footer-links a:hover { color: white; }

.newsletter-form { display: flex; flex-direction: column; gap: 10px; }

.newsletter-form input {
    padding: 11px 14px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
}

.newsletter-form button {
    padding: 11px;
    background-color: #84d462;
    color: #003b49;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover { background-color: #9ec489; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p { font-size: 13px; opacity: 0.8; }

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px; height: 46px;
    background-color: #84d462;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #003b49;
    font-size: 20px;
    font-weight: 700;
    z-index: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background-color 0.3s;
    border: none;
}

.scroll-to-top:hover { background-color: #9ec489; }

/* ========== SUPPORT BUTTON ========== */
.support-wrapper {
    position: fixed;
    right: 20px;
    bottom: 12%;
    z-index: 9999;
}

.support-circle {
    width: 56px; height: 56px;
    background-color: #7CC25F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s;
}

.support-circle:hover { transform: scale(1.08); }

.support-circle a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
}

.support-circle svg {
    width: 28px; height: 28px;
    fill: white;
    animation: rotateIcon 5s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== LOADER ========== */
#loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#loader.hidden { opacity: 0; pointer-events: none; }

.spinner {
    width: 44px; height: 44px;
    border: 4px solid #eee;
    border-top-color: #84d462;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 14px;
}

@keyframes spin { to { transform: rotate(360deg); } }

#loader p { font-family: sans-serif; color: #555; font-size: 15px; }

/* ====================================================
   TABLET (max-width: 1024px)
==================================================== */
@media (max-width: 1024px) {
    .statistics-container { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .about-container { gap: 36px; }
    .contact-wrapper { gap: 36px; }
    .slide-content { margin-left: 40px; padding: 40px; }
    .slide-title { font-size: 52px; }
    .orum-text-content h2 { font-size: 38px; }
    .parallax-container { height: 360px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====================================================
   MOBILE (max-width: 768px)
==================================================== */
@media (max-width: 768px) {

    /* Header */
    .top-header { padding: 10px 16px; flex-wrap: nowrap; gap: 8px; }
    .top-links { display: none !important; }
    .contact-btn { display: none !important; }
    .hamburger { display: flex !important; }

    /* Nav */
    .main-nav { padding: 10px 16px; justify-content: flex-end; }
    .nav-left { display: none !important; }
    .follow-section { gap: 6px; }
    .follow-label, .follow-text { font-size: 11px; }
    .social-icon { width: 26px; height: 26px; font-size: 11px; }
    .social-links { gap: 4px; }

    /* Hero inner pages */
    .hero { padding: 36px 16px; min-height: 190px; }
    .hero h1 { font-size: 30px !important; margin-bottom: 8px; }
    .hero p, .tagline, .hero-tagline { font-size: 14px; margin-bottom: 10px; }
    .breadcrumb { font-size: 12px; }

    /* Hero slider */
    .hero-slider-section { height: 300px; }
    .slide-content { padding: 20px 16px; margin-left: 0; max-width: 100%; }
    .slide-title { font-size: 30px; margin-bottom: 8px; }
    .slide-subtitle { font-size: 13px; margin-bottom: 14px; }
    .slide-btn { padding: 10px 20px; font-size: 11px; }
    .slider-btn { width: 34px; height: 34px; font-size: 15px; }
    .slider-controls { left: 6px; right: 6px; }
    .indicator { width: 8px; height: 8px; }
    .slider-indicators { bottom: 10px; gap: 6px; }

    /* Vision & Value */
    .vision-value-section { padding: 30px 16px; }
    .vision-value-container { grid-template-columns: 1fr; gap: 14px; }
    .vision-card, .value-card { padding: 22px; }
    .vision-icon, .value-icon { font-size: 28px; margin-bottom: 10px; }
    .vision-title, .value-title { font-size: 17px; }
    .vision-text, .value-text { font-size: 13px; }

    /* About (index) */
    .about-section { padding: 40px 16px; }
    .about-container { grid-template-columns: 1fr; gap: 24px; }
    .about-title { font-size: 26px; margin-bottom: 14px; }
    .about-description { font-size: 13px; }

    /* Orum (about page) */
    .orum-section { padding: 40px 16px; }
    .orum-content-wrapper { flex-direction: column; gap: 24px; }
    .orum-text-content h2 { font-size: 26px; }
    .orum-description { font-size: 14px; }
    .orum-secondary-text { font-size: 13px; }
    .button1 { padding: 13px 28px; font-size: 13px; }

    /* Parallax */
    .parallax-section { padding: 28px 16px; }
    .parallax-container { height: 190px; border-radius: 8px; }

    /* Services */
    .services-section { padding: 40px 16px; }
    .services-header { margin-bottom: 24px; }
    .services-title { font-size: 24px !important; }
    .services-description { font-size: 13px; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .service-card { padding: 16px 12px; }
    .service-card .service-icon { font-size: 30px; margin-bottom: 8px; }
    .service-card h3, .service-card .service-name { font-size: 13px; margin-bottom: 6px; }
    .service-card p, .service-card .service-text { font-size: 12px; }

    /* Contact page */
    .contact-section { padding: 40px 16px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 24px; }
    .form-section h2 { font-size: 26px; margin-bottom: 18px; }
    .form-row { grid-template-columns: 1fr; gap: 14px; }
    .form-group input, .form-group textarea { font-size: 15px; padding: 12px 14px; }
    .submit-btn { width: 100%; padding: 14px; font-size: 15px; align-self: stretch; }
    .green-box { padding: 20px; }
    .green-box h3 { font-size: 17px; }
    .green-box p { font-size: 13px; }
    .phone-item { padding: 12px 14px; }
    .phone-details p { font-size: 15px; }
    .map-iframe { height: 220px; }

    /* Statistics */
    .statistics-section { padding: 40px 16px; }
    .statistics-container { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-card { padding: 22px 12px; border-radius: 12px; }
    .stat-icon { font-size: 26px; margin-bottom: 10px; }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 12px; }

    /* Testimonials */
    .testimonials-section { padding: 40px 16px; }
    .testimonials-header { grid-template-columns: 1fr; gap: 24px; }
    .testimonials-title { font-size: 26px; }
    .company-description { font-size: 13px; }
    .testimonial-card { padding: 22px 16px; }
    .testimonial-avatar { width: 50px; height: 50px; font-size: 22px; }
    .testimonial-name { font-size: 14px; }
    .testimonial-text { font-size: 13px; }

    /* Team */
    .team-section { padding: 30px 16px; }

    /* Articles */
    .articles-container { padding: 40px 16px; }
    .articles-grid { grid-template-columns: 1fr; gap: 18px; }
    .article-image { height: 175px; }
    .article-content { padding: 16px; }
    .article-title { font-size: 15px; }
    .article-description { font-size: 13px; }

    /* Blog */
    .blog-container { padding: 36px 16px; }
    .blog-grid { grid-template-columns: 1fr; gap: 20px; }
    .blog-image { height: 190px; }
    .blog-content { padding: 16px; }
    .blog-title { font-size: 15px; }
    .blog-description { font-size: 13px; }

    /* Footer */
    footer { padding: 36px 16px 24px; }
    .footer-content { grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
    .footer-info { font-size: 13px; }
    .footer-links a { font-size: 13px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

    /* Fixed elements */
    .scroll-to-top { width: 40px; height: 40px; bottom: 16px; right: 16px; font-size: 17px; }
    .support-wrapper { right: 12px; bottom: 80px; }
    .support-circle { width: 48px; height: 48px; }
    .support-circle svg { width: 24px; height: 24px; }
}

/* ====================================================
   SMALL MOBILE (max-width: 430px)
==================================================== */
@media (max-width: 430px) {
    .hero h1 { font-size: 24px !important; }
    .slide-title { font-size: 22px; }
    .slide-subtitle { font-size: 12px; }
    .hero-slider-section { height: 260px; }
    .orum-text-content h2 { font-size: 22px; }
    .parallax-container { height: 155px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card .service-icon { font-size: 36px; }
    .service-card h3, .service-card .service-name { font-size: 16px; }
    .service-card p, .service-card .service-text { font-size: 13px; }
    .statistics-container { gap: 10px; }
    .stat-number { font-size: 24px; }
}