/* Global Styles */
:root {
    --primary-blue: #0A74DA;
    --primary-navy: #0B1C33;
    --secondary-orange: #FF7A00;
    --secondary-teal: #00BFA6;
    --white: #FFFFFF;
    --light-grey: #F8F9FA;
    --dark-grey: #222831;
    --medium-grey: #6C757D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-grey);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Typography */
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

/* Navigation */
.navbar {
    background: rgba(11, 28, 51, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--white) !important;
}

.navbar-brand i {
    color: var(--primary-blue);
    margin-right: 8px;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar .btn-primary {
    background: var(--secondary-orange);
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 116, 218, 0.3);
}

/* Hero Section */


.hero-section::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons .btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.hero-buttons .btn-primary {
    background: var(--secondary-orange);
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

.hero-buttons .btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.hero-buttons .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.3s both;
}

/* Section Styles */
.section-title {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-orange);
}

.section-subtitle {
    color: var(--medium-grey);
    font-size: 18px;
    margin-bottom: 50px;
}

/* Banner Section */
.banner-section {
    background: var(--light-grey);
}

.banner-content h2 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 10px;
}

.banner-content p {
    color: var(--medium-grey);
    font-size: 18px;
}

/* Services Section */
.service-card {
    background: var(--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;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-card h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--medium-grey);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-orange);
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Tech Stack Section */
.tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-logo i {
    font-size: 48px;
    color: var(--medium-grey);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.tech-logo:hover i {
     color: var(--primary-blue); 
    filter: grayscale(0%); 
    transform: scale(1.1);
}

.tech-logo span {
    color: var(--medium-grey);
    font-weight: 500;
    transition: color 0.3s ease;
}

.tech-logo:hover span {
    color: var(--primary-navy);
}

/* Industries Section */
.industry-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.industry-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.industry-card:hover i {
    color: var(--secondary-orange);
    transform: scale(1.1);
}

.industry-card h5 {
    color: var(--primary-navy);
    font-weight: 600;
    margin: 0;
}

/* Why Choose Us Section */
.feature-card {
    background: var(--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;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-teal), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-card h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--medium-grey);
    line-height: 1.6;
}

/* Case Studies Section */
.case-study-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-content {
    padding: 25px;
}

.case-study-content h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.case-study-content p {
    color: var(--medium-grey);
    margin-bottom: 10px;
    line-height: 1.6;
}

.case-study-content strong {
    color: var(--primary-navy);
}

/* Testimonials Section */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-content p {
    font-size: 18px;
    color: var(--dark-grey);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    color: var(--primary-navy);
    margin: 0;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--medium-grey);
    font-size: 14px;
}

/* Partners Section */
.partners-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    animation: scroll 20s linear infinite;
}

