 :root {
            --primary-dark: #0a2540;
            --primary: #0077b6;
            --primary-light: #00b4d8;
            --accent: #ffc800;
            --light: #f8f9fa;
            --dark: #1a2a40;
            --text: #333;
            --text-light: #7a7a7a;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--light);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Marquee */
 .marquee-container {
     background: var(--primary);
     padding: 8px 0;
     overflow: hidden;
}
 .marquee {
     display: flex;
     white-space: nowrap;
     animation: marquee 30s linear infinite;
}
 @keyframes marquee {
     0% {
         transform: translateX(100%);
    }
     100% {
         transform: translateX(-100%);
    }
}
 .marquee span {
     padding: 0 20px;
     color: #fff;
     font-size: 0.9rem;
     display: flex;
     align-items: center;
}
 .marquee span i {
     margin-right: 8px;
     color: var(--light);
}

        /* Header - Fixed Responsive Navigation */
        header {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 15px;
            position: relative;
        }

        .logo {
            display: flex;
            flex:1;
            align-items: center;
            gap: 10px;
            z-index: 1001;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-dark);
        }

        .logo-text span {
            color: var(--primary);
        }

        /* Navigation Links */
        .nav-links-container {
            display: flex;
            align-items: center;
            transition: var(--transition);
        }

        .nav-links {
            display: flex;
            gap: 4px;
            list-style: none;
            margin-right: 20px;
        }

        .nav-links li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 10px 20px;
            border-radius: 30px;
            transition: var(--transition);
            display: block;
        }

        .nav-links li a:hover, 
        .nav-links li a.active {
            background: var(--primary);
            color: #fff;
        }

        .btn-quote {
            background: var(--primary);
            color: #fff;
            padding: 10px 22px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 2px;
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .btn-quote:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,119,182,0.2);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background-color: var(--primary-dark);
            border-radius: 2px;
            transition: all 0.3s ease;
            display: block;
        }

        /* Mobile Menu Styling */
        @media (max-width: 1024px) {
            .hamburger {
                display: flex;
            }
            
            .nav-links-container {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                max-width: 300px;
                background: #fff;
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 80px;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                z-index: 1000;
                transition: right 0.4s ease;
            }
            
            .nav-links-container.active {
                right: 0;
            }
            
            .nav-links {
                flex-direction: column;
                width: 100%;
                padding: 20px;
                margin: 0;
                gap: 5px;
            }
            
            .nav-links li {
                width: 100%;
            }
            
            .nav-links li a {
                border-radius: 8px;
                padding: 12px 15px;
                margin-bottom: 5px;
            }
            
            .btn-quote.desktop-only {
                display: none;
            }
            
            .btn-quote.mobile-only {
                display: inline-flex;
                margin: 20px auto;
                width: 90%;
                justify-content: center;
            }
        }

        .btn-quote.mobile-only {
            display: none;
        }

        @media (min-width: 1025px) {
            .btn-quote.desktop-only {
                display: inline-flex !important;
            }
        }


        body { font-family: 'Montserrat', sans-serif; background: #f8f9fa; color: #333; }
        .blog-hero { background: linear-gradient(135deg, #0a2540 0%, #0077b6 100%); color: #fff; padding: 45px 0 60px; text-align: center; }
        .blog-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
        .blog-hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto; }
        .blog-search-bar { max-width: 600px; margin: 30px auto 0; display: flex; gap: 10px; }
        .blog-search-bar input { flex: 1; padding: 12px 16px; border-radius: 8px; border: 1px solid #ccc; font-size: 1.1rem;  }
        .blog-search-bar button { background: #0077b6; color: #fff; border: none; border-radius: 8px; padding: 12px 24px; font-size: 1.1rem; cursor: pointer; transition: background 0.2s; }
        .blog-search-bar button:hover { background: #0a2540; }
        .blog-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 25px 0 0 0; }
        .blog-tag { background: #e3f2fd; color: #0077b6; border: none; border-radius: 20px; padding: 7px 18px; font-size: 1rem; cursor: pointer; transition: background 0.2s, color 0.2s; }
        .blog-tag.active, .blog-tag:hover { background: #0077b6; color: #fff; }
        .main-blog-section { display: flex; gap: 40px; max-width: 1400px; margin: 60px auto; align-items: flex-start; }
        .blog-cards { flex: 3; display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 40px; }
        .blog-card { background: #fff; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.10); padding: 0 0 36px 0; overflow: hidden; transition: 0.3s; display: flex; flex-direction: column; min-height: 520px; }
        .blog-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,119,182,0.18); }
        .blog-card img { width: 100%; height: 260px; object-fit: cover; }
        .blog-card-content { padding: 30px 30px 0 30px; flex: 1; display: flex; flex-direction: column; }
        .blog-card h3 { color: #0a2540; font-size: 1.5rem; margin-bottom: 14px; }
        .blog-card p { color: #7a7a7a; font-size: 1.08rem; margin-bottom: 18px; }
        .blog-card .blog-meta { font-size: 1rem; color: #0077b6; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
        .blog-card .blog-tags-list { margin-bottom: 10px; }
        .blog-card .blog-tag-chip { display: inline-block; background: #e3f2fd; color: #0077b6; border-radius: 12px; padding: 2px 10px; font-size: 0.95rem; margin-right: 6px; }
        .blog-card .author { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .blog-card .author img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid #0077b6; }
        .sidebar { flex: 1.2; background: #fff; border-radius: 20px; box-shadow: 0 6px 24px rgba(0,0,0,0.07); padding: 30px 24px; min-width: 320px; }
        .sidebar-section { margin-bottom: 36px; }
        .sidebar-section h4 { color: #0a2540; font-size: 1.15rem; font-weight: 700; margin-bottom: 18px; }
        .sidebar-latest-blog { display: flex; gap: 14px; margin-bottom: 18px; align-items: center; }
        .sidebar-latest-blog img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; }
        .sidebar-latest-blog-title { font-size: 1rem; color: #0077b6; font-weight: 600; }
        .sidebar-latest-blog-date { font-size: 0.92rem; color: #7a7a7a; }
        .pagination { display: flex; justify-content: center; gap: 10px; margin: 40px 0 0 0; }
        .pagination button { background: #fff; border: 1px solid #0077b6; color: #0077b6; border-radius: 8px; padding: 10px 22px; font-size: 1.1rem; cursor: pointer; transition: background 0.2s, color 0.2s; }
        .pagination button.active, .pagination button:hover { background: #0077b6; color: #fff; }
        /* Footer improvements */
        .footer-col h3 { margin-bottom: 18px; }
        .footer-col ul, .footer-about { margin-bottom: 0; }
        .footer-col .contact-info-rows li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; word-break: break-word; }
        .footer-col .contact-info-rows i { min-width: 22px; text-align: center; font-size: 1.1rem; margin-top: 3px; }
        .footer-col .contact-info-rows span { flex: 1; }
        /* Footer Links - Remove Underlines */
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none !important;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: var(--light);
            transform: translateX(5px);
            text-decoration: none !important;
        }
        .footer-social a {
            text-decoration: none !important;
        }
        /* Remove underlines from all footer links */
        footer a {
            text-decoration: none !important;
        }
        footer a:hover {
            text-decoration: none !important;
        }
        /* Comments section styles */
        .comments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; margin: 40px 0; }
        .comment-card { background: #fff; border-radius: 18px; box-shadow: 0 6px 24px rgba(0,0,0,0.08); padding: 28px 22px; display: flex; align-items: flex-start; gap: 18px; }
        .comment-avatar img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid #0077b6; }
        .comment-content { flex: 1; }
        .comment-name { font-weight: 700; color: #0a2540; margin-bottom: 6px; }
        .comment-text { color: #555; font-size: 1.05rem; }
        body {
     font-family: 'Montserrat', sans-serif;
     background: #f8f9fa;
     color: #333;
}
 .services-hero {
     background: linear-gradient(135deg, #0a2540 0%, #0077b6 100%);
     color: #fff;
     padding: 100px 0 60px;
     text-align: center;
}
 .services-hero h1 {
     font-size: 3rem;
     font-weight: 800;
     margin-bottom: 20px;
}
 .services-hero p {
     font-size: 1.2rem;
     max-width: 600px;
     margin: 0 auto;
}
 .services-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 40px;
     max-width: 1200px;
     margin: 60px auto;
}
 .service-card {
     background: #fff;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0,0,0,0.08);
     padding: 40px 30px;
     text-align: center;
     transition: 0.3s;
}
 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0,119,182,0.15);
}
 .service-icon {
     font-size: 2.5rem;
     color: #0077b6;
     margin-bottom: 18px;
}
 .service-card h3 {
     color: #0a2540;
     font-size: 1.5rem;
     margin-bottom: 15px;
}
 .service-card p {
     color: #7a7a7a;
     font-size: 1.05rem;
     margin-bottom: 20px;
}
 .service-card a {
     color: #0077b6;
     text-decoration: none;
     font-weight: 600;
     transition: color 0.2s;
}
 .service-card a:hover {
     color: #0a2540;
}
 .service-img {
     width: 100%;
     height: 140px;
     object-fit: cover;
     border-radius: 14px 14px 0 0;
     margin-bottom: 12px;
}
 .popular-services-section {
     background: #e3f2fd;
     padding: 4px 0 10px;
}
 .popular-services-grid {
     display: flex;
     gap: 30px;
     justify-content: center;
     flex-wrap: wrap;
     margin-top: 20px;
     padding-bottom: 30px;
}
 .popular-service-card {
     background: #fff;
     border-radius: 16px;
     box-shadow: 0 4px 16px rgba(0,0,0,0.07);
     padding: 24px 32px;
     display: flex;
     flex-direction: column;
     align-items: center;
     font-size: 1.1rem;
     color: #0077b6;
     font-weight: 600;
     min-width: 180px;
     transition: 0.2s;
}
 .popular-service-card i {
     font-size: 2rem;
     margin-bottom: 10px;
}
 .popular-service-card:hover {
     background: #0077b6;
     color: #fff;
}
 .latest-blogs-section {
     background: #f8f9fa;
     padding: 40px 0;
     padding-top: 0px;
}
 .latest-blogs-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
}
 .latest-blog-card {
     background: #fff;
     border-radius: 16px;
     box-shadow: 0 4px 16px rgba(0,0,0,0.07);
     padding: 0 0 18px 0;
     overflow: hidden;
     display: flex;
     flex-direction: column;
}
 .latest-blog-card img {
     width: 100%;
     height: 120px;
     object-fit: cover;
     border-radius: 16px 16px 0 0;
}
 .latest-blog-card-content {
     padding: 16px 18px 0 18px;
     flex: 1;
     display: flex;
     flex-direction: column;
}
 .latest-blog-card h4 {
     color: #0a2540;
     font-size: 1.1rem;
     margin-bottom: 8px;
}
 .latest-blog-card .blog-meta {
     font-size: 0.95rem;
     color: #0077b6;
     margin-bottom: 6px;
}
 .latest-blog-card a {
     color: #0077b6;
     text-decoration: none;
     font-weight: 600;
     margin-top: auto;
     transition: color 0.2s;
}
 .latest-blog-card a:hover {
     color: #0a2540;
}
/* Reviews grid for 4 at a time */
 .reviews-slider-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 32px;
     margin: 40px 0;
}
 .review-card {
     background: #fff;
     border-radius: 18px;
     box-shadow: 0 6px 24px rgba(0,0,0,0.08);
     padding: 28px 22px;
     display: flex;
     flex-direction: column;
     gap: 10px;
}
 .review-stars {
     color: #FFD700;
     font-size: 1.2rem;
     margin-bottom: 6px;
}
 .review-user {
     font-weight: 700;
     color: #0a2540;
     margin-top: 8px;
}
 .review-company {
     color: #0077b6;
     font-size: 0.98rem;
}
        /* Responsive */
        @media (max-width: 1200px) { .main-blog-section { flex-direction: column; gap: 0; } .sidebar { margin: 40px auto 0; width: 100%; min-width: unset; } }
        @media (max-width: 900px) { .blog-cards { gap: 20px; } }
        @media (max-width: 768px) {
            /* Mobile search bar stacking */
            .blog-search-bar {
                flex-direction: column;
                gap: 15px;
                max-width: calc(100% - 40px);
                margin: 30px 20px 0;
            }
            
            .blog-search-bar input {
                width: 100%;
                padding: 14px 16px;
                font-size: 1.1rem;
            }
            
            .blog-search-bar button {
                width: 100%;
                padding: 14px 24px;
                font-size: 1.1rem;
            }
        }
        @media (max-width: 600px) { 
            .blog-hero h1 { font-size: 2rem; } 
            .blog-cards { grid-template-columns: 1fr; } 
            .main-blog-section { padding: 0 10px; } 
            
            /* Hero section mobile spacing */
            .blog-hero {
                padding: 45px 20px 60px;
            }
            
            .blog-search-bar {
                margin: 30px 20px 0;
                max-width: calc(100% - 40px);
                flex-direction: column;
                gap: 12px;
            }
            
            .blog-tags {
                margin: 25px 20px 0;
                padding: 0 0;
            }
        }
        @media (max-width: 480px) {
            .blog-search-bar {
                margin: 25px 15px 0;
                max-width: calc(100% - 30px);
                gap: 10px;
            }
            
            .blog-search-bar input {
                padding: 12px 14px;
                font-size: 1rem;
            }
            
            .blog-search-bar button {
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .blog-hero {
                padding: 40px 15px 50px;
            }
            
            .blog-hero h1 {
                font-size: 1.8rem;
            }
            
            .blog-hero p {
                font-size: 1.1rem;
                padding: 0 10px;
            }
            
            .blog-tags {
                margin: 20px -7px 0;
            }
        }
        
        /* Footer Mobile Responsive */
        @media (max-width: 768px) {
            footer {
                padding: 60px 0 0;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-bottom: 40px;
                padding: 0 20px;
            }
            
            .footer-col {
                padding-left: 0;
            }
            
            .footer-col h3 {
                font-size: 1.3rem;
                margin-bottom: 20px;
                padding-left: 0;
            }
            
            .footer-links,
            .contact-info-rows {
                padding-left: 0;
                margin-left: 0;
            }
            
            .footer-about {
                padding-left: 0;
                margin-left: 0;
            }
            
            .footer-social {
                margin-left: 0;
            }
        }

        @media (max-width: 480px) {
            footer {
                padding: 40px 0 0;
            }
            
            .footer-grid {
                padding: 0 15px;
            }
            
            .footer-col {
                padding-left: 0;
            }
            
            .footer-col h3 {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .footer-links,
            .contact-info-rows {
                margin-left: 0;
            }
            
            .footer-about {
                margin-left: 0;
            }
            
            .footer-about p {
                font-size: 1rem;
            }
            
            .footer-links a,
            .contact-info-rows li {
                font-size: 1rem;
            }
            
            .contact-info-rows i {
                font-size: 1.1rem;
                min-width: 20px;
            }
            
            .footer-social {
                margin-left: 0;
            }
            
            .copyright {
                padding: 25px 15px;
                font-size: 0.9rem;
            }
        }
                 /* Floating Action Buttons */
        .fab-contact {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 3000;
            background: #0077b6;
            color: var(--light);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 24px rgba(0,0,0,0.18);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            outline: none;
            text-decoration: none;
        }

        .fab-contact:hover {
            background: #005a87;
            color: var(--light);
            box-shadow: 0 8px 32px rgba(0,119,182,0.3);
            transform: translateY(-2px);
        }

        .fab-whatsapp {
            position: fixed;
            bottom: 32px;
            left: 32px;
            z-index: 3000;
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 24px rgba(0,0,0,0.18);
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            outline: none;
            text-decoration: none;
        }

        .fab-whatsapp:hover {
            background: #128c7e;
            color: white;
            box-shadow: 0 8px 32px rgba(37,211,102,0.3);
            transform: translateY(-2px);
        }

        .fab-scroll-top {
            position: fixed;
            bottom: 104px;
            right: 32px;
            z-index: 3000;
            background: #0a2540;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 24px rgba(0,0,0,0.18);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            outline: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .fab-scroll-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .fab-scroll-top:hover {
            background: #0077b6;
            color: white;
            box-shadow: 0 8px 32px rgba(10,37,64,0.3);
            transform: translateY(-2px);
        }

        /* Mobile adjustments for FABs */
        @media (max-width: 768px) {
            .fab-contact,
            .fab-whatsapp,
            .fab-scroll-top {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .fab-whatsapp {
                font-size: 1.5rem;
            }
            
            .fab-contact,
            .fab-scroll-top {
                right: 20px;
            }
            
            .fab-whatsapp {
                left: 20px;
            }
            
            .fab-scroll-top {
                bottom: 82px;
            }
        }

        @media (max-width: 480px) {
            .fab-contact,
            .fab-whatsapp,
            .fab-scroll-top {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
            
            .fab-whatsapp {
                font-size: 1.3rem;
            }
            
            .fab-contact,
            .fab-scroll-top {
                right: 15px;
            }
            
            .fab-whatsapp {
                left: 15px;
            }
            
            .fab-scroll-top {
                bottom: 80px;
            }
        }