:root {
    --navy: #0a2540;
    --orange: #ff6b00;
    --white: #ffffff;
    --grey: #f4f7f9;
    --text: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; color: var(--text); line-height: 1.6; background-color: var(--white); overflow-x: hidden; }
.container { max-width: 1200px; margin: auto; padding: 0 20px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* Top Bar */
.top-bar { background: var(--navy); color: white; padding: 10px 0; font-size: 14px; }
.contact-info span { margin-right: 20px; }
.social-links i { margin-left: 15px; cursor: pointer; }

/* Navbar */
.navbar { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 60px; }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 700; font-size: 15px; }
.nav-btn { background: var(--orange); color: white !important; padding: 10px 20px; border-radius: 4px; }

/* Hero */
.hero { height: 80vh; background: linear-gradient(rgba(10, 37, 64, 0.7), rgba(10, 37, 64, 0.8)), url('images/2.jpg') center/cover; display: flex; align-items: center; color: white; }
.hero-tag { background: var(--orange); padding: 5px 15px; font-weight: bold; border-radius: 3px; font-size: 13px; }
.hero h1 { font-family: 'Montserrat'; font-size: 3.5rem; margin: 20px 0; line-height: 1.2; }
.hero h1 span { color: var(--orange); }
.hero-p { max-width: 600px; font-size: 1.1rem; margin-bottom: 30px; }
.btn-primary { background: var(--orange); color: white; padding: 15px 35px; text-decoration: none; font-weight: bold; border-radius: 4px; display: inline-block; }
.btn-secondary { background: transparent; border: 2px solid white; color: white; padding: 13px 35px; text-decoration: none; font-weight: bold; border-radius: 4px; margin-left: 15px; display: inline-block; }

/* Trust Bar */
.trust-bar { background: var(--grey); padding: 40px 0; border-bottom: 5px solid var(--orange); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
.trust-item i { font-size: 30px; color: var(--orange); margin-bottom: 10px; }

/* Services */
.services { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 span { color: var(--orange); }
.orange-line { width: 60px; height: 4px; background: var(--orange); margin: 20px auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { padding: 40px; border: 1px solid #eee; transition: 0.3s; text-align: center; }
.service-card:hover { border-bottom: 5px solid var(--orange); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.s-icon { font-size: 40px; color: var(--navy); margin-bottom: 20px; }
.read-more { color: var(--orange); text-decoration: none; font-weight: bold; margin-top: 15px; display: inline-block; }

/* About Long */
.about-long { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img img { width: 100%; border-radius: 8px; }
.about-text h2 span { color: var(--orange); }

/* Footer */
footer { background: var(--navy); color: white; padding: 70px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-logo img { height: 50px; margin-bottom: 20px; }
.footer-links ul { list-style: none; margin-top: 15px; }
.footer-links li { margin-bottom: 10px; color: #ccc; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .about-grid { grid-template-columns: 1fr; }
    .hide-mobile { display: none; }
}