.partner-logo {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.partner-logo img {
    max-width: 150px;
    height: auto;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-navy));
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-content .btn {
    background: var(--secondary-orange);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-content .btn:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-brand h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand h4 i {
    color: var(--primary-blue);
    margin-right: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-blue);
    width: 20px;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-blue);
}

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

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card,
    .feature-card,
    .industry-card {
        margin-bottom: 30px;
    }
    
    .tech-logos {
        gap: 20px;
    }
    
    .tech-logo i {
        font-size: 36px;
    }
    
    .partners-carousel {
        gap: 20px;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 20px;
    }
    
    .navbar-nav .nav-item {
        margin: 10px 0;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .service-card,
    .feature-card {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .footer {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Utility Classes */
.btn-primary {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--secondary-orange);
    border-color: var(--secondary-orange);
}

.text-primary {
    color: var(--primary-blue) !important;
}

.bg-primary {
    background-color: var(--primary-blue) !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[loading] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* About Page Styles */
.mission-card, .vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-icon i, .vision-icon i {
    font-size: 32px;
    color: var(--white);
}

.mission-card h3, .vision-card h3 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-card p, .vision-card p {
    color: var(--medium-grey);
    line-height: 1.6;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
    padding-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    text-align: left;
    padding-left: 30px;
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
}

.timeline-date {
    background: var(--secondary-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.timeline-content h4 {
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--medium-grey);
    margin: 0;
    line-height: 1.6;
}

/* Team Styles */
.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-content {
    padding: 25px;
    text-align: center;
}

.team-content h4 {
    color: var(--primary-navy);
    margin-bottom: 5px;
    font-weight: 600;
}

.team-role {
    color: var(--secondary-orange);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.team-content p {
    color: var(--medium-grey);
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-grey);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Achievement Styles */
.achievement-card {
    background: var(--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;
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-orange), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1) rotate(5deg);
}

.achievement-icon i {
    font-size: 28px;
    color: var(--white);
}

.achievement-card h4 {
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.achievement-card p {
    color: var(--medium-grey);
    margin: 0;
    font-weight: 500;
}

/* Certification Styles */
.certification-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.certification-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

.certification-card h5 {
    color: var(--primary-navy);
    margin: 0;
    font-weight: 600;
}

/* Value Styles */
.value-card {
    background: var(--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;
    height: 100%;
}

.value-card: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, var(--secondary-teal), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 28px;
    color: var(--white);
}

.value-card h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: var(--medium-grey);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
        padding-left: 30px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -45px;
        right: auto;
    }
}

/* Services Page Styles */
.service-detail-card {
    background: var(--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;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-detail-card .service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-detail-card h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-detail-card p {
    color: var(--medium-grey);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.service-features li {
    color: var(--medium-grey);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--secondary-teal);
    margin-right: 10px;
    font-size: 14px;
}

/* Service Info Styles */
.service-info {
    padding: 20px;
}

.service-info h3 {
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-info p {
    color: var(--medium-grey);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 16px;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-item i {
    font-size: 24px;
    color: var(--primary-blue);
    margin-top: 5px;
}

.highlight-item h5 {
    color: var(--primary-navy);
    margin-bottom: 5px;
    font-weight: 600;
}

.highlight-item p {
    color: var(--medium-grey);
    margin: 0;
    font-size: 14px;
}

.service-image {
    padding: 20px;
}

.service-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.05);
}

/* Pricing Styles */
.pricing-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary-orange);
    color: var(--white);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--light-grey);
}

.pricing-header h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    color: var(--medium-grey);
    font-size: 20px;
    font-weight: 500;
}

.amount {
    color: var(--primary-blue);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.period {
    color: var(--medium-grey);
    font-size: 16px;
    font-weight: 500;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    color: var(--medium-grey);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.pricing-features li i {
    color: var(--secondary-teal);
    margin-right: 10px;
    font-size: 12px;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* FAQ Styles */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: var(--white);
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    color: var(--primary-navy);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A74DA'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    background: var(--white);
    color: var(--medium-grey);
    line-height: 1.6;
}

/* Responsive Services */
@media (max-width: 768px) {
    .service-detail-card {
        padding: 20px;
    }
    
    .service-info {
        padding: 15px;
    }
    
    .service-image {
        padding: 15px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-item i {
        margin: 0 auto 10px;
    }
}

/* Contact Page Styles */
.contact-card {
    background: var(--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;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card .contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card .contact-icon i {
    font-size: 28px;
    color: var(--white);
}

.contact-card h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    color: var(--medium-grey);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Styles */
.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-card h3 {
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-form-card p {
    color: var(--medium-grey);
    margin-bottom: 30px;
}

.form-label {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 2px solid var(--light-grey);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(10, 116, 218, 0.25);
}

.form-control::placeholder {
    color: var(--medium-grey);
}

.form-check-label {
    color: var(--medium-grey);
    font-size: 14px;
}

/* Contact Sidebar Styles */
.contact-sidebar {
    height: 100%;
}

.map-card, .social-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-card h4, .social-card h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
}

.social-card p {
    color: var(--medium-grey);
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--light-grey);
    border-radius: 10px;
    color: var(--medium-grey);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(5px);
}

.social-link i {
    font-size: 16px;
    width: 20px;
}

/* Business Hours Styles */
.hours-card, .response-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.hours-card h3, .response-card h3 {
    color: var(--primary-navy);
    margin-bottom: 25px;
    font-weight: 600;
}

.hours-list {
    margin-bottom: 30px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-grey);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    color: var(--primary-navy);
    font-weight: 600;
}

.time {
    color: var(--medium-grey);
    font-weight: 500;
}

.emergency-contact {
    background: linear-gradient(135deg, var(--secondary-orange), var(--primary-blue));
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.emergency-contact h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.emergency-contact p {
    margin-bottom: 15px;
    font-size: 14px;
}

.emergency-phone {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-phone:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Response Times Styles */
.response-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.response-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.response-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-teal), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.response-icon i {
    font-size: 20px;
    color: var(--white);
}

.response-content h5 {
    color: var(--primary-navy);
    margin-bottom: 5px;
    font-weight: 600;
}

.response-content p {
    color: var(--medium-grey);
    margin: 0;
    font-size: 14px;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 25px;
    }
    
    .hours-card, .response-card {
        padding: 20px;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .response-item {
        flex-direction: column;
        text-align: center;
    }
    
    .response-icon {
        margin: 0 auto 10px;
    }
}

/* Projects Page Specific Styles */

/* Project Filter */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 116, 218, 0.3);
}

/* Project Cards */
.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 116, 218, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--secondary-orange);
    color: white;
    transform: scale(1.1);
}

.project-content {
    padding: 25px;
}

.project-category {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-grey);
}

