/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background-color: #001f3f;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-contact {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.nav-contact span {
    margin: 0 20px;
}

.nav-contact i {
    margin-right: 5px;
}

/* Hide hyperlink styling for contact links in navbar */
.nav-contact .contact-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.nav-contact .contact-link:hover {
    color: inherit;
    text-decoration: none;
}

.nav-brand {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.logo {
    height: 70px;
    width: auto;
    margin-right: 10px;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.company-name:hover {
    text-decoration: none;
}

/* Remove underline and focus outline from company name hyperlink */
.nav-brand a {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.nav-brand a:hover {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.nav-brand a:focus {
    outline: none !important;
    box-shadow: none !important;
}

.nav-brand a:active {
    outline: none !important;
    box-shadow: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 10px;
}

/* Ensure dropdown positioning is stable */
.dropdown {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 15px 10px;
    display: block;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

/* Services dropdown link specific styling */
.dropdown .nav-link {
    cursor: pointer;
    user-select: none;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Request a Quote Button - styled like other menu items */
.quote-btn {
    background-color: transparent !important;
    color: white !important;
    padding: 15px 10px !important;
    border-radius: 0 !important;
    font-weight: normal !important;
    transition: background-color 0.3s ease !important;
    border: none !important;
    margin-left: 0 !important;
    display: block !important;
    font-size: 16px !important;
}

.quote-btn:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 5px !important;
    color: white !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #001f3f #f0f0f0;
    background-color: white;
    min-width: 300px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    padding: 10px 0;
    pointer-events: none; /* Prevent interaction when hidden */
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* Enable interaction when visible */
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #333;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #001f3f;
}

.dropdown-divider {
    padding: 0 !important;
    margin: 5px 0 !important;
    border-top: 1px solid #e0e0e0;
    position: relative;
}

.dropdown-divider span {
    display: block;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #f8f9fa;
}

/* Main Content */
main {
    margin-top: 150px;
}

/* Slider Section */
.slider-section {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

/* Desktop and laptop optimizations */
@media screen and (min-width: 769px) {
    .slider-section {
        height: 50vh;
        min-height: 400px;
        max-height: 600px;
    }
    
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        /* Ensure images load smoothly */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .slide-content {
        padding: 40px;
        max-width: 700px;
        backdrop-filter: blur(10px);
        background: rgba(0, 31, 63, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .slide-content h2 {
        font-size: 3rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    }
    
    .slide-content p {
        font-size: 1.4rem;
        line-height: 1.6;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }
    
    .prev-btn,
    .next-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
        background: rgba(0, 31, 63, 0.8);
        border: 2px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }
    
    .prev-btn:hover,
    .next-btn:hover {
        background: rgba(0, 31, 63, 0.95);
        border-color: rgba(255, 255, 255, 0.4);
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    
    .slider-indicators {
        bottom: 30px;
    }
    
    .indicator {
        width: 15px;
        height: 15px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }
    
    .indicator:hover {
        border-color: rgba(255, 255, 255, 0.6);
        transform: scale(1.2);
    }
    
    .indicator.active {
        background: white;
        border-color: white;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    }
}

/* Large desktop optimizations */
@media screen and (min-width: 1200px) {
    .slider-section {
        height: 75vh;
        min-height: 500px;
        max-height: 800px;
    }
    
    .slide-content {
        padding: 50px;
        max-width: 800px;
    }
    
    .slide-content h2 {
        font-size: 3.5rem;
    }
    
    .slide-content p {
        font-size: 1.6rem;
    }
    
    .prev-btn,
    .next-btn {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* Mobile-optimized slider */
@media screen and (max-width: 768px) {
    .slider-section {
        height: 30vh;
        min-height: 100px;
    }
    
    .slider-container {
        height: 100%;
    }
    
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    
    .slide-content {
        padding: 20px;
        max-width: 70%;
        font-size: 14px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .slider-section {
        height: 30vh;
        min-height: 300px;
    }
    
    .slide-content {
        padding: 15px;
        max-width: 95%;
        font-size: 13px;
    }
    
    .slide-content h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .slider-nav button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-indicators {
        bottom: 15px;
    }
    
    .slider-indicators .indicator {
        width: 8px;
        height: 8px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: block;
    /* Fallback background to prevent white screen */
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

/* Ensure slides always have content */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 63, 0.1);
    z-index: 1;
}

.slide img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Optimize for desktop display */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* Smooth transitions for image loading */
    transition: opacity 0.3s ease-in-out;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Fallback for browsers that don't support image-rendering */
@supports not (image-rendering: crisp-edges) {
    .slide img {
        image-rendering: auto;
    }
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0, 31, 63, 0.8);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.prev-btn,
.next-btn {
    background: rgba(0, 31, 63, 0.7);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(0, 31, 63, 0.9);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: white;
}

/* Image Section */
.image-section {
    width: 100%;
    height: 20vh;
    min-height: 250px;
    max-height: 400px;
    overflow: hidden;
}

/* Desktop and laptop optimizations for image section */
@media screen and (min-width: 480px) {
    .image-section {
        height: 5vh;
        min-height: 150px;
        max-height: 600px;
    }
    
    .bottom-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        /* Optimize for desktop display */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        transition: transform 0.3s ease;
    }
    
    .bottom-image:hover {
        transform: scale(1.02);
    }
}

/* Large desktop optimizations for image section */
@media screen and (min-width: 1200px) {
    .image-section {
        height: 30vh;
        min-height: 300px;
        max-height: 700px;
    }
}

.bottom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #001f3f;
}

.content-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* Footer */
.footer {
    background-color: #001f3f;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: #001f3f;
        width: 100%;
        height: calc(100vh - 120px);
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 0;
        max-width: none;
        margin-top: 10px;
        max-height: 300px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .dropdown-menu a {
        color: white;
        padding: 10px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .nav-contact {
        font-size: 12px;
    }

    .nav-contact span {
        margin: 0 10px;
    }

    .company-name {
        font-size: 18px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-content {
        padding: 20px;
        max-width: 90%;
    }

    .prev-btn,
    .next-btn {
        padding: 10px 15px;
        font-size: 16px;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }

    .nav-contact {
        font-size: 11px;
    }

    .nav-contact span {
        margin: 0 5px;
    }

    .company-name {
        font-size: 16px;
    }

    .logo {
        height: 30px;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slide-content {
        padding: 15px;
    }

    .slider-nav {
        padding: 0 10px;
    }

    .prev-btn,
    .next-btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .content-section {
        padding: 40px 0;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }
}

/* Animation for mobile menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu.active {
    animation: slideDown 0.3s ease-out;
}

/* Services Slider Section */
.services-slider-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.services-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #001f3f 0%, #003366 50%, #001f3f 100%);
}

/* Services Header Section */
.services-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.1);
    position: relative;
    overflow: hidden;
}

.services-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 31, 63, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.services-header h2 {
    font-size: 3rem;
    color: #001f3f;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.services-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #001f3f, #ffd700);
    border-radius: 2px;
}

.services-header p {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.services-slider-container {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    width: 100%;
    padding: 0 10px; /* Add some padding to prevent clipping */
    /* Ensure proper positioning context */
    box-sizing: border-box;
    /* Add subtle background for professional look */
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 20px;
    padding: 30px 10px;
}

.services-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 25px;
    width: 100%;
    position: relative;
    padding: 25px 0;
    /* Enable touch dragging */
    touch-action: pan-x;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Add subtle entrance animation for service boxes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base service box styling */
.service-box {
    flex: 0 0 280px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 31, 63, 0.08), 0 4px 10px rgba(0, 31, 63, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 31, 63, 0.08);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    overflow: visible;
    margin: 0;
    /* Entrance animation */
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Staggered entrance animation delays */
.service-box:nth-child(1) { animation-delay: 0.1s; }
.service-box:nth-child(2) { animation-delay: 0.2s; }
.service-box:nth-child(3) { animation-delay: 0.3s; }
.service-box:nth-child(4) { animation-delay: 0.4s; }
.service-box:nth-child(5) { animation-delay: 0.5s; }
.service-box:nth-child(6) { animation-delay: 0.6s; }
.service-box:nth-child(7) { animation-delay: 0.7s; }
.service-box:nth-child(8) { animation-delay: 0.8s; }

/* Responsive adjustments for service boxes with touch drag */
@media screen and (max-width: 768px) {
    .service-box {
        flex: 0 0 250px;
        padding: 30px 25px;
        min-height: 220px;
    }
    
    .service-icon {
        font-size: 2.8rem;
        width: 70px;
        height: 70px;
        line-height: 40px;
    }
    
    .service-box h3 {
        font-size: 1.2rem;
    }
    
    .service-box p {
        font-size: 0.9rem;
    }
    
    .service-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .service-features {
        gap: 4px;
        margin: 12px 0;
    }
    
    /* Enable touch drag on mobile */
    .services-slider {
        touch-action: pan-x;
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    .services-slider:active {
        cursor: grabbing;
    }
}

@media screen and (max-width: 480px) {
    .service-box {
        flex: 0 0 220px;
        padding: 25px 20px;
        min-height: 200px;
    }
    
    .service-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
        line-height: 30px;
    }
    
    .service-box h3 {
        font-size: 1.1rem;
    }
    
    .service-box p {
        font-size: 0.85rem;
    }
    
    .service-badge {
        font-size: 0.65rem;
        padding: 2px 8px;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
        font-weight: 700;
    }
    
    .feature-tag {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .service-features {
        gap: 3px;
        margin: 10px 0;
    }
    
    /* Enable touch drag on small mobile devices */
    .services-slider {
        touch-action: pan-x;
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    .services-slider:active {
        cursor: grabbing;
    }
    
    /* Disable floating animation on mobile for better performance */
    .service-box:nth-child(odd),
    .service-box:nth-child(even) {
        animation: fadeInUp 0.6s ease-out forwards;
    }
}

/* Service Box Hover Effects */
.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 31, 63, 0.12), 0 8px 15px rgba(0, 31, 63, 0.08);
    border-color: #001f3f;
    background: linear-gradient(145deg, #ffffff 0%, #f0f4f8 100%);
}

/* Service Icon Styling */
.service-icon {
    font-size: 3.2rem;
    color: #001f3f;
    margin-bottom: 25px;
    display: inline-block;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.05) 0%, rgba(0, 31, 63, 0.02) 100%);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 50px;
    text-align: center;
    margin: 0 auto 25px auto;
    transition: all 0.3s ease;
}

.service-box:hover .service-icon {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.08) 0%, rgba(0, 31, 63, 0.03) 100%);
    transform: scale(1.05);
}

/* Service Badge Styling */
.service-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
}

/* Default badge styling for "Popular" badge */
.service-badge:not(.badge-success):not(.badge-warning):not(.badge-info):not(.badge-primary):not(.badge-purple):not(.badge-danger):not(.badge-secondary) {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced text shadow for better readability */
.service-badge {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Ensure warning badge text is always readable */
.badge-warning {
    text-shadow: none;
    font-weight: 700;
}

.badge-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.badge-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: #212529;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.badge-info {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
}

.badge-primary {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
}

.badge-purple {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
}

.badge-danger {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
}

.badge-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

/* Feature Tags Styling */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 15px 0;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.08) 0%, rgba(0, 31, 63, 0.03) 100%);
    color: #001f3f;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0, 31, 63, 0.1);
    transition: all 0.3s ease;
}

.service-box:hover .feature-tag {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.12) 0%, rgba(0, 31, 63, 0.06) 100%);
    transform: translateY(-1px);
}

/* Pulse animation for badges */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Additional visual enhancements */
.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #001f3f, #003366, #001f3f);
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover::before {
    opacity: 1;
}

/* Enhanced service icon with background pattern */
.service-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(0, 31, 63, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover .service-icon::after {
    opacity: 1;
}

/* Floating animation for service boxes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Floating animation for service boxes (after entrance animation) */
.service-box:nth-child(odd) {
    animation: fadeInUp 0.6s ease-out forwards, float 6s ease-in-out infinite 0.6s;
}

.service-box:nth-child(even) {
    animation: fadeInUp 0.6s ease-out forwards, float 6s ease-in-out infinite 3.6s;
}

/* Service Box Typography */
.service-box h3 {
    font-size: 1.4rem;
    color: #001f3f;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.service-box p {
    color: #555;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    font-weight: 400;
}

/* Know More Button Styling */
.know-more-btn {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    
    /* Mobile touch improvements */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
    /* Ensure touch targets are adequate */
    min-height: 44px;
    min-width: 80px;
}

.know-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.know-more-btn:hover::before {
    left: 100%;
}

.know-more-btn:hover {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 31, 63, 0.3);
}

/* Why E-Incorp Elite Section */
.why-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #001f3f, #ffc107, #001f3f);
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-us-header h2 {
    font-size: 4.0rem;
    color: #001f3f;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.why-us-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #001f3f);
    border-radius: 2px;
}

.why-us-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.why-us-item {
    background: none;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-us-item::before {
    display: none;
}

.why-us-item:hover {
    transform: translateY(-5px);
}

.why-us-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px auto;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-us-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.why-us-item:hover .why-us-icon::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.why-us-icon i {
    font-size: 1rem;
    color: white;
    transition: all 0.4s ease;
    z-index: 1;
}

.why-us-item:hover .why-us-icon {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    transform: scale(1.1);
}

.why-us-item:hover .why-us-icon i {
    color: #001f3f;
    transform: scale(1.1);
}

.why-us-item h3 {
    font-size: 0.75rem;
    color: #001f3f;
    margin-bottom: 4px;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1.1;
}

.why-us-item:hover h3 {
    color: #ffc107;
}

.why-us-item p {
    color: #555;
    line-height: 1.2;
    font-size: 0.6rem;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Shimmer animation for icons */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Responsive Design for Why Us Section */
@media screen and (max-width: 1200px) {
    .why-us-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto auto;
        gap: 15px;
        max-width: 900px;
    }
    
    .why-us-item {
        padding: 20px 18px;
        min-height: 130px;
    }
    
    .why-us-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 5px;
    }
    
    .why-us-icon i {
        font-size: 0.9rem;
    }
    
    .why-us-item h3 {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .why-us-item p {
        font-size: 0.65rem;
    }
}

@media screen and (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto auto;
        gap: 15px;
        max-width: 800px;
    }
    
    .why-us-item {
        padding: 18px 15px;
        min-height: 120px;
    }
    
    .why-us-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 5px;
    }
    
    .why-us-icon i {
        font-size: 0.85rem;
    }
    
    .why-us-item h3 {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }
    
    .why-us-item p {
        font-size: 0.65rem;
    }
}

@media screen and (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }
    
    .why-us-header h2 {
        font-size: 2rem;
    }
    
    .why-us-header p {
        font-size: 1rem;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto auto auto;
        gap: 12px;
        margin-top: 40px;
        max-width: 500px;
    }
    
    .why-us-item {
        padding: 15px 12px;
        min-height: 100px;
    }
    
    .why-us-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 4px;
    }
    
    .why-us-icon i {
        font-size: 0.8rem;
    }
    
    .why-us-item h3 {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }
    
    .why-us-item p {
        font-size: 0.6rem;
    }
}

