/* Global Styles */
:root {
    --primary-color: #0288D1; /* Darker blue from original #02A9F4 */
    --secondary-color: #0D2456; /* Darker blue from original #1F3A7A */
    --accent-color: #00B8E0; /* Darker accent blue from original #00D6FF */
    --text-color: #333;
    --text-light: #666;
    --text-white: #fff;
    --bg-light: #f5f9ff;
    --bg-white: #fff;
    --border-color: #e1e4e8;
    --shadow: 0 5px 15px rgba(2, 136, 209, 0.15);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #0288D1, #0D2456);
    --gradient-secondary: linear-gradient(135deg, #0D2456, #0288D1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.btn:hover:before {
    transform: translateX(0);
}

.primary-btn {
    background: var(--gradient-primary);
    background-size: 200% auto;
    color: var(--text-white);
    box-shadow: 0 3px 10px rgba(2, 136, 209, 0.2); /* Simplified */
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.primary-btn:hover {
    background-position: right center;
    color: var(--text-white);
    transform: translateY(-3px); /* Reduced from -5px */
    box-shadow: 0 6px 15px rgba(2, 136, 209, 0.25); /* Simplified */
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.secondary-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.secondary-btn:hover {
    color: var(--text-white);
    border-color: transparent;
}

.secondary-btn:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.section-header h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-header h2 span {
    color: var(--primary-color);
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    position: relative;
}

.underline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--accent-color);
    animation: pulse 2s infinite;
}

section {
    padding: 35px 0;
    position: relative;
    overflow: hidden;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(13, 36, 86, 0.1);
    padding: 12px 0;
    transition: all 0.5s ease;
}

header.sticky {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 25px rgba(13, 36, 86, 0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    transition: all 0.5s;
}

.text-logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

.highlight-letter {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    transform: scale(1.2);
}

header.sticky .logo-img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

/* Navigation Buttons Styles */
.nav-button {
    display: none;
}

.nav-button .nav-btn {
    padding: 8px 20px;
    font-size: 14px;
    display: inline-block;
    margin-left: 10px;
}

.nav-button .primary-btn.nav-btn {
    padding: 8px 20px;
}

.nav-button .secondary-btn.nav-btn {
    padding: 6px 18px;
}

@media screen and (min-width: 1200px) {
    .nav-button {
        display: inline-block;
    }
}

@media screen and (max-width: 1199px) {
    .nav-button {
        display: block;
    }
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 24px;
    position: relative;
    z-index: 99999999999;
}

.mobile-menu-btn i{
    position: relative;
    z-index: 9999;
    color: white;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f5f9ff 0%, #e4f1fa 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    animation: slideIn 1s forwards;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    line-height: 1.2;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
}

.hero-content h1 span {
    color: var(--primary-color);
    display: block;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
    animation: floatAnimation 8s ease-in-out infinite;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(13, 36, 86, 0.2);
    transition: all 0.5s;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
    animation: floatAnimation 6s ease-in-out infinite reverse;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 15px;
    opacity: 0.1;
    z-index: -1;
    animation: floatAnimation 8s ease-in-out infinite;
}

.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Animated circles for hero section */
.animated-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(2, 136, 209, 0.1) 0%, rgba(2, 136, 209, 0) 70%);
    top: 10%;
    right: 5%;
    animation: pulse 6s infinite;
}

.circle2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(13, 36, 86, 0.1) 0%, rgba(13, 36, 86, 0) 70%);
    bottom: 20%;
    left: 10%;
    animation: pulse 8s infinite;
}

.circle3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 184, 230, 0.1) 0%, rgba(0, 184, 230, 0) 70%);
    top: 30%;
    left: 20%;
    animation: pulse 7s infinite;
}

/* Pulse line animation */
.pulse-line {
    position: absolute;
    bottom: 30%;
    left: 0;
    width: 100%;
    height: 2px;
    background: url('images/heartbeat.svg') repeat-x;
    opacity: 0.1;
    animation: moveLeft 20s linear infinite;
}

