﻿/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgb(25, 25, 112);
    --secondary-color: rgb(111, 194, 118);
    --accent-color: #f39c12;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --border-color: #ddd;
    --success: #28a745;
    --error: #dc3545;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --theme-color: rgb(25, 25, 112);
    --theme-color2: rgb(111, 194, 118);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f0f0f0 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.header {
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-top {
    background: #f9f9f9;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    font-size: 0.9rem;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
}

.navbar {
    padding: 15px 0;
    position: relative;
    z-index: 1100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-brand a {
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 10px;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1rem;
}

.page-header a {
    color: white;
    text-decoration: none;
}

.page-header a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 10px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #0f2847;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 107, 0.4);
}

.btn-primary-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 14px 40px;
    font-size: 1.1rem;
    width: 100%;
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.form-row.two-col {
    grid-template-columns: 1fr 1fr;
}

.full-width {
    grid-column: 1 / -1;
}

/* ============================================
   APPLICATION FORM
   ============================================ */

.application-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.section-intro {
    text-align: center;
    margin-bottom: 40px;
}

.section-intro h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.section-intro p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-wrapper h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.application-form {
    display: grid;
    gap: 20px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    background: linear-gradient(135deg, #192754 0%, #1a2f5a 100%);
    color: white;
    padding: 60px 0 50px;
    border-top: 3px solid #f39c12;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
    color: #ffffff;
}

.footer-section h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #f39c12;
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #f39c12;
    transform: translateX(5px);
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    display: inline-block;
    width: fit-content;
}

.footer-section:first-child > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3);
    gap: 30px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom a {
    color: #f39c12;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(243, 156, 18, 0.15);
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #f39c12;
    border-color: #f39c12;
    transform: translateY(-5px);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-section p strong {
    color: #f39c12;
    display: inline;
    font-weight: 600;
    margin-right: 5px;
}

.footer-section p {
    margin-bottom: 8px;
}

/* ============================================
   ALERTS
   ============================================ */

.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        pointer-events: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
        pointer-events: auto;
    }
    
    .nav-menu.active a {
        display: block;
        padding: 12px 0;
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        pointer-events: auto;
    }

    .contact-info {
        flex-direction: row;
        gap: 30px;
        flex-wrap: wrap;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row.two-col {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-intro h2 {
        font-size: 1.5rem;
    }
    
    .th-hero-wrapper {
        padding: 40px 0 0 0 !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 15px;
    }

    /* For 768px to 481px screens, make footer grid 1 column */
    @media (min-width: 481px) and (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }
    
    /* For screens 376px to 480px, make footer grid 1 column */
    @media (min-width: 376px) and (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }
    
    /* For screens 375px and smaller, make Quick Links and Contact Us appear side by side */
    @media (max-width: 375px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 20px !important;
        }
        
        /* Make first and last sections full width */
        .footer-grid > :nth-child(1),
        .footer-grid > :nth-child(4) {
            grid-column: 1 / span 2;
        }
        
        /* Ensure Quick Links and Contact Us are in 2 separate columns */
        .footer-grid > :nth-child(2) {
            grid-column: 1;
        }
        
        .footer-grid > :nth-child(3) {
            grid-column: 2;
        }
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-header {
        padding: 30px 0;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .footer-bottom {
        text-align: center;
        padding: 25px 0;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* ============================================
   SECTIONS
   ============================================ */

main {
    min-height: calc(100vh - 200px);
}

section {
    padding: 20px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.4;
}

p {
    margin-bottom: 15px;
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.hidden {
    display: none;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Hero Section */
.th-hero-wrapper {
    background: white !important;
    background-color: white !important;
    color: #333;
    padding: 60px 0 0 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
}

.th-hero-wrapper > .hero-inner {
    margin: 0;
}

.th-hero-wrapper .container {
    padding: 0 20px;
    max-width: 100%;
}

.th-hero-wrapper.hero-2 {
    background: white !important;
    background-color: white !important;
}

section.th-hero-wrapper {
    background: white !important;
    background-color: white !important;
}

#hero {
    background: white !important;
    background-color: white !important;
}

.th-hero-wrapper.hero-2#hero {
    background: white !important;
    background-color: white !important;
}

.th-hero-wrapper::before,
.th-hero-wrapper::after {
    display: none !important;
    content: none !important;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-style2 {
    padding: 0 0 0 20px !important;
    margin: 0 !important;
    position: relative;
    z-index: 3;
}

.hero-style2 h1, .hero-style2 h2, .hero-style2 h3, .hero-style2 h4, .hero-style2 h5, .hero-style2 h6 {
    margin-top: 0 !important;
}

.hero-style2 > :first-child {
    margin-top: 0 !important;
    padding-top: 20px !important;
}

.th-hero-wrapper * {
    margin-top: 0 !important;
}

.sub-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
    background: rgba(25, 25, 112, 0.1);
    padding: 12px 25px;
    border-radius: 30px;
    width: fit-content;
    color: #1a1a6b;
}

.hero-title2 {
    font-size: 3.8rem;
    margin: 0 0 25px 0;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.title1 {
    display: block;
    font-weight: 800;
    color: #1a1a6b;
}

.title2 {
    display: block;
    font-weight: 600;
    color: #f39c12;
}

.line-text {
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 2.5rem;
}

.synergy-text {
    font-size: 2.2rem;
    font-weight: 400;
    color: #1a1a6b;
}

.line-text::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    z-index: -1;
    border-radius: 3px;
}
.hero-text {
    color: #000 !important;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

.desc {
    color: #000 !important;
}

.hero-text.desc {
    color: #000 !important;
}

.btn-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: flex-start;
}

.th-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color) !important;
    color: white !important;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(25, 25, 112, 0.4) !important;
    position: relative;
    overflow: hidden;
}

.th-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
}

.th-btn:hover::before {
    left: 100%;
}

.th-btn:hover {
    background: #1a1a6b !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(25, 25, 112, 0.5) !important;
}

.th-btn.style4 {
    background: transparent !important;
    border: 3px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: 0 6px 20px rgba(25, 25, 112, 0.1) !important;
}

.th-btn.style4:hover {
    background: rgba(25, 25, 112, 0.1) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(25, 25, 112, 0.15) !important;
}
.hero-img {
    background: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.hero-img div {
    background: none !important;
}

.hero-img img {
    max-width: 100%;
    height: auto;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

/* Quality Section */
.quality-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.img-box1 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    transform: scale(0.85);
    transform-origin: top left;
}

.img-box1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.img-box1:hover .img1 img {
    transform: scale(1.05);
}

.about-info {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    color: #333;
    padding: 5px;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 15vw;
    height: 15vw;
    min-width: 100px;
    min-height: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.box-text {
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
    color: white;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.box-review {
    display: none;
}

.box-link {
    color: #1a1a6b;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    justify-content: center;
    line-height: 1.2;
}

.box-link:hover {
    color: #f39c12;
    transform: scale(1.05);
}

.title-area {
    margin-bottom: 30px;
    text-align: left;
}

.title-area h4.sec-title {
    font-size: 1.4rem;
    color: #1a1a6b;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    display: block;
    text-align: left;
}

.title-area h4.sec-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: none;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #f39c12, #e67e22);
    border-radius: 2px;
}

.sec-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.7rem;
    text-align: left;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.btn-wrapper {
    margin-top: 20px;
    text-align: left;
}

.btn-wrapper .th-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
    margin-top: 25px;
}

/* Ensure two columns on desktop */
@media (min-width: 992px) {
    .quality-content {
        grid-template-columns: 1fr 1fr !important;
    }
}

.quality-text {
    order: 1;
}

.quality-description {
    order: 2;
}

.quality-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.quality-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #1a1a6b, #6fc276);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.quality-card:hover::before {
    transform: scaleX(1);
}

.quality-card h3 {
    color: #1a1a6b;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.rating {
    font-size: 1.3rem;
    margin: 15px 0;
    color: #f39c12;
}

.phone-link {
    margin-top: 20px;
}

.phone-link a {
    color: #1a1a6b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link a:hover {
    color: #f39c12;
}

.quality-description {
    color: #666;
    line-height: 1.9;
}/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(243, 156, 18, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.services-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(25, 25, 112, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}
.services-section .sec-title {
    color: #1a1a6b;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.services-section .sec-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #f39c12, #e67e22);
    border-radius: 3px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.box-icon {
    margin-bottom: 20px;
}

.box-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.box-title {
    margin-bottom: 15px;
}

.box-title a {
    color: #1a1a6b;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
}

.box-title a:hover {
    color: #f39c12;
}

.box-text {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgb(25, 25, 112) 0%, rgb(111, 194, 118) 100%);
    color: white;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cta-card {
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.sec-title {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.th-btn.shadow-1 {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.th-btn.shadow-1:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.choose-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.box-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #1a1a6b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
}

.media-body .box-title {
    color: #1a1a6b;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.media-body .box-text {
    color: #666;
    line-height: 1.6;
}

.why-us-image img {
    max-width: 100%;
    border-radius: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #1a1a6b;
    color: white;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    margin-bottom: 30px;
}

.accordion-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.accordion-header {
    width: 100%;
}

.accordion-button {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: white;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button::after {
    content: "▼";
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.accordion-button.collapsed::after {
    transform: rotate(-90deg);
}

.accordion-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.accordion-collapse {
    transition: all 0.3s ease;
}

.accordion-body {
    background: rgba(0, 0, 0, 0.2);
}

.accordion-body p {
    padding: 0 20px 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.ps-xxl-4 {
    padding-left: 2rem;
}

.faq-img1 {
    margin-top: 40px;
}

.faq-img1 img {
    max-width: 100%;
    border-radius: 8px;
}

/* People We Serve Section */
.people-serve-section {
    padding: 80px 0;
    text-align: center;
}

.th-slider {
    padding: 0 30px;
}

.swiper-slide {
    padding: 30px;
}

.brand-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.brand-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.brand-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center {
    text-align: center;
}

.title-area.text-center {
    margin-bottom: 50px;
}

/* Desktop Optimizations */
@media (min-width: 1200px) {
    .container {
        max-width: 1300px;
        padding: 0 30px;
    }
    
    .hero-title2 {
        font-size: 4.2rem;
    }
    
    .hero-text {
        font-size: 1.3rem;
        max-width: 100%;
    }
    
    .th-btn {
        padding: 18px 45px;
        font-size: 1.2rem;
    }
    
    .services-grid {
        gap: 50px;
    }
    
    .service-card {
        padding: 50px 40px;
    }
    
    .box-icon img {
        width: 100px;
        height: 100px;
    }
    
    .why-us-grid {
        gap: 60px;
    }
    
    .choose-feature {
        gap: 25px;
    }
    
    .box-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .media-body .box-title {
        font-size: 1.5rem;
    }
    
    .cta-grid {
        gap: 50px;
    }
    
    .cta-card {
        padding: 60px 40px;
    }
    
    .sec-title {
        font-size: 2.8rem;
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1199px) {
    .container {
        max-width: 900px;
    }
    
    .hero-title2 {
        font-size: 3.5rem;
    }
    
    .hero-text {
        font-size: 1.2rem;
    }
    
    .th-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
    
    .services-grid {
        gap: 40px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .box-icon img {
        width: 90px;
        height: 90px;
    }
    
    .why-us-grid {
        gap: 50px;
    }
    
    .choose-feature {
        gap: 20px;
    }
    
    /* Ensure two columns on tablets */
    .quality-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .about-info {
        padding: 15px;
    }
    
    .box-text {
        font-size: 1rem;
    }
    
    .sec-title {
        font-size: 1.8rem;
    }
    
    .th-hero-wrapper {
        padding: 60px 0 0 0;
        min-height: 400px;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title2 {
        font-size: 2.5rem;
    }
    
    .hero-text {
        max-width: 100%;
        font-size: 1rem;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .sub-title {
        font-size: 1.1rem;
        padding: 10px 20px;
        gap: 10px;
    }
    
    .quality-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .box-icon img {
        width: 70px;
        height: 70px;
    }
    
    .box-title a {
        font-size: 1.3rem;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-card {
        padding: 35px 25px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .choose-feature {
        gap: 15px;
    }
    
    .box-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .media-body .box-title {
        font-size: 1.2rem;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .accordion-button {
        padding: 15px;
        font-size: 1rem;
    }
    
    .people-serve-section {
        padding: 50px 0;
    }
    
    .swiper-slide {
        padding: 20px;
    }
    
    .brand-card {
        height: 80px;
        padding: 15px;
    }
    
    .brand-card img {
        max-height: 40px;
    }
}
