/*
   Myra Global Solutions LLC Landing Page CSS
   Author: Senior Front-end Developer
   Version: 1.0
*/

/* --- Design System & Base Reset --- */
:root {
    /* Colors */
    --primary-color: #111827;        /* Rich Onyx */
    --secondary-color: #1f2937;      /* Dark Gray */
    --accent-color: #d4af37;         /* Metallic Gold */
    --accent-hover: #b8860b;         /* Dark Gold */
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-stats: #f3f4f6;
    --border-color: #e5e7eb;

    /* Typography */
    --font-family: 'Plus Jakarta Sans', sans-serif;

    /* Spacing & Sizing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Components --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 15px;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

/* --- Header & Navigation --- */
.header {
    position: relative;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-left span,
.contact-info span {
    margin-right: 25px;
}

.top-bar-left span i,
.contact-info span i {
    color: white;
    margin-right: 8px;
}

.social-links a {
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links a:hover {
    color: var(--accent-color);
}

.navbar {
    background-color: var(--bg-white);
    padding: 0;
    box-shadow: var(--box-shadow);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background-color: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 18px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .nav-mobile-only {
        display: block;
    }
}

.nav-link {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link i {
    font-size: 10px;
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: -30px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 15px 0;
    border-radius: 0 0 8px 8px;
    border-top: 3px solid var(--accent-color);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    color: var(--accent-color);
    background-color: var(--bg-light);
    padding-left: 30px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 120px 0 160px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.2), transparent 40%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.subtitle {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero .image-grid {
    position: relative;
    display: block;
    width: 100%;
}

.hero .image-large {
    width: 85%;
}

.hero .image-large img {
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    height: 480px;
    object-fit: cover;
}

.hero .image-small {
    width: 50%;
    position: absolute;
    bottom: -30px;
    right: 0;
    z-index: 3;
}

.hero .image-small img {
    border-radius: 30px;
    border: 12px solid var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    height: 300px;
    object-fit: cover;
}

.accent-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, var(--accent-color), transparent);
    top: -10%;
    left: -10%;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

/* Floating Dots */
.dots-pattern {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
}

.dots-1 {
    top: 50px;
    right: 50px;
}

.dots-2 {
    bottom: 50px;
    left: 50px;
}

/* --- Stats Bar --- */
.stats-bar {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-content {
    background-color: var(--bg-white);
    display: flex;
    justify-content: space-between;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-stats);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-color);
}

.stat-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* --- General Section Styles --- */
.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-light);
}

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

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 25px;
}

/* --- About Section --- */
.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-images {
    flex: 1;
}

.image-grid {
    position: relative;
    display: flex;
    gap: 20px;
}

.image-large {
    width: 70%;
}

.image-large img {
    border-radius: 30px;
    height: 500px;
    object-fit: cover;
}

.image-small {
    width: 40%;
    margin-top: 100px;
    margin-left: -100px;
}

.image-small img {
    border-radius: 30px;
    border: 10px solid var(--bg-white);
    height: 350px;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text .description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

/* --- Services Section --- */
/* --- Services Section --- */
.services-slider-container {
    position: relative;
    margin-top: 60px;
}

.services-slider {
    margin-left: -30px;
    margin-right: -30px;
}

.services-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.services-slider .slick-slide {
    height: auto !important;
    display: flex !important;
    padding: 0;
    text-align: center!important;
}

.services-slider .slick-slide > div {
    width: 100%;
    height: 100%;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 30px; /* More rounded */
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05); /* Softer border */
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); /* Softer shadow */
    position: relative;
    text-align: center;
}

.service-image {
    width: 100%;
    height: 260px;
    min-height: 260px; /* Rigid height */
    max-height: 260px; /* Rigid height */
    overflow: hidden;
    position: relative;
}

/* Subtle overlay on image */
.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 26, 78, 0.1), transparent);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 40px 35px; /* More padding for luxury feel */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card h3 {
    font-size: 20px; /* Larger header */
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.service-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.9;
}

.learn-more {
    margin-top: auto;
    font-weight: 700;
    color: var(--accent-color); /* Use accent color for CTA */
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.learn-more i {
    font-size: 12px;
}

/* Clean divider or accent */
.service-content::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 4px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 0 4px 4px 0;
    opacity: 0.15;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: var(--accent-color);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Slick Customization - Bottom Right Arrows */
.slider-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
    padding-right: 20px;
}