/* About Section */
.about {
    background-color: var(--bg-white);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    position: relative;
}

.about-text.full-width {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.mission-vision-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mv-item {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(2, 136, 209, 0.1);
    box-shadow: 0 5px 15px rgba(13, 36, 86, 0.06); /* Simplified */
    transform: translateY(0);
}

.mv-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mv-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(2, 136, 209, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.mv-item:hover {
    transform: translateY(-5px); /* Reduced from -8px */
    box-shadow: 0 10px 25px rgba(2, 136, 209, 0.12); /* Simplified */
    border-color: rgba(2, 136, 209, 0.2);
}

.mv-item:hover::before {
    transform: scaleX(1);
}

.mv-item:hover::after {
    opacity: 1;
}

.mv-item > * {
    position: relative;
    z-index: 1;
}

.mv-item i {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient(135deg, rgba(2, 136, 209, 0.1) 0%, rgba(13, 36, 86, 0.1) 100%);
    border-radius: 20px;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
}

.mv-item i::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.mv-item:hover i {
    transform: scale(1.1) rotateZ(5deg);
    color: white;
}

.mv-item:hover i::after {
    opacity: 1;
}

.mv-item h4 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

.mv-item h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.mv-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    font-style: normal;
    position: relative;
    padding: 0 10px;
}

/* Add quote marks for mission and vision */
.mv-item:nth-child(1) p::before,
.mv-item:nth-child(2) p::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.mv-item:nth-child(1) p::after,
.mv-item:nth-child(2) p::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: -5px;
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.mv-item ul {
    list-style: none;
    text-align: left;
    max-width: 240px;
    margin: 0 auto;
    padding: 0;
}

.mv-item ul li {
    position: relative;
    padding: 12px 0 12px 35px;
    color: var(--text-light);
    font-size: 15px;
    border-bottom: 1px solid rgba(13, 36, 86, 0.08);
    transition: all 0.3s ease;
}

.mv-item ul li:last-child {
    border-bottom: none;
}

.mv-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(2, 136, 209, 0.2) 0%, rgba(13, 36, 86, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-item ul li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 14px;
}

.mv-item:hover ul li {
    padding-left: 40px;
    color: var(--text-color);
}

/* Special styling for each card */
.mv-item:nth-child(1) {
    border-top: 3px solid #0288D1;
    animation: mvCardFloat 6s ease-in-out infinite;
}

.mv-item:nth-child(2) {
    border-top: 3px solid #00B8E0;
    animation: mvCardFloat 6s ease-in-out 2s infinite;
}

.mv-item:nth-child(3) {
    border-top: 3px solid #0D2456;
    animation: mvCardFloat 6s ease-in-out 4s infinite;
}

.about-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Overview Section */
.overview {
    background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
    padding: 20px 0
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.overview-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.overview-highlight {
    font-size: 19px;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    margin-top: 20px;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(2, 136, 209, 0.05) 0%, rgba(13, 36, 86, 0.05) 100%);
    border-radius: 15px;
}

/* Products & Services Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.product-section {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05); /* Simplified */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-section:hover {
    transform: translateY(-3px); /* Reduced from -5px */
    box-shadow: 0 6px 18px rgba(2, 136, 209, 0.1); /* Simplified */
}

.product-section:hover::before {
    transform: scaleX(1);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.product-header i {
    font-size: 36px;
    color: var(--primary-color);
}

.product-header h3 {
    font-size: 22px;
    color: var(--secondary-color);
}

.product-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.target-clients,
.product-types,
.product-range {
    margin-top: 20px;
}

.target-clients h4,
.product-types h4,
.product-range h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.target-clients h4::before,
.product-types h4::before,
.product-range h4::before {
    content: '▶';
    color: var(--primary-color);
    font-size: 14px;
}

.target-clients ul,
.product-types ul,
.product-range ul {
    list-style: none;
    margin-left: 20px;
}

.target-clients ul li,
.product-types ul li,
.product-range ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.target-clients ul li::before,
.product-types ul li::before,
.product-range ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1;
}

/* Industries Section */
.industries {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 136, 209, 0.02) 0%, rgba(13, 36, 86, 0.02) 100%);
    z-index: 0;
}