@media screen and (max-width: 480px) {
    .why-us-section {
        padding: 40px 0;
    }
    
    .why-us-header h2 {
        font-size: 1.8rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(9, auto);
        gap: 10px;
        margin-top: 30px;
        max-width: 300px;
    }
    
    .why-us-item {
        padding: 15px 12px;
        min-height: 85px;
    }
    
    .why-us-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 5px;
    }
    
    .why-us-icon i {
        font-size: 0.8rem;
    }
    
    .why-us-item h3 {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .why-us-item p {
        font-size: 0.7rem;
    }
}

/* Contact Us Section */
.contact-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #001f3f, #ffc107, #001f3f);
}

.contact-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-us-header h2 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.contact-us-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #001f3f);
    border-radius: 2px;
}

.contact-us-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.contact-us-item {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 31, 63, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 31, 63, 0.08);
    position: relative;
    overflow: visible;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-us-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 31, 63, 0.15), 0 8px 15px rgba(0, 31, 63, 0.08);
    border-color: #001f3f;
}

.contact-us-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-us-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.contact-us-item:hover .contact-us-icon::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.contact-us-icon i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.4s ease;
    z-index: 1;
}

.contact-us-item:hover .contact-us-icon {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    transform: scale(1.1);
}

.contact-us-item:hover .contact-us-icon i {
    color: #001f3f;
    transform: scale(1.1);
}

