
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    background: #0E6189; /* Fallback for older browsers */
    background: -moz-linear-gradient(top, #0E6189 0%, #34036E 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #0E6189 0%, #34036E 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #0E6189 0%, #34036E 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0E6189', endColorstr='#34036E', GradientType=0); /* IE6-9 */
color: white;
    margin: 0;
    min-height: 100vh;
    background-attachment: fixed;
}
/* Ensure feather icons have proper styling before JS loads */
[data-feather] {
    display: none; /* Hide until JS replaces them */
}
.feather-replaced [data-feather] {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
nav {
    background-color: #134280;
    width: 100%;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.nav-scrolled {
    background-color: rgba(14, 97, 137, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(14, 97, 137, 0.98);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

#mobile-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

#mobile-menu a {
    margin: 1rem 0;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

#mobile-menu a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

#mobile-menu-button {
    transition: transform 0.3s ease;
}

#mobile-menu-button:active {
    transform: scale(0.9);
}

#close-mobile-menu {
    transition: all 0.3s ease;
}

#close-mobile-menu:hover {
    transform: rotate(90deg);
}
#mobile-menu-button {
    cursor: pointer;
    z-index: 1001;
}

#close-mobile-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
    z-index: 1002;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
#mobile-menu.active {
    display: flex;
}

#mobile-menu a {
    margin: 1rem 0;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

#mobile-menu a:hover {
    color: #FFD700;
    transform: scale(1.05);
}

#close-mobile-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

#close-mobile-menu svg {
    width: 2rem;
    height: 2rem;
}

#mobile-menu-button svg {
    width: 2rem;
    height: 2rem;
}
.nav-link {
    position: relative;
    padding: 0.5rem 0;
}

#phone-number {
    font-weight: 500;
    margin-right: 1rem;
    white-space: nowrap;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}
@media (max-width: 767px) {
    nav {
        padding: 0.8rem 0;
        position: relative;
        z-index: 1001;
    }
    
    #mobile-menu-button {
        z-index: 1002;
    }
    
    #close-mobile-menu {
        z-index: 1002;
    }
}
.blue-gradient {
    background: #0E6189; /* Fallback */
    background: -moz-linear-gradient(#0E6189 0%, #34036E 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(#0E6189 0%, #34036E 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(#0E6189 0%, #34036E 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0E6189', endColorstr='#34036E', GradientType=0); /* IE6-9 */
}
.footer-logo img {
    width: 12rem;
}

@media (min-width: 768px) {
    .footer-logo img {
        width: 14rem;
    }
}
footer {
    background-color: transparent;
    color: white;
    width: 100%;
    border-top: 1px solid #ffffff;
}
.container {
    max-width: 100%;
    padding: 0;
}
/* Article and section styles */
article, section, aside, figure {
    background: transparent;
    padding: 4rem 0;
}
article#case-studies {
background-color: transparent;
    padding: 2rem 0;
}
header.relative, 
article.relative {
width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
section.relative {
    background: #155285;
}
#services-slider,
#tech-solutions-slider,
#case-studies-slider {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    width: 100%;
    scroll-behavior: smooth;
}

#services-slider::-webkit-scrollbar,
#tech-solutions-slider::-webkit-scrollbar,
#case-studies-slider::-webkit-scrollbar {
    display: none;
}

#services-slider > div,
#tech-solutions-slider > div,
#case-studies-slider > div {
    scroll-snap-align: center;
    flex: 0 0 20rem;
}
#case-studies-slider::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}
#case-studies-slider > div {
    scroll-snap-align: center;
    flex: 0 0 20rem;
    width: 20rem;
}
.relative.h-\[550px\] > div > div {  /* Target the slide containers */
    transition: opacity 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.relative.h-\[550px\] > div > div.opacity-100 {
opacity: 1;
    z-index: 10;
}
.slider-dot {
    cursor: pointer;
    transition: all 0.3s ease;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    border: none;
    outline: none;
}
.slider-dot.opacity-100 {
    opacity: 1;
    transform: scale(1.2);
    background: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.slider-dot.opacity-50 {
    opacity: 0.5;
    transform: scale(1);
    background: white;
}
#prev-slide,
#next-slide,
#prev-service,
#next-service,
#prev-tech,
#next-tech,
#prev-case-study,
#next-case-study {
    transition: all 0.3s ease;
    background: rgba(17, 24, 39, 0.9);
}

#prev-slide:hover,
#next-slide:hover,
#prev-service:hover,
#next-service:hover,
#prev-tech:hover,
#next-tech:hover,
#prev-case-study:hover,
#next-case-study:hover {
    transform: scale(1.1);
    background: rgba(17, 24, 39, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#prev-slide i,
#next-slide i,
#prev-service i,
#next-service i,
#prev-tech i,
#next-tech i,
#prev-case-study i,
#next-case-study i {
    color: white;
}
.blue-text {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: #1BB1D5;
}
article#intro-section {
    padding: 2.5rem 0;
    background-color: rgba(243, 244, 246, 0.1);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 3.125rem;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid white;
    border-radius: 16px;
    box-sizing: border-box;
}
/* Responsive styles */
@media (max-width: 640px) {
    .video-container {
        padding-bottom: 56.25%;
        margin: 0 auto;
    }
    
    .half-width {
        width: 100%;
        padding: 0 1rem;
    }
}
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gold-text {
    color: #FFD700;
}
.gold-gradient {
    background: #FFD700; /* Fallback */
    background: -moz-linear-gradient(left, #FFD700, #FFA500); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #FFD700, #FFA500); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #FFD700, #FFA500); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFD700', endColorstr='#FFA500', GradientType=1); /* IE9 */
}
figure#client-logos-section,
article#results-section {
    padding: 4rem 0;
}
#services {
    padding-bottom: 6.25rem;
}
/* Typography */
h1, h2, h3, h4 {
    margin-top: 0;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    color: rgb(200, 200, 200);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0.5rem 0 1rem;
}

.text-gray-300 {
    color: rgb(209, 213, 219);
}

.text-gray-400 {
    color: rgb(156, 163, 175);
}

.text-gray-500 {
    color: rgb(107, 114, 128);
}

/* Cards */
.card {
    max-width: 620px;
    margin: 0 auto;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.card p:last-child {
    margin-bottom: 0;
}