/* Custom CSS for LENT WORKS LLC */

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

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: var(--Primary-Blue-Dark-Blue, #001f33);
}

body {
    font-family: sans-serif;
    overflow-x: hidden;
}

/* Container Responsive Spacing */
.container {
    padding-left: 20px;
    padding-right: 20px;
}

/* Equal Section Spacing - Top padding only */
.about-section,
.industries-section,
.core-values-section {
    padding: 50px 0 0 0;
}

/* Remove any margin between sections */
section + section {
    margin-top: 0 !important;
}

@media (min-width: 576px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (min-width: 768px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 992px) {
    .container {
        padding-left: 35px;
        padding-right: 35px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* Header Styles */
.transparent-header {
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.8rem 0;
    animation: slideDown 0.8s ease-out;
    z-index: 1000;
    min-height: 80px;
}

.transparent-header:hover {
    background: rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.navbar-brand img {
    filter: brightness(1.2) contrast(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.navbar-nav .nav-link::before {

    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

/* Dropdown arrow styling */
.dropdown-toggle::after {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle:hover::after {
    transform: rotate(180deg);
}

/* Right side menu styling */
.right-menu-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.top-nav-links {
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
    gap: 0.5rem;
}

.top-nav-links .nav-link {
    font-size: 0.85rem;
    margin: 0;
    padding: 0.2rem 0.5rem;
    font-weight: 400;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.top-nav-links .nav-link:hover {
    color: #007bff !important;
    transform: translateY(-1px);
}

.button-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    background: rgba(0, 0, 0, 0.95);
    border: none;
    border-radius: 10px;
    margin-top: 0.5rem;
    width: 310px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    animation: dropdownFadeIn 0.3s ease forwards;
    padding: 10px 0;
}

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

.dropdown-header {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 20px 15px 20px;
    border-bottom: 1px solid #34495e;
    margin-bottom: 10px;
}

/* Services Dropdown */
.services-dropdown {
    min-width: 400px;
    max-height: 350px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-dropdown::-webkit-scrollbar {
    display: none;
}

.services-dropdown .dropdown-item {
    color: #ffffff !important;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 6px;
    margin: 2px 8px;
    font-size: 0.9rem;
}

.services-dropdown .dropdown-item:hover {
    background-color: rgba(0, 123, 255, 0.1) !important;
    color: #007bff !important;
    transform: translateX(5px);
}

.services-dropdown .dropdown-item i {
    color: #ffffff;
    transition: color 0.3s ease;
}

.services-dropdown .dropdown-item:hover i {
    color: #007bff;
}

/* FAQ Dropdown */
.faq-dropdown {
    min-width: 300px;
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.faq-dropdown::-webkit-scrollbar {
    display: none;
}

.option-selector {
    padding: 10px 0;
}

.option-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.option-item:hover {
    background-color: rgba(0, 123, 255, 0.1);
    transform: translateX(5px);
}

.option-item input[type="radio"] {
    margin-right: 12px;
    accent-color: #007bff;
    transform: scale(1.1);
}

.option-item label {
    color: #ffffff;
    cursor: pointer;
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.option-item:hover label {
    color: #007bff;
}

.select-btn {
    margin-top: 12px;
    border-radius: 6px;
    padding: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

/* Industries & Technologies Dropdown */
.industries-dropdown,
.technologies-dropdown {
    min-width: 300px;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.industries-dropdown::-webkit-scrollbar,
.technologies-dropdown::-webkit-scrollbar {
    display: none;
}

.dropdown-item-text {
    color: #ffffff;
    padding: 10px 20px;
    display: block;
    cursor: default;
    border-radius: 6px;
    margin: 2px 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item-text:hover {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
    transform: translateX(5px);
}

.dropdown-item-text i {
    color: #ffffff;
    transition: color 0.3s ease;
}

.dropdown-item-text:hover i {
    color: #007bff;
}

.technologies-dropdown .dropdown-item-text:first-of-type i {
    color: #007bff;
}

.technologies-dropdown .dropdown-item-text:first-of-type:hover i {
    color: #007bff;
}

/* Default dropdown item styling for backward compatibility */
.dropdown-item {
    color: #ffffff !important;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: rgba(0, 123, 255, 0.1) !important;
    color: #007bff !important;
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    border-radius: 8px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    min-width: 140px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-outline-light {
    border-radius: 8px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    min-width: 140px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    width: 105%;
    background-color: #001f33;
    margin: 0;
    padding: 0;
    padding-top: 100px; /* Account for fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
} */

.preserve-lines {
    white-space: pre-wrap;
}

/* Additional Hero Section Improvements */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 31, 51, 0.1) 0%,
        rgba(0, 31, 51, 0.05) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}
/*.hero-content {*/
/*  position: relative;*/
/*  z-index: 2;*/
/*  text-align: center;*/
/*  color: white;*/
/*  padding: 2rem;*/
/*  width: 100%;*/
/*}*/

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    /* padding: 20px; */
    color: #fff;
    z-index: 2;
    position: relative;
}

.hero-texts {
    flex: 1.2;
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 40px;
    background: rgba(0, 31, 51, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-left: 30px;
    margin-right: 30px;
}

.hero-texts {
    flex: 1;
    width: 45%;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 30px 25px;
    background: rgba(0, 31, 51, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-left: 20px;
    margin-right: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-texts * {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-images {
    flex: 1.2;
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 18px;
    /* padding-left: 3px; */
}

.hero-images img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    min-height: 450px;
    border-radius: 10px;
    object-fit: contain;
    width: 100%;
}

.hero-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    margin-bottom: 0.8rem;
    line-height: 1.1;
    
    letter-spacing: 1px;
    font-family: "Arial", sans-serif;
    text-transform: uppercase;
    padding-bottom: 6px;
    white-space: nowrap; /* Prevent text from wrapping */
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.6rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.8px;
    font-family: "Arial", sans-serif;
    padding-top: 8px;

    line-height: 1.2;
}

/* Ensure no spacing issues */
.hero-section + * {
    margin-top: 0 !important;
}

/* Fix any potential overflow issues */
.hero-section {
    overflow: hidden;
}

/* Ensure proper text alignment */
.hero-texts {
    text-align: left;
}

/* Desktop and tablet - keep text left aligned */
@media (min-width: 769px) {
    .hero-texts {
        text-align: left;
        align-items: flex-start;
    }
}

/* Mobile - center text */
@media (max-width: 768px) {
    .hero-texts {
        text-align: center;
        align-items: center;
        margin-right: 0;
        margin-bottom: 20px;
        padding: 30px 20px;
        width: 100%;
        order: 2;
    }

    .hero-images {
        order: 1;
        padding-left: 0;
    }
}

/* About Section */
.about-section {
    background: var(--Primary-Blue-Dark-Blue, #001f33);
    padding: 60px 0 50px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-col {
    padding: 0;
}

.about-image-container {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 40px 0 80px;
}

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

.success-badge {
    position: absolute;
    bottom: 80px;
    left: 160px;
    background: rgba(0, 31, 51, 0.95);
    border-radius: 20px;
    padding: 20px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.success-percentage {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.success-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-content-col {
    padding: 40px 80px 40px 40px;
    /* animation: fadeInRight 1.2s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both; */
}

.about-content {
    max-width: 600px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffea00;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #ffffff;
    color: #001f33;
    transform: translateY(-2px);
}

/* Industries We Serve Section */
.industries-section {
    background: var(--Primary-Blue-Dark-Blue, #001f33);
    padding: 50px 0 0 0;
    position: relative;
}

.industries-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffea00;
    margin-bottom: 15px;
    line-height: 1.2;
}

.industries-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.title-divider {
    width: 800px;
    height: 1px;
    background: #ffffff;
    margin: 0 auto 50px;
    border-radius: 2px;
    max-width: 90%;
}

.industry-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border-radius: 15px;
    background: transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Removed hover effect from industry cards */

.industry-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    clip-path: polygon(
        30% 0%,
        70% 0%,
        100% 30%,
        100% 70%,
        70% 100%,
        30% 100%,
        0% 70%,
        0% 30%
    );
    border-radius: 8px;
}

/* Removed hover effect from industry icons */

.industry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    clip-path: polygon(
        30% 0%,
        70% 0%,
        100% 30%,
        100% 70%,
        70% 100%,
        30% 100%,
        0% 70%,
        0% 30%
    );
    border-radius: 8px;
    display: block;
}

/* Removed hover effect from industry images */

.industry-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    transition: all 0.3s ease;
}

/* Removed hover effect from industry names */

/* Our Core Values Section */
.core-values-section {
    background: var(--Primary-Blue-Dark-Blue, #001f33);
    padding: 50px 0 0 0;
    position: relative;
}

.core-values-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffea00;
    margin-bottom: 15px;
    line-height: 1.2;
}

.core-values-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    transition: all 0.3s ease;
    border-radius: 15px;
    background: transparent;
    position: relative;
    height: 100%;
}

/* Removed hover effect from value cards */

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Removed hover effect from value icons */

/* Individual icon colors matching the reference */
.integrity-icon {
    background: linear-gradient(135deg, #4a5bcc, #6366f1);
}

.transparency-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.accountability-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.confidentiality-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.experience-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.value-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Footer Section */
.footer-section {
    background: #062744;
    padding: 60px 0 30px;
    color: #ffffff;
    position: relative;
}

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

.footer-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-logo a:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    width: 180px;
    height: 80px;
    border-radius: 8px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-company-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

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

.footer-description.limited-width {
    max-width: 280px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.instagram {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
}

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

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

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #ffea00;
    padding-left: 5px;
}

.footer-link.underlined {
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-icon {
    width: 42px;
    height: 42px;
    background: #001f33;
    color: #87ceeb;
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2c5f7f;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3px;
}

.contact-value {
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.contact-value:hover {
    color: #ffea00;
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* Extra Large Screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-section {
        padding-top: 120px;
    }

    .hero-content {
        max-width: 1400px;
    }

    .hero-texts {
        padding: 40px 30px;
        width: 45%;
        max-width: 45%;
        margin-right: 20px;
    }

    .hero-images {
        padding-left: 30px;
        width: 55%;
    }

    .hero-images img {
        max-height: 700px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .industries-title,
    .core-values-title {
        font-size: 3.2rem;
    }

    .about-title {
        font-size: 2.8rem;
    }

    .about-image-container {
        padding: 0 60px 0 100px;
    }

    .about-content-col {
        padding: 40px 100px 40px 60px;
    }
}

/* Large Screens (1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-content {
        max-width: 1200px;
    }

    .hero-texts {
        padding: 35px 25px;
        width: 45%;
        max-width: 45%;
        margin-right: 15px;
    }

    .hero-images {
        padding-left: 25px;
        width: 55%;
    }

    .hero-images img {
        max-height: 600px;
        min-height: 450px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .industries-title,
    .core-values-title {
        font-size: 3rem;
    }

    .about-title {
        font-size: 2.6rem;
    }

    .about-image-container {
        padding: 0 50px 0 90px;
    }

    .about-content-col {
        padding: 40px 90px 40px 50px;
    }
}

/* Large Tablet/Small Desktop (1024px to 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-content {
        max-width: 1000px;
    }

    .hero-texts {
        padding: 40px 30px;
        width: 35%;
        margin-right: 15px;
    }

    .hero-images {
        padding-left: 30px;
        width: 65%;
    }

    .hero-images img {
        max-height: 550px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

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

    .industries-title,
    .core-values-title {
        font-size: 2.6rem;
    }

    .about-title {
        font-size: 2.4rem;
    }

    .about-section,
    .industries-section,
    .core-values-section {
        padding: 40px 0 0 0;
    }

    .about-image-container {
        padding: 0 45px 0 75px;
    }

    .about-content-col {
        padding: 40px 75px 40px 45px;
    }

    .industry-card {
        padding: 28px 18px;
        margin-bottom: 0;
    }

    .value-card {
        padding: 38px 22px;
        margin-bottom: 0;
    }

    /* Ensure proper grid spacing on 1024px */
    .industries-section .row.g-4 {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }

    .core-values-section .row.g-4 {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }

    /* Optimize industry cards for 1024px screens */
    .industry-card {
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .value-card {
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/* Medium Screens (992px to 1023px) */
@media (min-width: 992px) and (max-width: 1023px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .hero-title {
        font-size: 4.2rem;
    }

    .hero-subtitle {
        font-size: 1.7rem;
    }

    .industries-title,
    .core-values-title {
        font-size: 2.3rem;
    }

    .about-title {
        font-size: 2.1rem;
    }

    .about-section,
    .industries-section,
    .core-values-section {
        padding: 35px 0 0 0;
    }

    .about-image-container {
        padding: 0 35px 0 65px;
    }

    .about-content-col {
        padding: 40px 65px 40px 35px;
    }

    .industry-card {
        padding: 25px 15px;
        margin-bottom: 0;
    }

    .value-card {
        padding: 35px 20px;
        margin-bottom: 0;
    }
}

/* Tablet Screens (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-section {
        padding-top: 90px;
    }

    .hero-content {
        max-width: 900px;
    }

    .hero-texts {
        padding: 30px 20px;
        width: 45%;
        max-width: 45%;
        margin-right: 10px;
    }

    .hero-images {
        padding-left: 20px;
        width: 55%;
    }

    .hero-images img {
        max-height: 450px;
        min-height: 350px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .industries-title,
    .core-values-title {
        font-size: 2.2rem;
    }

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

    .about-image-container {
        padding: 0 30px 0 50px;
    }

    .about-content-col {
        padding: 40px 50px 40px 30px;
    }

    .industry-card {
        padding: 20px 12px;
    }

    .value-card {
        padding: 30px 15px;
    }

    /* Header styles for tablet */
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .right-menu-container {
        align-items: center;
    }

    .button-row {
        gap: 0.3rem;
    }
}

/* Mobile Screens (576px to 767px) */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        margin: 0 auto;
        padding: 5px;
    }

    .hero-images {
        width: 100%;
        order: 1;
        margin-bottom: 30px;
        padding-right: 0;
    }

    .hero-images img {
        max-height: 400px;
        min-height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .hero-texts {
        width: 100%;
        order: 2;
        padding-left: 0;
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        padding-top: 10px;
    }
    .industries-title,
    .core-values-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    /* About Section Mobile */
    .about-section {
        padding: 30px 0 0 0;
        min-height: auto;
    }

    .about-image-col {
        order: 1;
        margin-bottom: 40px;
    }

    .about-content-col {
        order: 2;
        padding: 20px;
        animation: none; /* Disable animation on mobile */
    }

    .about-image-container {
        height: 60vh;
        padding: 0 20px;
        justify-content: center;
        animation: none; /* Disable animation on mobile */
    }

    .about-image {
        width: 95%;
        height: 50vh;
        max-width: 400px;
        border-radius: 20px;
    }

    .success-badge {
        bottom: 40px;
        left: 40px;
        padding: 20px 25px;
    }

    .success-percentage {
        font-size: 3rem;
    }

    .success-text {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .about-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .about-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Industries Section Mobile */
    .industries-section {
        padding: 30px 0 0 0;
    }

    .industries-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .industries-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .title-divider {
        width: 250px;
        margin-bottom: 50px;
    }

    .industry-card {
        padding: 20px 15px;
    }

    .industry-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .industry-name {
        font-size: 0.9rem;
    }

    /* Core Values Section Mobile */
    .core-values-section {
        padding: 30px 0 0 0;
    }

    .core-values-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .core-values-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .value-card {
        padding: 25px 15px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .value-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .value-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Footer Mobile */
    .footer-section {
        padding: 50px 0 25px;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 25px;
    }

    .footer-logo-img {
        width: 160px;
        height: 70px;
    }

    .footer-description {
        text-align: center;
        max-width: 100%;
        margin: 0 auto 25px;
    }

    .social-links {
        justify-content: center;
        margin-bottom: 30px;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-title {
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

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

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

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

    .contact-item {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 25px;
    }

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

    .contact-icon {
        margin-top: 0;
        align-self: center;
    }

    /* Header styles for mobile */
    .transparent-header {
        background: rgba(0, 0, 0, 0.9) !important;
        padding: 0.5rem 0;
    }

    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        color: #ffffff;
        font-size: 1.5rem;
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: left;
    }

    .dropdown-menu {
        min-width: 100%;
        background: rgba(0, 0, 0, 0.9);
        margin-top: 0;
        padding: 0.5rem 0;
        box-shadow: none;
        position: static;
        opacity: 1;
        transform: none;
        animation: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        font-size: 0.9rem;
        padding: 0.5rem 1.5rem;
        color: #ffffff !important;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: rgba(0, 123, 255, 0.2) !important;
        color: #007bff !important;
    }

    .services-dropdown,
    .industries-dropdown,
    .technologies-dropdown {
        min-width: 100%;
        max-height: 250px;
    }

    .faq-dropdown {
        min-width: 100%;
        padding: 0.5rem;
    }

    .right-menu-container {
        align-items: flex-start;
        width: 100%;
    }

    .top-nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .button-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
    }

    .btn-primary,
    .btn-outline-light {
        width: 100%;
        text-align: center;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-width: 100%;
    }
}

/* Small Mobile Screens (320px to 575px) */
@media (max-width: 576px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-section {
        padding-top: 90px;
        padding-bottom: 30px;
    }

    .hero-content {
        padding: 15px;
    }

    .hero-images {
        margin-bottom: 25px;
    }

    .hero-images img {
        max-height: 320px;
        min-height: 250px;
        width: 100%;
        object-fit: cover;
    }

    .hero-texts {
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding-top: 10px;
    }

    .industries-title,
    .core-values-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .about-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    /* About Section - Small Mobile Optimizations */
    .about-image-container {
        height: 60vh;
        padding: 0 15px;
        justify-content: center;
    }

    .about-image {
        width: 100%;
        height: 55vh;
        border-radius: 15px;
        object-fit: cover;
    }

    .success-badge {
        bottom: 25px;
        left: 25px;
        padding: 15px 20px;
        border-radius: 15px;
    }

    .success-percentage {
        font-size: 2.5rem;
    }

    .success-text {
        font-size: 0.7rem;
        letter-spacing: 0.8px;
    }

    .about-content-col {
        padding: 20px 15px;
    }

    .about-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .about-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .about-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }

    /* Industries Section - Small Mobile */
    .industries-section {
        padding: 25px 0 0 0;
    }

    .title-divider {
        width: 200px;
        margin-bottom: 40px;
    }

    .industry-card {
        padding: 15px 10px;
    }

    .industry-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }

    .industry-name {
        font-size: 0.85rem;
    }

    /* Core Values Section - Small Mobile */
    .core-values-section {
        padding: 25px 0 0 0;
    }

    .value-card {
        padding: 20px 12px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .value-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .value-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Header styles for small mobile */
    .navbar-brand img {
        width: 120px;
        height: auto;
    }

    .navbar-toggler {
        font-size: 1.2rem;
        padding: 0.4rem;
    }
}

/* Extra Small Mobile Screens (320px and below) */
@media (max-width: 320px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .hero-section {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .hero-images {
        margin-bottom: 20px;
    }

    .hero-images img {
        max-height: 250px;
        min-height: 200px;
        width: 100%;
        object-fit: cover;
    }

    .hero-texts {
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .industries-title,
    .core-values-title {
        font-size: 1.3rem;
    }

    .about-title {
        font-size: 1.3rem;
    }

    .success-badge {
        display: none; /* Hide success badge on very small screens for cleaner look */
    }

    .about-section {
        padding: 20px 0 0 0;
    }

    .about-image-container {
        height: 50vh;
        padding: 0 10px;
    }

    .about-image {
        width: 100%;
        height: 45vh;
        border-radius: 12px;
        object-fit: cover;
    }

    .about-content-col {
        padding: 15px 10px;
    }

    .about-subtitle {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .about-description {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .about-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .btn-primary,
    .btn-outline-light {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Industries Section - Extra Small */
    .industries-section {
        padding: 20px 0 0 0;
    }

    .industries-subtitle {
        font-size: 0.85rem;
    }

    .title-divider {
        width: 150px;
        margin-bottom: 30px;
    }

    .industry-card {
        padding: 12px 8px;
    }

    .industry-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }

    .industry-name {
        font-size: 0.75rem;
    }

    /* Core Values Section - Extra Small */
    .core-values-section {
        padding: 50px 0;
    }

    .core-values-subtitle {
        font-size: 0.85rem;
    }

    .value-card {
        padding: 15px 8px;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .value-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .value-description {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    /* Footer Extra Small */
    .footer-section {
        padding: 40px 0 20px;
    }

    .footer-brand {
        margin-bottom: 35px;
    }

    .footer-logo-img {
        width: 140px;
        height: 60px;
    }

    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .social-links {
        gap: 15px;
        margin-bottom: 25px;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    .footer-link {
        font-size: 0.9rem;
    }

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

    .contact-item {
        margin-bottom: 20px;
        gap: 8px;
    }

    .contact-label {
        font-size: 0.8rem;
    }

    .contact-value {
        font-size: 0.9rem;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .about-section {
        min-height: auto;
        padding: 30px 0;
    }

    .about-image-container {
        height: 60vh;
    }

    .about-image {
        height: 55vh;
    }

    .success-badge {
        bottom: 20px;
        left: 25px;
        padding: 12px 18px;
    }

    .success-percentage {
        font-size: 2.2rem;
    }

    .success-text {
        font-size: 0.65rem;
    }
}

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

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

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

/* Hero title and subtitle - no animations initially */
.hero-title,
.hero-subtitle {
    animation: none;
}

/* Hero Letter Styles - no animations initially */
.hero-letter,
.hero-space {
    display: inline-block;
    opacity: 1;
    transform: none;
    letter-spacing: -0.02em;
    margin-right: -0.01em;
}

.hero-letter {
    margin-right: 0;
}

/* Removed all staggered animation delays */

/* Right to Left Slide Animation */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Removed mobile animation optimizations */

/* Navbar Scrolled State - Blue theme background */
.navbar.scrolled {
    background: rgba(0, 31, 51, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 31, 51, 0.3);
}

/* Smooth Section Animations */
.hero-section,
.about-section,
.industries-section,
.core-values-section {
    opacity: 0;
    transform: translateY(50px);
    animation: smoothFadeInUp 1.2s ease-out forwards;
}

/* Staggered delays for sections */
.hero-section {
    animation-delay: 0.2s;
}

.about-section {
    animation-delay: 0.4s;
}

.industries-section {
    animation-delay: 0.6s;
}

.core-values-section {
    animation-delay: 0.8s;
}

/* Smooth Fade In Up Animation */
@keyframes smoothFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero title and subtitle animations */
.hero-title {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInFromLeft 1s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-subtitle {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInFromLeft 1s ease-out forwards;
    animation-delay: 0.8s;
}

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

/* Mobile Animation Optimizations */
@media (max-width: 768px) {
    .hero-section,
    .about-section,
    .industries-section,
    .core-values-section {
        animation-duration: 0.8s;
        transform: translateY(30px);
    }

    .hero-title,
    .hero-subtitle {
        animation-duration: 0.8s;
        transform: translateX(-20px);
    }

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

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

@media (max-width: 480px) {
    .hero-section,
    .about-section,
    .industries-section,
    .core-values-section {
        animation-duration: 0.6s;
        transform: translateY(20px);
    }

    .hero-title,
    .hero-subtitle {
        animation-duration: 0.6s;
        transform: translateX(-15px);
    }

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

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

/* Image Loading Animation */
img {
    transition: opacity 0.3s ease;
}

img:not(.loaded) {
    opacity: 0.7;
}

img.loaded {
    opacity: 1;
}


/* Remove up/down arrows from number inputs - Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove up/down arrows from number inputs - Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}