/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Global Anchor Styles - Remove all underlines */
a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

:root {
    --primary-color: #0074e4;
    --secondary-color: #2b3170;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --dark-gray: #555;
    --white: #ffffff;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header .container {
    max-width: 1140px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    padding-left: 10px;
    position: relative;
}

.logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 30px;
}

.logo img {
    height: 35px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin-right: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.dropdown a i {
    font-size: 0.7rem;
    margin-left: 5px;
}

.contact-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-size: 0.85rem;
    display: inline-block;
    text-decoration: none;
    background-color: #e55a2a;
}

.contact-btn:hover {
    background: #d24a1b;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: var(--white);
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

.hero-container {
    display: flex;
    justify-content: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-card {
    background-color: #2b3170;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    width: 100%; /* Changed to 100% to make the card full width */
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 80px;
    margin-bottom: 30px;
    color: #b9d1e5;
    font-weight: 700;
    line-height: 1.1;
}

.hero-content p {
    font-size: 14px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 450px;
    line-height: 1.5;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-btn {
    background-color: #f7c6d0;
    color: #000;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.3s ease;
}

.hero-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hero-btn:hover {
    background-color: #e9b4c1;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

/* Footer Styles */
.footer {
    color: var(--text-color);
}

.footer-top {
    background: #004D71; /* Deep blue color as shown in the image */
    color: var(--white);
    padding: 1.5rem 0;
}

.footer-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
}

.footer-logo img {
    height: 40px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    margin: 0 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: #0074e4;
    transform: translateY(-3px);
    text-decoration: none;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--white);
    font-size: 0.9rem;
}

.lang-switcher i {
    font-size: 0.8rem;
}

.footer-nav {
    padding: 1.5rem 0;
    background: var(--white);
    border-bottom: 1px solid #eaeaea;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-nav a:hover,
.footer-nav a.active {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: var(--white);
}

.copyright p {
    font-size: 0.85rem;
    color: var(--text-color);
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.powered-by span {
    font-size: 0.8rem;
    color: #6c757d;
}

.powered-by img {
    height: 35px;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-top .container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
        gap: 1rem;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-card {
        padding: 30px;
    }
    
    .hero-content h1 {
        font-size: 60px;
    }
    
    .hero-content p {
        font-size: 12px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Hide contact button on mobile */
    .contact-btn {
        display: none;
    }
    
    /* Make logo smaller on mobile */
    .logo img {
        height: 28px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 50px;
    }
    
    /* Further reduce logo size on smaller devices */
    .logo img {
        height: 24px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

/* Bottom Footer Sections */
.footer > .container {
    max-width: 1000px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.about-left {
    flex: 0 0 35%;
}

.about-right {
    flex: 0 0 60%;
}

.about-badge {
    background-color: #FF8A00;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 50px;
    margin-bottom: 20px;
    display: inline-block;
}

.about-title {
    color: #2b3170;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.about-btn {
    background-color: transparent;
    color: #2b3170;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2b3170;
    border-radius: 50px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.about-btn:hover {
    background-color: #2b3170;
    color: white;
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* About Section Responsive */
@media (max-width: 991px) {
    .about-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-text {
        font-size: 15px;
    }
}

/* Services Cards Section */
.services-cards {
    padding: 80px 0;
}

.services-cards .container {
    max-width: 1000px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: white;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.card-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0088CC;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background-color: #006699;
    transform: scale(1.1);
}

/* Responsive Services Cards */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        height: 320px;
    }
    
    .card-content h3 {
        font-size: 22px;
    }
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.blog-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-badge {
    background-color: #FF8A00;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
    display: inline-block;
}

.blog-title {
    font-size: 36px;
    font-weight: 700;
    color: #2b3170;
    margin-bottom: 25px;
}

.blog-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tab-btn {
    background-color: transparent;
    border: 1px solid #222;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: #222;
    color: white;
}

.tab-btn:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.05);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #2b3170;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
}

.blog-info {
    padding: 20px;
}

.blog-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.blog-card-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.blog-card-title a {
    color: #333;
    text-decoration: none;
}

.blog-card:hover .blog-card-title {
    color: #007bff;
    text-decoration: none;
}

/* Responsive Blog */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-title {
        font-size: 28px;
    }
    
    .blog-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-badge {
    background-color: #FF8A00;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
    display: inline-block;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 12px;
    color: #222;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Active state */
.faq-item.active {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-icon {
    background-color: #FF8A00;
}

.faq-item.active .faq-icon i {
    color: white;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* Responsive FAQ */
@media (max-width: 991px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-title {
        font-size: 30px;
    }
}

/* About Page Styles */
.about-hero {
    padding: 20px 0;
    position: relative;
    background-color: transparent;
}

.about-hero::before {
    display: none;
}

.about-hero-content {
    text-align: left;
    padding: 0;
}

.breadcrumbs {
    margin-top: 0;
    color: #666;
}

.breadcrumbs a {
    color: #0074e4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #005bb1;
}

.breadcrumbs span {
    color: #666;
}

@media (max-width: 767px) {
    .about-hero {
        padding: 15px 0;
    }
}

/* Blog Listing Page Styles */
.blog-listing-section {
    padding: 80px 0;
}

.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background: var(--white);
    border: 1px solid #e0e0e0;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.search-box {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    overflow: hidden;
}

.search-box input {
    border: none;
    padding: 10px 15px;
    outline: none;
    width: 200px;
}

.search-box button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.blog-listing-grid {
    margin-bottom: 40px;
}

.blog-excerpt {
    margin: 15px 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.read-more i {
    margin-left: 8px;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-color);
    background: var(--white);
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.pagination a.active, .pagination a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination a.next {
    width: auto;
    padding: 0 20px;
}

.pagination a.next i {
    margin-left: 8px;
}

/* Blog Detail Page Styles */
.blog-detail-section {
    padding: 80px 0;
}

.blog-detail-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.blog-meta-item i {
    color: var(--primary-color);
}

.blog-featured-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.blog-content {
    line-height: 1.8;
}

.blog-content h2, 
.blog-content h3,
.blog-title,
.recent-posts h4,
.sidebar-widget h3 {
    text-decoration: none;
}

.blog-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.blog-content p {
    margin-bottom: 20px;
    color: #555;
}

.blog-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.blog-content ul li {
    margin-bottom: 10px;
    color: #555;
}

.blog-content blockquote {
    background: #f9f9f9;
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    position: relative;
}

.blog-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-weight: 500;
    font-style: normal;
}

.blog-share {
    display: flex;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.blog-share span {
    margin-right: 15px;
    font-weight: 500;
}

.social-share {
    display: flex;
    gap: 10px;
}

.social-share a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    transition: all 0.3s;
}

.social-share a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.blog-sidebar .sidebar-widget {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.recent-posts {
    list-style: none;
    padding: 0;
}

.recent-posts li {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.recent-posts li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.recent-posts a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: var(--text-color);
}

.recent-posts img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.recent-posts h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.recent-posts span {
    font-size: 0.85rem;
    color: #666;
}

.recent-posts a:hover h4 {
    color: var(--primary-color);
}

.categories {
    list-style: none;
    padding: 0;
}

.categories li {
    margin-bottom: 12px;
}

.categories a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
}

.categories a:hover {
    color: var(--primary-color);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags a {
    display: inline-block;
    padding: 5px 12px;
    background: var(--white);
    border-radius: 5px;
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.tags a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.related-posts-section {
    padding: 60px 0 80px;
    background: #f9f9f9;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    text-decoration: none;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.info-details h4 {
    margin-bottom: 8px;
    color: var(--text-color);
}

.info-details p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-form {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 40px;
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

.map-section {
    height: 450px;
}

.map-container {
    height: 100%;
}

.map-container iframe {
    filter: grayscale(1);
    transition: filter 0.3s;
}

.map-container iframe:hover {
    filter: grayscale(0);
}

/* Services Page Styles */
.services-intro-section {
    padding: 60px 0;
    text-align: center;
}

.services-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #666;
}

.main-services-section {
    padding: 0 0 80px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-item.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-item.reverse .service-content {
    direction: ltr;
}

.service-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--text-color);
}

.service-content p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #555;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-features li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.service-btn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.service-btn:hover {
    background: var(--secondary-color);
}

.service-btn:hover i {
    transform: translateX(5px);
}

.why-choose-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.why-choose-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.testimonial-section {
    padding: 80px 0;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-header h2 {
    font-size: 2rem;
    color: var(--text-color);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(0, 102, 204, 0.1);
}

.testimonial-text {
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.author-info span {
    font-size: 0.85rem;
    color: #666;
}

/* Service Detail Page Styles */
.service-detail-section {
    padding: 80px 0;
}

.service-detail-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.service-featured-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.service-featured-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.service-featured-image:hover img {
    transform: scale(1.05);
}

.service-main-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-main-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 20px;
    color: var(--text-color);
}

.service-main-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-benefits li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s;
}

.service-benefits li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.benefit-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.branch-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s;
}

.branch-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.branch-item h4 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.branch-item p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #666;
}

.branch-item i {
    color: var(--primary-color);
}

.service-cta {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    padding: 40px;
    margin-top: 50px;
    color: var(--white);
    text-align: center;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-btn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta-btn:hover i {
    transform: translateX(5px);
}

.service-sidebar .sidebar-widget {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.service-nav ul {
    list-style: none;
    padding: 0;
}

.service-nav li {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.service-nav li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.service-nav a {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.service-nav li.active a,
.service-nav a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.opening-hours ul {
    list-style: none;
    padding: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.opening-hours li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info li:last-child {
    margin-bottom: 0;
}

.contact-info i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.download-btn:hover {
    background: var(--secondary-color);
}

.related-services-section {
    padding: 60px 0 80px;
    background: #f9f9f9;
}

.related-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.related-service-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.related-service-item:hover {
    transform: translateY(-10px);
}

.related-service-item .service-image {
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.related-service-item .service-info {
    padding: 25px;
}

.related-service-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-color);
}

.related-service-item p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles for New Pages */
@media (max-width: 1024px) {
    .blog-detail-container,
    .service-detail-container {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-filters {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .filter-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .related-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .blog-listing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .pagination a.next {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* About Main Section Styles */
.about-main-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-main-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-main-content {
    flex: 1;
}

.about-main-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-main-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.about-main-image {
    flex: 1;
    position: relative;
}

.about-main-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-main-image img:hover {
    transform: translateY(-10px);
}

/* Values Section Styles - Updated */
.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.text-left {
    text-align: left;
}

.section-header.text-left h2 {
    text-align: left;
    margin-bottom: 20px;
    color: #333;
}

.section-header.text-left p {
    text-align: left;
    margin: 0 0 40px 0;
    line-height: 1.8;
}

.values-card {
    background-color: #005684;
    padding: 60px;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-columns {
    display: flex;
    justify-content: space-between;
}

.value-column {
    flex: 1;
    padding: 0 30px;
    position: relative;
}

.value-column:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}

.value-number {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.value-column h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.value-column p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Styles for Values Section */
@media (max-width: 991px) {
    .values-columns {
        flex-direction: column;
    }
    
    .value-column {
        padding: 30px 0;
    }
    
    .value-column:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .value-column:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .values-section {
        padding: 50px 0;
    }
    
    .values-card {
        padding: 30px 20px;
    }
    
    .section-header.text-left h2 {
        font-size: 26px;
    }
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.member-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links a.linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e1e1e1;
    color: #333;
    transition: all 0.3s ease;
}

.social-links a.linkedin:hover {
    background-color: #0077b5;
    color: #fff;
    border-color: #0077b5;
}

/* Responsive styles for Team Section */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-grid {
        gap: 20px;
    }
    
    .member-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        height: 300px;
    }
}

/* Contact Hero Section Styles */
.contact-hero {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.contact-hero .breadcrumbs a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-hero .breadcrumbs span {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 80px 0;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

/* Contact Cards Section Styles */
.contact-cards-section {
    padding: 50px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon svg {
    width: 60px;
    height: 60px;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.contact-card p {
    color: #666;
    margin: 0;
}

.contact-card p.highlight {
    color: #0074e4;
    font-weight: 600;
    font-size: 1.2em;
}

@media (max-width: 991px) {
    .contact-cards {
        flex-wrap: wrap;
    }
    
    .contact-card {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Branch Locations Section Styles */
.branch-locations-section {
    padding: 0;
    background-color: transparent;
    color: #fff;
}

.branch-locations-content {
    display: flex;
    gap: 0;
}

.branch-info-card {
    flex: 1;
    background-color: #004c8c;
    padding: 20px 25px;
    height: 400px;
    overflow: hidden;
}

.branch-info-item {
    padding: 10px 0;
}

.branch-info-item h3 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}

.branch-info-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 2px 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.branch-info-card hr {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0;
}

.branch-map {
    flex: 1.2;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
}

@media (max-width: 991px) {
    .branch-locations-content {
        flex-direction: column;
    }
    
    .branch-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .branch-locations-section {
        padding: 0;
    }
    
    .branch-info-card {
        height: auto;
    }
    
    .branch-info-item {
        padding: 15px 0;
    }
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1100;
    border-radius: 6px;
    padding: 10px 0;
    margin-top: 0px;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Added triangle pointer to dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

/* Blog Detail Hero Banner with Text Overlay */
.blog-hero-banner {
    position: relative;
    width: 100%;
    max-width: 1140px;
    height: 400px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.blog-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.blog-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: white;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
}

.blog-hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.blog-hero-date {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-hero-date i {
    font-size: 14px;
}

/* Blog Detail Page Breadcrumb */
.blog-breadcrumb {
    padding: 15px 0;
    margin-top: 70px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.blog-breadcrumb .container {
    display: flex;
    align-items: center;
    max-width: 1140px;
}

.blog-breadcrumb a {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

.blog-breadcrumb span {
    color: var(--dark-gray);
    font-size: 14px;
    margin: 0 5px;
}

.blog-breadcrumb .current {
    color: var(--text-color);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}

/* Updated Blog Detail Content Layout */
.blog-detail-fullwidth {
    padding: 40px 0 60px;
}

.blog-detail-fullwidth .container {
    max-width: 1140px;
}

.blog-detail-content {
    background: white;
    padding: 0;
    margin-top: 40px;
}

.blog-detail-content .blog-meta {
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-detail-content .blog-meta .blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.blog-detail-content .blog-meta .blog-meta-item i {
    color: var(--primary-color);
}

.blog-detail-content .blog-content {
    font-size: 16px;
    line-height: 1.8;
}

.blog-detail-content .blog-content h2 {
    margin: 40px 0 20px;
    font-size: 24px;
    color: var(--secondary-color);
}

.blog-detail-content .blog-content p {
    margin-bottom: 20px;
}

.blog-detail-content .blog-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-detail-content .blog-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 4px solid var(--primary-color);
    background-color: #f5f9ff;
    font-style: italic;
}

.blog-share {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-share span {
    font-weight: 600;
}

.blog-share .social-share {
    display: flex;
    gap: 10px;
}

.blog-share .social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.blog-share .social-share a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Media Queries for Blog Detail */
@media (max-width: 767px) {
    .blog-hero-banner {
        height: 300px;
    }
    
    .blog-hero-content {
        padding: 20px;
    }
    
    .blog-hero-content h1 {
        font-size: 24px;
    }
    
    .blog-breadcrumb {
        padding: 10px 0;
    }
    
    .blog-breadcrumb .current {
        max-width: 200px;
    }
    
    .blog-detail-content {
        padding: 30px 0;
        margin-top: 20px;
    }
    
    .blog-detail-content .blog-content h2 {
        font-size: 22px;
        margin: 30px 0 15px;
    }
}

/* Services Boxes Section */
.services-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0 40px;
}

.service-box {
    background-color: #004c71;
    border-radius: 8px;
    padding: 25px;
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100px;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-number {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1;
    color: white;
}

.service-box-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .services-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-boxes {
        grid-template-columns: 1fr;
    }
    
    .service-box {
        padding: 20px;
    }
    
    .service-number {
        font-size: 28px;
    }
}

/* Photo Gallery Styles */
.gallery-title {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #333;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.lightbox-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-controls {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10000;
}

.prev, .next {
    color: white;
    font-size: 35px;
    cursor: pointer;
    transition: 0.3s;
    padding: 10px;
    user-select: none;
}

.prev:hover, .next:hover {
    color: #0074e4;
}

/* Responsive Gallery */
@media (max-width: 991px) {
    .photo-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .photo-gallery {
        grid-template-columns: 1fr;
    }
}

/* Contact Page with Blog-detail Structure */
.blog-detail-content .contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0 50px;
    flex-wrap: wrap;
}

.blog-detail-content .contact-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
    min-width: 240px;
}

.blog-detail-content .branch-locations-content {
    display: flex;
    gap: 0;
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.blog-detail-content .faq-header {
    margin: 60px 0 40px;
    text-align: center;
}

.blog-detail-content .faq-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.blog-detail-content .faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .blog-detail-content .contact-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-detail-content .contact-card {
        width: 100%;
        max-width: 350px;
    }
    
    .blog-detail-content .branch-locations-content {
        flex-direction: column;
    }
    
    .blog-detail-content .faq-container {
        grid-template-columns: 1fr;
    }
} 