/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #e8e8e8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Home Page Styles */
.home-header {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.home-navbar {
    padding: 0;
}

.home-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.home-logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.logo-wrapper {
    display: flex;
    align-items: baseline;
    font-size: 2.2rem;
    font-weight: 700;
}

.logo-letter {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 153, 255, 0.3);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-s1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, transparent);
}

.logo-s2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, transparent);
}

.logo-text-main {
    color: #2c3e50;
    font-weight: 600;
}

.logo-tagline {
    font-size: 0.7rem;
    color: #7f8c8d;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 500;
    padding-left: 2px;
}

.home-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    margin-right: 100px;
    padding: 0;
}

.home-nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding: 25px 0;
}

.home-nav-link:hover,
.home-nav-link.active {
    color: #4fc3f7;
}

.home-hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.home-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 40px 20px;
    color: #ffffff;
}

.home-hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.home-hero-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.home-hero-underline {
    width: 80px;
    height: 3px;
    background: #4fc3f7;
    margin: 0 auto 30px;
}

.home-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.home-hero-button {
    background: #4fc3f7;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.home-hero-button:hover {
    background: #0288d1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
}

/* Home About Section */
.home-about {
    background: #f8f9fa;
    padding: 100px 0;
}

.home-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.home-about-left {
    padding-right: 40px;
}

.home-about-label {
    font-size: 0.9rem;
    color: #95a5a6;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
}

.home-about-title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.home-about-years {
    font-size: 2.5rem;
    color: #0288d1;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.3;
}

