/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0c4da2;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 25px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        margin-bottom: 50px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }

    .section-padding {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
}

/* ===== TOP HEADER ===== */
.top-header {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0c4da2;
    letter-spacing: 1px;
}

.header-info {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
    white-space: nowrap;
}

.header-info-item i {
    color: #0c4da2;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .header-content {
        gap: 20px;
    }

    .header-info {
        gap: 25px;
    }

    .header-info-item {
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .header-content {
        gap: 15px;
    }

    .header-info {
        gap: 20px;
    }

    .header-info-item {
        font-size: 0.8rem;
    }

    .logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 12px 0;
    }

    .header-content {
        justify-content: center;
        gap: 15px;
    }

    .logo {
        font-size: 1.2rem;
        order: -1;
        width: 100%;
        text-align: center;
    }

    .header-info {
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .header-info-item {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .header-content {
        gap: 10px;
    }

    .header-info {
        gap: 10px;
        flex-direction: column;
    }

    .header-info-item {
        font-size: 0.7rem;
        justify-content: center;
    }

    .logo {
        font-size: 1rem;
    }
}

/* ===== NAVIGATION ===== */
nav {
    background: #0c4da2;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    height: 100%;
    align-items: center;
}

nav li {
    height: 100%;
    display: flex;
    align-items: center;
}

nav a {
    color: white;
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

nav a:hover,
nav a.active {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: white;
}

.quote-btn {
    background: white;
    color: #0c4da2;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.quote-btn:hover {
    background: #f0f0f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    color: white;
    font-size: 1.5rem;
    padding: 0 20px;
    height: 70px;
    align-items: center;
}

@media (max-width: 1200px) {
    .nav-wrapper {
        padding: 0 20px;
        height: 60px;
    }

    nav a {
        padding: 0 18px;
        font-size: 0.9rem;
    }

    .quote-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    nav li {
        height: 60px;
    }
}

@media (max-width: 992px) {
    .nav-wrapper {
        padding: 0 15px;
        height: 55px;
    }

    nav a {
        padding: 0 15px;
        font-size: 0.85rem;
    }

    .quote-btn {
        padding: 9px 18px;
        font-size: 0.75rem;
    }

    nav li {
        height: 55px;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        padding: 0 10px;
        height: 50px;
    }

    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #0c4da2;
        gap: 0;
        height: auto;
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        width: 100%;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav a {
        padding: 15px 20px;
        border-bottom: none;
        border-left: 4px solid transparent;
        font-size: 0.9rem;
    }

    nav a:hover,
    nav a.active {
        background: rgba(0, 0, 0, 0.1);
        border-bottom: none;
        border-left-color: white;
    }

    .quote-btn {
        width: calc(100% - 40px);
        margin: 10px 20px;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .nav-wrapper {
        height: 45px;
    }

    nav a {
        padding: 12px 15px;
        font-size: 0.8rem;
    }

    .quote-btn {
        font-size: 0.7rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('images/hero-bg.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-btn {
    background: #1e73be;
    color: white;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    background: #0c4da2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
    .hero {
        height: 500px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero {
        height: 450px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 350px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-btn {
        padding: 11px 25px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 280px;
    }

    .hero-content {
        padding: 15px;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}

/* ===== BANNER (ABOUT, SERVICES, BLOG, CONTACT) ===== */
.banner {
    height: 350px;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 30px;
}

.banner h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: white;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

@media (max-width: 992px) {
    .banner {
        height: 300px;
    }

    .banner h1 {
        font-size: 2.4rem;
    }

    .breadcrumb {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .banner {
        height: 250px;
        padding: 20px;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .banner {
        height: 200px;
        padding: 15px;
    }

    .banner h1 {
        font-size: 1.5rem;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.service-card-image {
    height: 250px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #0c4da2, #1e73be);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #0c4da2;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card-btn {
    color: #0c4da2;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card-btn:hover {
    color: #1e73be;
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .services-grid {
        gap: 25px;
    }

    .service-card-image {
        height: 220px;
    }

    .service-card-content {
        padding: 25px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card-image {
        height: 200px;
        font-size: 2.5rem;
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }

    .service-card-image {
        height: 200px;
        font-size: 2.8rem;
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .service-card-btn {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .service-card-image {
        height: 180px;
        font-size: 2.2rem;
    }

    .service-card-content {
        padding: 15px;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
}

/* ===== TWO COLUMN SECTION ===== */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.two-column-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.two-column-image img {
    width: 100%;
    height: auto;
    display: block;
}

.two-column-content h2 {
    font-size: 2rem;
    color: #0c4da2;
    margin-bottom: 20px;
    font-weight: 700;
}

.two-column-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.two-column-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.two-column-content li {
    color: #666;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
}

.two-column-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e73be;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 1200px) {
    .two-column {
        gap: 40px;
    }

    .two-column-content h2 {
        font-size: 1.8rem;
    }

    .two-column-content p {
        font-size: 0.9rem;
    }

    .two-column-content li {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .two-column {
        gap: 30px;
    }

    .two-column-content h2 {
        font-size: 1.6rem;
    }

    .two-column-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .two-column-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .two-column-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .two-column-content li {
        padding: 8px 0;
        padding-left: 25px;
        font-size: 0.85rem;
    }

    .two-column-content li:before {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .two-column-content h2 {
        font-size: 1.3rem;
    }

    .two-column-content p {
        font-size: 0.8rem;
    }

    .two-column-content li {
        font-size: 0.8rem;
        padding-left: 20px;
    }
}

/* ===== BLOG GRID ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
}

.blog-date {
    color: #1e73be;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.3rem;
    color: #0c4da2;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.blog-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-card-btn {
    color: #1e73be;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-card-btn:hover {
    color: #0c4da2;
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .blog-grid {
        gap: 25px;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card h3 {
        font-size: 1.2rem;
    }

    .blog-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card h3 {
        font-size: 1.1rem;
    }

    .blog-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card h3 {
        font-size: 1.1rem;
    }

    .blog-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 15px;
    }

    .blog-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .blog-card p {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .blog-date {
        font-size: 0.75rem;
    }

    .blog-card-btn {
        font-size: 0.75rem;
    }
}

/* ===== TEAM GRID ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.team-member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1e73be;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #0c4da2;
    margin-bottom: 8px;
    font-weight: 700;
}

.team-member p {
    color: #1e73be;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .team-grid {
        gap: 25px;
    }

    .team-member-image {
        width: 130px;
        height: 130px;
    }

    .team-member h3 {
        font-size: 1.2rem;
    }

    .team-member p {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .team-grid {
        gap: 20px;
    }

    .team-member-image {
        width: 120px;
        height: 120px;
    }

    .team-member h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-member {
        padding: 20px;
    }

    .team-member-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .team-member h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .team-member p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .team-member {
        padding: 15px;
    }

    .team-member-image {
        width: 90px;
        height: 90px;
    }

    .team-member h3 {
        font-size: 0.95rem;
    }

    .team-member p {
        font-size: 0.75rem;
    }
}

/* ===== MISSION VISION SECTION ===== */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-vision-box {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #1e73be;
}

.mission-vision-icon {
    font-size: 3rem;
    color: #0c4da2;
    margin-bottom: 20px;
}

.mission-vision-box h3 {
    font-size: 1.5rem;
    color: #0c4da2;
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-vision-box p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

@media (max-width: 1200px) {
    .mission-vision {
        gap: 40px;
    }

    .mission-vision-box {
        padding: 35px;
    }

    .mission-vision-icon {
        font-size: 2.5rem;
    }

    .mission-vision-box h3 {
        font-size: 1.3rem;
    }

    .mission-vision-box p {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .mission-vision {
        gap: 30px;
    }

    .mission-vision-box {
        padding: 30px;
    }

    .mission-vision-box h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mission-vision-box {
        padding: 25px;
    }

    .mission-vision-icon {
        font-size: 2.2rem;
    }

    .mission-vision-box h3 {
        font-size: 1.1rem;
    }

    .mission-vision-box p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .mission-vision-box {
        padding: 20px;
    }

    .mission-vision-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .mission-vision-box h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .mission-vision-box p {
        font-size: 0.8rem;
    }
}

/* ===== CONTACT FORM ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-box {
    background: linear-gradient(135deg, #0c4da2, #1e73be);
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info-box p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    font-size: 1.8rem;
    color: #0c4da2;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e73be;
    box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: #1e73be;
    color: white;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #0c4da2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .contact-wrapper {
        gap: 40px;
    }

    .contact-info-box {
        padding: 35px;
    }

    .contact-form {
        padding: 35px;
    }

    .contact-form h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .form-group {
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        gap: 30px;
    }

    .contact-info-box {
        padding: 30px;
        margin-bottom: 20px;
    }

    .contact-info-box h3 {
        font-size: 1.2rem;
    }

    .contact-info-box p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info-box {
        padding: 25px;
        margin-bottom: 15px;
    }

    .contact-info-box h3 {
        font-size: 1.1rem;
    }

    .contact-info-box p {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-form h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .form-submit {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact-info-box {
        padding: 20px;
    }

    .contact-info-box h3 {
        font-size: 1rem;
    }

    .contact-info-box p {
        font-size: 0.8rem;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form h2 {
        font-size: 1.2rem;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.85rem;
    }

    .form-group textarea {
        min-height: 80px;
    }

    .form-submit {
        padding: 11px 20px;
        font-size: 0.8rem;
    }
}

/* ===== MAP SECTION ===== */
.map-section {
    margin: 60px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-section iframe {
    width: 100%;
    height: 500px;
    border: none;
}

@media (max-width: 1200px) {
    .map-section {
        margin: 50px 0;
    }

    .map-section iframe {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .map-section {
        margin: 40px 0;
    }

    .map-section iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .map-section {
        margin: 30px 0;
    }

    .map-section iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .map-section {
        margin: 20px 0;
    }

    .map-section iframe {
        height: 250px;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #0c4da2, #1e73be);
    color: white;
    padding: 60px 30px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 60px;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn {
    background: white;
    color: #0c4da2;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .cta-section {
        padding: 50px 30px;
        margin-bottom: 50px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .cta-section {
        padding: 40px 25px;
        margin-bottom: 40px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .cta-btn {
        padding: 11px 25px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 25px 15px;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }

    .cta-section p {
        font-size: 0.8rem;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
        width: 100%;
    }
}

/* ===== BLOG SIDEBAR ===== */
.blog-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.sidebar {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

.sidebar h3 {
    font-size: 1.3rem;
    color: #0c4da2;
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #1e73be;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.sidebar li:last-child {
    border-bottom: none;
}

.sidebar a {
    color: #666;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sidebar a:hover {
    color: #1e73be;
    padding-left: 10px;
}

.search-box {
    margin-bottom: 30px;
}

.search-box input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.search-box input:focus {
    outline: none;
    border-color: #1e73be;
}

.tag {
    display: inline-block;
    background: white;
    color: #666;
    padding: 8px 15px;
    border-radius: 4px;
    margin: 5px 5px 5px 0;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.tag:hover {
    background: #1e73be;
    color: white;
    border-color: #1e73be;
}

@media (max-width: 1200px) {
    .blog-wrapper {
        gap: 30px;
    }

    .sidebar {
        padding: 25px;
    }

    .sidebar h3 {
        font-size: 1.2rem;
    }

    .sidebar a {
        font-size: 0.9rem;
    }

    .tag {
        font-size: 0.8rem;
        padding: 7px 12px;
    }
}

@media (max-width: 992px) {
    .blog-wrapper {
        gap: 25px;
    }

    .sidebar {
        padding: 20px;
    }

    .sidebar h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .sidebar a {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .blog-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sidebar {
        padding: 20px;
    }

    .sidebar h3 {
        font-size: 1.1rem;
    }

    .sidebar li {
        padding: 10px 0;
    }

    .sidebar a {
        font-size: 0.85rem;
    }

    .search-box input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .tag {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}

@media (max-width: 576px) {
    .sidebar {
        padding: 15px;
    }

    .sidebar h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .sidebar li {
        padding: 8px 0;
        font-size: 0.85rem;
    }

    .sidebar a {
        font-size: 0.8rem;
    }

    .search-box input {
        padding: 10px;
        font-size: 0.85rem;
    }

    .tag {
        font-size: 0.7rem;
        padding: 5px 8px;
        margin: 4px 4px 4px 0;
    }
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(rgba(12, 77, 162, 0.9), rgba(12, 77, 162, 0.9)),
                url('images/footer-bg.png') center/cover no-repeat fixed;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    padding: 8px 0;
    font-size: 0.95rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: white;
    color: #0c4da2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column h3 {
        font-size: 1.1rem;
    }

    .footer-column p {
        font-size: 0.9rem;
    }

    .footer-column a {
        font-size: 0.9rem;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        gap: 20px;
    }

    .footer-column h3 {
        font-size: 1rem;
    }

    .footer-column p {
        font-size: 0.85rem;
    }

    .footer-column a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 15px;
        font-size: 0.8rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.gray-section {
    background: #f9f9f9;
}

.white-section {
    background: white;
}

.text-center {
    text-align: center;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.mt-20 {
    margin-top: 20px;
}