.contact-us-item h3 {
    font-size: 1.3rem;
    color: #001f3f;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.contact-us-item:hover h3 {
    color: #ffc107;
}

.contact-us-item p {
    color: #555;
    line-height: 1.5;
    font-size: 1rem;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

/* Responsive Design for Contact Us Section */
@media screen and (max-width: 768px) {
    .contact-us-section {
        padding: 60px 0;
    }
    
    .contact-us-header h2 {
        font-size: 2rem;
    }
    
    .contact-us-header p {
        font-size: 1rem;
    }
    
    .contact-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        max-width: 400px;
    }
    
    .contact-us-item {
        padding: 30px 25px;
        min-height: 180px;
    }
    
    .contact-us-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .contact-us-icon i {
        font-size: 1.3rem;
    }
    
    .contact-us-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .contact-us-item p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-us-section {
        padding: 40px 0;
    }
    
    .contact-us-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-us-grid {
        gap: 15px;
        margin-top: 30px;
        max-width: 300px;
    }
    
    .contact-us-item {
        padding: 25px 20px;
        min-height: 160px;
    }
    
    .contact-us-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .contact-us-icon i {
        font-size: 1.2rem;
    }
    
    .contact-us-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .contact-us-item p {
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #001f3f, #ffc107, #001f3f);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.testimonials-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #001f3f);
    border-radius: 2px;
}

.testimonials-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-slider-container {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 25px;
    width: max-content;
    position: relative;
    z-index: 1;
}

.testimonials-slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonials-prev-btn,
.testimonials-next-btn {
    background: rgba(0, 31, 63, 0.7);
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.testimonials-prev-btn:hover,
.testimonials-next-btn:hover {
    background: rgba(0, 31, 63, 0.9);
}

.testimonials-slider-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.testimonials-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 31, 63, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonials-indicator.active {
    background: #001f3f;
}

.testimonial-item {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 31, 63, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 31, 63, 0.05);
    position: relative;
    overflow: visible;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 31, 63, 0.12), 0 4px 10px rgba(0, 31, 63, 0.08);
    border-color: #001f3f;
}

.testimonial-content {
    margin-bottom: 20px;
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-content p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 2rem;
    color: #001f3f;
    position: absolute;
    left: -10px;
    top: -5px;
    font-family: serif;
}

.testimonial-author {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: auto;
}

.author-info h4 {
    color: #001f3f;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
}