.home-about-description {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.home-about-button {
    display: inline-block;
    background: #0288d1;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.home-about-button:hover {
    background: #0277bd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 136, 209, 0.3);
}

.home-about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.home-about-item {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 5px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.home-about-number {
    font-size: 1.5rem;
    color: #e0e0e0;
    font-weight: 700;
}

.home-about-item-title {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

.home-about-arrow {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 300;
}

.home-about-item:hover .home-about-arrow {
    color: #0288d1;
    transform: translateX(5px);
    display: inline-block;
}

.home-about-item:hover .home-about-number {
    color: #0288d1;
}

.home-about-item.active .home-about-number {
    color: #0288d1;
    font-weight: 900;
}

.home-about-item.active {
    border-left: 4px solid #0288d1;
}

/* Top Bar */
.top-bar {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.8rem;
    color: #5a6c7d;
    margin: 0;
    font-weight: 600;
}

.logo p {
    font-size: 0.7rem;
    color: #999;
    margin: 0;
    letter-spacing: 2px;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.info-icon {
    font-size: 1.5rem;
}

.info-item div strong {
    display: block;
    font-size: 0.85rem;
    color: #333;
}

.info-item div p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

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

.social-link {
    color: #0d2847;
    font-size: 16px;
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 0 5px;
}

.social-link:hover {
    color: #4A90E2;
}

.social-separator {
    color: #0d2847;
    font-size: 16px;
}

/* Header */

.quote-button {
    background: white;
    color: #0d2847;
    border: 2px solid #0d2847;
    padding: 12px 25px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-button:hover {
    background: #0d2847;
    color: white;
}

/* Header - Centered Rectangle Bar */
.header {
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    max-width: 850px;
    background: #0d2847;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 100;
}

.navbar {
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 140px 10px 40px;
}

.nav-left {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 0 0 auto;
}

.nav-separator {
    color: rgba(255,255,255,0.3);
    margin: 0 2rem;
    font-size: 0.9rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-arrow {
    font-size: 0.5rem;
    opacity: 0.7;
}

.nav-link:hover {
    color: #66b3ff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icon:hover {
    color: #66b3ff;
    opacity: 1;
}

.header-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-icon, .search-icon {
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.9;
}

.cart-icon:hover, .search-icon:hover {
    color: #66b3ff;
    opacity: 1;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ffffff;
    color: #0d2847;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 125px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    margin-top: 125px;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    padding: 40px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
}

.hero-tagline {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
    text-align: center;
}

.cta-button {
    background: #0d2847;
    color: #ffffff;
    border: 2px solid #0d2847;
    padding: 16px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 2px;
}

.cta-button:hover {
    background: #1a3d5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 40, 71, 0.3);
}

.hero-image {
    display: none;
}

.hero-image img {
    display: none;
}

/* Features, About, Services, Team, Stats, Contact, Footer sections */
.features {
    padding: 80px 0;
    background: #ffffff;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 60px;
    height: 60px;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #0d2847;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.about-text h2 {
    font-size: 2rem;
    color: #0d2847;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.about-feature-icon {
    width: 30px;
    height: 30px;
    background: #0d2847;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.cta-section {
    position: relative;
    padding: 120px 0;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 31, 63, 0.85);
    z-index: 1;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
}

.cta-main-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-divider {
    width: 60px;
    height: 3px;
    background: #ffffff;
    margin: 0 auto 20px;
}

.cta-subtitle {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features-box {
    background: #ffffff;
    border-radius: 4px;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 1200px;
    margin: 0 auto;
}

.cta-features-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.cta-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cta-feature-icon {
    flex-shrink: 0;
}

.cta-feature-icon svg {
    width: 50px;
    height: 50px;
}

.cta-feature-text h3 {
    font-size: 1.2rem;
    color: #0d2847;
    font-weight: 600;
    margin-bottom: 8px;
}

.cta-feature-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.cta-image {
    height: 100%;
}

.cta-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 450px;
    object-fit: cover;
    border-radius: 4px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.4;
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 2px;
}

.cta-button-secondary:hover {
    background: white;
    color: #0d2847;
}

.services {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #0d2847;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.service-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.service-card.slide-from-left.animate {
    animation: slideInLeft 0.8s ease-out forwards;
}

.service-card.slide-from-right.animate {
    animation: slideInRight 0.8s ease-out forwards;
}

.service-card.animate:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card.animate:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card.animate:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card.animate:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card.animate:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card.animate:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #4A90E2;
}

.service-card img {
    width: 80px;
    height: 60px;
    margin-bottom: 20px;
}

.service-icon-fa {
    font-size: 3.5rem;
    color: #4A90E2;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-fa {
    color: #ffffff;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    color: #0d2847;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #ffffff;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #ffffff;
}

.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

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

.team-member {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.2rem;
    color: #0d2847;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-member p {
    font-size: 0.9rem;
    color: #999;
}

.stats {
    padding: 80px 0;
    background: linear-gradient(rgba(13, 40, 71, 0.85), rgba(13, 40, 71, 0.85)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.stats-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 50px;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #e0e0e0;
}

.stats-cta {
    background: #ffffff;
    color: #0d2847;
    border: 2px solid #ffffff;
    padding: 16px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 2px;
}

.stats-cta:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 40, 71, 0.3);
}

.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0d2847;
}

.submit-button {
    background: #0d2847;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 2px;
    width: 100%;
}

.submit-button:hover {
    background: #1a3d5f;
}

.footer {
    background: #0d2847;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #0d2847;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* About Page Styles */
.about-hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    text-align: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 40px 20px;
    color: #ffffff;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    letter-spacing: 2px;
}

.about-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
}

.about-company-section {
    background: #ffffff;
    padding: 100px 0;
}

.about-company-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
}

