/* 
* Main Stylesheet for Bluewave Systems Website
* A modern, responsive design with a clean aesthetic
*/

/* ===== VARIABLES ===== */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #0f172a;
    --accent-color: #3b82f6;
    --light-color: #c5dcff; /* Deeper light blue instead of previous light blue */
    --dark-color: #1e293b;
    --gray-color: #64748b;
    --light-gray: #e2e8f0;
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-headings: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    --line-height-body: 1.7;
    --line-height-headings: 1.3;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    line-height: var(--line-height-body);
    color: var(--dark-color);
    background-color: #ffffff; /* Changed from light blue to white */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 128px !important; /* 80px (header) + 48px (banner) */
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    line-height: var(--line-height-headings);
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-headings);
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: top 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    min-height: 80px;
}

.logo {
    flex: 0 0 35%; /* Increased from 25% to give more space for the logo */
    display: flex;
    align-items: center;
}

nav {
    flex: 0 0 75%; /* Adjusted from 85% to balance with larger logo */
}

nav ul {
    display: flex;
    justify-content: flex-end;
    white-space: nowrap;
    padding-right: 20px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--dark-color); /* Changed back to dark color for better contrast with white background */
    font-weight: 500;
    font-size: 1.1rem; /* Kept the same */
    padding: 8px 0; /* Reduced padding from 10px to 8px */
    position: relative;
    display: inline-block;
    font-family: var(--font-headings);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
    background: none;
    border: none;
    padding: 8px;
    position: relative;
    z-index: 1002;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

/* Add a class for the header logo to ensure its size is maintained */
.header-logo {
    height: 180px;
    width: auto;
    display: block;
    margin: -50px 0;
    object-fit: contain;
    max-width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    color: white;
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7); /* Dark overlay for better text readability */
    z-index: -1;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
    color: white; /* Override the global heading color */
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease;
    color: white; /* Override the global text color */
}

.hero .btn {
    animation: fadeIn 1.5s ease;
    color: white; /* Ensure button text is white */
}

