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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Top Bar */
.top-bar {
    background-color: #1cbdcf;
    color: white;
    padding: 10px 0;
    font-size: 13px;
}

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

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

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

.social-icons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.social-icons a {
    color: white;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
}

/* Header */
header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Remove or comment out the old logo styles */
/* 
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0B2B5C;
}

.logo i {
    color: #1cbdcf;
    font-size: 28px;
}
*/

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #1cbdcf;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    left: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.mobile-menu-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #0B2B5C;
}

.mobile-menu-header .logo i {
    color: #1cbdcf;
    font-size: 24px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu nav {
    background-color: white;
}

.mobile-menu nav ul {
    flex-direction: column;
    padding: 0;
    gap: 0;
}

.mobile-menu nav li {
    border-bottom: 1px solid #F0F0F0;
    list-style: none;
}

.mobile-menu nav a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
    background-color: #F8F9FA;
    color: #1cbdcf;
    padding-left: 30px;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 9998;
}

.mobile-overlay.active {
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-icon {
    position: relative;
    color: #333;
    font-size: 18px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #4169E1;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.search-btn {
    background-color: #1cbdcf;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background:url('Images/herobanner.jpg') center/cover;
    
    padding: 100px 0;
    position: relative;
}

.hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content h1 .highlight {
    color: #1cbdcf;
}

.hero-content p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #1cbdcf;
    color: white;
}

.btn-primary:hover {
    background-color: #2850C7;
}

.btn-secondary {
    background-color: white;
    color: #333;
    border: 2px solid #E0E0E0;
}

.btn-secondary:hover {
    border-color: #1cbdcf;
    color: #1cbdcf;
}

.hero-sidebar {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 20px;
}