.project-description {
    color: var(--medium-grey);
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: var(--light-grey);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Case Studies */
.case-study-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-study-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.case-study-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 20px;
}

.case-study-meta h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-grey);
}

.case-study-category {
    background: var(--light-grey);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.case-study-section {
    margin-bottom: 20px;
}

.case-study-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-grey);
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-study-section h4 i {
    color: var(--primary-blue);
}

.case-study-section p {
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 0;
}

.results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-grey);
    color: var(--medium-grey);
}

.results-list li:last-child {
    border-bottom: none;
}

.results-list strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Client Success Stories */
.client-story-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.client-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.client-avatar {
    margin-bottom: 20px;
}

.client-avatar img {
    width: 80px;
    height: 80px;
    border: 4px solid var(--light-grey);
    transition: border-color 0.3s ease;
}

.client-story-card:hover .client-avatar img {
    border-color: var(--primary-blue);
}

.client-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-grey);
}

.client-position {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.client-rating {
    margin-bottom: 20px;
}

.client-rating i {
    color: #FFD700;
    margin: 0 2px;
}

.client-testimonial {
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.client-metrics {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 12px;
    color: var(--medium-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Projects */
@media (max-width: 768px) {
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .case-study-card,
    .client-story-card {
        padding: 20px;
    }
    
    .case-study-header {
        flex-direction: column;
        text-align: center;
    }
    
    .case-study-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .client-metrics {
        flex-direction: column;
        gap: 10px;
    }
}

/* Gallery Page Specific Styles */

/* Gallery Items */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 116, 218, 0.9), rgba(11, 28, 51, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-content p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.gallery-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-link:hover {
    background: var(--secondary-orange);
    color: white;
    transform: scale(1.1);
}

/* Video Gallery */
.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: var(--secondary-orange);
    transform: scale(1.1);
}

.video-content {
    padding: 25px;
}

.video-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.video-content p {
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Client Work Showcase */
.client-work-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.client-work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.client-work-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.client-work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.client-work-card:hover .client-work-image img {
    transform: scale(1.1);
}

.client-logo {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-work-content {
    padding: 25px;
}

.client-work-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-grey);
}

.client-work-category {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.client-work-description {
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.client-work-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--medium-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid var(--light-grey);
    padding: 20px 25px;
}

.modal-title {
    font-weight: 600;
    color: var(--dark-grey);
}

.modal-body {
    padding: 25px;
}

.modal-image {
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-project-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.modal-project-description {
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-item img {
        height: 250px;
    }
    
    .video-thumbnail img {
        height: 200px;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .video-content {
        padding: 20px;
    }
    
    .client-work-content {
        padding: 20px;
    }
    
    .client-work-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-body {
        padding: 20px;
    }
}

/* Careers Page Styles */
.job-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.job-card .card-title {
    color: var(--dark-grey);
    font-weight: 600;
    margin-bottom: 0;
}

.job-card .badge {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
}

.job-card .btn-outline-primary {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 25px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.job-card .btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.culture-card {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.culture-card img {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.culture-card:hover img {
    transform: scale(1.05);
}

.culture-card h5 {
    color: var(--dark-grey);
    font-weight: 600;
    margin: 15px 0 10px 0;
}

.culture-card p {
    color: var(--medium-grey);
    line-height: 1.6;
}

/* Application Form Styles */
#applicationForm {
    max-width: 100%;
}

#applicationForm .form-label {
    font-weight: 500;
    color: var(--dark-grey);
    margin-bottom: 8px;
}

#applicationForm .form-control,
#applicationForm .form-select {
    border: 2px solid var(--light-grey);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 16px;
}

#applicationForm .form-control:focus,
#applicationForm .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(10, 116, 218, 0.25);
}

#applicationForm .form-control::placeholder {
    color: var(--medium-grey);
}

#applicationForm textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

#applicationForm .form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

#applicationForm .form-check-label {
    color: var(--dark-grey);
    font-size: 14px;
}

#applicationForm .btn-primary {
    background: var(--primary-blue);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#applicationForm .btn-primary:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

/* Job Modal Styles */
.modal-lg .modal-content {
    border-radius: 20px;
}

.modal-lg .modal-header {
    background: var(--light-grey);
    border-radius: 20px 20px 0 0;
}

.modal-lg .modal-title {
    color: var(--dark-grey);
    font-weight: 600;
}

.modal-lg .modal-body h6 {
    color: var(--primary-blue);
    font-weight: 600;
    margin: 20px 0 10px 0;
    font-size: 16px;
}

.modal-lg .modal-body h6:first-child {
    margin-top: 0;
}

.modal-lg .modal-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.modal-lg .modal-body li {
    color: var(--dark-grey);
    margin-bottom: 8px;
    line-height: 1.5;
}

.modal-lg .modal-footer {
    border-top: 1px solid var(--light-grey);
    padding: 20px 25px;
}

/* Page Header for Careers */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-navy));
    position: relative;
    overflow: hidden;
}