.services-slider-container .slider-arrows .slick-prev,
.services-slider-container .slider-arrows .slick-next {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 55px;
    height: 55px;
    background-color: var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.slider-arrows .slick-prev:hover,
.slider-arrows .slick-next:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-arrows .slick-prev:before,
.slider-arrows .slick-next:before {
    color: var(--primary-color);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    opacity: 1;
    transition: var(--transition);
}

.slider-arrows .slick-prev:hover:before,
.slider-arrows .slick-next:hover:before {
    color: white;
}

.slider-arrows .slick-prev:before {
    content: '\f060';
}

.slider-arrows .slick-next:before {
    content: '\f061';
}

@media (max-width: 768px) {
    .slider-arrows {
        justify-content: center;
        padding-right: 0;
    }
}

/* --- Process Section --- */
.process-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.process-text {
    flex: 1;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-icon {
    font-size: 24px;
    color: var(--accent-color);
}

.step-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.process-images {
    flex: 1;
}

.image-box {
    position: relative;
    text-align: right;
}

.image-box img {
    border-radius: 30px;
    width: 90%;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: 0;
    background-color: var(--accent-color);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

.experience-badge .number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 600;
}

/* --- Portfolio Section --- */
.bg-dark {
    background-color: var(--primary-color);
}

/* Specificity fix to avoid !important */
section.portfolio.bg-dark h2.section-title.text-white {
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* ... existing portfolio styles ... */

/* --- Industries Section (Home) --- */
.industries-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.industry-home-card {
    background-color: transparent;
    transition: var(--transition);
}

.industry-image-slant {
    width: 100%;
    height: 300px;
    overflow: hidden;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    transition: var(--transition);
    margin-bottom: 25px;
}

.industry-home-card:hover .industry-image-slant {
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}

.industry-image-slant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-home-card:hover .industry-image-slant img {
    transform: scale(1.1);
}

.industry-home-content {
    text-align: center;
}

.industry-home-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.industry-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.industry-link:hover {
    gap: 12px;
}

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

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

/* --- Testimonials Section --- */
.testimonials-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.testimonials-slider .slick-slide {
    padding: 20px 15px;
    height: auto !important;
    display: flex !important;
}

.testimonials-slider .slick-slide > div {
    width: 100%;
}

.testimonials-slider {
    margin: 60px -15px 0;
}

.testimonials-slider .slick-dots {
    bottom: -60px;
    display: flex !important;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    position: absolute;
    width: 100%;
}

.testimonials-slider .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0;
}

.testimonials-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    background: #e2e8f0;
    border: none;
    font-size: 0;
    transition: var(--transition);
    cursor: pointer;
}

.testimonials-slider .slick-dots li.slick-active button {
    background: var(--accent-color);
    width: 30px;
    border-radius: 10px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 60px;
    color: var(--accent-color);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 40px;
    left: auto;
}

.quote {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 25px;
}

.customer-info img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f7ff;
}

.customer-info h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--primary-color);
}

.customer-info p {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin: 0;
}

/* --- Blog Section --- */
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.blog-meta span i {
    color: var(--accent-color);
    margin-right: 5px;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.read-more {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.read-more:hover {
    color: var(--accent-color);
}

/* --- CTA Section --- */
.cta-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    position: relative;
    margin-top: 100px;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent-color), #6366f1);
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    color: white;
    margin-top: -150px;
    position: relative;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.3);
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Footer --- */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about p {
    margin: 25px 0;
}

.footer-links-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
    list-style: none;
    padding: 0;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-links ul li,
.footer-links-two-column li {
    margin-bottom: 15px;
}