.sidebar-item {
    width: 40px;
    height: 40px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sidebar-item.active {
    background-color: #1cbdcf;
    color: white;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: white;
}

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

.about-images {
    position: relative;
    height: 500px;
}

.hexagon {
    position: absolute;
    width: 250px;
    height: 250px;
    overflow: hidden;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

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

.hex-1 {
    top: 20px;
    left: 0px;
}

.hex-2 {
    top: 50px;
    right: 20px;
}

.hex-3 {
    bottom: 4px;
    left: 110px;
}

.section-label {
    color: #e60a54;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 36px;
    color: #0B2B5C;
    margin: 15px 0 20px;
    font-weight: 700;
}

.text-blue {
    color: #1cbdcf;
}

.about-content > p {
    color: #666;
    margin-bottom: 25px;
    text-align: justify;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.feature-item i {
    color: #e60a54;
    font-size: 12px;
}

.signature-section {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    color: #0B2B5C;
    font-size: 16px;
}

.author-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background-color: #F8F9FA;
    text-align: center;
}

.trust-section h3 {
    color: #0B2B5C;
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 600;
}

.brand-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brand-logos img {
    height: 40px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.brand-logos img:hover {
    opacity: 1;
}

/* VMH Section */
.vmh-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B2B5C 0%, #1a4080 100%);
}

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

.vmh-card {
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.vmh-card.teal {
    background-color: #e60a54;
}

.vmh-card.blue {
    background: linear-gradient(135deg, #1cbdcf 0%, #5B8DFF 100%);
}

.vmh-card.orange {
    background: linear-gradient(135deg, #FF8C42 0%, #FFB366 100%);
}

.vmh-card i {
    font-size: 48px;
    margin-bottom: 20px;
}

.vmh-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.vmh-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-light {
    background-color: white;
    color: #333;
    padding: 10px 25px;
}

/* Research Section */
.research-section {
    padding: 80px 0;
    background-color: white;
}

.research-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.research-content h2 {
    font-size: 36px;
    color: #0B2B5C;
    margin: 15px 0 20px;
    font-weight: 700;
}

.research-content > p {
    color: #666;
    margin-bottom: 30px;
}

.research-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.research-item {
    display: flex;
    gap: 20px;
}

.research-item i {
    color: #1cbdcf;
    font-size: 40px;
    min-width: 50px;
}

.research-item h4 {
    color: #0B2B5C;
    margin-bottom: 8px;
    font-size: 18px;
}

.research-item p {
    color: #666;
    font-size: 14px;
}

.research-images {
    position: relative;
    height: 500px;
}

.stat-badge {
    position: absolute;
    background: linear-gradient(135deg, #1cbdcf 0%, #5B8DFF 100%);
    color: white;
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.stat-badge h3 {
    font-size: 42px;
    margin-bottom: 0px;
}

.stat-badge p {
    font-size: 14px;
    line-height: 1.3;
}

.research-hex {
    position: absolute;
    width: 280px;
    height: 280px;
    overflow: hidden;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.research-hex img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hex-r1 {
    top: 0;
    right: 50px;
}

.hex-r2 {
    bottom: 0;
    left: 0;
}

/* Discovery Section */
.discovery-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #0B2B5C;
    font-weight: 700;
}

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

.discovery-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    padding: 15px;
    height: 284px;
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 0;
    background-color: #e60a54;
    color: white;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.card-header {
    padding: 25px;
    display: flex;
    gap: 15px;
}

.card-header i {
    color: #1cbdcf;
    font-size: 36px;
    min-width: 40px;
}

.card-header h4 {
    color: #0B2B5C;
    font-size: 18px;
    margin-bottom: 8px;
}

.card-header p {
    color: #666;
    font-size: 13px;
}

.discovery-card img {
    width: 100%;
    
    object-fit: cover;
}

.discovery-card > p {
    padding: 20px 25px;
    color: #666;
    font-size: 14px;
}

.discovery-card .btn {
    margin: 0 25px 25px;
}

.btn-teal {
    background-color: #e60a54;
    color: white;
}

.btn-teal:hover {
    background-color: #1BA783;
}

/* Footer */
footer {
    background-color: #0B2B5C;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo i {
    color: #e60a54;
}

.footer-col p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: white;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: #e60a54;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #e60a54;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-col ul a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #1cbdcf;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.scroll-top:hover {
    background-color: #2850C7;
    transform: translateY(-5px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0B2B5C 0%, #1a4080 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 16px;
    opacity: 0.9;
}

.breadcrumb span {
    color: #e60a54;
}

/* Products Intro */
.products-intro {
    padding: 80px 0;
    background-color: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 36px;
    color: #0B2B5C;
    margin: 15px 0 20px;
    font-weight: 700;
}

.intro-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

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

.category-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.category-card i {
    font-size: 48px;
    color: #1cbdcf;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 20px;
    color: #0B2B5C;
    margin-bottom: 15px;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.category-link {
    color: #1cbdcf;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-link:hover {
    color: #2850C7;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: white;
}

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

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #1cbdcf;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.product-badge.sale {
    background-color: #FF4444;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 18px;
    color: #0B2B5C;
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

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

.price {
    font-size: 24px;
    color: #1cbdcf;
    font-weight: 700;
}

.price del {
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* Product Features */
.product-features {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.product-features .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-content h2 {
    font-size: 36px;
    color: #0B2B5C;
    margin: 15px 0 30px;
    font-weight: 700;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.feature-list-item i {
    color: #e60a54;
    font-size: 36px;
    min-width: 50px;
}

.feature-list-item h4 {
    color: #0B2B5C;
    margin-bottom: 8px;
    font-size: 18px;
}

.feature-list-item p {
    color: #666;
    font-size: 14px;
}

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

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background-color: white;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.story-section .container {
    max-width: 1000px;
}

.story-content {
    text-align: center;
    margin-bottom: 50px;
}

.story-content h2 {
    font-size: 36px;
    color: #0B2B5C;
    margin: 15px 0 25px;
    font-weight: 700;
}

.story-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 42px;
    color: #1cbdcf;
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    font-size: 16px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: white;
}

.values-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-section h2 {
    font-size: 36px;
    color: #0B2B5C;
    margin-top: 15px;
    font-weight: 700;
}

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

.value-card {
    text-align: center;
    padding: 40px 20px;
}

.value-card i {
    font-size: 48px;
    color: #1cbdcf;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    color: #0B2B5C;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 14px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-section h2 {
    font-size: 36px;
    color: #0B2B5C;
    margin-top: 15px;
    font-weight: 700;
}

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

.team-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

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

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 18px;
    color: #0B2B5C;
    margin: 20px 0 5px;
    padding: 0 20px;
}

.team-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 0 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 20px 20px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background-color: #F8F9FA;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.team-social a:hover {
    background-color: #1cbdcf;
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1cbdcf 0%, #1cbdcf 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-buttons .btn-secondary {
    background-color: white;
    color: #1cbdcf;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background-color: white;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 36px;
    color: #0B2B5C;
    margin: 15px 0 20px;
    font-weight: 700;
}

.section-header-center p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-info-card {
    text-align: center;
    padding: 40px 20px;
    background-color: #F8F9FA;
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-info-card:hover {
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1cbdcf 0%, #5B8DFF 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.contact-info-card h3 {
    font-size: 20px;
    color: #0B2B5C;
    margin-bottom: 15px;
}

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

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

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

.form-content h2 {
    font-size: 36px;
    color: #0B2B5C;
    margin: 15px 0 20px;
    font-weight: 700;
}

.form-content > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1cbdcf;
}

.form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    pointer-events: none;
}

.form-group textarea + i {
    top: 20px;
    transform: none;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: #666;
}

.form-checkbox label a {
    color: #1cbdcf;
    text-decoration: none;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
    width: 100%;
}

.btn-large i {
    margin-left: 10px;
}

.form-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 600px;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11,43,92,0.95), transparent);
    padding: 40px;
}

.overlay-content {
    color: white;
    text-align: center;
}

.overlay-content i {
    font-size: 48px;
    color: #e60a54;
    margin-bottom: 15px;
}

.overlay-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* Map Section */
.map-section {
    padding: 30px 0;
    background-color: white;
}

.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.faq-intro h2 {
    font-size: 36px;
    color: #0B2B5C;
    margin: 15px 0 20px;
    font-weight: 700;
}

.faq-intro p {
    color: #666;
    margin-bottom: 30px;
}

.faq-intro img {
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: #F8F9FA;
}

.faq-question h4 {
    font-size: 16px;
    color: #0B2B5C;
    font-weight: 600;
}

.faq-question i {
    color: #1cbdcf;
    transition: transform 0.3s;
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .discovery-grid,
    .products-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vmh-section .container {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-wrapper,
    .faq-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-image {
        height: 400px;
    }
    
    .about-images {
        height: 400px;
    }
    
    .research-images {
        height: 400px;
    }
    
    .hexagon {
        width: 200px;
        height: 200px;
    }
    
    .research-hex {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    header .container {
        position: relative;
    }
    
    .logo img {
        height: 40px;
    }

    .mobile-menu-header .logo img {
        height: 35px;
    }

    nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* .mobile-menu {
        display: ;
    } */
    .mobile-menu nav {
        display: block !important;
    }
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-left,
    .top-bar-right {
        flex-direction: column;
        gap: 5px;
    }
    
    .top-bar-left span,
    .top-bar-right span {
        margin: 0;
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1,
    .page-header h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-sidebar {
        display: none;
    }
    
    /* Sections */
    .about-section .container,
    .research-section .container,
    .product-features .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images,
    .research-images {
        height: 350px;
        order: -1;
    }
    
    .hexagon {
        width: 150px;
        height: 150px;
    }
    
    .hex-1 {
        top: 0;
        left: 10px;
    }
    
    .hex-2 {
        top: 30px;
        right: 10px;
    }
    
    .hex-3 {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .research-hex {
        width: 180px;
        height: 180px;
    }
    
    .hex-r1 {
        top: 0;
        right: 20px;
    }
    
    .hex-r2 {
        bottom: 0;
        left: 20px;
    }
    
    .stat-badge {
        width: 120px;
        height: 120px;
        padding: 20px;
    }
    
    .stat-badge h3 {
        font-size: 32px;
    }
    
    .stat-badge p {
        font-size: 12px;
    }
    
    /* Content Sections */
    .about-content h2,
    .research-content h2,
    .features-content h2,
    .section-header h2,
    .section-header-center h2 {
        font-size: 28px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    /* VMH Cards */
    .vmh-section {
        padding: 60px 0;
    }
    
    .vmh-card {
        padding: 30px;
    }
    
    /* Discovery Grid */
    .discovery-grid,
    .products-grid,
    .categories-grid,
    .team-grid,
    .values-grid,
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    /* CTA Section */
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    /* Contact Page */
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-image {
        height: 300px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    /* Brand Logos */
    .brand-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Trust Section */
    .trust-section h3 {
        font-size: 20px;
    }
    
    /* Research Features */
    .research-features {
        gap: 20px;
    }
    
    .research-item i {
        font-size: 32px;
    }
    
    /* Signature Section */
    .signature-section {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Page Header */
    .page-header {
        padding: 60px 0 40px;
    }
    
    /* All Sections Padding */
    section {
        padding: 60px 0 !important;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1,
    .page-header h1 {
        font-size: 24px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .mobile-menu-header .logo img {
        height: 30px;
    }

    .about-content h2,
    .research-content h2,
    .features-content h2,
    .section-header h2,
    .section-header-center h2 {
        font-size: 24px;
    }
    
    .vmh-card h3,
    .cta-content h2 {
        font-size: 20px;
    }
    
    .brand-logos {
        grid-template-columns: 1fr;
    }
    
    .about-images,
    .research-images {
        height: 280px;
    }
    
    .hexagon {
        width: 120px;
        height: 120px;
    }
    
    .research-hex {
        width: 140px;
        height: 140px;
    }
}