.hero .btn:hover {
    color: var(--primary-color); /* Change text color on hover for better contrast */
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    background-color: #ffffff; /* Changed from light blue to white */
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.feature-card i {
    margin-bottom: 0.5rem;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature-card i::before {
    display: inline-block;
    background-color: transparent;
}

.service-icon {
    margin-bottom: 0.5rem;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    display: inline-block;
    background-color: transparent;
    font-size: 1.25rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ===== CTA SECTION ===== */
.cta {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.cta .btn {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn:hover {
    background-color: var(--light-gray);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    font-family: var(--font-headings);
}

.page-header p {
    color: white;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SERVICES PAGE ===== */
.services {
    padding: 100px 0;
    background-color: #ffffff; /* Changed from light blue to white */
}

.service-item {
    display: flex;
    margin-bottom: 80px;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-icon {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-size: 4rem;
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.service-content ul {
    margin-bottom: 25px;
}

.service-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== ABOUT PAGE ===== */
.about-story {
    padding: 100px 0;
    background-color: #ffffff; /* Changed from light blue to white */
}

.about-story .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-values {
    padding: 100px 0;
    background-color: var(--light-color);
}

.mission-values .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.mission-box {
    background-color: var(--primary-color);
    color: white;
    padding: 50px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: white;
}

.mission-box p {
    color: white;
}

.values h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.team {
    padding: 100px 0;
    background-color: #ffffff; /* Changed from light blue to white */
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin: 20px 0 5px;
    padding: 0 20px;
    color: var(--secondary-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0 20px;
    margin-bottom: 10px;
}

.member-bio {
    padding: 0 20px 20px;
}

.about-video {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/9;
    max-width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    background-color: #f8fafc;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 100px 0;
    background-color: #ffffff; /* Changed from light blue to white */
}

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

.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.social-contact {
    margin-top: 40px;
}

.social-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.map-section {
    padding: 50px 0 100px;
    background-color: var(--light-color);
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== THANK YOU PAGE ===== */
.thank-you-section {
    padding: 100px 0;
    background-color: #ffffff; /* Changed from light blue to white */
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.thank-you-content i {
    font-size: 5rem;
    color: #10b981; /* Green color for success */
    margin-bottom: 20px;
}

.thank-you-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.thank-you-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--gray-color);
}

.thank-you-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    filter: brightness(0) invert(1); /* Makes the logo white for better visibility on dark background */
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

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

.footer-section p {
    margin-bottom: 15px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p i {
    margin-right: 0;
    flex-shrink: 0;
    color: var(--primary-color);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.25rem;
    margin-right: 15px;
}

.footer-section .social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .about-story .container,
    .mission-values .container,
    .contact-section .container {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .service-icon {
        flex: 0 0 150px;
        width: 100%;
    }
    
    .thank-you-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Adjust hero video for tablets */
    .hero-video {
        height: 100%;
        width: auto;
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: relative;
        background-color: white;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-left: auto;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1002;
    }

    nav {
        position: fixed;
        top: 148px; /* Height of header (100px) + banner height (48px) */
        left: 0;
        width: 100%;
        height: 0;
        background-color: white;
        transition: all 0.3s ease-in-out;
        overflow: hidden;
        z-index: 999; /* Below the header */
        opacity: 0;
        padding: 0;
        box-shadow: none;
    }

    nav.active {
        height: calc(100vh - 148px); /* Viewport height minus header and banner */
        opacity: 1;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        padding: 20px 0;
        overflow-y: auto;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease-in-out;
    }
    
    nav.active ul li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Stagger the animation for each menu item */
    nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
    nav.active ul li:nth-child(2) { transition-delay: 0.2s; }
    nav.active ul li:nth-child(3) { transition-delay: 0.3s; }
    nav.active ul li:nth-child(4) { transition-delay: 0.4s; }
    nav.active ul li:nth-child(5) { transition-delay: 0.5s; }
    nav.active ul li:nth-child(6) { transition-delay: 0.6s; }
    
    nav ul li a {
        display: block;
        padding: 15px 0;
        font-size: 1.2rem;
        color: var(--secondary-color);
        border-bottom: 1px solid var(--light-gray);
        transition: all 0.3s ease;
    }
    
    nav ul li:last-child a {
        border-bottom: none;
    }
    
    nav ul li a:hover {
        color: var(--primary-color);
        transform: translateX(10px);
        background-color: rgba(37, 99, 235, 0.05);
    }
    
    nav ul li a::after {
        display: none;
    }
    
    nav ul li a.active {
        color: var(--primary-color);
        font-weight: 600;
        background-color: rgba(37, 99, 235, 0.05);
    }
    
    header {
        background-color: white;
    }
    
    header .container {
        min-height: 100px;
        padding: 15px;
        position: relative;
    }

    .logo {
        flex: 0 0 45%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title,
    .cta h2,
    .page-header h1 {
        font-size: 2rem;
    }
    
    .header-logo {
        height: 170px; /* Keeping it closer to desktop size */
        margin: -40px 0;
        min-width: 170px;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    /* Adjust hero video for mobile */
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero::after {
        background: rgba(15, 23, 42, 0.8); /* Darker overlay for better text readability on mobile */
    }
    
    .about-video {
        margin-top: 2rem;
        min-height: auto;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0;
        min-height: 100vh;
    }
    
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .feature-card,
    .team-member {
        margin-bottom: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .logo {
        flex: 0 0 50%; /* Even more space for logo on smaller devices */
    }
    
    .header-logo {
        height: 160px; /* Still maintaining a large size */
        min-width: 160px;
        margin: -35px 0;
    }
    
    .footer-logo {
        max-width: 130px;
    }
}

/* ===== PARTNERS PAGE ===== */
.partners-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.partners-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
    height: 100%;
    margin-bottom: 20px;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #d0d0d0;
}

.partner-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eaeaea;
}

.partner-logo img {
    max-height: 80px;
    max-width: 80%;
    object-fit: contain;
}

.partner-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.partner-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.partner-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.partner-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.partner-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.partner-content ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-logo {
        height: 100px;
    }
}

/* ===== SERVICE DETAIL PAGES ===== */
.service-detail {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 50px;
}

.service-detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
}

.service-icon.large {
    font-size: 3.5rem;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-detail-header h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 2rem;
}

.service-detail-content {
    line-height: 1.7;
}

.service-detail-content h3 {
    color: var(--secondary-color);
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

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

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

.service-detail-content ul li {
    margin-bottom: 10px;
}

.technology-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.technology-partner {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.technology-partner h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.feature-box {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

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

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.process-steps {
    margin: 30px 0;
}

.process-step {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    margin-bottom: 8px;
    color: var(--dark-color);
}

.case-study {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid var(--secondary-color);
}

.case-study p {
    margin-bottom: 15px;
}

.case-study ul {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .service-detail {
        padding: 25px;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .technology-partners,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HOME PAGE SNIPPET SECTIONS ===== */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--gray-color);
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* Services Snippet */
.home-services-snippet {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-preview-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-icon {
    margin-bottom: 1.5rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.service-icon i {
    display: inline-block;
    background-color: transparent;
}

.service-preview-item h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.service-preview-item p {
    color: var(--gray-color);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    background-color: var(--secondary-color);
    color: #fff;
}

.why-choose-us .section-title {
    color: #fff;
}

.why-choose-us .section-title::after {
    background-color: white;
}

.values-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-preview-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.value-preview-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.value-preview-item i {
    margin-bottom: 0.5rem;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.value-preview-item i::before {
    display: inline-block;
    background-color: transparent;
}

.value-preview-item h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.value-preview-item p {
    color: rgba(255, 255, 255, 0.8);
}

.why-choose-us .btn {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: #fff;
}

.why-choose-us .btn:hover {
    background-color: var(--accent-color);
}

/* Partners Snippet */
.home-partners-snippet {
    padding: 4rem 0;
    background-color: #fff;
}

.partners-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
}

.partner-logo-item {
    flex: 0 0 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-preview,
    .values-preview {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .partners-logo-grid {
        gap: 2rem;
    }
    
    .partner-logo-item {
        flex: 0 0 120px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .services-preview,
    .values-preview {
        grid-template-columns: 1fr;
    }
    
    .partner-logo-item {
        flex: 0 0 100px;
        height: 50px;
    }
}

.header-logo {
    height: 100px;
}

/* Expertise Section */
.expertise {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
}

.expertise-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expertise-item h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Certifications Section */
.certifications {
    padding: 4rem 0;
    text-align: center;
    background-color: white;
}

.certifications p {
    max-width: 800px;
    margin: 1.5rem auto;
}

.certification-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.certification-badges i {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-header {
    margin-bottom: 1.5rem;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    display: block;
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.testimonial-position {
    display: block;
    color: #6c757d;
    font-size: 1rem;
}

.testimonial-content .fa-quote-left {
    color: #007bff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-content blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

.testimonial-content blockquote p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Add specific heading styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
}

/* Pricing Page Styles */
.pricing-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    font-family: var(--font-headings);
}

.pricing-hero p {
    color: white;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.security-stack {
    padding: 80px 0;
    background-color: #f8fafc;
}

.security-stack h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

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

.stack-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

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

.stack-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stack-item h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-family: var(--font-headings);
}

.stack-item ul {
    list-style: none;
    padding: 0;
}

.stack-item ul li {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.pricing {
    padding: 80px 0;
    background-color: white;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-card .price {
    margin-bottom: 2rem;
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card .features li {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.pricing-card .features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.pricing-card .btn {
    width: 100%;
    margin-bottom: 1rem;
}

.pricing-card .note {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

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

@media (max-width: 576px) {
    .stack-grid {
        grid-template-columns: 1fr;
    }
}

/* Promotional Banner */
.promo-banner {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.promo-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.promo-banner a {
    color: white;
    text-decoration: underline;
    margin-left: 5px;
}

.promo-banner a:hover {
    color: var(--light-color);
}

.promo-banner .close-banner {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.promo-banner .close-banner:hover {
    opacity: 0.8;
}

/* Adjust header position when banner is present */
body.has-banner header {
    top: 48px;
}

/* ===== BREADCRUMB NAVIGATION ===== */
.breadcrumb-nav {
    display: none; /* Hide breadcrumb navigation completely */
}

.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--gray-color);
    font-size: 0.875rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    margin: 0 0.5rem;
    color: var(--gray-color);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--dark-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--gray-color);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
} 