.page-header::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.page-header .btn {
    animation: fadeInUp 1s ease 0.4s both;
}

.page-header img {
    animation: fadeInRight 1s ease 0.6s both;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Careers */
@media (max-width: 768px) {
    .job-card {
        margin-bottom: 20px;
    }
    
    .job-card .card-body {
        padding: 20px;
    }
    
    .job-card .card-title {
        font-size: 18px;
    }
    
    .culture-card {
        margin-bottom: 30px;
    }
    
    .culture-card img {
        height: 200px;
        object-fit: cover;
    }
    
    #applicationForm .card-body {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .modal-lg .modal-body {
        padding: 20px;
    }
    
    .modal-lg .modal-body ul {
        padding-left: 15px;
    }
}

@media (max-width: 576px) {
    .job-card .card-title {
        font-size: 16px;
    }
    
    .job-card .badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .culture-card {
        padding: 15px;
    }
    
    .culture-card img {
        height: 150px;
    }
    
    #applicationForm .card-body {
        padding: 20px 15px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header .btn {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Blog Page Styles */
.featured-post-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-post-image {
    position: relative;
    overflow: hidden;
}

.featured-post-image img {
    transition: transform 0.3s ease;
}

.featured-post-card:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post-content {
    padding: 40px;
}

.post-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.post-category {
    background: var(--primary-blue);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.post-date {
    color: var(--medium-grey);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-excerpt {
    color: var(--medium-grey);
    line-height: 1.8;
    margin: 20px 0;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.post-author h6 {
    margin: 0;
    color: var(--dark-grey);
}

.post-author span {
    color: var(--medium-grey);
    font-size: 14px;
}

/* Category Cards */
.category-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 24px;
    color: var(--white);
}

.category-card h5 {
    color: var(--dark-grey);
    margin-bottom: 10px;
}

.post-count {
    color: var(--medium-grey);
    font-size: 14px;
}

/* Blog Post Cards */
.blog-post-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.post-content {
    padding: 25px;
}

.post-content h4 {
    color: var(--dark-grey);
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 18px;
}

.post-content p {
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-content .post-meta {
    margin-bottom: 15px;
}

.post-read-time {
    color: var(--medium-grey);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.read-more-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: var(--secondary-orange);
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-content h2 {
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.newsletter-content p {
    color: var(--medium-grey);
    margin-bottom: 30px;
    font-size: 18px;
}

.newsletter-form .input-group {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 25px;
    font-size: 16px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
}

.newsletter-form .btn {
    padding: 15px 30px;
    border-radius: 0 25px 25px 0;
    font-weight: 600;
}

.newsletter-form small {
    margin-top: 15px;
    display: block;
}

/* Tags Section */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tag {
    background: var(--light-grey);
    color: var(--dark-grey);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tag:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Blog Responsive */
@media (max-width: 768px) {
    .featured-post-content {
        padding: 25px;
    }
    
    .featured-post-content h2 {
        font-size: 24px;
    }
    
    .category-card {
        padding: 20px 15px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 20px;
    }
    
    .blog-post-card {
        margin-bottom: 30px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-content h4 {
        font-size: 16px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-form .btn {
        border-radius: 15px;
        margin-top: 15px;
    }
    
    .tags-cloud {
        gap: 10px;
    }
    
    .tag {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .featured-post-content {
        padding: 20px;
    }
    
    .featured-post-content h2 {
        font-size: 20px;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .category-card h5 {
        font-size: 16px;
    }
    
    .post-count {
        font-size: 12px;
    }
    
    .newsletter-content h2 {
        font-size: 24px;
    }
    
    .newsletter-content p {
        font-size: 16px;
    }
}
