* { margin: 0; padding: 0; box-sizing: border-box; list-style: none; font-family: Arial, sans-serif; }
html { width: 100%; }
body { overflow-x: hidden; width: 100%; }
a { text-decoration: none; color: #333; transition: all .3s !important; }

/* Top Bar */
.top-bar { width: 100%; background: transparent; font-size: 14px; position: relative; z-index: 1001; transition: background 0.3s;border-bottom:1px solid #333; }
.top-bar .top-bar-inner { max-width: 1460px; margin: 0 auto; display: flex; justify-content: flex-end; align-items: center; padding: 9px 20px; }
.top-bar .top-bar-inner .social-icons { display: flex; align-items: center; gap: 15px; }
.top-bar .top-bar-inner .social-icons a { color: #333; font-size: 16px; transition: color 0.3s; }
.top-bar .top-bar-inner .social-icons a:hover { color: #123476; }
.top-bar .top-bar-inner .search-icon { margin-left: 20px; cursor: pointer; color: #333; }

/* Top Bar White Variant */
.top-bar.top-bar-white { background: #fff; }
.top-bar.top-bar-white .top-bar-inner .social-icons a { color: #555; }
.top-bar.top-bar-white .top-bar-inner .search-icon { color: #555; }

/* Header */
.header { width: 100%; height: 80px; background: transparent; position: sticky; top: 0; z-index: 999999; transition: background 0.3s, box-shadow 0.3s; }
.header.is-sticky { background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: fixed; top: 0; left: 0; width: 100%; }

/* White Header Variant (Static/Always White) */
.header.header-white { background: #fff; }
.header.header-white .header-inner .logo { color: #000; }
.header.header-white .header-inner .navbar .nav-links > li > a { color: #333; }
.header .header-inner { max-width: 1460px; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; position: relative; }

/* Mega Menu Styles */
.header .header-inner .navbar .nav-links > li.mega-menu-item { position: static; }
.header .header-inner .navbar .nav-links > li .mega-menu{position:absolute;top:100%;left:0;width:100%;background:#fff;box-shadow:0 5px 20px rgba(0,0,0,0.1);opacity:0;visibility:hidden;transform:translateY(10px);transition:all 0.3s ease;border-top:2px solid #123476;display:flex;padding:30px;z-index:1000}
.header .header-inner .navbar .nav-links > li:hover .mega-menu{opacity:1;visibility:visible;transform:translateY(0)}
.mega-menu .mega-column{flex:1;padding:0 20px;border-right:1px solid #eee}
.mega-menu .mega-column:last-child{border-right:none}
.mega-menu .mega-column h4{font-size:15px;color:#002c5f;font-weight:700;margin-bottom:20px;border-bottom:1px solid #eee;padding-bottom:10px;cursor:initial;}
.mega-menu .mega-column ul li{margin-bottom:10px}
.mega-menu .mega-column ul li a{font-size:14px;color:#555;transition:color 0.3s;display:block}
.mega-menu .mega-column ul li a:hover{color:#123476;padding-left:5px}


.header .header-inner .logo { font-size: 24px; font-weight: bold; color: #fff; display: flex; align-items: center; transition: color 0.3s; }
.header.is-sticky .header-inner .logo { color: #000; }
.header .header-inner .logo img { height: 50px; margin-right: 10px; }

/* Navigation Styles */
.header .header-inner .navbar { height: 100%; }
.header .header-inner .navbar .nav-links { display: flex; height: 100%; align-items: center; }
.header .header-inner .navbar .nav-links > li { padding: 0 15px; height: 100%; display: flex; align-items: center; position: relative; cursor: pointer; }
.header .header-inner .navbar .nav-links > li > a { font-weight: 500; font-size: 16px; color: #333; transition: color 0.3s, transform 0.3s; }
.header.is-sticky .header-inner .navbar .nav-links > li > a { color: #333; }
.header .header-inner .navbar .nav-links > li:hover > a { color: #123476; transform: scale(1.2); }
.header .header-inner .navbar .nav-links > li .dropdown-toggle i { margin-left: 5px; font-size: 12px; }

/* Level 2 Dropdown */
.header .header-inner .navbar .nav-links > li .dropdown-menu { position: absolute; top: 100%; left: 0; background: #fff; width: 260px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border-top: 2px solid #123476; }
.header .header-inner .navbar .nav-links > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.header .header-inner .navbar .nav-links > li .dropdown-menu > li { position: relative; border-bottom: 1px solid #f0f0f0; }
.header .header-inner .navbar .nav-links > li .dropdown-menu > li > a { display: block; padding: 12px 20px; font-size: 14px; color: #555; display: flex; justify-content: space-between; align-items: center; }
.header .header-inner .navbar .nav-links > li .dropdown-menu > li:hover > a { background: #f9f9f9; color: #123476; }

/* Level 3 Dropdown */
.header .header-inner .navbar .nav-links > li .dropdown-menu > li .submenu-items { position: absolute; top: 0; left: 100%; background: #fff; width: 220px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transform: translateX(10px); transition: all 0.3s ease; border-left: 1px solid #f0f0f0; }
.header .header-inner .navbar .nav-links > li .dropdown-menu > li:hover .submenu-items { opacity: 1; visibility: visible; transform: translateX(0); }
.header .header-inner .navbar .nav-links > li .dropdown-menu > li .submenu-items > li > a { display: block; padding: 12px 20px; font-size: 14px; color: #666; }
.header .header-inner .navbar .nav-links > li .dropdown-menu > li .submenu-items > li:hover > a { background: #f9f9f9; color: #123476; }

/* Right Actions */
.header .header-inner .actions { display: flex; align-items: center; gap: 15px; }
.header .header-inner .actions .btn-quote { background: #123476; color: #fff; padding: 10px 20px; border-radius: 4px; font-weight: bold; }

/* Banner Swiper Styles */
.banner-section { width: 100%; height: 920px; position: relative; background: #f9f9f9; margin-top: -121px; box-sizing: border-box; }
.banner-section .swiper { width: 100%; height: 100%; }
.banner-section .swiper .swiper-wrapper .swiper-slide { display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }

.banner-section .swiper .swiper-wrapper .swiper-slide .slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }

.banner-section .swiper .swiper-wrapper .swiper-slide .banner-content { position: relative; z-index: 10; padding-top: 0; width: 100%; max-width: 1460px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 100%; }

.banner-section .swiper .swiper-wrapper .swiper-slide .banner-content .text-content { max-width: 50%; }
.banner-section .swiper .swiper-wrapper .swiper-slide .banner-content .text-content h1 { font-size: 56px; color: #002c5f; margin-bottom: 20px; line-height: 1.2; font-weight: 700; }
.banner-section .swiper .swiper-wrapper .swiper-slide .banner-content .text-content p { font-size: 18px; color: #555; margin-bottom: 30px; line-height: 1.6; }

.banner-section .swiper .swiper-wrapper .swiper-slide .banner-content .text-content .btn-banner { display: inline-block; padding: 15px 35px; background: #fff; color: #333; border-radius: 30px; font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: all 0.3s; font-size: 16px; }
.banner-section .swiper .swiper-wrapper .swiper-slide .banner-content .text-content .btn-banner:hover { background: #123476; color: #fff; }

.banner-section .swiper .swiper-wrapper .swiper-slide .banner-content .image-content { max-width: 45%; }
.banner-section .swiper .swiper-wrapper .swiper-slide .banner-content .image-content img { max-width: 100%; height: auto; object-fit: contain; }

/* Animations */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}
/* @keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
} */

/* Text Animation on Active Slide */
.banner-section .swiper .swiper-slide-active .banner-content .text-content { animation: slideInRight 1s ease-out forwards; }
/* Background Zoom on Active Slide */
.banner-section .swiper .swiper-slide-active { animation: zoomEffect 6s linear forwards; }
/* Swiper Navigation Customization */
.banner-section .swiper .swiper-button-next, .banner-section .swiper .swiper-button-prev { color: #fff; transform: scale(0.6); }

/* Video Section Styles */
.video-section { padding: 80px 0; background: #fff; }
.video-section .video-container-row { max-width: 1560px; margin: 0 auto; padding: 0 20px; display: flex; flex-wrap: wrap; align-items: center; }

/* Left Column */
.video-section .video-container-row .video-col-left { width: 100%; padding: 0 15px; margin-bottom: 30px; }
.video-section .video-container-row .video-col-left .video-thumbnail-wrapper { position: relative;   overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.video-section .video-container-row .video-col-left .video-thumbnail-wrapper img { width: 100%; height: auto; display: block; transition: transform 0.5s; }

/* Play Button */
.video-section .video-container-row .video-col-left .video-thumbnail-wrapper .video-trigger-btn .video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 76px; height: 76px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; z-index: 2; box-shadow: 0 0 20px rgba(0,0,0,0.2); }
.video-section .video-container-row .video-col-left .video-thumbnail-wrapper .video-trigger-btn:hover .video-play-btn {transform: translate(-50%, -50%) scale(1.1); }
.video-section .video-container-row .video-col-left .video-thumbnail-wrapper .video-trigger-btn .video-play-btn img { height: auto; margin-left: 3px; }

/* Right Column */
.video-section .video-container-row .video-col-right { width: 100%; padding: 0 15px; }
.video-section .video-container-row .video-col-right .video-text-wrapper { padding-left: 0; }
.video-section .video-container-row .video-col-right .video-text-wrapper .video-category-tag { display: inline-block; padding: 5px 12px; background: #f0f5fa; color: #123476; font-size: 13px; font-weight: 700; border-radius: 4px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.video-section .video-container-row .video-col-right .video-text-wrapper h2 { font-size: 36px; color: #002c5f; margin-bottom: 25px; line-height: 1.3; font-weight: 700; }
.video-section .video-container-row .video-col-right .video-text-wrapper .video-description-text p { font-size: 16px; color: #555; margin-bottom: 20px; line-height: 1.8; }

/* Action Button */
.video-section .video-container-row .video-col-right .video-text-wrapper .video-action-wrapper { margin-top: 35px; }
.video-section .video-container-row .video-col-right .video-text-wrapper .video-action-wrapper .video-inquiry-btn { display: inline-block; padding: 14px 35px; background: transparent; border: 2px solid #002c5f; color: #002c5f; font-weight: 700; border-radius: 50px; transition: all 0.3s; font-size: 15px; }
.video-section .video-container-row .video-col-right .video-text-wrapper .video-action-wrapper .video-inquiry-btn:hover { background: #002c5f; color: #fff; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,44,95,0.2); }
.video-section .video-container-row .video-col-right .video-text-wrapper .video-action-wrapper .video-inquiry-btn i { margin-left: 10px; transition: transform 0.3s; }
.video-section .video-container-row .video-col-right .video-text-wrapper .video-action-wrapper .video-inquiry-btn:hover i { transform: translateX(5px); }

/* Responsive */
@media (min-width: 992px) {
    .video-section .video-container-row .video-col-left { width: 58.333%; }
    .video-section .video-container-row .video-col-right { width: 41.667%; }
    .video-section .video-container-row .video-col-right .video-text-wrapper { padding-left: 50px; }
}

/* Video Modal Styles */
.video-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.8); align-items: center; justify-content: center; opacity: 0; animation: fadeIn 0.3s forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.video-modal .video-modal-content { position: relative; width: 90%; max-width: 1000px; background: #000; padding: 0; border-radius: 8px; box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.video-modal .video-modal-content .close-modal { position: absolute; top: -40px; right: 0; color: #fff; font-size: 30px; font-weight: bold; cursor: pointer; transition: color 0.3s; z-index: 10000; }
.video-modal .video-modal-content .close-modal:hover { color: #ff4444; }
.video-modal .video-modal-content .video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; }
.video-modal .video-modal-content .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Technology Accordion Section */
.technology-section { padding: 80px 0; background: #fff; }
.technology-section .tech-container { max-width: 1540px; margin: 0 auto; padding: 0 20px; }

/* Header */
.technology-section .tech-header { margin-bottom: 40px;margin-left:-50px;margin-right:-50px; }
.technology-section .tech-header .tech-tag { display: inline-block; padding: 5px 12px; background: #eef4fc; color: #123476; font-size: 13px; font-weight: 700; border-radius: 4px; margin-bottom: 15px; }
.technology-section .tech-header h2 { font-size: 36px; color: #002c5f; margin-bottom: 20px; font-weight: 700; line-height: 1.3; max-width: 900px; }
.technology-section .tech-header p { font-size: 16px; color: #666; max-width: 800px; line-height: 1.6; }

/* Accordion */
.technology-section .tech-accordion { display: flex; height: 600px; gap: 10px; overflow: hidden; margin-left:-50px;margin-right:-50px; }
.technology-section .tech-accordion .tech-item { position: relative; flex: 1; border-radius: 0; overflow: hidden; cursor: pointer; transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.technology-section .tech-accordion .tech-item.active { flex: 8; }

/* Item Image */
.technology-section .tech-accordion .tech-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; filter: brightness(0.8); }
.technology-section .tech-accordion .tech-item.active img { filter: brightness(1); transform: scale(1.05); }
.technology-section .tech-accordion .tech-item:hover img { transform: scale(1.1); }

/* Vertical Title (Inactive State) */
.technology-section .tech-accordion .tech-item .tech-vertical-title { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; opacity: 1; transition: opacity 0.3s; z-index: 2; background: rgba(0, 44, 95, 0.6); }
.technology-section .tech-accordion .tech-item.active .tech-vertical-title { opacity: 0; pointer-events: none; }
.technology-section .tech-accordion .tech-item .tech-vertical-title span { writing-mode: vertical-rl; transform: rotate(180deg); color: #fff; font-size: 20px; font-weight: 600; letter-spacing: 2px; white-space: nowrap; }

/* Expanded Content (Active State) */
.technology-section .tech-accordion .tech-item .tech-expanded-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 40px;opacity: 0; transform: translateY(50px); z-index: 3; }
.technology-section .tech-accordion .tech-item.active .tech-expanded-content { opacity: 1; transform: translateY(0); transition: all 0.6s 0.2s; }
.technology-section .tech-accordion .tech-item .tech-expanded-content h3 { color: #fff; font-size: 32px; font-weight: 700; margin-bottom: 15px; }
.technology-section .tech-accordion .tech-item .tech-expanded-content p { color: rgba(255,255,255,0.9); font-size: 16px; max-width: 600px; line-height: 1.6; }

/* Responsive */
@media (max-width: 992px) {
    .technology-section .tech-accordion { flex-direction: column; height: auto; margin-left: 0; margin-right: 0; }
    .technology-section .tech-header { margin-left: 0; margin-right: 0; }
    .technology-section .tech-accordion .tech-item { height: 80px; flex: none; }
    .technology-section .tech-accordion .tech-item.active { height: 400px; }
    .technology-section .tech-accordion .tech-item .tech-vertical-title span { writing-mode: horizontal-tb; transform: none; }
    .technology-section .tech-accordion .tech-item .tech-vertical-title { justify-content: flex-start; padding-left: 20px; background: rgba(0,0,0,0.5); }
}

/* Products Section */
.products-section { padding: 80px 0; background: #fff; }
.products-section .products-container { max-width: 1540px; margin: 0 auto; padding: 0 20px; text-align: center; }
.products-section .products-header h2 { font-size: 36px; color: #000; font-weight: 700; margin-bottom: 60px; }
.products-section .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.products-section .products-grid .product-item { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; padding: 20px; transition: transform 0.3s; }

.products-section .products-grid .product-item .product-icon { width: 100px; height: 100px; margin-bottom: 25px; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }

.products-section .products-grid .product-item .product-icon img { width: 100%; height: 100%; object-fit: contain; }
.products-section .products-grid .product-item .product-title { font-size: 16px; color: #002c5f; font-weight: 700; transition: color 0.3s; }
.products-section .products-grid .product-item:hover .product-title { color: #123476; }

/* Products Responsive */
@media (max-width: 992px) {
    .products-section .products-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 576px) {
    .products-section .products-grid { grid-template-columns: repeat(1, 1fr); }
}
/* Markets Section */
.markets-section { padding: 80px 0; background: #f9f9f9; }
.markets-section .markets-container { max-width: 1540px; margin: 0 auto; padding: 0 20px; }
.markets-section .markets-header { text-align: center; margin-bottom: 50px; }
.markets-section .markets-header .market-tag { display: inline-block; padding: 5px 12px; background: #eef4fc; color: #123476; font-size: 13px; font-weight: 700; border-radius: 4px; margin-bottom: 15px; }
.markets-section .markets-header h2 { font-size: 36px; color: #002c5f; font-weight: 700; margin-bottom: 20px; }
.markets-section .markets-header p { font-size: 16px; color: #666; max-width: 900px; margin: 0 auto; line-height: 1.6; }

/* Markets Grid */
.markets-section .markets-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.markets-section .markets-grid .market-item { background: #fff; padding: 0; text-decoration: none; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; text-align: left; border: 1px solid #eee; }
.markets-section .markets-grid .market-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.markets-section .markets-grid .market-item .market-img { width: 100%; margin-bottom: 20px; padding: 30px 20px 0; display: flex; align-items: center; justify-content: center; }
.markets-section .markets-grid .market-item .market-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.markets-section .markets-grid .market-item h3 { font-size: 18px; color: #002c5f; font-weight: 700; margin-bottom: 10px; transition: color 0.3s; text-align: left; padding: 0 20px; }
.markets-section .markets-grid .market-item:hover h3 { color: #123476; }
.markets-section .markets-grid .market-item p { font-size: 14px; color: #666; line-height: 1.5; text-align: left; padding: 0 20px 30px; }

/* Applications Footer */
.applications-section { padding: 60px 0; background: #f0f5fa; }
.applications-section .app-container { max-width: 1540px; margin: 0 auto; padding: 0 20px; display: flex; flex-wrap: wrap; }
.applications-section .app-left { width: 30%; padding-right: 40px; }
.applications-section .app-left h4 { font-size: 20px; color: #002c5f; font-weight: 700; margin-bottom: 20px; }
.applications-section .app-search { position: relative; }
.applications-section .app-search input { width: 100%; padding: 12px 45px 12px 15px; border: 1px solid #ddd; border-radius: 4px; outline: none; }
.applications-section .app-search button { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); border: none; background: none; color: #123476; font-size: 18px; cursor: pointer; padding: 5px; }
.applications-section .app-right { width: 70%; padding-left: 20px; }
.applications-section .app-list { display: flex; flex-wrap: wrap; }
.applications-section .app-list li { width: 33.33%; margin-bottom: 15px; padding-right: 15px; }
.applications-section .app-list li a { font-size: 15px; color: #555; display: flex; align-items: center; }
.applications-section .app-list li a i { margin-right: 10px; color: #123476; }
.applications-section .app-list li a:hover { color: #123476; }

/* Markets Responsive */
@media (max-width: 992px) {
    .markets-section .markets-grid { grid-template-columns: repeat(2, 1fr); }
    .applications-section .app-left, .applications-section .app-right { width: 100%; padding: 0; }
    .applications-section .app-left { margin-bottom: 30px; }
    .applications-section .app-list li { width: 50%; }
}
@media (max-width: 576px) {
    .markets-section .markets-grid { grid-template-columns: repeat(1, 1fr); }
    .applications-section .app-list li { width: 100%; }
}

/* Features Section (Quality) */
.features-section { padding: 80px 0; background: #fff; }
.features-section .features-container { max-width: 1540px; margin: 0 auto; padding: 0 20px; }
.features-section .feature-row { display: flex; align-items: center; gap: 60px; margin-bottom: 80px; }
.features-section .feature-row:last-child { margin-bottom: 0; }
.features-section .feature-row .feature-img { flex: 1; position: relative; overflow: hidden; }
.features-section .feature-row .feature-img img { width: 100%; height: auto; display: block; transition: transform 0.5s; }
.features-section .feature-row .feature-img:hover img { transform: scale(1.05); }

.features-section .feature-row .feature-content { flex: 1; }
.features-section .feature-row .feature-content .feature-tag { display: inline-block; font-size: 16px; font-weight: 700; color: #123476; margin-bottom: 15px; text-transform: capitalize; }
.features-section .feature-row .feature-content h2 { font-size: 36px; color: #002c5f; font-weight: 700; margin-bottom: 25px; line-height: 1.3; }
.features-section .feature-row .feature-content p { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 35px; }

.features-section .feature-row .feature-content .feature-icon { width: 60px; height: 60px; margin-bottom: 20px; }
.features-section .feature-row .feature-content .feature-icon img { width: 100%; height: 100%; object-fit: contain; }

.features-section .feature-row .feature-content .btn-feature { display: inline-flex; align-items: center; padding: 12px 30px; border: 1px solid #ddd; border-radius: 30px; color: #333; font-weight: 600; font-size: 14px; transition: all 0.3s; }
.features-section .feature-row .feature-content .btn-feature i { margin-left: 8px; font-size: 12px; transition: transform 0.3s; }
.features-section .feature-row .feature-content .btn-feature:hover { border-color: #123476; color: #123476; background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.features-section .feature-row .feature-content .btn-feature:hover i { transform: translateX(3px); }

/* Feature Caption - Adjusted to match design (Overlay at bottom) */
.features-section .feature-row .feature-img { position: relative; overflow: hidden; }
.features-section .feature-row .feature-img .feature-caption{position:absolute;bottom:0;left:0;width:100%;background:rgba(122,165,210,0.95);padding:25px;color:#fff;font-size:14px;line-height:1.6;opacity:1;transform:none;box-sizing:border-box}

/* Modal Styles */
.modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.5); }
.modal-content { background-color: #fefefe; margin: 5% auto; padding: 40px; border: 1px solid #888; width: 90%; max-width: 500px; border-radius: 8px; position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.3); animation: modalFadeIn 0.3s; }
@keyframes modalFadeIn { from {opacity: 0; transform: translateY(-50px);} to {opacity: 1; transform: translateY(0);} }
.close-modal { position: absolute; top: 15px; right: 20px; color: #aaa; font-size: 28px; font-weight: bold; cursor: pointer; transition: color 0.3s; }
.close-modal:hover, .close-modal:focus { color: #000; text-decoration: none; cursor: pointer; }
.modal-content h2 { text-align: center; color: #002c5f; margin-bottom: 25px; font-size: 24px; font-weight: 700; }
.modal-form .form-group { margin-bottom: 15px; }
.modal-form input, .modal-form textarea, .modal-form select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box; font-family: inherit; }
.modal-form input:focus, .modal-form textarea:focus, .modal-form select:focus { border-color: #123476; outline: none; }
.modal-form textarea { height: 100px; resize: vertical; }
.modal-form button { width: 100%; padding: 12px; background: #123476; color: #fff; border: none; border-radius: 4px; font-size: 16px; font-weight: 700; cursor: pointer; transition: background 0.3s; }
.modal-form button:hover { background: #0056b3; }

/* Reverse Layout Support */
.features-section .feature-row.reverse { flex-direction: row-reverse; }

/* Custom Dash for IML Section */
.features-section .feature-row .feature-content .feature-dash { display: inline-block; width: 30px; height: 6px; background: #eef4fc; border-radius: 3px; margin-bottom: 20px; }

/* Wide Image Layout (7:5 ratio) */
.features-section .feature-row.wide-img .feature-img { flex: 1.4; }
.features-section .feature-row.wide-img .feature-content { flex: 1; }

@media (max-width: 992px) {
    .features-section .feature-row { flex-direction: column; gap: 40px; }
    .features-section .feature-row.reverse { flex-direction: column; }
    .features-section .feature-row .feature-img, .features-section .feature-row .feature-content { flex: none; width: 100%; }
}

/* Main Features Section */
.features-main-section { padding: 100px 0; background-image: url('../images/features.jpg'); background-size: cover; background-position: center; position: relative; color: #fff; background-attachment: fixed; }

.features-main-section .container { position: relative; z-index: 2; max-width: 1540px; margin: 0 auto; padding: 0 20px; }
.features-main-section .features-row { display: flex; flex-wrap: wrap; }
.features-main-section .features-title { width: 35%; padding-right: 50px; }
.features-main-section .features-title h2 { font-size: 48px; font-weight: 700; margin-bottom: 30px; color: #fff; }
.features-main-section .features-list { width: 65%; }

.features-main-section .accordiaBox { border-bottom: 1px solid rgba(255,255,255,0.2); margin-bottom: 0; }
.features-main-section .accordion { padding: 25px 0; font-size: 20px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: space-between; transition: color 0.3s; }
.features-main-section .accordion:hover, .features-main-section .accordiaBox.active .accordion { color: #123476; }
.features-main-section .accordion::after { content: '\f107'; font-family: "FontAwesome"; font-size: 20px; transition: transform 0.3s; }
.features-main-section .accordiaBox.active .accordion::after { content: '\f107'; transform: rotate(180deg); }

.features-main-section .panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; opacity: 0; }

/* Feedback Section */
.feedback-section { padding: 80px 0; background: #f7f9fc; }
.feedback-section .feedback-container { max-width: 1540px; margin: 0 auto; padding: 0 20px; }
.feedback-section .feedback-header { text-align: center; margin-bottom: 60px; }
.feedback-section .feedback-header .feedback-tag { display: inline-block; padding: 5px 12px; background: #eef4fc; color: #123476; font-size: 13px; font-weight: 700; border-radius: 4px; margin-bottom: 15px; }
.feedback-section .feedback-header h2 { font-size: 36px; color: #002c5f; font-weight: 700; margin-bottom: 20px; }

.feedback-section .feedback-grid-wrapper { position: relative; padding: 20px 0; }
.feedback-section .quote-icon { position: absolute; font-size: 100px; color: #eef4fc; z-index: 0; font-family: "FontAwesome"; }
.feedback-section .quote-icon.left { top: -60px; left: -20px; }
.feedback-section .quote-icon.right { bottom: -60px; right: -20px; }

.feedback-section .feedback-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; z-index: 1; }
.feedback-section .review-card { background: #fff; padding: 40px; border-radius: 4px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); display: flex; flex-direction: column; transition: transform 0.3s; border: 1px solid #f5f5f5; }
.feedback-section .review-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.feedback-section .review-text { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 30px; flex-grow: 1; }

.feedback-section .reviewer-profile { display: flex; align-items: center; gap: 20px; }
.feedback-section .reviewer-avatar { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.feedback-section .reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.feedback-section .reviewer-info h4 { font-size: 18px; color: #002c5f; font-weight: 700; margin-bottom: 5px; }
.feedback-section .reviewer-info p { font-size: 14px; color: #888; margin: 0; }

@media (max-width: 992px) {
    .feedback-section .feedback-grid { grid-template-columns: repeat(1, 1fr); }
    .feedback-section .quote-icon { display: none; }
}

/* Quote Section */
.quote-section { padding: 80px 0; background: #fff; position: relative; overflow: hidden; }
.quote-section .quote-container { max-width: 1460px; margin: 0 auto; padding: 0 20px; display: flex; flex-wrap: wrap; }

/* Left Column */
.quote-section .quote-left { width: 50%; padding-right: 80px; position: relative; padding-top: 40px; }
.quote-section .quote-left::before { content: ''; position: absolute; top: 0; left: -100px; width: 400px; height: 600px; border: 2px solid #eef4fc; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; transform: rotate(-30deg); z-index: 0; pointer-events: none; }
.quote-section .quote-left h2 { font-size: 42px; color: #002c5f; font-weight: 700; margin-bottom: 30px; position: relative; z-index: 1; }
.quote-section .quote-left .quote-text { position: relative; z-index: 1; color: #555; line-height: 1.8; font-size: 15px; margin-bottom: 30px; }
.quote-section .quote-left .contact-info { position: relative; z-index: 1; margin-top: 30px; }
.quote-section .quote-left .contact-info p { color: #555; line-height: 1.8; font-weight: 600; }

/* Right Column (Form) */
.quote-section .quote-right { width: 50%; padding-left: 20px; }
.quote-section .quote-form .form-group { margin-bottom: 25px; }
.quote-section .quote-form .form-control { width: 100%; padding: 15px 0; border: none; border-bottom: 1px solid #eee; font-size: 15px; color: #333; transition: border-color 0.3s; background: transparent; outline: none; }
.quote-section .quote-form .form-control:focus { border-bottom-color: #123476; }
.quote-section .quote-form .form-control::placeholder { color: #999; }

.quote-section .quote-form select.form-control { color: #999; cursor: pointer; }
.quote-section .quote-form .form-control.boxed { border: 1px solid #eee; border-radius: 4px; padding: 12px 15px; margin-top: 10px; }
.quote-section .quote-form .form-control.boxed:focus { border-color: #123476; }

/* Custom Upload Button */
.quote-section .quote-form .upload-wrapper { position: relative; display: inline-block; margin-top: 10px; }
.quote-section .quote-form .upload-btn { display: inline-flex; align-items: center; gap: 10px; padding: 10px 25px; border: 1px solid #123476; border-radius: 50px; color: #123476; cursor: pointer; font-size: 14px; font-weight: 600; transition: all 0.3s; background: #fff; }
.quote-section .quote-form .upload-btn:hover { background: #f0f5fa; }
.quote-section .quote-form input[type="file"] { position: absolute; left: 0; top: 0; opacity: 0; width: 100%; height: 100%; cursor: pointer; }

/* Submit Button */
.quote-section .quote-form .submit-wrapper { text-align: right; margin-top: 20px; }
.quote-section .quote-form .btn-submit { display: inline-block; padding: 12px 40px; background: #123476; color: #fff; border: none; border-radius: 50px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s; box-shadow: 0 5px 15px rgba(0,123,255,0.3); }
.quote-section .quote-form .btn-submit:hover { background: #0056b3; transform: translateY(-2px); }

.quote-section .quote-form .btn-submit:hover { background: #0056b3; transform: translateY(-2px); }

@media (max-width: 992px) {
    .quote-section .quote-left, .quote-section .quote-right { width: 100%; padding: 0; }
    .quote-section .quote-left { margin-bottom: 50px; }
    .quote-section .quote-left::before { width: 300px; height: 300px; top: -50px; left: -50px; }
}

/* Footer Section */
.footer-section { background: #3e3e3e; color: #fff; padding: 80px 0 0; font-size: 14px; }
.footer-section .footer-container { max-width: 1460px; margin: 0 auto; padding: 0 20px; }
.footer-section .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }

.footer-section h3 { font-size: 16px; font-weight: 700; text-transform: uppercase; margin-bottom: 25px; color: #fff; letter-spacing: 1px; }
.footer-section p { color: #aaa; line-height: 1.8; margin-bottom: 15px; }

.footer-section .footer-links { list-style: none; padding: 0; }
.footer-section .footer-links li { margin-bottom: 15px; }
.footer-section .footer-links li a { color: #aaa; text-decoration: none; display: flex; align-items: center; transition: color 0.3s; }
.footer-section .footer-links li a:hover { color: #123476; }
.footer-section .footer-links li a i { font-size: 10px; margin-right: 10px; color: #123476; }

.footer-section .contact-list li { display: flex;margin-bottom: 20px; color: #aaa;justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap; }
.footer-section .contact-list li i { font-size: 16px; color: #fff; margin-right: 15px; margin-top: 3px; width: 20px; text-align: center; border: 1px solid #555; border-radius: 50%; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.footer-section .contact-list li a { color: #aaa; transition: color 0.3s; }
.footer-section .contact-list li a:hover { color: #fff; }

/* Footer Bottom */
.footer-bottom { border-top: 1px solid #333; padding: 25px 0; margin-top: 40px; }
.footer-bottom .bottom-container { max-width: 1460px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom .copyright { color: #888; font-size: 13px; }

.footer-bottom .social-icons { display: flex; gap: 10px; }
.footer-bottom .social-icons a { width: 32px; height: 32px; border: 1px solid #555; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s; font-size: 14px; }
.footer-bottom .social-icons a:hover { background: #123476; border-color: #123476; transform: translateY(-3px); }

@media (max-width: 992px) {
    .footer-section .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 576px) {
    .footer-section .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .bottom-container { flex-direction: column; gap: 20px; text-align: center; }
}
.features-main-section .accordiaBox.active .panel { opacity: 1; margin-bottom: 20px; }
.features-main-section .panel p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.8); margin: 0; }

@media (max-width: 992px) {
    .features-main-section .features-title, .features-main-section .features-list { width: 100%; padding: 0; }
    .features-main-section .features-title { margin-bottom: 40px; }
}
/* Sticky Contact Sidebar */
.stickyContacts { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 9999; }
.stickyContacts ul { margin: 0; padding: 0; list-style: none; }
.stickyContacts li { width: 45px; height: 45px; background: #b0b0b0; position: relative; transition: all 0.3s; }
.stickyContacts li a { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 20px; }

/* Icons */
.stickyContacts li.email a::before { content: '\f0e0'; font-family: "FontAwesome"; font-weight: normal; }
.stickyContacts li.mobile a::before { content: '\f10b'; font-family: "FontAwesome"; font-weight: normal; font-size: 26px;}
.stickyContacts li.wechat a::before { content: '\f1d7'; font-family: "FontAwesome"; }
.stickyContacts li.whatsapp a::before { content: '\f232'; font-family: "FontAwesome"; }

/* Hover State */
.stickyContacts li:hover { background: #ff6600; }

/* Sliding Text for Email/Mobile */
.stickyContacts li.email span, .stickyContacts li.mobile span {
    position: absolute; right: 45px; top: 0; height: 45px; line-height: 45px;
    background: #ff6600; color: #fff; white-space: nowrap; width: 0; padding: 0;
    overflow: hidden; transition: all 0.3s ease; border-radius: 4px 0 0 4px;
}
.stickyContacts li.email:hover span, .stickyContacts li.mobile:hover span {
    width: 220px; padding-left: 15px;
}

/* QR Code Popup for WeChat/WhatsApp */
.stickyContacts li.wechat span, .stickyContacts li.whatsapp span {
    position: absolute; right: 55px; top: 50%; transform: translateY(-50%);
    background: #fff; padding: 5px; border-radius: 4px; display: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.stickyContacts li.wechat span img, .stickyContacts li.whatsapp span img {
    width: 120px; height: 120px; display: block;
}
.stickyContacts li.wechat:hover span, .stickyContacts li.whatsapp:hover span {
    display: block; animation: fadeInRight 0.3s;
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translate(20px, -50%); }
    to { opacity: 1; transform: translate(0, -50%); }
}
/* Back to Top Button */
#backToTop{position:fixed;bottom:40px;right:40px;width:32px;height:32px;background-color:#123476;color:#fff;border-radius:4px;display:flex;align-items:center;justify-content:center;font-size:16px;cursor:pointer;z-index:9998;opacity:0;visibility:hidden;transition:all 0.3s ease;box-shadow:0 4px 10px rgba(0,0,0,0.2)}
#backToTop.show{opacity:1;visibility:visible}
#backToTop:hover{background-color:#0056b3;transform:translateY(-5px)}
.search-popup{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(30,30,30,0.95);z-index:10002;display:none;align-items:center;justify-content:center;opacity:0;transition:opacity 0.3s ease}
.search-popup.active{display:flex;opacity:1}
.search-popup .close-search{position:absolute;top:30px;right:40px;color:#fff;font-size:40px;cursor:pointer;transition:transform 0.3s}
.search-popup .close-search:hover{transform:rotate(90deg)}
.search-popup-content{width:100%;max-width:800px;position:relative;padding:0 20px}
.search-popup form{position:relative;width:100%}
.search-popup input[type="text"]{width:100%;background:transparent;border:none;border-bottom:2px solid #fff;color:#fff;font-size:36px;padding:15px 50px 15px 0;font-weight:300;outline:none}
.search-popup input[type="text"]::placeholder{color:rgba(255,255,255,0.6)}
.search-popup .search-submit{position:absolute;right:0;top:15px;background:transparent;border:none;color:#fff;font-size:28px;cursor:pointer}
.search-popup .search-submit:hover{color:#123476}

/* Mobile Menu Styles */
.menu-toggle { display: none; font-size: 24px; cursor: pointer; color: #fff; margin-left: 20px; transition: color 0.3s; }
.header.is-sticky .menu-toggle { color: #333; }
.mobile-nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 10002; display: none; opacity: 0; transition: opacity 0.3s; }
.mobile-nav-overlay.active { display: block; opacity: 1; }

@media (max-width: 992px) {
    .menu-toggle { display: block; }
    .header .header-inner .navbar { 
        position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; 
        background: #fff; z-index: 10003; padding-top: 20px; 
        transition: left 0.3s ease; box-shadow: 2px 0 10px rgba(0,0,0,0.1); 
        overflow-y: auto; display: block !important;
    }
    .header .header-inner .navbar.active { left: 0; }
    .header .header-inner .navbar .nav-links { flex-direction: column; align-items: flex-start; height: auto; }
    .header .header-inner .navbar .nav-links > li { width: 100%; padding: 0; height: auto; flex-wrap: wrap; display: block; border-bottom: 1px solid #f0f0f0; }
    .header .header-inner .navbar .nav-links > li > a { 
        width: 100%; padding: 15px 20px; 
        color: #333; display: flex; justify-content: space-between; align-items: center; font-size: 15px;
    }
    .header .header-inner .navbar .nav-links > li > a:hover { background: #f9f9f9; color: #123476; transform: none; }
    
    /* Reset Hover Effects */
    .header .header-inner .navbar .nav-links > li:hover .dropdown-menu { opacity: 0; visibility: hidden; transform: none; display: none; }
    .header .header-inner .navbar .nav-links > li .dropdown-menu { 
        position: static; width: 100%; box-shadow: none; border-top: none; 
        opacity: 1; visibility: visible; transform: none; display: none; background: #f9f9f9;
        padding-left: 0;
    }
    .header .header-inner .navbar .nav-links > li.dropdown-active > .dropdown-menu { display: block; opacity: 1; visibility: visible; }
    .header .header-inner .navbar .nav-links > li .dropdown-menu > li > a { padding-left: 30px; font-size: 14px; }
    
    /* Level 3 Mobile */
    .header .header-inner .navbar .nav-links > li .dropdown-menu > li:hover .submenu-items { opacity: 0; visibility: hidden; transform: none; display: none; }
    .header .header-inner .navbar .nav-links > li .dropdown-menu > li .submenu-items {
        position: static; width: 100%; box-shadow: none; border-left: none;
        opacity: 1; visibility: visible; transform: none; display: none; background: #eee;
    }
    .header .header-inner .navbar .nav-links > li .dropdown-menu > li.submenu-active > .submenu-items { display: block; opacity: 1; visibility: visible; }
    .header .header-inner .navbar .nav-links > li .dropdown-menu > li .submenu-items > li > a { padding-left: 50px; }
    
    .header .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 0 20px 20px; border-bottom: 1px solid #eee; margin-bottom: 10px; }
    .header .mobile-menu-header .mobile-logo img { height: 25px; }
    .header .mobile-menu-header .close-menu { font-size: 20px; color: #333; cursor: pointer; }
}

/* Mobile Menu Header Hidden on Desktop */
.mobile-menu-header { display: none; }

/* Mobile Fixes for Phone */
@media (max-width: 576px) {
    /* Prevent horizontal overflow */
    .products-section, .markets-section, .technology-section { overflow-x: hidden; }
    
    /* Force 2 columns */
    .products-section .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .markets-section .markets-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    
    /* Ensure items don't overflow */
    .products-section .products-grid .product-item, .markets-section .markets-grid .market-item { min-width: 0; }
    
    /* Reduce font sizes */
    .banner-section .swiper .swiper-wrapper .swiper-slide .banner-content .text-content h1 { font-size: 28px !important; }
    .banner-section .swiper .swiper-wrapper .swiper-slide .banner-content .text-content p { font-size: 14px !important; }
    
    h2 { font-size: 24px !important; }
    p { font-size: 14px !important; }
    
    /* Adjust buttons */
    .btn-banner, .btn-quote, .btn-feature, .video-inquiry-btn { padding: 10px 20px !important; font-size: 14px !important; }
    
    /* Adjust Tech Accordion height for mobile */
    .technology-section .tech-accordion .tech-item.active { height: 300px !important; }
    
    /* Ensure mobile menu header is visible */
    .header .mobile-menu-header { display: flex !important; }
    
    /* Adjust product icons size */
    .products-section .products-grid .product-item .product-icon { width: 60px; height: 60px; margin-bottom: 10px; }
    .products-section .products-grid .product-item { padding: 10px; }
    .products-section .products-grid .product-item .product-title { font-size: 13px; }
    
    /* Adjust market items */
    .markets-section .markets-grid .market-item h3 { font-size: 15px; padding: 0 10px; }
    .markets-section .markets-grid .market-item p { font-size: 12px; padding: 0 10px 20px; }
    .markets-section .markets-grid .market-item .market-img { padding: 15px 10px 0; margin-bottom: 10px; }
    
    /* Technology Section Mobile Optimization */
    .technology-section .tech-header h2 { font-size: 24px !important; }
    .technology-section .tech-header p { font-size: 14px !important; }
    .technology-section .tech-accordion .tech-item .tech-expanded-content h3 { font-size: 20px !important; margin-bottom: 10px !important; }
    .technology-section .tech-accordion .tech-item .tech-expanded-content p { font-size: 13px !important; line-height: 1.5 !important; }
    .technology-section .tech-accordion .tech-item .tech-vertical-title span { font-size: 14px !important; }
    .technology-section .tech-accordion .tech-item .tech-expanded-content { padding: 20px !important; }
}