.industries .container {
    position: relative;
    z-index: 1;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 15x;
}

.industry-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(13, 36, 86, 0.1);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(2, 136, 209, 0.2);
}

.industry-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
        border-radius: 10px;

}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 136, 209, 0.3) 0%, rgba(13, 36, 86, 0.6) 100%);
    opacity: 0.7;
    transition: all 0.4s ease;
    border-radius: 10px;
}

.industry-card:hover .industry-overlay {
    opacity: 0.9;
}

.industry-content {
    padding: 25px;
    position: relative;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.industry-icon {
    position: absolute;
    top: -30px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(2, 136, 209, 0.3);
    transition: all 0.4s ease;
    z-index: 2;
}

.industry-card:hover .industry-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(2, 136, 209, 0.4);
}

.industry-icon i {
    font-size: 24px;
    color: var(--text-white);
}

.industry-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 35px 0 15px 0;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-content h3 {
    color: var(--primary-color);
}

.industry-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

.industry-features {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.industry-features span {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
    background: rgba(2, 136, 209, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-features span {
    background: rgba(2, 136, 209, 0.15);
    transform: translateX(5px);
}

/* Mobile optimizations for industries */
@media screen and (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .gallery-swiper .swiper-slide img {
        height: 50% !important;
        
    }
    .full-gallery{
        margin-top: 5rem !important;
        height:50% !important;
    }

    
    .industry-image {
        height: 160px;
    }
    
    .industry-content {
        padding: 20px;
        height: auto;
    }
    
    .industry-icon {
        width: 50px;
        height: 50px;
        top: -25px;
        left: 20px;
    }
    
    .industry-icon i {
        font-size: 20px;
    }
    
    .industry-content h3 {
        font-size: 18px;
        margin: 30px 0 12px 0;
    }
    
    .industry-content p {
        font-size: 13px;
    }
    .video_logo{
        width: 10rem !important;
    }
}

@media screen and (max-width: 576px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .industry-card {
        margin: 0 10px;
    }
    
    .industry-image {
        height: 140px;
    }
    
    .industry-content {
        padding: 18px;
        height: auto;
    }
    
    .industry-content h3 {
        font-size: 17px;
    }
    
    .industry-features span {
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* Logistics Section */
.logistics {
    background: var(--bg-white);
    position: relative;
}

.logistics-features {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.logistics-feature {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.logistics-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(2, 136, 209, 0.15);
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(2, 136, 209, 0.3);
}

.feature-icon-wrap i {
    font-size: 36px;
    color: var(--text-white);
}

.feature-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .logistics-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-vision-values {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 136, 209, 0.03) 0%, rgba(2, 136, 209, 0) 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.info-item {
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    background-color: var(--bg-light);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
}

.info-item:hover {
    transform: translateY(-15px) rotateX(10deg);
    box-shadow: 0 15px 30px rgba(13, 36, 86, 0.15);
}

.info-item:hover::before {
    opacity: 0.05;
}

.info-item i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.5s;
}

.info-item:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.info-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(13, 36, 86, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(2, 136, 209, 0.05) 0%, rgba(2, 136, 209, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Floating label inputs */
.form-floating {
    position: relative;
}

.form-floating input,
.form-floating textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(13, 36, 86, 0.1);
    border-radius: 10px;
    background-color: var(--bg-white);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    height: 60px;
    font-size: 16px;
}

.form-floating textarea {
    height: auto;
    resize: none;
}

.form-floating label {
    position: absolute;
    top: 20px;
    left: 20px;
    pointer-events: none;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-size: 16px;
}

.form-floating input:focus,
.form-floating textarea:focus,
.form-floating input:not(:placeholder-shown),
.form-floating textarea:not(:placeholder-shown) {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(2, 136, 209, 0.1);
    padding-top: 25px;
}

.form-floating input:focus + label,
.form-floating textarea:focus + label,
.form-floating input:not(:placeholder-shown) + label,
.form-floating textarea:not(:placeholder-shown) + label {
    top: 8px;
    left: 16px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.contact-form .primary-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background: var(--gradient-primary);
    transition: all 0.5s;
    margin-top: 20px;
}

.contact-form .primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(2, 136, 209, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.contact-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"><circle cx="75" cy="75" r="1" fill="%230288D1" opacity="0.15"/></svg>') repeat;
    z-index: 0;
    opacity: 0.3;
    animation: moveBackground 40s linear infinite;
}

/* Partners Section */
.partners {
    background-color: var(--bg-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 36, 86, 0.03) 0%, rgba(13, 36, 86, 0) 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 0;
}

.partners-slider {
    position: relative;
    z-index: 1;
    padding: 20px 0;
    overflow: hidden;
    margin-top: 20px;
}

.partners-slider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, var(--bg-light) 20%, rgba(245, 249, 255, 0));
    z-index: 2;
    pointer-events: none;
}

.partners-slider::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to left, var(--bg-light) 20%, rgba(245, 249, 255, 0));
    z-index: 2;
    pointer-events: none;
}

.partner {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(13, 36, 86, 0.05);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0 15px;
    border: 1px solid rgba(13, 36, 86, 0.05);
}

.partner::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
    animation-delay: calc(0.5s * var(--i, 0));
    pointer-events: none;
}

.partner-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    transition: all 0.3s ease;
}