.about-company-label {
    font-size: 0.9rem;
    color: #95a5a6;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-company-title {
    font-size: 2.8rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.about-company-highlight {
    font-size: 2.8rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.highlight-text {
    color: #0288d1;
}

.page-header {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 40, 71, 0.75);
}

.page-title {
    position: relative;
    z-index: 1;
    font-size: 4rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 15px;
}

.page-subtitle {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    color: #e0e0e0;
    font-weight: 400;
    text-align: center;
    max-width: 700px;
    line-height: 1.6;
}

.contact-header {
    background-image: url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

.about-page-content {
    padding: 100px 0;
    background: #ffffff;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-page-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.about-page-text h2 {
    font-size: 2.5rem;
    color: #000000;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.about-page-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-btn {
    background: #0d2847;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 2px;
}

.contact-btn:hover {
    background: #1a3d5f;
    transform: translateY(-2px);
}

.history-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.history-text h2 {
    font-size: 2rem;
    color: #0d2847;
    font-weight: 700;
    margin-bottom: 20px;
}

.history-divider {
    width: 60px;
    height: 3px;
    background: #0d2847;
    margin-bottom: 30px;
}

.history-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.signature {
    margin-top: 40px;
}

.signature img {
    width: 120px;
    height: auto;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.best-section {
    padding: 100px 0;
    background: #001f3f;
    color: #ffffff;
}

.best-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.best-divider {
    width: 60px;
    height: 3px;
    background: #ffffff;
    margin: 0 auto 20px;
}

.best-subtitle {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.best-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.best-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.best-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.best-icon {
    flex-shrink: 0;
}

.best-icon svg {
    width: 50px;
    height: 50px;
}

.best-icon svg path {
    stroke: #ffffff;
}

.best-feature-text h3 {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

.best-feature-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.best-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.best-image img {
    width: 80%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

.stats-grid-about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.core-values {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.core-values-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.core-values-carousel {
    display: flex;
    gap: 40px;
    animation: scroll-carousel 30s linear infinite;
}

.core-values-carousel:hover {
    animation-play-state: paused;
}

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

.core-value-card {
    flex: 0 0 320px;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 18px;
}

.core-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.core-value-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 18px;
}

.core-value-card h3 {
    font-size: 1.2rem;
    color: #0d2847;
    font-weight: 600;
    margin-bottom: 10px;
}

.core-value-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.testimonials {
    padding: 60px 0;
    background: #f8f9fa;
    margin: 0;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    min-height: 550px;
}

.testimonials-left {
    background: linear-gradient(135deg, #2962ff 0%, #1565c0 100%);
    padding: 70px 50px;
    border-radius: 30px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    max-width: 650px;
}

.testimonials-left::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="60" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.testimonials-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
}

.testimonials-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
}

.testimonials-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.testimonials-btn:hover {
    background: #ffffff;
    color: #2962ff;
}

.testimonials-right {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
}

.testimonial-slider {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    padding: 35px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.testimonial-header h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.testimonial-header p {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.star-filled {
    color: #ffc107;
    font-size: 1.2rem;
}

.star-empty {
    color: #e0e0e0;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    border-radius: 8px;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #2962ff;
    color: #ffffff;
    border-color: #2962ff;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 60px 0;
    background: #ffffff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 0;
}

.contact-info-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.contact-info-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-info-icon svg {
    width: 50px;
    height: 50px;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: #0d2847;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

.map-section {
    padding: 0;
    background: #f8f9fa;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Services Page Styles */
.our-solutions {
    padding: 100px 0 120px;
    background: #f8f9fa;
}

.our-solutions .section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.solutions-divider {
    width: 80px;
    height: 2px;
    background: #bdc3c7;
    margin: 0 auto 80px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-item {
    text-align: center;
    padding: 0;
}

.solution-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.solution-icon svg {
    width: 70px;
    height: 70px;
}

.solution-item h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
}

.solution-item p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.8;
    max-width: 350px;
    margin: 0 auto;
}

/* Free Consultation Section */
.free-consultation {
    padding: 80px 0;
    background: #ffffff;
}

.consultation-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d2847;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.consultation-divider {
    width: 80px;
    height: 3px;
    background: #4A90E2;
    margin: 0 auto 15px;
}

.consultation-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.consultation-image {
    width: 100%;
}

.consultation-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.consultation-form-wrapper {
    width: 100%;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

.consultation-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.consultation-form textarea {
    resize: vertical;
    min-height: 120px;
}

.consultation-submit-btn {
    background: #0d2847;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 4px;
    width: fit-content;
}

.consultation-submit-btn:hover {
    background: #4A90E2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.services-cta {
    display: none;
}

/* Careers Page Styles */
.open-roles-section {
    padding: 80px 0;
    background: #ffffff;
}

.careers-main-title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.careers-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 60px;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.role-card {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.role-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.role-category {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.role-title {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.role-location {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

.talent-cta-section {
    padding: 0;
    background: linear-gradient(135deg, #6B5B95 0%, #8B7AB8 100%);
    margin-top: 0;
}

.talent-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    min-height: 450px;
}

.talent-cta-text {
    padding: 60px;
    color: #ffffff;
}

.talent-cta-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.talent-cta-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.talent-cta-button {
    display: inline-block;
    background: #4A90E2;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.talent-cta-button:hover {
    background: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.talent-cta-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.talent-cta-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .header {
        width: 95%;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

    .top-bar-info {
        flex-direction: column;
        margin-top: 15px;
        gap: 15px;
    }

    .info-item {
        justify-content: center;
    }

    .social-media {
        margin-top: 15px;
        gap: 8px;
    }

    .social-link {
        font-size: 14px;
    }

    .social-separator {
        font-size: 14px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 125px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        padding: 20px 0;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-separator {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }
    .features-grid,
    .services-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .about-page-grid,
    .history-grid,
    .best-content {
        grid-template-columns: 1fr;
    }
    .core-value-card {
        flex: 0 0 240px;
    }
    
    @keyframes scroll-carousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    .testimonials-container {
        padding: 0 20px;
        min-height: auto;
    }

    .testimonials-left {
        padding: 50px 30px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-right {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
    }

    .testimonial-content {
        padding: 30px;
    }

    .testimonial-header {
        flex-direction: column;
        gap: 15px;
    }
    .page-title {
        font-size: 2.5rem;
    }
    .cta-features-box {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .cta-image {
        order: -1;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Careers Page Mobile Styles */
    .careers-main-title {
        font-size: 1.8rem;
    }

    .careers-subtitle {
        font-size: 0.95rem;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .roles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 20px;
    }

    .role-card {
        padding: 25px 20px;
    }

    .talent-cta-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .talent-cta-text {
        padding: 40px 30px;
    }

    .talent-cta-text h2 {
        font-size: 1.6rem;
    }

    .talent-cta-text p {
        font-size: 0.95rem;
    }

    .talent-cta-image {
        padding: 20px 30px 40px;
    }

    .talent-cta-image img {
        max-width: 300px;
    }

    /* Free Consultation Mobile Styles */
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .consultation-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .consultation-submit-btn {
        width: 100%;
    }

    /* Additional Mobile Improvements */
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .logo h2 {
        font-size: 1.5rem;
    }

    .logo p {
        font-size: 0.7rem;
    }

    .about-hero {
        height: 400px;
        margin-top: 70px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-description {
        font-size: 1rem;
    }

    .about-company-section {
        padding: 60px 0;
    }

    .about-company-container {
        padding: 0 20px;
    }

    .about-company-title,
    .about-company-highlight {
        font-size: 1.8rem;
    }

    .page-header {
        height: 300px;
        margin-top: 70px;
    }

    .contact-form-grid,
    .contact-content,
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-cards-grid {
        flex-direction: column;
        gap: 20px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .services-banner-content,
    .banner-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

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

    .footer-section {
        margin-bottom: 30px;
    }

    /* Home Page Mobile Styles */
    .home-nav-container {
        padding: 0 20px;
    }

    .home-nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        padding: 20px 0;
        gap: 0;
    }

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

    .home-nav-menu li {
        margin: 15px 0;
    }

    .home-nav-link {
        padding: 10px 0;
    }

    .home-hero-title {
        font-size: 2rem;
    }

    .home-hero-subtitle {
        font-size: 0.8rem;
    }

    .home-hero-description {
        font-size: 1rem;
    }

    .home-hero-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .home-logo {
        gap: 3px;
    }

    .logo-wrapper {
        font-size: 1.4rem;
    }

    .logo-letter {
        font-size: 1.8rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }

    /* Home About Mobile */
    .home-about {
        padding: 60px 0;
    }

    .home-about-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }

    .home-about-left {
        padding-right: 0;
    }

    .home-about-title,
    .home-about-years {
        font-size: 1.8rem;
    }

    .home-about-description {
        font-size: 0.95rem;
    }

    .home-about-item {
        padding: 25px 20px;
        gap: 15px;
    }

    .home-about-number {
        font-size: 1.2rem;
    }

    .home-about-item-title {
        font-size: 1rem;
    }

    .home-about-arrow {
        font-size: 1.2rem;
    }
}