.author-info span {
    color: #666;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Responsive Design for Testimonials Section */
@media screen and (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-header p {
        font-size: 1rem;
    }
    
    .testimonials-slider-container {
        margin-top: 40px;
    }
    
    .testimonials-slider {
        gap: 20px;
    }
    
    .testimonial-item {
        flex: 0 0 300px;
        padding: 20px 18px;
        min-height: 160px;
    }
    
    .testimonials-prev-btn,
    .testimonials-next-btn {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .testimonials-slider-indicators {
        bottom: -35px;
    }
    
    .testimonials-indicator {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .stars i {
        font-size: 0.85rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-slider-container {
        margin-top: 30px;
    }
    
    .testimonials-slider {
        gap: 15px;
    }
    
    .testimonial-item {
        flex: 0 0 280px;
        padding: 18px 15px;
        min-height: 150px;
    }
    
    .testimonials-prev-btn,
    .testimonials-next-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .testimonials-slider-indicators {
        bottom: -30px;
        gap: 8px;
    }
    
    .testimonials-indicator {
        width: 8px;
        height: 8px;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
    }
    
    .stars i {
        font-size: 0.8rem;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .author-info span {
        font-size: 0.75rem;
    }
}

/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: 40px 0 15px 0;
    margin-top: 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #001f3f, #ffc107);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 25px;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure contact info section is always visible and properly sized */
.footer-section:last-child {
    min-width: 0;
    flex-shrink: 1;
}

.footer-section:last-child .contact-info {
    min-width: 0;
    width: 100%;
}

/* Force contact info visibility across all pages */
.footer .contact-info,
.footer .contact-item,
.footer .contact-item i,
.footer .contact-item span {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

/* Ensure proper spacing and alignment for contact items */
.footer .contact-item {
    align-items: flex-start !important;
    margin-bottom: 12px !important;
    line-height: 1.5 !important;
}

.footer .contact-item i {
    margin-top: 2px !important;
    min-width: 20px !important;
    flex-shrink: 0 !important;
}

.footer .contact-item span {
    word-wrap: front-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
}

/* Debug styles - remove after testing */
.footer-section h4::after {
    content: '' !important;
    display: block !important;
    width: 30px !important;
    height: 2px !important;
    background: #ffc107 !important;
    margin-top: 8px !important;
}

.footer-section h3 {
    color: #ffc107;
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffc107;
}

.footer-logo p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #ffc107;
    color: #001f3f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: block;
    padding: 3px 0;
}

.footer-links a:hover {
    color: #ffc107;
    padding-left: 10px;
}

/* Footer Contact Information - Maximum Specificity Force */
footer.footer .contact-info,
.footer .contact-info,
div.footer .contact-info,
section.footer .contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 999 !important;
    background: transparent !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

footer.footer .contact-item,
.footer .contact-item,
div.footer .contact-item,
section.footer .contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 12px !important;
    position: relative !important;
    z-index: 999 !important;
    background: transparent !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

footer.footer .contact-item i,
.footer .contact-item i,
div.footer .contact-item i,
section.footer .contact-item i {
    color: #ffc107 !important;
    font-size: 1.1rem !important;
    margin-top: 2px !important;
    min-width: 20px !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-block !important;
    background: transparent !important;
    position: relative !important;
    z-index: 999 !important;
}

footer.footer .contact-item span,
.footer .contact-item span,
div.footer .contact-item span,
section.footer .contact-item span {
    color: #e0e0e0 !important;
    line-height: 1.5 !important;
    font-size: 0.9rem !important;
    visibility: visible !important;
    opacity: 1 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    display: inline !important;
    background: transparent !important;
    position: relative !important;
    z-index: 999 !important;
}

/* Force all footer sections to be visible */
footer.footer,
.footer,
div.footer,
section.footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%) !important;
    color: white !important;
    padding: 40px 0 15px 0 !important;
}

footer.footer .footer-section,
.footer .footer-section,
div.footer .footer-section,
section.footer .footer-section {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
    background: transparent !important;
}

footer.footer .footer-section h4,
.footer .footer-section h4,
div.footer .footer-section h4,
section.footer .footer-section h4 {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    background: transparent !important;
}

footer.footer .footer-section h4::after,
.footer .footer-section h4::after,
div.footer .footer-section h4::after,
section.footer .footer-section h4::after {
    content: '' !important;
    display: block !important;
    width: 30px !important;
    height: 2px !important;
    background: #ffc107 !important;
    margin-top: 8px !important;
}

/* General Contact Info Styles (for contact page) */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: #ffc107;
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-item span {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure footer sections are always visible */
.footer-section {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
}

.footer-section h4 {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

.footer-section h4::after {
    content: '' !important;
    display: block !important;
    width: 30px !important;
    height: 2px !important;
    background: #ffc107 !important;
    margin-top: 8px !important;
}

/* Enhanced responsive design for contact info */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 25px;
        text-align: center;
    }
    
    .footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
        max-width: 100%;
    }
    
    .contact-item span {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 25px 0 10px 0;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-badges {
        gap: 8px;
    }
    
    .footer-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .contact-item span {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffc107, transparent);
    margin-bottom: 15px;
}


.footer-bottom-content p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badge {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-2px);
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 25px 0 10px 0;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-badges {
        gap: 8px;
    }
    
    .footer-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Services Slider Navigation */
.services-slider-nav {
    position: absolute;
    top: 50%;
    width: calc(100% - 20px);
    display: flex;
    justify-content: space-between;
    left: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.services-prev-btn,
.services-next-btn {
    background: rgba(0, 31, 63, 0.8);
    color: white;
    border: none;
    padding: 15px 18px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    pointer-events: all;
    z-index: 10;
}

.services-prev-btn:hover,
.services-next-btn:hover {
    background: rgba(0, 31, 63, 1);
}

/* Services Slider Indicators */
.services-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
    max-width: 100%;
}

.services-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 31, 63, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.services-indicator.active {
    background: #001f3f;
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.service-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #001f3f;
    cursor: pointer;
    transition: color 0.3s ease;
}

.service-modal-close:hover {
    color: #003366;
}

#service-modal-body h3 {
    color: #001f3f;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

#service-modal-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

#service-modal-body ul {
    color: #666;
    padding-left: 20px;
    margin-bottom: 15px;
}

#service-modal-body li {
    margin-bottom: 8px;
}

/* Responsive Design for Services Slider */
@media screen and (max-width: 768px) {
    .service-box {
        flex: 0 0 250px;
        padding: 35px 20px;
        min-height: 200px;
    }
    
    .services-slider {
        gap: 15px;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .service-box h3 {
        font-size: 1.1rem;
    }
    
    .services-prev-btn,
    .services-next-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .services-slider-nav {
        width: calc(100% - 20px);
        left: 10px;
    }
    
    .services-slider {
        gap: 15px;
    }
    
    .services-indicator {
        width: 10px;
        height: 10px;
    }
    
    .services-header {
        margin-bottom: 50px;
        padding: 35px 20px;
    }
    
    .services-header h2 {
        font-size: 2.5rem;
    }
    
    .services-header p {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .service-box {
        flex: 0 0 220px;
        padding: 30px 15px;
        min-height: 180px;
    }
    
    .services-slider {
        gap: 10px;
    }
    
    .services-indicator {
        width: 8px;
        height: 8px;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .service-box h3 {
        font-size: 1rem;
    }
    
    .service-box p {
        font-size: 0.85rem;
    }
    
    .know-more-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .services-slider {
        gap: 10px;
        padding: 15px 0;
    }
    
    .service-modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .services-slider-nav {
        width: calc(100% - 20px);
        left: 10px;
    }
    
    .services-header {
        margin-bottom: 40px;
        padding: 30px 15px;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .services-header p {
        font-size: 1.1rem;
    }
}

/* Service Pages Styles */
.page-header.service-header {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #ffc107;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.6);
}

.service-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Content Styles */
.service-content {
    padding: 80px 0;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.service-content-main {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-intro {
    margin-bottom: 40px;
}

.service-intro h2 {
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 20px;
}

.service-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Service Features List */
.service-features-list {
    margin-bottom: 40px;
}

.service-features-list h3 {
    font-size: 1.5rem;
    color: #001f3f;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    color: #001f3f;
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Service Process */
.service-process {
    margin-bottom: 40px;
}

.service-process h3 {
    font-size: 1.5rem;
    color: #001f3f;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content h4 {
    font-size: 1.1rem;
    color: #001f3f;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Service Benefits */
.service-benefits {
    margin-bottom: 40px;
}

.service-benefits h3 {
    font-size: 1.5rem;
    color: #001f3f;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    color: #001f3f;
    font-size: 1.2rem;
    margin-top: 3px;
}

.benefit-item h4 {
    font-size: 1.1rem;
    color: #001f3f;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Service FAQ */
.service-faq {
    margin-bottom: 40px;
}

.service-faq h3 {
    font-size: 1.5rem;
    color: #001f3f;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: #001f3f;
    margin: 0;
}

.faq-question i {
    color: #001f3f;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 20px;
    background-color: white;
    border-top: 1px solid #f0f0f0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Service Content Sidebar */
.service-content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-cta-box,
.service-contact-box,
.related-services {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-cta-box h3,
.service-contact-box h3,
.related-services h3 {
    font-size: 1.3rem;
    color: #001f3f;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.service-cta-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-cta-box .btn {
    margin-bottom: 10px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #001f3f;
    border: 2px solid #001f3f;
}

.btn-secondary:hover {
    background: #001f3f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item i {
    color: #001f3f;
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-item h4 {
    font-size: 1rem;
    color: #001f3f;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 0.95rem;
    color: #666;
}

.related-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-links li {
    margin-bottom: 10px;
}

.related-links a {
    color: #001f3f;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.related-links a:hover {
    color: #003366;
    text-decoration: underline;
}

/* Service CTA Section */
.service-cta-section {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 150px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.cta-buttons .btn-primary {
    background: #ffc107;
    color: #001f3f;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #001f3f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Service Pages */
@media (max-width: 992px) {
    .service-content-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .process-steps,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-content {
        padding: 60px 0;
    }
    
    .service-content-main {
        padding: 30px;
    }
    
    .service-header h1 {
        font-size: 2.5rem;
    }
    
    .service-intro h2 {
        font-size: 1.5rem;
    }
    
    .feature-item,
    .process-step,
    .benefit-item {
        padding: 15px;
    }
    
    .service-cta-box,
    .service-contact-box,
    .related-services {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-content-main {
        padding: 20px;
    }
    
    .service-header h1 {
        font-size: 2rem;
    }
    
    .service-header p {
        font-size: 1rem;
    }
    
    .service-intro h2 {
        font-size: 1.3rem;
    }
    
    .feature-item,
    .process-step,
    .benefit-item {
        padding: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 25px;
    font-weight: 700;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.feature-item i {
    color: #ffc107;
    margin-right: 12px;
    font-size: 1.1rem;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* License/Types Grid */
.license-types, .company-types, .msme-classification, .gst-registration {
    padding: 80px 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.type-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ffc107;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #001f3f, #003366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.type-icon i {
    font-size: 2rem;
    color: #ffc107;
}

.type-card h3 {
    font-size: 1.5rem;
    color: #001f3f;
    margin-bottom: 15px;
    font-weight: 600;
}

.type-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.type-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.type-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.type-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

.type-requirements {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.type-requirements h4 {
    color: #001f3f;
    margin-bottom: 10px;
    font-size: 1rem;
}

.type-requirements p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* MSME Classification Specific Styles */
.classification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.classification-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.classification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ffb300);
}

.classification-card.micro::before {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.classification-card.small::before {
    background: linear-gradient(90deg, #ffc107, #ffb300);
}

.classification-card.medium::before {
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.classification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.classification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #001f3f, #003366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.classification-icon i {
    font-size: 2rem;
    color: #ffc107;
}

.classification-card h3 {
    font-size: 1.5rem;
    color: #001f3f;
    margin-bottom: 25px;
    font-weight: 600;
}

.classification-criteria {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: left;
}

.classification-criteria:last-child {
    margin-bottom: 0;
}

.classification-criteria h4 {
    color: #001f3f;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.classification-criteria p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Benefits Grid */
.msme-benefits, .fssai-benefits, .trade-license-benefits, .trademark-benefits, .compliance-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #001f3f, #003366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: #ffc107;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #001f3f;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Municipal Areas Grid */
.municipal-areas {
    padding: 80px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.area-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #001f3f, #003366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.area-icon i {
    font-size: 2rem;
    color: #ffc107;
}

.area-item h3 {
    font-size: 1.5rem;
    color: #001f3f;
    margin-bottom: 25px;
    font-weight: 600;
}

.area-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.area-item li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.area-item li:last-child {
    border-bottom: none;
}

.area-item li:before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 10px;
}

/* Income Tax Return Forms */
.income-tax-forms {
    padding: 80px 0;
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.form-header {
    background: linear-gradient(135deg, #001f3f, #003366);
    color: white;
    padding: 25px 30px;
    position: relative;
}

.form-header h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-category {
    background: #ffc107;
    color: #001f3f;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.form-content {
    padding: 30px;
}

.form-content h4 {
    color: #001f3f;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-content > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.form-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.form-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.form-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

.form-conditions {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.form-conditions strong {
    color: #001f3f;
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-conditions p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Important Due Dates */
.income-tax-due-dates {
    padding: 80px 0;
    background: #f8f9fa;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.date-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.date-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.date-header {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 25px 30px;
    position: relative;
    text-align: center;
}

.date-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.date-category {
    background: #ffc107;
    color: #001f3f;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.date-content {
    padding: 30px;
}

.date-content h4 {
    color: #001f3f;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.date-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Process Steps */
.process-steps {
    padding: 80px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #001f3f, #003366);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #001f3f;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Required Documents */
.required-documents {
    padding: 80px 0;
    background: #f8f9fa;
}

.documents-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.documents-text h2 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 25px;
    font-weight: 700;
}

.documents-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.document-category {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.document-category h4 {
    color: #001f3f;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.document-category h4 i {
    margin-right: 10px;
    color: #ffc107;
}

.document-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-category li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.document-category li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

.documents-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Pricing */
.service-pricing {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #ffc107;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    background: linear-gradient(135deg, #001f3f, #003366);
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.2rem;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: #ffc107;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    padding: 30px;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    color: #555;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: #ffc107;
    margin-right: 12px;
    font-size: 1rem;
}

/* FAQ Section */
.service-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #001f3f;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #ffc107;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: #ffc107;
    color: #001f3f;
}

.cta-btn.primary:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #001f3f;
    transform: translateY(-2px);
}

/* Additional Service Page Elements */
.registration-criteria, .returns-grid, .business-types-grid, .classes-grid, .filing-criteria, .filing-items, .calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.criteria-item, .return-card, .business-type, .class-card, .filing-item, .calendar-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.criteria-item:hover, .return-card:hover, .business-type:hover, .class-card:hover, .filing-item:hover, .calendar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.criteria-icon, .return-header, .business-icon, .class-header, .calendar-month {
    margin-bottom: 20px;
}

.criteria-icon i, .business-icon i {
    font-size: 2rem;
    color: #ffc107;
}

.return-header, .class-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.return-frequency, .class-type {
    background: #ffc107;
    color: #001f3f;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.criteria-item h3, .business-type h3, .class-card h3, .calendar-month h3 {
    color: #001f3f;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.criteria-item ul, .business-type ul {
    list-style: none;
    padding: 0;
}

.criteria-item li, .business-type li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.criteria-item li:before, .business-type li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

.return-content h4, .class-content h4 {
    color: #001f3f;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.return-features, .class-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.return-features li, .class-content li {
    padding: 6px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.return-features li:before, .class-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

.return-deadline, .filing-deadline {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.return-deadline strong, .filing-deadline strong {
    color: #001f3f;
}

.filing-item h4 {
    color: #001f3f;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.filing-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.calendar-activities ul {
    list-style: none;
    padding: 0;
}

.calendar-activities li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.calendar-activities li:before {
    content: "📅";
    position: absolute;
    left: 0;
}

/* Responsive Design for Service Pages */
@media (max-width: 1024px) {
    .overview-content,
    .documents-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-text h2,
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-header h1 {
        font-size: 2.5rem;
    }
    
    .types-grid,
    .benefits-grid,
    .steps-container,
    .classification-grid,
    .areas-grid,
    .forms-grid,
    .dates-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .service-header {
        padding: 60px 0 40px;
    }
    
    .service-header h1 {
        font-size: 2rem;
    }
    
    .service-header p {
        font-size: 1rem;
    }
    
    .overview-text h2,
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .overview-text p,
    .section-header p {
        font-size: 1rem;
    }
    
    .types-grid,
    .benefits-grid,
    .steps-container,
    .pricing-grid,
    .classification-grid,
    .areas-grid,
    .forms-grid,
    .dates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .registration-criteria,
    .returns-grid,
    .business-types-grid,
    .classes-grid,
    .filing-criteria,
    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .service-header h1 {
        font-size: 1.8rem;
    }
    
    .overview-text h2,
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .type-card,
    .benefit-item,
    .step-item,
    .classification-card,
    .area-item,
    .form-card,
    .date-card {
        padding: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Blog Page Styles */
.page-header {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-date {
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-category {
    background: #ffc107;
    color: #001f3f;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: #001f3f;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #001f3f;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #ffc107;
    gap: 12px;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #001f3f, #003366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-info-icon i {
    font-size: 2rem;
    color: #ffc107;
}

.contact-info-item h3 {
    font-size: 1.5rem;
    color: #001f3f;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-item p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-info-item span {
    color: #999;
    font-size: 0.9rem;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-info-item {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.contact-info-item h3 {
    color: #1e3c72;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-item p {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-info-item span {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-header h2 {
    font-size: 2.2rem;
    color: #001f3f;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-form-header p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #001f3f;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #666;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.submit-btn {
    background: linear-gradient(135deg, #001f3f, #003366);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: center;
    min-width: 200px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #003366, #001f3f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.3);
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section Styles */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(30, 60, 114, 0.03) 0%, transparent 50%),
               radial-gradient(circle at 80% 20%, rgba(42, 82, 152, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.map-section .container {
    position: relative;
    z-index: 1;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.map-header h2 {
    color: #1e3c72;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
}

.map-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.map-header p {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 2px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(30, 60, 114, 0.15);
    height: 450px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    box-shadow: 0 20px 50px rgba(30, 60, 114, 0.2);
    transform: translateY(-2px);
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.05) 0%, rgba(42, 82, 152, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.map-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(30, 60, 114, 0.1);
    height: fit-content;
    border: 2px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
}

.map-info:hover {
    box-shadow: 0 20px 50px rgba(30, 60, 114, 0.15);
    transform: translateY(-2px);
}

.map-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 20px 20px 0 0;
}

.location-details h3 {
    color: #1e3c72;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 2px solid #f1f3f4;
}

.location-details h3 i {
    color: #dc3545;
    font-size: 28px;
    background: rgba(220, 53, 69, 0.1);
    padding: 8px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    padding: 10px 0;
    border-left: 3px solid #e9ecef;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.location-details p:hover {
    border-left-color: #1e3c72;
    background: rgba(30, 60, 114, 0.02);
    border-radius: 0 8px 8px 0;
}

.location-details strong {
    color: #1e3c72;
    font-weight: 600;
}

.directions-btn {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.directions-btn .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.2);
    position: relative;
    overflow: hidden;
}

.directions-btn .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.directions-btn .btn-primary:hover::before {
    left: 100%;
}

.directions-btn .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
}

.directions-btn .btn-primary i {
    font-size: 18px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Responsive Design for Contact Sections */
@media (max-width: 1024px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container::before {
        width: 80px;
        height: 3px;
    }

    .map-wrapper {
        height: 400px;
    }

    .map-info {
        padding: 30px;
    }

    .directions-btn {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 60px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .contact-info-item {
        padding: 30px 20px;
    }

    .contact-info-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .contact-info-item h3 {
        font-size: 20px;
    }

    .contact-info-item p {
        font-size: 16px;
    }

    .contact-info-item span {
        font-size: 13px;
    }

    .map-section {
        padding: 60px 0;
    }

    .map-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .map-header h2 {
        font-size: 28px;
    }

    .map-header h2::after {
        width: 50px;
        height: 2px;
    }

    .map-header p {
        font-size: 16px;
    }

    .map-wrapper {
        height: 350px;
    }

    .map-info {
        padding: 25px;
    }

    .location-details h3 {
        font-size: 20px;
        padding: 12px 0;
    }

    .location-details h3 i {
        font-size: 24px;
        width: 40px;
        height: 40px;
        padding: 6px;
    }

    .location-details p {
        font-size: 14px;
        padding: 8px 0;
    }

    .directions-btn .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 30px;
        margin: 0 20px;
    }

    .contact-form-header h2 {
        font-size: 1.8rem;
    }

    .contact-form-header p {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 40px 0;
    }

    .contact-info-grid {
        gap: 20px;
        margin-top: 20px;
    }

    .contact-info-item {
        padding: 25px 15px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .contact-info-item h3 {
        font-size: 18px;
    }

    .contact-info-item p {
        font-size: 14px;
    }

    .contact-info-item span {
        font-size: 12px;
    }

    .map-section {
        padding: 40px 0;
    }

    .map-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .map-header h2 {
        font-size: 24px;
    }

    .map-header p {
        font-size: 14px;
    }

    .map-wrapper {
        height: 300px;
    }

    .map-info {
        padding: 20px;
    }

    .location-details h3 {
        font-size: 18px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .location-details h3 i {
        font-size: 20px;
        width: 36px;
        height: 36px;
        padding: 5px;
    }

    .location-details p {
        font-size: 13px;
        padding: 6px 0;
    }

    .directions-btn {
        padding: 12px;
        margin-top: 20px;
    }

    .directions-btn .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
        flex-direction: column;
        gap: 5px;
    }

    .contact-form-section {
        padding: 40px 0;
    }

    .contact-form-container {
        padding: 20px;
        margin: 0 10px;
    }

    .contact-form-header h2 {
        font-size: 1.5rem;
    }

    .contact-form-header p {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 160px;
    }
}

/* Quick Contact Chatbot Widget */
.quick-contact-widget {
    position: fixed;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: 350px;
    max-height: 70vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px 20px 20px 5px;
    box-shadow: 0 15px 40px rgba(30, 60, 114, 0.15);
    border: 2px solid #e9ecef;
    z-index: 999;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Minimized state - moves to bottom-left corner */
.quick-contact-widget.minimized {
    top: auto !important;
    bottom: 30px;
    left: 30px;
    right: auto;
    transform: none !important;
    width: 280px;
    height: auto !important;
    max-height: none;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.2);
    animation: minimizedPulse 3s infinite;
    z-index: 1000;
}

/* Mobile-responsive minimized state - Ultra compact */
@media (max-width: 768px) {
    .quick-contact-widget.minimized {
        width: auto;
        max-width: calc(100vw - 60px);
        left: 30px;
        bottom: 30px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .quick-contact-widget.minimized {
        width: auto;
        max-width: calc(100vw - 40px);
        left: 20px;
        bottom: 20px;
        border-radius: 10px;
    }
}

@media (max-width: 360px) {
    .quick-contact-widget.minimized {
        width: auto;
        max-width: calc(100vw - 30px);
        left: 15px;
        bottom: 15px;
        border-radius: 8px;
    }
}

@media (max-width: 320px) {
    .quick-contact-widget.minimized {
        width: auto;
        max-width: calc(100vw - 20px);
        left: 10px;
        bottom: 10px;
        border-radius: 6px;
    }
}

.quick-contact-widget.minimized .widget-header {
    border-radius: 18px;
    padding: 15px 20px;
    cursor: pointer;
}

.quick-contact-widget.minimized .widget-header::after {
    display: none;
}

.quick-contact-widget.minimized .widget-header h3 {
    font-size: 14px;
}

.quick-contact-widget.minimized .widget-status {
    font-size: 11px;
}

@keyframes minimizedPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(30, 60, 114, 0.2);
    }
    50% {
        box-shadow: 0 8px 35px rgba(30, 60, 114, 0.3);
    }
}

.quick-contact-widget:hover {
    box-shadow: 0 20px 50px rgba(30, 60, 114, 0.2);
    transform: translateY(-50%) translateY(-2px);
}

.widget-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 18px 18px 0 0;
    position: relative;
}

.widget-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20px;
    width: 40px;
    height: 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 0 0 20px 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 80%, 10% 80%, 15% 100%, 5% 100%);
}

.widget-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-header h3 i {
    font-size: 16px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-status {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.widget-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.widget-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Touch-friendly button on mobile */
@media (max-width: 768px) {
    .widget-toggle {
        width: 28px;
        height: 28px;
        font-size: 14px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .widget-toggle {
        width: 32px;
        height: 32px;
        font-size: 13px;
        padding: 8px;
    }
}

.quick-contact-form {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    flex: 1;
    background: #f8f9fa;
}

.chat-welcome {
    background: white;
    padding: 15px;
    border-radius: 15px 15px 15px 5px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 3px solid #1e3c72;
}

.chat-welcome p {
    margin: 0;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.chat-welcome .typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}

.chat-welcome .typing-dot {
    width: 6px;
    height: 6px;
    background: #1e3c72;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.chat-welcome .typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-welcome .typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

.quick-contact-form .form-group {
    margin: 0;
}

.quick-contact-form input,
.quick-contact-form select,
.quick-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    font-family: inherit;
}

.quick-contact-form input:focus,
.quick-contact-form select:focus,
.quick-contact-form textarea:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
    background: #fafafa;
}

.quick-contact-form textarea {
    resize: vertical;
    min-height: 50px;
    max-height: 80px;
}

.quick-contact-form input::placeholder,
.quick-contact-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

.quick-submit-btn {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.quick-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.quick-submit-btn:hover::before {
    left: 100%;
}

.quick-submit-btn:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.quick-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.quick-submit-btn i {
    font-size: 12px;
}

.quick-form-message {
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
}

.quick-form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Ensure widget stays within viewport */
@media screen and (max-height: 600px) {
    .quick-contact-widget {
        top: 20px;
        bottom: 20px;
        left: 30px;
        transform: none;
        max-height: calc(100vh - 40px);
    }
    
    .quick-contact-widget:hover {
        transform: none;
    }
    
    .quick-contact-form {
        max-height: calc(100vh - 120px);
    }
    
    .quick-contact-widget.minimized {
        top: auto;
        bottom: 20px;
        left: 30px;
        transform: none;
    }
}

/* Contact Floating Buttons */
.contact-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Prevent overlap between contact widget and floating buttons */
@media (min-height: 500px) {
    .quick-contact-widget:not(.minimized) {
        bottom: auto;
    }
}

/* Ensure minimized chatbot doesn't interfere with floating buttons */
@media (min-width: 768px) {
    .quick-contact-widget.minimized {
        /* Leave space for floating buttons on the right */
        max-width: calc(100vw - 200px);
    }
}

.call-float, .whatsapp-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.call-float {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    font-size: 24px;
}

.whatsapp-float {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    font-size: 24px;
}

.call-float:hover, .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.call-float:active, .whatsapp-float:active {
    transform: scale(0.95);
}

.call-tooltip, .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.call-tooltip::after, .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.call-float:hover .call-tooltip, .whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 768px) {
    .contact-float {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .call-float, .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .call-tooltip, .whatsapp-tooltip {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .quick-contact-widget {
        top: 50%;
        left: 15px;
        right: 15px;
        transform: translateY(-50%);
        width: calc(100vw - 30px);
        max-width: none;
        max-height: 70vh;
    }
    
    .quick-contact-widget:hover {
        transform: translateY(-50%) translateY(-1px);
    }
    
    .quick-contact-widget.minimized {
        top: auto;
        bottom: 20px;
        left: 15px;
        right: auto;
        transform: none;
        width: 250px;
    }
}

@media (max-width: 480px) {
    .contact-float {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .call-float, .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .quick-contact-widget {
        top: 50%;
        left: 10px;
        right: 10px;
        transform: translateY(-50%);
        width: calc(100vw - 20px);
        max-width: none;
        max-height: 65vh;
        border-radius: 12px;
    }
    
    .quick-contact-widget:hover {
        transform: translateY(-50%) translateY(-1px);
    }
    
    .quick-contact-widget.minimized {
        top: auto;
        bottom: 20px;
        left: 20px;
        right: auto;
        transform: none;
        width: auto;
        max-width: calc(100vw - 40px);
        border-radius: 10px;
    }
    
    .widget-header {
        padding: 8px 10px;
        flex-shrink: 0;
    }
    
    .widget-header h3 {
        font-size: 12px;
        gap: 4px;
    }
    
    .widget-header h3 i {
        font-size: 10px;
        width: 18px;
        height: 18px;
    }
    
    .widget-status {
        font-size: 9px;
    }
    
    .quick-contact-widget.minimized .widget-header {
        padding: 6px 10px;
    }
    
    .quick-contact-widget.minimized .widget-header h3 {
        font-size: 10px;
    }
    
    .quick-contact-widget.minimized .widget-status {
        font-size: 8px;
    }
    
    .quick-contact-form {
        padding: 10px;
        gap: 8px;
        max-height: calc(65vh - 40px);
    }
    
    .chat-welcome {
        padding: 8px;
        margin-bottom: 6px;
    }
    
    .chat-welcome p {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .chat-welcome .typing-dot {
        width: 3px;
        height: 3px;
    }
    
    .quick-contact-form input,
    .quick-contact-form select,
    .quick-contact-form textarea {
        padding: 6px 8px;
        font-size: 10px;
        border-radius: 12px;
    }
    
    .quick-contact-form textarea {
        min-height: 35px;
        max-height: 50px;
    }
    
    .quick-submit-btn {
        padding: 6px 12px;
        font-size: 11px;
        flex-shrink: 0;
        border-radius: 12px;
    }
    
    .quick-submit-btn i {
        font-size: 9px;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 360px) {
    .quick-contact-widget {
        left: 8px;
        right: 8px;
        width: calc(100vw - 16px);
        max-height: 60vh;
        border-radius: 10px;
    }
    
    .quick-contact-widget.minimized {
        left: 15px;
        bottom: 15px;
        width: auto;
        max-width: calc(100vw - 30px);
        border-radius: 8px;
    }
    
    .widget-header {
        padding: 6px 8px;
    }
    
    .widget-header h3 {
        font-size: 11px;
        gap: 3px;
    }
    
    .widget-header h3 i {
        font-size: 9px;
        width: 16px;
        height: 16px;
    }
    
    .widget-status {
        font-size: 8px;
    }
    
    .quick-contact-widget.minimized .widget-header {
        padding: 5px 8px;
    }
    
    .quick-contact-widget.minimized .widget-header h3 {
        font-size: 9px;
    }
    
    .quick-contact-widget.minimized .widget-status {
        font-size: 7px;
    }
    
    .quick-contact-form {
        padding: 8px;
        gap: 6px;
        max-height: calc(60vh - 35px);
    }
    
    .chat-welcome {
        padding: 6px;
        margin-bottom: 4px;
    }
    
    .chat-welcome p {
        font-size: 9px;
        line-height: 1.1;
    }
    
    .chat-welcome .typing-dot {
        width: 2px;
        height: 2px;
    }
    
    .quick-contact-form input,
    .quick-contact-form select,
    .quick-contact-form textarea {
        padding: 5px 6px;
        font-size: 9px;
        border-radius: 10px;
    }
    
    .quick-contact-form textarea {
        min-height: 30px;
        max-height: 40px;
    }
    
    .quick-submit-btn {
        padding: 5px 10px;
        font-size: 10px;
        border-radius: 10px;
    }
    
    .quick-submit-btn i {
        font-size: 8px;
    }
}

/* Ultra small screens (very old phones) */
@media (max-width: 320px) {
    .quick-contact-widget {
        left: 5px;
        right: 5px;
        width: calc(100vw - 10px);
        max-height: 55vh;
        border-radius: 8px;
    }
    
    .quick-contact-widget.minimized {
        left: 10px;
        bottom: 10px;
        width: auto;
        max-width: calc(100vw - 20px);
        border-radius: 6px;
    }
    
    .widget-header {
        padding: 5px 6px;
    }
    
    .widget-header h3 {
        font-size: 10px;
        gap: 2px;
    }
    
    .widget-header h3 i {
        font-size: 8px;
        width: 14px;
        height: 14px;
    }
    
    .widget-status {
        font-size: 7px;
    }
    
    .quick-contact-widget.minimized .widget-header {
        padding: 4px 6px;
    }
    
    .quick-contact-widget.minimized .widget-header h3 {
        font-size: 8px;
    }
    
    .quick-contact-widget.minimized .widget-status {
        font-size: 6px;
    }
    
    .quick-contact-form {
        padding: 6px;
        gap: 4px;
        max-height: calc(55vh - 30px);
    }
    
    .chat-welcome {
        padding: 4px;
        margin-bottom: 3px;
    }
    
    .chat-welcome p {
        font-size: 8px;
        line-height: 1.0;
    }
    
    .chat-welcome .typing-dot {
        width: 2px;
        height: 2px;
    }
    
    .quick-contact-form input,
    .quick-contact-form select,
    .quick-contact-form textarea {
        padding: 4px 5px;
        font-size: 8px;
        border-radius: 8px;
    }
    
    .quick-contact-form textarea {
        min-height: 25px;
        max-height: 35px;
    }
    
    .quick-submit-btn {
        padding: 4px 8px;
        font-size: 9px;
        border-radius: 8px;
    }
    
    .quick-submit-btn i {
        font-size: 7px;
    }
}

/* About Page Styles */
.company-overview {
    padding: 80px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 25px;
    font-weight: 700;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.stat-item h3 {
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-item,
.vision-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #001f3f, #003366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon i,
.vision-icon i {
    font-size: 2rem;
    color: #ffc107;
}

.mission-item h3,
.vision-item h3 {
    font-size: 1.5rem;
    color: #001f3f;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-item p,
.vision-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Our Values */
.our-values {
    padding: 80px 0;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 15px;
    font-weight: 700;
}

.values-header p {
    font-size: 1.1rem;
    color: #666;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #001f3f, #003366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: #ffc107;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #001f3f;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 40px;
    font-weight: 700;
}

.choose-reasons {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.reason-item i {
    color: #28a745;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.reason-item h4 {
    color: #001f3f;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.reason-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.why-choose-image {
    text-align: center;
}

.why-choose-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Grid Layout Alternative (if needed) */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-choose-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #001f3f, #003366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-choose-icon i {
    font-size: 1.8rem;
    color: #ffc107;
}

.why-choose-item h3 {
    font-size: 1.3rem;
    color: #001f3f;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-choose-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Container */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* CTA Section for About Page */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Blog, Contact, and About Pages */
@media (max-width: 1024px) {
    .overview-content,
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .why-choose-text h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .overview-text h2,
    .values-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .blog-grid,
    .contact-info-grid,
    .values-grid,
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .why-choose-text h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .overview-text h2,
    .values-header h2 {
        font-size: 1.8rem;
    }
    
    .overview-text p,
    .values-header p {
        font-size: 1rem;
    }
    
    .reason-item {
        padding: 15px;
        gap: 12px;
    }
    
    .reason-item h4 {
        font-size: 1rem;
    }
    
    .reason-item p {
        font-size: 0.9rem;
    }
    
    .blog-grid,
    .contact-info-grid,
    .values-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-container {
        padding: 30px;
        margin: 0 20px;
    }
    
    .overview-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .mission-vision-grid {
        gap: 30px;
    }
    
    .mission-item,
    .vision-item {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .why-choose-text h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .overview-text h2,
    .values-header h2 {
        font-size: 1.5rem;
    }
    
    .reason-item {
        padding: 12px;
        gap: 10px;
    }
    
    .reason-item i {
        font-size: 1rem;
    }
    
    .reason-item h4 {
        font-size: 0.95rem;
    }
    
    .reason-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .contact-form-container {
        padding: 20px;
        margin: 0 10px;
    }
    
    .contact-info-item,
    .value-item,
    .why-choose-item {
        padding: 20px;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .mission-item,
    .vision-item {
        padding: 20px;
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }
}

/* Quote Request Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.modal-header {
    background-color: #001f3f;
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff6b35;
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #001f3f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #001f3f;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 30px;
}

.form-actions button {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-actions button[type="button"] {
    background-color: #6c757d;
    color: white;
}

.form-actions button[type="button"]:hover {
    background-color: #5a6268;
}

.form-actions button[type="submit"] {
    background-color: #001f3f;
    color: white;
}

.form-actions button[type="submit"]:hover {
    background-color: #003366;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Post Styles */
.blog-post-header {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: 120px 0 60px 0;
    margin-top: 80px;
}

.blog-post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.9;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-content {
    padding: 60px 0;
}

.blog-post-image {
    margin-bottom: 40px;
    text-align: center;
}

.blog-post-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-text {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.blog-post-text h2 {
    color: #001f3f;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.blog-post-text h3 {
    color: #001f3f;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.blog-post-text h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 25px 0 10px 0;
    font-weight: 600;
}

.blog-post-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.blog-post-text ul,
.blog-post-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post-text li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #444;
}

.blog-post-text strong {
    color: #001f3f;
    font-weight: 600;
}

.blog-post-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 50px 0;
    border-left: 5px solid #001f3f;
}

.blog-post-cta h3 {
    color: #001f3f;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.blog-post-cta p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-button {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.3);
}

.related-posts {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-top: 60px;
}

.related-posts h2 {
    text-align: center;
    color: #001f3f;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 600;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.related-post-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.related-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.related-post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-content {
    padding: 25px;
}

.related-post-content h3 {
    margin-bottom: 15px;
}

.related-post-content h3 a {
    color: #001f3f;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.related-post-content h3 a:hover {
    color: #003366;
}

.related-post-content p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-spinner.active {
    opacity: 1;
    visibility: visible;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #001f3f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-top: 20px;
    color: #001f3f;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Page Loading Overlay */
.page-loading {
    position: relative;
}

.page-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.page-loading.loading::before {
    opacity: 1;
    visibility: visible;
}

.page-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #001f3f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.page-loading.loading::after {
    opacity: 1;
    visibility: visible;
}

/* Button Loading State */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    color: white;
}

/* Policy Page Styles */
.policy-page {
    padding-top: 100px;
    padding-bottom: 50px;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 20px;
}

.policy-intro {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.policy-section h2 {
    font-size: 1.8rem;
    color: #001f3f;
    margin-bottom: 20px;
    border-bottom: 2px solid #001f3f;
    padding-bottom: 10px;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
}

.policy-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-list li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.policy-list ul {
    margin-left: 20px;
    margin-top: 10px;
}

.policy-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-top: 15px;
    border-radius: 4px;
}

.policy-contact {
    font-size: 1.1rem;
    margin-top: 20px;
}

.policy-contact a {
    color: #001f3f;
    text-decoration: none;
    font-weight: bold;
}

.policy-contact a:hover {
    text-decoration: underline;
}

/* Responsive Design for Policy Page */
@media (max-width: 768px) {
    .policy-page {
        padding-top: 80px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
}

/* Responsive Design for Blog Posts */
@media (max-width: 768px) {
    .blog-post-header {
        padding: 100px 0 40px 0;
    }
    
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-post-content {
        padding: 40px 0;
    }
    
    .blog-post-text .lead {
        font-size: 1.1rem;
    }
    
    .blog-post-text h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-text h3 {
        font-size: 1.3rem;
    }
    
    .blog-post-cta {
        padding: 30px 20px;
    }
    
    .related-posts {
        padding: 40px 0;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spinner {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }
    
    .loading-text {
        font-size: 14px;
    }
}