.swiper-slide.partner {
    height: 100px;
    opacity: 1 !important;
    filter: none !important;
    transition: transform 0.3s ease;
}

.swiper-slide.partner:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(13, 36, 86, 0.1);
}

.swiper-slide.partner:hover .partner-text {
    color: var(--primary-color);
    transform: scale(1.1);
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Footer */
footer {
    background-color: #0D2456;
    background-image: linear-gradient(135deg, #0D2456 0%, #021A3A 100%);
    color: var(--text-white);
    padding: 20px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 0;
}


.footer-content {
    display: flex
;
    grid-template-columns: 1fr;
    gap: 40px;
    /* margin-bottom: 20px; */
    position: relative;
    z-index: 1;
    justify-content: space-between;
}

.footer-logo h2 {
    font-size: 32px;
    margin-bottom: 5px;
    position: relative;
}

.footer-logo h2 span {
    color: var(--primary-color);
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.social-links a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
}

.social-links a:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(2, 136, 209, 0.3);
    color: var(--text-white);
}

.social-links a:hover:before {
    opacity: 1;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}
.footer-newsletter{
    display: none;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-newsletter h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s;
}

.footer-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s;
}

.footer-links a {
    color: var(--text-white);
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 8px;
    color: var(--primary-color);
}

.footer-links li:hover::before {
    opacity: 1;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 20px;
}

.newsletter-form {
    display: flex;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form .btn {
    padding: 0 30px;
    border-radius: 0 30px 30px 0;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s;
}

.newsletter-form .btn:hover {
    background-position: right center;
    box-shadow: 0 10px 20px rgba(2, 136, 209, 0.3);
}

.footer-bottom {
    padding: 8px 0;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    text-align: left;
    font-size: 14px;
    opacity: 0.7;
    position: relative;
}

.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
    z-index: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-70px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(70px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2, 136, 209, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(2, 136, 209, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2, 136, 209, 0);
    }
}

/* Reading Progress Indicator Pulse Animation */
@keyframes progressPulse {
    0% {
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(2, 136, 209, 0.7);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 0 10px rgba(2, 136, 209, 0);
    }
    100% {
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(2, 136, 209, 0);
    }
}