.footer-links ul li a:hover,
.footer-links-two-column li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.footer-contact p i {
    color: white;
    margin-top: 5px;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

/* --- Sticky Header --- */
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.5s ease;
    z-index: 1000;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* --- Responsive Adjustments (Desktop First) --- */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 48px;
    }

    .about-content, .process-content {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-title {
        font-size: 38px;
    }

    .portfolio-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .top-bar {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        transition: var(--transition);
        display: flex;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-actions .btn {
        display: none; /* Hide button on mobile in nav, show elsewhere if needed */
    }

    .hero-content, .about-content, .process-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-description, .about-text .description, .process-text .description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .stats-content {
        flex-direction: column;
        gap: 30px;
    }

    .image-grid {
        justify-content: center;
    }

    .image-small {
        margin-left: -50px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .portfolio-grid, .blog-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .image-large img, .image-small img {
        height: auto;
    }

    .image-small {
        display: none; /* Hide overlapping image on smallest screens for clarity */
    }

    .image-large {
        width: 100%;
    }
}

/* --- Contact Page --- */
.contact-banner {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #0c1a4e 0%, #1a2a6c 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-banner h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.contact-banner .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-banner .breadcrumb a:hover {
    opacity: 1;
    color: #3b82f6;
}

.contact-banner .breadcrumb span {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #3b82f6;
    border-radius: 50%;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-section {
    padding-bottom: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* margin-top: -60px; */
    position: relative;
    z-index: 10;
    margin-top: 40px;
}

.info-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    border-bottom-color: #3b82f6;

}


.info-card:hover .icon-box {
    background: #3b82f6;
    color: #ffffff;
    transform: rotateY(180deg);
}

.info-card .icon-box {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    font-size: 28px;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: all 0.5s ease;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #0c1a4e;
}

.info-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

.contact-main-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
}


.contact-form-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 800px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0c1a4e;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: #f9fafb;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    font-size: 0.85rem;
    color: #9ca3af;
}

.form-control:focus {
    outline: none;
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

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

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .contact-banner h1 {
        font-size: 2.2rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 30px 20px;
    }
}

/* --- Careers Page --- */
.careers-benefits-section {
    padding: 60px 0;
    background: #f9fafb;
}

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

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}

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

.benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #0c1a4e;
    border-radius: 12px;
    color: #0c1a4e;
}

.benefit-card .benefit-icon i {
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: #0c1a4e;
    margin-bottom: 15px;
    line-height: 1.4;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

.careers-jobs-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.jobs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.jobs-content .jobs-label {
    display: inline-block;
    background: #0c1a4e;
    color: #ffffff;
    padding: 0 8px;
    font-weight: 700;
    font-size: 2.2rem;
    border-radius: 4px;
    margin-right: 5px;
}

.jobs-content h2 {
    display: inline;
    font-size: 2.2rem;
    color: #0c1a4e;
}

.jobs-content .jobs-subtitle {
    margin: 25px 0 40px;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
}

.team-network-visual {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jobs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.jobs-content {
    max-width: 800px;
    margin-bottom: 50px;
}

.jobs-header {
    margin-bottom: 20px;
}

.jobs-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.job-cards-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.job-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    width: calc(50% - 10px);
}

@media (max-width: 991px) {
    .job-card {
        width: 100%;
    }
}

.job-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.job-card .card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 153, 0.1);
    border-radius: 12px;
    color: #ff6699;
    font-size: 24px;
    flex-shrink: 0;
}

.job-card .card-details {
    flex: 1;
}

.job-card .card-details .card-label {
    display: block;
    font-size: 0.75rem;
    color: #ff6699;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.job-card .card-details h4 {
    font-size: 1.2rem;
    color: #0c1a4e;
    margin-bottom: 5px;
}

.job-card .card-details .job-id {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 8px;
    display: block;
}

.job-card .card-details .job-tags {
    font-size: 0.8rem;
    color: #9ca3af;
}

.careers-hr-section {
    padding: 60px 0 80px;
    background: #ffffff;
    text-align: center;
}

.careers-hr-section .hr-info-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    text-align: center;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .careers-hr-section .hr-info-card {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }
}

.careers-hr-section .hr-info-card .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.careers-hr-section .hr-info-card .info-item .icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-stats);
    color: var(--accent-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.careers-hr-section .hr-info-card .info-item:hover .icon-box {
    background: var(--accent-color);
    color: white;
    transform: translateY(-5px);
}

.careers-hr-section .hr-info-card .info-item h4 {
    color: #0c1a4e;
    font-size: 1.1rem;
    font-weight: 700;
}

.careers-hr-section .hr-info-card .info-item p,
.careers-hr-section .hr-info-card .info-item a {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
}

.careers-hr-section .hr-info-card .info-item a:hover {
    color: #3b82f6;
}

.careers-hr-section .hr-footer-note {
    margin-top: 50px;
    font-weight: 600;
    color: #9ca3af;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .jobs-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* --- Premium Industries Page --- */
.premium-hero {
    padding: 160px 0 120px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.premium-hero .premium-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.premium-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -2px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .premium-hero .hero-title {
        font-size: 3rem;
    }
}

.premium-hero .hero-lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

.intro-parallax {
    background: #ffffff;
    padding: 120px 0;
}

.intro-parallax .intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 768px) {
    .intro-parallax .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.intro-parallax .premium-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0c1a4e;
    margin-bottom: 30px;
    line-height: 1.2;
}

.intro-parallax .stats-mini {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.intro-parallax .stats-mini .stat-box .stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 5px;
}

.intro-parallax .stats-mini .stat-box p {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    margin: 0;
}

.intro-parallax .intro-highlight-card {
    background: #0c1a4e;
    color: #ffffff;
    padding: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(12, 26, 78, 0.2);
}

.intro-parallax .intro-highlight-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
}

