/* Global Font Family */
* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* General Body Styling */
body {
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
    padding-top: 90px;
    color: #000000;
    overflow-x: hidden;
    transition: padding-top 0.3s ease-in-out;
}

body::before {
    display: none;
}

@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 50%, #1e3a8a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 0;
    box-shadow: 0 0 30px rgba(30, 58, 138, 0.6);
    animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 0 0 30px rgba(30, 58, 138, 0.6);
    }
    50% { 
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 10px 40px rgba(30, 58, 138, 0.8);
    }
}

.loading-text {
    font-size: 2.5em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.bouncing-ball {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #1e3a8a, #ff69b4);
    border-radius: 50%;
    position: relative;
    animation: bounce 1.2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(30, 58, 138, 0.8);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 0 15px rgba(30, 58, 138, 0.8);
    }
    25% {
        transform: translateY(-30px);
        box-shadow: 0 30px 20px rgba(30, 58, 138, 0.3);
    }
    50% {
        transform: translateY(-40px);
        box-shadow: 0 40px 25px rgba(30, 58, 138, 0.2);
    }
    75% {
        transform: translateY(-20px);
        box-shadow: 0 20px 15px rgba(30, 58, 138, 0.4);
    }
}

.bouncing-ball::after {
    content: '';
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    animation: shadow 1.2s ease-in-out infinite;
}

@keyframes shadow {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.4;
    }
    50% {
        transform: translateX(-50%) scale(0.7);
        opacity: 0.3;
    }
    75% {
        transform: translateX(-50%) scale(0.9);
        opacity: 0.5;
    }
}

.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Navigation Bar */
.navbar {
    width: 100%;
    height: 90px;
    background: transparent;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0; 
    box-shadow: none;
    border-bottom: 1px solid #000000;
    padding: 0 48px;
    margin: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    box-sizing: border-box;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.navbar-right {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.ring-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-inner img {
    width: 60px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    object-position: center;
    vertical-align: middle;
}

.navbar-text {
    font-size: 1.9em;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000000;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: flex-end;
    line-height: 1;
    transform: translateY(-2px);
}

.navbar-text a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.navbar-text a:hover {
    color: #333333;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar-list {
    display: flex;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-list a {
    color: #000000;
    text-decoration: none;
    font-size: 1.08em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    position: relative;
    white-space: nowrap;
}

.navbar-list a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-list a:hover::after,
.navbar-list a.active::after {
    width: 80%;
}

.navbar-list a:hover,
.navbar-list a.active {
    color: #000000;
    font-weight: bold;
    transform: translateY(-2px);
}

/* Search Box Styles - Hidden on Services page */
.search-container {
    display: none;
}

.search-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 30px;
    padding: 10px 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transition: all 0.4s ease;
    width: 300px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-box:focus-within {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.95));
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    width: 400px;
    border: 1px solid rgba(102, 126, 234, 0.5);
}

.search-input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    padding: 5px 10px;
    font-size: 0.9em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    color: #333;
}