/* Apply the pulse animation to the reading progress bar */
.reading-progress-bar.pulse {
    animation: progressPulse 1.5s infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); } /* Reduced movement */
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.1);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.15);
    }
    70% {
        transform: scale(1);
    }
}

@keyframes moveBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

@keyframes moveLeft {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -1000px 0;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Full Gallery Slider */
.full-gallery {
    height: 100vh;
    width: 100%;
    margin-top: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.gallery-swiper {
    width: 100%;
    height: 100%;
}

.gallery-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transform: scale(1.05);
    transition: transform 10s ease;
}

.gallery-swiper .swiper-slide-active img {
    transform: scale(1);
}

.gallery-swiper .slide-content {
    position: absolute;
    bottom: 100px;
    left: 100px;
    color: var(--text-white);
    z-index: 2;
    max-width: 500px;
}

.gallery-swiper .slide-content h2 {
    font-size: 52px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}

.gallery-swiper .slide-content p {
    font-size: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.8s;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: rgba(2, 136, 209, 0.7);
    transform: scale(1.1);
}

.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
    font-size: 20px;
}

.gallery-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--text-white);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update existing animations and media queries for better responsiveness */
@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-swiper .slide-content {
        padding: 20px 30px;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 20px 0
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
        backdrop-filter: blur(10px);
        width: 85%;
        max-width: 350px;
        height: 100vh;
        padding: 80px 25px 30px;
        gap: 8px;
        box-shadow: -10px 0 30px rgba(13, 36, 86, 0.2);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    .nav-links.active li {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(8) { transition-delay: 0.45s; }
    .nav-links.active li:nth-child(9) { transition-delay: 0.5s; }
    
    .nav-links a {
        padding: 15px 20px;
        font-size: 17px;
        font-weight: 500;
        display: block;
        width: 100%;
        border-radius: 12px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .nav-links a:hover {
        background: rgba(2, 136, 209, 0.08);
        transform: translateX(10px);
        color: var(--primary-color);
    }
    
    .nav-links a:after {
        display: none;
    }
    
    .nav-links a:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--gradient-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover:before {
        height: 80%;
    }
    
    .mobile-menu-btn {
        display: block;
        background: var(--gradient-primary);
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(2, 136, 209, 0.25);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(2, 136, 209, 0.35);
    }
    
    /* Close button overlay */
    .nav-links:before {
        content: '';
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(13, 36, 86, 0.05);
        border-radius: 50%;
        z-index: -1;
    }
    
    /* Hero section mobile optimization */
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    /* Reduce gaps in sections */
    .section-header {
        margin-bottom: 0px;
    }
    
    .section-header h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .products-grid {
        gap: 20px;
    }
    
    .product-section {
        padding: 25px 20px;
    }
    
    .industries-grid {
        gap: 20px;
    }
    
    .industry-card {
        padding: 25px 20px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .mission-vision-values {
        gap: 20px;
        margin-top: 25px;
    }
    
    .mv-item {
        padding: 25px 20px;
    }
    
    .services-grid, 
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-swiper .slide-content {
        position: static;
        padding: 15px 20px;
    }
    
    .gallery-swiper .slide-content h2 {
        font-size: 24px;
    }
    
    .text-logo {
        font-size: 20px;
    }
    
    /* Contact form mobile optimization */
    .contact-content {
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .info-item {
        padding: 20px 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    /* FAQ mobile optimization */
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 35px;
    }
    
    /* Stats mobile optimization */
    .stats {
        padding: 20px 0
    }
    
    .stat-item {
        padding: 25px;
    }
    
    /* Footer mobile optimization */
    .footer-content {
        gap: 30px;
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    /* Further reduce padding on small screens */
    section {
        padding: 20px 0;
    }
    
    .hero {
        padding: 60px 0 50px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header {
        margin-bottom: 0;
    }
    
    /* Optimize overview section */
    .overview {
        padding: 40px 0;
    }
    
    .overview-text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Products section optimization */
    .product-section {
        padding: 20px 15px;
    }
    
    .product-header i {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .product-header h3 {
        font-size: 18px;
    }
    
    .product-content p {
        font-size: 15px;
    }
    
    /* Industries optimization */
    .industry-card {
        padding: 20px 15px;
    }
    
    .industry-icon {
        width: 60px;
        height: 60px;
    }
    
    .industry-icon i {
        font-size: 28px;
    }
    
    .industry-card h3 {
        font-size: 18px;
    }
    
    .industry-card p {
        font-size: 14px;
    }
    
    /* Mission vision values optimization */
    .mv-item {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .mv-item i {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .mv-item h4 {
        font-size: 20px;
    }
    
    .mv-item p {
        font-size: 14px;
    }
    
    .mv-item ul li {
        font-size: 14px;
        padding: 10px 0 10px 30px;
    }
    
    /* Logistics features optimization */
    .logistics-feature {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .feature-icon-wrap {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon-wrap i {
        font-size: 24px;
    }
    
    .feature-content h3 {
        font-size: 18px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
    
    /* Stats optimization */
    .stats {
        padding: 20px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    /* Contact optimization */
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        padding: 18px 15px;
    }
    
    .info-item i {
        font-size: 30px;
    }
    
    .info-item h3 {
        font-size: 16px;
    }
    
    .info-item p {
        font-size: 14px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Footer optimization */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
                flex-direction: column;

    }
    
    /* Gallery optimization */
    .gallery-swiper .slide-content {
        left: 15px;
        bottom: 15px;
        right: 15px;
        position: absolute;
        padding: 12px 15px;
    }

    .gallery-swiper .slide-content h2 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .gallery-swiper .slide-content p {
        font-size: 14px;
    }
    
    /* FAQ optimization */
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
        padding-bottom: 18px;
    }
    
    /* Partners slider optimization */
    .partner {
        height: 60px;
    }
    
    .partner-text {
        font-size: 14px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    /* Mobile menu final touches */
    .nav-links {
        padding: 70px 20px 25px;
    }
    
    .nav-links a {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }
    
    .logo-img {
        height: 40px;
    }
}

@media screen and (max-width: 576px) {
    /* Mission vision values optimization */
    .mv-item {
        padding: 25px 20px;
        animation: none !important; /* Disable float animation on mobile */
    }
    
    .mv-item i {
        width: 50px;
        height: 50px;
        font-size: 25px;
        margin-bottom: 15px;
    }
    
    .mv-item h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .mv-item ul li {
        padding: 8px 0 8px 28px;
    }
}

/* Why Us Section */
.why-us {
    background-color: var(--bg-light);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(2, 136, 209, 0.05) 0%, transparent 400px),
        radial-gradient(circle at 80% 80%, rgba(13, 36, 86, 0.05) 0%, transparent 400px);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(13, 36, 86, 0.1);
    transition: all 0.5s;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-bottom: 4px solid transparent;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
}

.feature-card:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(-10deg);
    box-shadow: 0 20px 40px rgba(13, 36, 86, 0.2);
    border-bottom: 4px solid var(--primary-color);
}

.feature-card:hover::before {
    opacity: 0.02;
}

.feature-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.5s;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.2);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: all 0.3s;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    transition: all 0.3s;
}

/* Floating shapes animation */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    z-index: -1;
    opacity: 0.05;
}

.shape1 {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 20px;
    top: 10%;
    left: 5%;
    animation: float 15s ease-in-out infinite alternate;
}

.shape2 {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    border-radius: 50%;
    bottom: 10%;
    right: 5%;
    animation: float 20s ease-in-out infinite alternate-reverse;
}

.shape3 {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 10px;
    transform: rotate(45deg);
    top: 30%;
    right: 20%;
    animation: float 12s ease-in-out infinite alternate;
}

.shape4 {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 30%;
    left: 20%;
    animation: float 17s ease-in-out infinite alternate-reverse;
}

/* Services Section */
.services {
    background-color: var(--bg-light);
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(2, 136, 209, 0.05) 0%, transparent 300px),
        radial-gradient(circle at 90% 10%, rgba(13, 36, 86, 0.05) 0%, transparent 300px);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13, 36, 86, 0.1);
    transition: all 0.5s;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(13, 36, 86, 0.2);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 36, 86, 0.1), rgba(2, 136, 209, 0.2));
    opacity: 0;
    z-index: 1;
    transition: all 0.5s;
}

.service-card:hover .service-image::before {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
}

.service-card:hover .service-image img {
    transform: scale(1.1) rotate(2deg);
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: all 0.5s;
}

.service-card:hover .service-content::before {
    height: 100%;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: all 0.3s;
    padding-left: 15px;
}

.service-card:hover .service-content h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.service-content p {
    color: var(--text-light);
    padding-left: 15px;
    transition: all 0.3s;
}

.service-card:hover .service-content p {
    transform: translateX(5px);
}

/* FAQ Section */
.faq {
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
        padding-bottom: 0 !important;
}

.faq::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(2, 136, 209, 0.02) 0%, rgba(2, 136, 209, 0) 70%);
    border-radius: 50%;
    bottom: -250px;
    right: -250px;
    z-index: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(13, 36, 86, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 12px 30px rgba(13, 36, 86, 0.12);
    transform: translateY(-3px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 600;
    transition: all 0.3s;
    padding-right: 40px;
}

.faq-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-white);
    transition: all 0.3s;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer p {
    color: var(--text-light);
    padding-bottom: 25px;
    margin: 0;
    line-height: 1.8;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(2, 136, 209, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gradient-secondary);
    box-shadow: 0 8px 20px rgba(2, 136, 209, 0.4);
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 20px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0D2456;
    background-image: linear-gradient(135deg, #0D2456 0%, #0288D1 100%);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.preloader-logo {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.preloader-spinner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.5);
    animation: spin 1.2s linear infinite;
    position: absolute;
    z-index: 1;
}

.preloader-spinner:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    right: 7px;
    bottom: 7px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-left-color: #ffffff;
    border-right-color: rgba(255, 255, 255, 0.5);
    animation: spin 0.8s linear infinite reverse;
}

.preloader-circle-1 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 0;
    animation: pulse 2s infinite alternate;
}

.preloader-circle-2 {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    z-index: 0;
    animation: spin 12s linear infinite;
}

.preloader-text {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-top: 25px;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.preloader-dots {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.preloader-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: fadeInOut 1.5s infinite;
}

.preloader-dots .dot:nth-child(2) {
    animation-delay: 0.5s;
}

.preloader-dots .dot:nth-child(3) {
    animation-delay: 1s;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Removed Timeline, Video, and Testimonials sections */

/* Stats Section */
.stats {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: var(--text-white);
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://img.freepik.com/free-photo/group-doctors-standing-hospital-hallway_107420-84766.jpg') center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    position: relative;
    padding: 20px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.stat-item::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 3s infinite;
}

.stat-number {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff, #c5e4ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.stats-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 50px 50px;
    animation: moveBackground 30s linear infinite;
}

/* Mobile optimizations for stats */
@media screen and (max-width: 768px) {
    .stats {
        padding: 20px 0
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 40px;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .stat-item::before {
        width: 60px;
        height: 60px;
    }
    
    .stats::before {
        opacity: 0.1;
    }
    
    .stats-parallax {
        opacity: 0.1;
        background-size: 30px 30px;
    }
}

@media screen and (max-width: 576px) {
    .stats {
        padding: 20px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stat-item {
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

/* Dark overlay when menu is open */
.nav-links.active::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -2;
    width: 100vw;
    height: 100vh;
    transform: translateX(-100%);
}

/* Logo and close button area */
.nav-links.active::before {
    content: 'InnovMed';
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 1;
}

/* Animation for MV cards - Reduced for performance */
@keyframes mvCardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px); /* Reduced from -10px */
    }
}

/* Apply float animation to cards with delay */
.mv-item:nth-child(1) {
    border-top: 3px solid #0288D1;
    /* animation: mvCardFloat 6s ease-in-out infinite; */ /* Disabled by default */
}

.mv-item:nth-child(2) {
    border-top: 3px solid #00B8E0;
    /* animation: mvCardFloat 6s ease-in-out 2s infinite; */ /* Disabled by default */
}

.mv-item:nth-child(3) {
    border-top: 3px solid #0D2456;
    /* animation: mvCardFloat 6s ease-in-out 4s infinite; */ /* Disabled by default */
}

/* Enable animations only on hover for better performance */
.mv-item:hover {
    animation: mvCardFloat 2s ease-in-out infinite !important;
}

/* Add gradient background animation to icon on hover */
@keyframes iconGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.mv-item:hover i {
    transform: scale(1.1) rotateZ(5deg);
    color: white;
    background-size: 200% 200%;
    animation: iconGradient 3s ease infinite;
}

/* Particles Canvas Global Style */
.particles-canvas {
    opacity: 0.8 !important; /* Increased to make them visible again */
    mix-blend-mode: normal;
}

/* Dark sections need lighter particles */
.stats .particles-canvas,
footer .particles-canvas {
    opacity: 0.2 !important; /* Increased slightly */
}

/* Light sections need darker particles */
.overview .particles-canvas,
.partners .particles-canvas,
.services .particles-canvas {
    opacity: 0.15 !important; /* Increased slightly */
}

/* Disable heavy animations for performance */
.animated-circle {
    display: none !important; /* Disable animated circles */
}

.pulse-line {
    display: none !important; /* Disable pulse line */
}

/* Simplify reading progress animation */
.reading-progress-bar {
    transition: width 0.2s linear !important; /* Simplified transition */
}

.reading-progress-bar.pulse {
    animation: none !important; /* Disable pulse animation */
}

/* Reduce preloader complexity */
.preloader-circle-1,
.preloader-circle-2 {
    display: none !important; /* Hide complex preloader circles */
}

/* Simplify hero image animation */
.hero-image {
    animation: floatAnimation 8s ease-in-out infinite; /* Slower, smoother animation */
}

/* Alert Messages for Contact Form */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInUp 0.5s ease;
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: currentColor;
    opacity: 0.8;
}

.alert i {
    font-size: 20px;
    flex-shrink: 0;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.alert-success::before {
    background: #4CAF50;
}

.alert-error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.alert-error::before {
    background: #f44336;
}

#form-message {
    margin-top: 20px;
    text-align: center;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for submit button */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Spinner animation */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Language Toggle Styles */
.language-toggle {
    margin-left: 15px;
}

.lang-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.lang-btn:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Info Section Styles */
.contact-info-section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.contact-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 300px;
    height: 280px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(2, 169, 244, 0.15);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(2, 169, 244, 0.2), rgba(2, 169, 244, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, rgba(2, 169, 244, 0.8), rgba(2, 169, 244, 0.6));
    transform: scale(1.1);
}

.contact-card-icon i {
    font-size: 32px;
    color: #0288d1;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon i {
    color: #ffffff;
}

.contact-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-card-content a,
.contact-card-content p {
    color: #666;
    font-size: 16px;
    margin: 5px 0;
    display: block;
    transition: all 0.3s ease;
}

.contact-card-content a:hover {
    color: #02A9F4;
    text-decoration: none;
}

.contact-card-bg {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(2, 169, 244, 0.05), rgba(2, 169, 244, 0.03));
    z-index: 1;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-card-bg {
    transform: scale(3);
    background: linear-gradient(135deg, rgba(2, 169, 244, 0.07), rgba(2, 169, 244, 0.05));
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .contact-cards-container {
        gap: 20px;
    }
    
    .contact-card {
        width: calc(50% - 20px);
        min-width: 280px;
    }
}

@media screen and (max-width: 768px) {
    .contact-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        height: 260px;
    }
}