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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #212221;
    line-height: 1.6;
    overflow-x: hidden;
}
a{
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

.white-text{
    color: #fff !important;
}
.black-text{
    color: #212221 !important;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 150px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: #01317b;
    height: 90px;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-border{
    border-top: 1px solid rgba(246, 246, 246, 0.15);
}

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

.logo-icon {
    width: 48px;
    height: 48px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logo-text-top svg {
    width: 82px;
    height: 15px;
}

.logo-text-bottom svg {
    width: 75px;
    height: 14px;
}

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

.nav-link {
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #08aae5;
}

.phone-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border: 1px solid #08aae5;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: rgba(8, 170, 229, 0.1);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: #fff;
    transition: all 0.5s ease;
}

.mobile-menu.active {
    display: flex;
    transition: all 0.5s ease;
    border-bottom: solid 1px #eee;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('images/main-banner-2.png');
    background-size: cover;
    background-position: center;
    animation: backgroundZoom 1.5s ease-out forwards;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 1, 3, 0.5);
    animation: overlayFade 1s ease-out forwards;
}



@keyframes backgroundZoom {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

@keyframes overlayFade {
    from {
        background: rgba(0, 1, 3, 0.6);
    }
    to {
        background: rgba(0, 1, 3, 0.4);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 500px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

.hero-title {
    font-size: 72px;
    line-height: 80px;
    color: white;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.bullet-point {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.3s ease;
}

.bullet-point:hover {
    transform: scale(1.1);
}

.bullet {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.bullet-point span:last-child {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

.btn {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.btn-primary {
    background: #08aae5;
    color: white;
    line-height: 16px;
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 170, 229, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-secondary:hover {
    transform: scale(1.05) translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 11px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    opacity: 1;
    border: 3px solid #08AAE5;
    width: 12px;
    height: 12px;
}

/* About Section */
.about {
    background: white;
    padding: 150px 0;
}

.about .container {
    display: flex;
    gap: 100px;
}

.about-header {
    max-width: 500px;
    animation: slideInLeft 0.8s ease-out;
}

.section-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 30px;
}
.service-badge {
    margin: 0 auto 30px;
}

.section-badge.white span {
    color: white;
}

.section-badge span {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #858585;
}

.icon-sm {
    width: 14px;
    height: 14px;
}
.icon-sm-2{
    width: 18px;
    height: 18px;
}

.icon-lg {
    width: 24px;
    height: 24px;
    margin-bottom: 20px;
}

.about-header h2 {
    font-size: 44px;
    line-height: 54px;
    color: #212221;
    font-weight: 400;
}

.about-content {
    flex: 1;
    animation: slideInLeft 0.8s ease-out;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.about-text .about-paragraph{
    gap: 30px;
    display: flex;
    flex-direction: column;
}

.about-text .about-paragraph > p {
    font-size: 16px;
    line-height: 24px;
    color: #212221;
}

.mission-card {
    padding:0px;
}

.mission-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.mission-header svg {
    width: 18px;
    height: 18px;
}

.mission-header h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #01317b;
}

.mission-card p {
    font-size: 16px;
    line-height: 24px;
    color: white;
    background: #01317b;
    padding: 20px 30px;
}

.arrow-icon {
    width: 18px;
    height: 10px;
}
.about-btn{
    max-width: 160px;
}
.service-btn{
    max-width: 240px;
}
.product-btn{
    max-width: 220px;
}
.about-btn > span{
    width: 100%;
    text-align: left;
}

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

/* Industries Section */
.industries {
    position: relative;
    padding: 150px 0 80px;
    background-image: url('images/services-banner.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.industries-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.industries .container {
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}
.center-align-items{
    display: flex;
    flex-flow: column;
}

.section-title {
    font-size: 44px;
    line-height: 54px;
    color: #212221;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 500;
}

.section-title.white {
    color: white;
}

/* Services Showcase */
.services-showcase {
    background: #f6f6f6;
    padding: 80px 0 150px;
}

.services-showcase .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    animation: scaleUp 0.8s ease-out;
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.services-image {
    width: 100%;
    max-width: 1140px;
    height: auto;
}

/* Products Section */
.products {
    position: relative;
    width: 100%;
    height: 100%;
}
.inner-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100%;
}

.content-wrapper {
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    width: 100%;
    height: 100%;
}

.product-image-bg {
    flex: 1 1 0%;
    height: 900px;
    min-height: 1px;
    min-width: 1px;
    position: relative;
    flex-shrink: 0;
}

.image-container {
    width: 100%;
    height: 100%;
}

.image-wrapper {
    display: flex;
    flex-direction: column;
    height: 900px;
    padding-left: 450px;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    width: 100%;
}

.image-box {
    height: 700px;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.image-box img {
    position: absolute;
    inset: 0;
    max-width: none;
    object-fit: cover;
    object-position: 50% 50%;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.header-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 350px;
    flex-shrink: 0;
}

.overlay-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 50px;
    left: 0px;
    top: 120px;
}
.overlay-content h3 {
    font-size: 30px;
    line-height: 36px;
    color: #212221;
    font-weight: 400;
}





/*
.products-content {
    display: flex;
    align-items: flex-end;
    position: relative;
    flex-direction: column;
}

.products-image {
    height: 700px;
    width: 100%;
    margin-left: 250px;
    flex-shrink: 0;
}

.products-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
*/


.products-card {
    width: 550px;
    background: #01317b;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    animation: slideInLeft 1s ease-out;

}

.products-card > p {
    font-size: 16px;
    line-height: 24px;
    color: white;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInItem 0.5s ease-out backwards;
}

.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.2s; }
.product-item:nth-child(3) { animation-delay: 0.3s; }
.product-item:nth-child(4) { animation-delay: 0.4s; }
.product-item:nth-child(5) { animation-delay: 0.5s; }
.product-item:nth-child(6) { animation-delay: 0.6s; }
.product-item:nth-child(7) { animation-delay: 0.7s; }
.product-item:nth-child(8) { animation-delay: 0.8s; }

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

.product-item:hover {
    transform: translateX(5px);
}

.check-icon {
    width: 18px;
    height: 18px;
}

.product-item span {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

/* Why Partner Section */
.why-partner {
    background: #f6f6f6;
    padding: 100px 0 150px;
}

.why-partner .container {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.why-partner h2 {
    font-size: 44px;
    line-height: 54px;
    color: #212221;
    margin-bottom: 80px;
    font-weight: 500;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.service-grid{
    width: 100%;
    height: auto;
}
.service-grid > .white-card{
    background-color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.feature-card {
    background: #e6eff2;
    padding: 30px;
    border:solid 1px #C8DDE4;
    box-shadow: 2px 2px 5px 0px #e8e8e8;
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease-out backwards;
    border-radius: 10px;
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 4px 4px 10px 0px rgba(1, 49, 123, 0.25);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    background-color: #08AAE5;
    display: flex;
}

.service-icon {
    background-color: #EDF6FC;
    border-radius: 50px;
}

.feature-icon img {
    margin: auto;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #212221;
    margin-bottom: 12px;
    text-align: left;
}

.feature-card p {
    font-size: 16px;
    line-height: 24px;
    color: #858585;
    text-align: left;
}

/* Contact Section */
.contact {
    background: #01317b;
    padding: 100px 0;
}

.contact .container {
    animation: fadeInUp 0.8s ease-out;
}

.contact-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.contact-label {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #08aae5;
    margin-bottom: 30px;
}

.contact h2 {
    font-size: 44px;
    line-height: 54px;
    color: white;
    max-width: 700px;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #01317b;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    padding: 100px 0;
}

.footer-col h4 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 30px;
}

.footer-logo .logo-icon {
    width: 47px;
    height: 47px;
}

.footer-col p {
    font-size: 16px;
    line-height: 24px;
}

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

.footer-links li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(246, 246, 246, 0.15);
}

.footer-links li:last-child {
    border-bottom: none;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #08aae5;
}

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

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

.contact-item span {
    font-size: 16px;
    line-height: 24px;
}
.footer-contact-icon{
    width: 20px;
    height: 20px;
}

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

.social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    transform: scale(1.2) translateY(-5px);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.footer-divider {
    height: 1px;
    background: rgba(246, 246, 246, 0.15);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom p {
    font-size: 16px;
    line-height: 24px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    padding: 26px 32px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInModal 0.3s ease-out;
}

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

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 28px;
    color: #01317b;
}

.modal-close {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: #858585;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #212221;
}

.form-group {
    margin-bottom: 16px;
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #212221;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

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

.form-group textarea {
    resize: none;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s ease-out;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}


/* Inner Page Hero Section */
.hero-inner {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-banner {
    background-image: url('images/inner-banner-4.png');
}

.products-banner {
    background-image: url('images/inner-banner-1.png');
}

.services-banner {
    background-image: url('images/inner-banner-2.png');
}

.hero-inner-content {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    width: 100%;
    padding: 0 150px;
}

.hero-inner-label {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.hero-inner-title {
    color: white;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 800px;
}

.inner-section {
    background: white;
    padding: 150px 0;
}

.inner-section .container {
    display: flex;
    gap: 100px;
    flex-direction: column;
}

.inner-section-header {
    width: 100%;
    animation: slideInLeft 0.8s ease-out;
}

.inner-section-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 30px;
}

.inner-section-badge span {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #858585;
}
.inner-section-header h2 {
    font-size: 44px;
    line-height: 54px;
    color: #212221;
    font-weight: 400;
}
.service-page-bg{
    display: flex;
    flex-direction: row;
    gap: 60px;
}
.service-card{
    padding: 24px;
    background-color: #F6F6F6;
}
.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.service-card p {
    font-size: 16px;
    line-height: 24px;
    color: #212221;
}



/* Product Page Tabs - Desktop */
.tabs-wrapper {
    display: block;
}

.tab-input {
    display: none;
}

.tabs {
    display: flex;
    gap: 0px;
    margin-bottom: 80px;
}

.tab {
    flex: 1;
    height: auto;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab:hover {
    border-bottom: 4px solid #08aae5;
}

.tab img {
    width: 22px;
    height: 22px;
    color: #858585;
    transition: color 0.3s ease;
}

.tab span {
    font-size: 16px;
    font-weight: 600;
    color: #212221;
}

/* Active Tab State */
#tab1:checked ~ .tabs label[for="tab1"],
#tab2:checked ~ .tabs label[for="tab2"],
#tab3:checked ~ .tabs label[for="tab3"],
#tab4:checked ~ .tabs label[for="tab4"] {
    border-bottom: 4px solid #08aae5;
}


* Tab Content */
.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
}

#tab1:checked ~ .tab-content #panel1,
#tab2:checked ~ .tab-content #panel2,
#tab3:checked ~ .tab-content #panel3,
#tab4:checked ~ .tab-content #panel4 {
    display: block;
}

/* Products Grid */
.inner-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.inner-product-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inner-product-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.inner-product-header span {
    font-size: 16px;
    font-weight: 600;
    color: #212221;
    text-transform: capitalize;
}

.inner-product-description {
    font-size: 16px;
    font-weight: 400;
    color: #212221;
    line-height: 1.5;
}

/* Mobile Products View (Hidden by Default) */
.mobile-products {
    display: none;
}

.mobile-section {
    margin-bottom: 80px;
}
.mobile-section:last-child {
    margin-bottom: 0;
}
.mobile-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #212221;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #08aae5;
}
.mobile-section .inner-product-item {
    margin-bottom: 30px;
}
.mobile-section .inner-product-item:last-child {
    margin-bottom: 0;
}

.inner-about-paragraph{
    gap: 30px;
    display: flex;
    flex-direction: column;
    padding: 60px 0;
}

.inner-about-paragraph > p {
    font-size: 16px;
    line-height: 24px;
    color: #212221;
}
.inner-about-section{
    flex-direction: row !important;
}



.about-mission-card {
    padding:24px;
    background-color: #F6F6F6;
    margin-bottom: 50px;
}
.about-core-value-card {
    background-color: #FFF;
    margin-bottom: 0px;
}

.about-mission-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.about-mission-header h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #08AAE5;
}

.about-mission-card p {
    font-size: 16px;
    line-height: 24px;
    color: #212221;
}



/* Responsive Styles */
@media (max-width: 1200px) {
    .container,
    .header-content {
        padding: 0 60px;
    }
    
    .products-card {
        left: 60px;
    }
}

@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }

    .nav-link {
        color: #212221;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        transform: scale(1);
    }
    
    .hero-title {
        font-size: 56px;
        line-height: 64px;
    }
    
    .about .container {
        flex-direction: column;
        gap: 50px;
    }
    
    .about-header {
        min-width: 100%;
    }

    .services-showcase{
        padding: 80px 0;
    }

    .products {
        padding: 100px 0;
    }

    .overlay-content {
        position: relative;
        top: 0px;
        width: 100%;
    }

    .product-image-bg{
        display: none;
    }
    
    .products-content {
        flex-direction: column;
    }
    
    .products-card {
        position: static;
        width: 100%;
        margin: 0;
    }
    .hero-inner-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .container,
    .header-content {
        padding: 0 24px;
    }
    
    .header {
        height: 70px;
    }

    .nav-link {
        color: #212221;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .bullet-point span:last-child {
        font-size: 16px;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-header h2,
    .section-title,
    .contact h2,
    .why-partner h2 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .industries {
        padding: 80px 0 50px;
    }
    

    .products {
        padding: 80px 0;
    }
    
    .products-card {
        padding: 40px;
        margin: 0;
    }
    
    .products-card h2 {
        font-size: 24px;
        line-height: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .why-partner {
        padding: 80px 0;
    }

    .why-partner .container {
        text-align: left;
    }

    .why-partner .container h2 br{
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        padding: 60px 0;
    }
    
    .modal-content {
        padding: 24px;
    }
    .hero-inner-title {
        font-size: 32px;
    }

    /* Hide Tabs on Mobile */
    .tabs-wrapper {
        display: none;
    }

    /* Show Mobile Products View */
    .mobile-products {
        display: block;
    }
    .inner-section {
        padding: 100px 0;
    }
    .inner-about-section {
        flex-direction: column !important;
        gap: 30px !important;
    }
    .about-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-page-bg{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 40px;
    }
    .nav-link {
        color: #212221;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        justify-content: center;
    }
    
    .about-header h2,
    .section-title,
    .contact h2,
    .why-partner h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .services-showcase {
        padding: 24px 0 80px;
    }

    .products {
        padding: 80px 0;
    }

    .product-image-bg{
        display: none;
    }

    .products-card {
        padding: 30px 24px;
        margin: 0px;
    }
    .hero-inner {
        height: 300px;
    }

    .hero-inner-content {
        padding: 0 30px;
    }

    .hero-inner-label {
        margin-bottom: 20px;
    }
    .hero-inner-title {
        font-size: 26px;
    }
    .inner-section {
        padding: 80px 0;
    }
    .inner-section-badge {
        margin: 0 0 20px;
    }
    .inner-section-header h2 {
        font-size: 36px;
        line-height: 44px;
    }
    .about-products-grid {
        grid-template-columns: 1fr;
    }

}