.search-input::placeholder {
    color: #666;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.search-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #ff69b4;
    transform: scale(1.1);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-result-item:hover {
    background: #f5f5f5;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-title {
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin-bottom: 5px;
}

.search-result-content {
    color: #666;
    font-size: 0.9em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    line-height: 1.4;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    font-style: italic;
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #000000;
    z-index: 10;
    background: rgba(102, 126, 234, 0.12);
    padding: 30px 40px;
    border-radius: 15px;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 90%;
}

.text-overlay h1 {
    font-size: 2.5em;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #1e3a8a, #ffffff, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-shadow: 0 0 25px rgba(30, 58, 138, 0.5), 0 0 50px rgba(255, 255, 255, 0.2);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    line-height: 1.2;
}

.text-overlay p {
    font-size: 1.1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    margin-bottom: 20px;
    color: #000000;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 215, 0, 0.3);
    line-height: 1.6;
}

.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
    background: linear-gradient(45deg, #1e3a8a, #ff69b4);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.6);
}

/* Featured Services Section */
.services-container {
    max-width: 1200px;
    margin: 100px auto;
    padding: 40px;
    color: #000000;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 3em;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 20px;
    color: #000000;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    background: linear-gradient(45deg, #1e3a8a, #ff69b4, #45b7d1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.services-subtitle {
    font-size: 1.2em;
    color: rgba(0, 0, 0, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.service-section {
    margin-bottom: 50px;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.3s ease;
}

.service-section.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-section.show:nth-child(2) { transition-delay: 0.1s; }
.service-section.show:nth-child(3) { transition-delay: 0.3s; }
.service-section.show:nth-child(4) { transition-delay: 0.5s; }
.service-section.show:nth-child(5) { transition-delay: 0.7s; }
.service-section.show:nth-child(6) { transition-delay: 0.9s; }
.service-section.show:nth-child(7) { transition-delay: 1.1s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-content {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(46, 139, 87, 0.15);
    border-radius: 25px;
    padding: 50px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 50px rgba(46, 139, 87, 0.2);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.service-content:hover::before {
    left: 100%;
}

.service-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(46, 139, 87, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(65, 105, 225, 0.15);
}

.service-image {
    width: 400px;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.service-content:hover .service-image {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.service-number {
    font-size: 5em;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.25);
    min-width: 120px;
    text-align: center;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #1e3a8a, #0ea5e9, #1e3a8a);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease infinite;
}

.service-content:hover .service-number {
    color: rgba(0, 0, 0, 0.5);
    transform: scale(1.15) rotate(5deg);
}

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-details h3 {
    font-size: 2.2em;
    margin-bottom: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #1e3a8a, #ff69b4, #87ceeb);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease infinite;
}

.service-icon {
    font-size: 1.3em;
    filter: drop-shadow(0 0 15px rgba(255, 99, 71, 0.6));
}

.service-description {
    font-size: 1.15em;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.95);
    margin-bottom: 25px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    text-align: justify;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.feature-tag {
    background: linear-gradient(45deg, rgba(46, 139, 87, 0.8), rgba(65, 105, 225, 0.8));
    color: #000000;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.feature-tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.6);
    background: linear-gradient(45deg, rgba(46, 139, 87, 1), rgba(65, 105, 225, 1));
}

.services-cta {
    text-align: center;
    margin-top: 80px;
    padding: 50px;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.services-cta h3 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #000000;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.services-cta p {
    font-size: 1.2em;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 30px;
    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;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 150px;
    justify-content: center;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #1e3a8a, #ff69b4);
    color: #000000;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #000000;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3a8a 100%);
    color: #fff;
    padding: 60px 0 20px 0;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,100 1000,0 1000,100"/></svg>') no-repeat;
    background-size: cover;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    min-width: 250px;
    margin: 20px;
}

.footer-section h3 {
    color: #ff69b4;
    font-size: 1.6em;
    margin-bottom: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.footer-section p, 
.footer-section a {
    color: #ffffff;
    line-height: 1.8;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    border-radius: 5px;
    position: relative;
}

.footer-section a:hover {
    color: #ffd700;
    transform: translateX(8px);
    padding-left: 10px;
    background: rgba(255, 215, 0, 0.1);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s;
}

.footer-social img:hover {
    transform: scale(1.3) rotate(15deg);
    filter: brightness(1.3) saturate(1.5) drop-shadow(0 0 15px rgba(255, 107, 107, 0.6));
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

/* Animation for service sections */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}

/* Service Animation Styles */

/* Enhanced Mobile Responsive Design */
/* Mobile Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 215, 0, 0.1);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #000000;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #ffd700;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: #ffd700;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
  z-index: 1001;
  transition: right 0.3s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-logo {
  width: 50px;
  height: auto;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd700;
}

.mobile-menu-nav {
  padding: 20px 0;
}

.mobile-menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-nav li {
  margin: 0;
}

.mobile-menu-nav a {
  display: block;
  padding: 15px 25px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  border-left: 4px solid #ffd700;
  transform: translateX(5px);
}

.mobile-menu-nav a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  margin-right: 12px;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
        font-size: 14px;
    }
    
    .navbar {
        flex-direction: row;
        height: 70px;
        padding: 8px 15px;
        backdrop-filter: blur(15px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        justify-content: space-between;
    }
    
    .navbar-left {
        margin-bottom: 0;
        justify-content: flex-start;
        gap: 8px;
    }
    
    .navbar-right {
        justify-content: flex-end;
    }
    
    .navbar-text {
        font-size: 1.4em;
        text-align: left;
    }
    
    .navbar-text a {
        padding: 6px 8px;
        border-radius: 6px;
        line-height: 1.2;
    }
    
    /* Hide desktop menu items */
    .search-container,
    .navbar-list {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .mobile-menu,
    .mobile-menu-overlay {
        display: block !important;
    }

    /* Mobile Services Container */
    .services-container {
        padding: 15px 10px;
        margin: 20px auto;
        max-width: 100%;
    }
    
    .services-header {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .services-header h2 {
        font-size: 1.8em;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .services-subtitle {
        font-size: 0.9em;
        padding: 0 15px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    /* Mobile Service Sections */
    .service-section {
        margin-bottom: 25px;
        padding: 15px;
        border-radius: 15px;
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(14, 165, 233, 0.08));
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .service-content {
        flex-direction: column;
        gap: 15px;
        padding: 0;
        min-height: auto;
        text-align: center;
        align-items: center;
    }
    
    /* Mobile Service Images */
    .service-image {
        width: 100%;
        max-width: 280px;
        height: 200px;
        margin: 0 auto 15px auto;
        border-radius: 12px;
        object-fit: cover;
        border: 2px solid rgba(255, 215, 0, 0.3);
    }
    
    /* Mobile Service Numbers */
    .service-number {
        font-size: 2.5em;
        min-width: auto;
        text-align: center;
        margin-bottom: 10px;
        color: #1e3a8a;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    /* Mobile Service Details */
    .service-details {
        text-align: center;
        max-width: 100%;
    }
    
    .service-details h3 {
        font-size: 1.4em;
        margin-bottom: 12px;
        color: #1e3a8a;
        font-weight: bold;
        line-height: 1.2;
    }
    
    .service-description {
        font-size: 0.9em;
        text-align: center;
        line-height: 1.5;
        margin-bottom: 15px;
        color: #333;
        padding: 0 10px;
    }
    
    /* Mobile Service Features */
    .service-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }
    
    .feature-tag {
        font-size: 0.75em;
        padding: 5px 10px;
        border-radius: 15px;
        background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
        color: white;
        border: none;
        font-weight: 500;
        text-align: center;
    }

    /* Mobile Services CTA */
    .services-cta {
        padding: 25px 15px;
        margin-top: 30px;
        text-align: center;
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(14, 165, 233, 0.1));
        border-radius: 15px;
    }
    
    .services-cta h3 {
        font-size: 1.6em;
        margin-bottom: 10px;
        color: #1e3a8a;
    }
    
    .services-cta p {
        font-size: 0.9em;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 0.9em;
        border-radius: 25px;
        font-weight: 600;
    }

    /* Mobile Hero Section */
    .text-overlay {
        padding: 15px 20px;
        width: 90%;
        max-width: 350px;
        margin: 0 auto;
        border-radius: 15px;
    }
    
    .text-overlay h1 {
        font-size: 1.6em;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .text-overlay p {
        font-size: 0.85em;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    /* Mobile Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 0 15px;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .footer-section h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.85em;
        line-height: 1.4;
    }
    
    .footer-social {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-social img {
        width: 28px;
        height: 28px;
    }
    
    .footer-contact {
        justify-content: center;
        font-size: 0.85em;
        gap: 10px;
    }
    
    .footer-contact img {
        width: 16px;
        height: 16px;
    }
}

/* Extra Small Mobile Devices (phones in portrait) */
@media (max-width: 480px) {
    body {
        padding-top: 70px;
        font-size: 13px;
    }
    
    .navbar {
        height: 60px;
        padding: 5px 10px;
    }
    
    .navbar-text {
        font-size: 1.2em;
    }
    
    .services-container {
        padding: 10px 8px;
        margin: 15px auto;
    }
    
    .services-header h2 {
        font-size: 1.5em;
        margin-bottom: 8px;
    }
    
    .services-subtitle {
        font-size: 0.8em;
        padding: 0 10px;
        margin-bottom: 15px;
    }
    
    .service-section {
        margin-bottom: 20px;
        padding: 12px;
        border-radius: 12px;
    }
    
    .service-content {
        gap: 12px;
    }
    
    .service-image {
        max-width: 250px;
        height: 160px;
        margin-bottom: 12px;
        border-radius: 10px;
    }
    
    .service-number {
        font-size: 2em;
        margin-bottom: 8px;
    }
    
    .service-details h3 {
        font-size: 1.2em;
        margin-bottom: 8px;
    }
    
    .service-description {
        font-size: 0.8em;
        margin-bottom: 12px;
        padding: 0 5px;
    }
    
    .feature-tag {
        font-size: 0.7em;
        padding: 4px 8px;
    }
    
    .services-cta {
        padding: 20px 12px;
        margin-top: 25px;
    }
    
    .services-cta h3 {
        font-size: 1.4em;
        margin-bottom: 8px;
    }
    
    .services-cta p {
        font-size: 0.8em;
        margin-bottom: 15px;
    }
    
    .cta-btn {
        max-width: 220px;
        padding: 10px 18px;
        font-size: 0.8em;
    }
    
    .text-overlay {
        padding: 12px 15px;
        width: 95%;
        max-width: 300px;
    }
    
    .text-overlay h1 {
        font-size: 1.4em;
        margin-bottom: 8px;
    }
    
    .text-overlay p {
        font-size: 0.75em;
        margin-bottom: 12px;
    }
}

/* Enhanced Service Section Styling */
.service-section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(14, 165, 233, 0.05));
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-section:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.2);
}