.intro-parallax .intro-highlight-card .card-inner {
    position: relative;
    z-index: 2;
}

.intro-parallax .intro-highlight-card .card-inner i {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #3b82f6;
}

.intro-parallax .intro-highlight-card .card-inner p {
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

.industry-showcase-wrapper {
    padding: 80px 0;
    background: #f9fafb;
}

.industry-showcase-wrapper .industry-boxed-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.industry-showcase-wrapper .industry-boxed-row:last-child {
    margin-bottom: 0;
}

.industry-showcase-wrapper .industry-boxed-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .industry-showcase-wrapper .industry-boxed-row {
        grid-template-columns: 1fr;
    }
}

.industry-showcase-wrapper .industry-boxed-row.reverse .industry-img-box {
    order: 2;
}

@media (max-width: 768px) {
    .industry-showcase-wrapper .industry-boxed-row.reverse .industry-img-box {
        order: 1;
    }
}

.industry-showcase-wrapper .industry-boxed-row.reverse .industry-text-box {
    order: 1;
}

@media (max-width: 768px) {
    .industry-showcase-wrapper .industry-boxed-row.reverse .industry-text-box {
        order: 2;
    }
}

.industry-showcase-wrapper .industry-boxed-row .industry-img-box {
    background-size: cover;
    background-position: center;
    min-height: 450px;
    position: relative;
}

.industry-showcase-wrapper .industry-boxed-row .industry-img-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 26, 78, 0.1), rgba(12, 26, 78, 0.3));
}

.industry-showcase-wrapper .industry-boxed-row .industry-text-box {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1024px) {
    .industry-showcase-wrapper .industry-boxed-row .industry-text-box {
        padding: 40px;
    }
}

.industry-showcase-wrapper .industry-boxed-row .industry-text-box .industry-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(12, 26, 78, 0.03);
    line-height: 1;
    margin-bottom: -25px;
}

.industry-showcase-wrapper .industry-boxed-row .industry-text-box h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0c1a4e;
    margin-bottom: 20px;
    position: relative;
}

.industry-showcase-wrapper .industry-boxed-row .industry-text-box p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.industry-showcase-wrapper .industry-boxed-row .industry-text-box p:last-of-type {
    margin-bottom: 30px;
}

.industry-showcase-wrapper .industry-boxed-row .industry-text-box .premium-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.industry-showcase-wrapper .industry-boxed-row .industry-text-box .premium-link i {
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.industry-showcase-wrapper .industry-boxed-row .industry-text-box .premium-link:hover i {
    transform: translateX(5px);
}

.premium-commitment {
    padding: 120px 0;
    background: #ffffff;
}

.premium-commitment .glass-cta-card {
    background: #0c1a4e;
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(12, 26, 78, 0.2);
}

.premium-commitment .glass-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1557683316-973673baf926?q=80&w=2029') center/cover;
    opacity: 0.1;
}

.premium-commitment .glass-cta-card .cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.premium-commitment .glass-cta-card .cta-inner h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .premium-commitment .glass-cta-card .cta-inner h2 {
        font-size: 2.5rem;
    }
}

.premium-commitment .glass-cta-card .cta-inner p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.premium-commitment .glass-cta-card .cta-inner .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 480px) {
    .premium-commitment .glass-cta-card .cta-inner .cta-buttons {
        flex-direction: column;
    }
}

.premium-commitment .glass-cta-card .cta-inner .cta-buttons .btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}
/*
Source - https://stackoverflow.com/q/30999076
Posted by Sopo, modified by community. See post 'Timeline' for change history
Retrieved 2026-02-23, License - CC BY-SA 3.0
*/

.slick-slider {
    margin:0 -15px;
}
.slick-slide {
    padding:10px;
    text-align:center;
    margin-right:15px;
    margin-left:15px;
}