/* Reset and Base Styles */





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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    text-decoration: none;
    color: #333;
}

.logo img {
    height: 100px !important;
}

.logo h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a5f7a;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #1a5f7a;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a5f7a;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #1a5f7a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    animation: fadeIn 1s ease;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide.active .hero-content h1 {
    animation: slideInDown 1s ease 0.3s both;
}

.slide.active .hero-content h2 {
    animation: slideInDown 1s ease 0.5s both;
}

.slide.active .hero-content p {
    animation: slideInUp 1s ease 0.7s both;
}

.slide.active .hero-content .btn {
    animation: slideInUp 1s ease 0.9s both;
}

/* Hero Slider Background Images */
.slide:nth-child(1) {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('/images/sliders/welcome.jpg') center/cover no-repeat;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/sliders/dyson.png') center/cover no-repeat;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/sliders/sony.png') center/cover no-repeat;
}

.slide:nth-child(4) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/sliders/mobiles.jpg') center/cover no-repeat;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 0;
    opacity: 0.95;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 15;
}

.prev-btn, .next-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
    animation: pulse 0.6s ease;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

/* Hero Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
}

.dot:hover {
    transform: scale(1.2);
    background: rgba(255,255,255,0.8);
}

.dot.active {
    background: white;
    transform: scale(1.3);
    animation: pulse 2s infinite;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #1a5f7a;
    color: #fff;
}

.btn-primary:hover {
    background: #2c7a8a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
}

.btn-secondary:hover {
    background: #1a5f7a;
    color: #fff;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h6 {
    color: #1a5f7a;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

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

.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.about-text p {
    margin: 0;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a, #2c7a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: #fff;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

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

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
}

.brand-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.brand-item img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
}

/* Brands Carousel */
.brands-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.brands-carousel {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.brand-carousel-item {
    flex: 0 0 auto;
    width: 150px;
    height: 100px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.brand-carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 95, 122, 0.3);
    border: 2px solid rgba(26, 95, 122, 0.3);
}

.brand-carousel-item:hover .brand-overlay {
    opacity: 1;
}

.brand-carousel-item:hover img {
    filter: brightness(0.7);
}

.brand-carousel-item img {
    max-width: 80px;
    max-height: 60px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 95, 122, 0.95);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    padding: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.carousel-btn {
    background: rgba(26,95,122,0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(26,95,122,1);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}



/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 95, 122, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a, #2c7a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-item blockquote {
    color: #1a5f7a;
    font-style: italic;
    font-weight: 500;
    border-left: 3px solid #1a5f7a;
    padding-left: 15px;
    margin: 0;
}

/* Products Section */
.products-section {
    padding: 50px 0;
    background: #f8f9fa;
}

/* Product Areas */
.product-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.product-area.reverse {
    grid-template-columns: 1fr 1fr;
}

.product-area.reverse .product-text {
    order: 2;
}

.product-area .product-image {
    height: 400px;
    overflow: hidden;
}

.product-area.reverse .product-image {
    order: 1;
}

.product-text h2 {
    color: #1a5f7a;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 25px;
}

.product-text p {
    color: #495057;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.product-text p:last-of-type {
    margin-bottom: 0;
}

.product-area .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.product-area .product-image img:hover {
    transform: translateY(-5px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
    padding: 8px 15px;
    font-size: 14px;
}

/* Company Section */
.company-section {
    padding: 100px 0;
    background: #fff;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-text h6 {
    color: #1a5f7a;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.company-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.company-text blockquote {
    font-style: italic;
    font-size: 18px;
    color: #1a5f7a;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 3px solid #1a5f7a;
}

.company-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.company-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.partners-slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 20px 0;
}

.partner-item {
    min-width: 150px;
    text-align: center;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover {
    filter: grayscale(0%);
}

.partner-item img {
    max-width: 120px;
    height: auto;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-item {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a, #2c7a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-item .service-icon i {
    font-size: 32px;
    color: #fff;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-item blockquote {
    font-style: italic;
    color: #1a5f7a;
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #1a5f7a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item span {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1a5f7a;
}

.footer-section i {
    color: #1a5f7a;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
    margin-bottom: 30px;
}

.newsletter {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.newsletter p {
    color: #ccc;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    outline: none;
}

.newsletter-form .btn {
    padding: 12px 20px;
    font-size: 14px;
}

.privacy-note {
    font-size: 12px;
    color: #999;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .company-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .slider-controls {
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

/* AmCharts 5 World Map Styles */
.world-map {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* AmCharts container styling */
#world-map {
    width: 100% !important;
    height: 700px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

/* Map legend styling */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* Map container styling */
.map-container {
    position: relative;
    max-width: 90%;
    width: 90%;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
}

#map-svg {
    width: 100%;
    height: 100%;
}

.country {
    transition: all 0.3s ease;
    cursor: pointer;
}

.country:hover {
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(26,95,122,0.5));
}

#export-routes line {
    transition: all 0.3s ease;
}

#export-routes:hover {
    opacity: 1 !important;
    stroke-width: 3 !important;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.info-card {
    display: none;
    background: white;
    border: 2px solid #1a5f7a;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    margin: 20px auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card h3 {
    color: #1a5f7a;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    margin: 0;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(26, 95, 122, 0.7), rgba(44, 122, 138, 0.7)), url('/images/unsplash/headers/services-header.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* About Page Specific Header */
.about-page .page-header {
    background: linear-gradient(rgba(26, 95, 122, 0.7), rgba(44, 122, 138, 0.7)), url('/images/unsplash/options/electronics-universe.jpg') center/cover no-repeat;
}

/* Services Page Specific Header */
.services-page .page-header {
    background: linear-gradient(rgba(26, 95, 122, 0.7), rgba(44, 122, 138, 0.7)), url('/images/unsplash/headers/services-header.jpg') center/cover no-repeat;
}

/* Geography Page Specific Header */
.geography-page .page-header {
    background: linear-gradient(rgba(26, 95, 122, 0.7), rgba(44, 122, 138, 0.7)), url('/images/unsplash/headers/tall-buildings.jpg') center/cover no-repeat;
}

.company-story {
    padding: 100px 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

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

.story-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.values-section {
    padding: 100px 0;
    background: white;
}

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

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a, #2c7a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 32px;
    color: white;
}

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

.value-card p {
    color: #666;
    line-height: 1.6;
}

.contact-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-link {
    color: inherit;
    text-decoration: none;
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Footer Contact Links */
.footer-section a {
    color: #1a5f7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2c7a8a;
    text-decoration: underline;
}

/* Services Page Styles */
.services-overview {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-overview .section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a, #2c7a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-card .service-icon i {
    font-size: 32px;
    color: white;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card blockquote {
    font-style: italic;
    color: #1a5f7a;
    font-size: 14px;
    margin: 0;
}

.service-details {
    padding: 100px 0;
    background: white;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail-item.reverse .service-content {
    order: 2;
}

.service-detail-item.reverse .service-image {
    order: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-content ul {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-content ul li {
    margin-bottom: 10px;
}

.service-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a5f7a;
}

.service-image i {
    font-size: 120px;
    color: #1a5f7a;
}

.why-choose-us {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a, #2c7a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #1a5f7a;
    text-align: center;
}

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

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

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

/* Geography Page Styles */
.geography-intro {
    text-align: center;
    margin-bottom: 40px;
}

.geography-intro h2 {
    color: #1a5f7a;
    margin-bottom: 20px;
}

.geography-intro p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.geography-intro strong {
    color: #1a5f7a;
}

.map-container {
    position: relative;
    max-width: 90%;
    width: 90%;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.legend-color.office-color {
    background: #1a5f7a;
}

.legend-color.export-color {
    background: #4a9ba8;
}

.legend-color.other-color {
    background: #e9ecef;
}

.legend-item span {
    font-weight: 500;
}

.legend-item:first-child span {
    color: #1a5f7a;
}

.legend-item:nth-child(2) span {
    color: #4a9ba8;
}

.legend-item:nth-child(3) span {
    color: #666;
}

#world-map {
    width: 100%;
    height: 700px;
    border-radius: 10px;
    overflow: hidden;
}

.geography-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Responsive map adjustments */
@media (max-width: 768px) {
    .map-container {
        max-width: 95%;
        width: 95%;
        padding: 20px;
    }
    
    #world-map {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .map-container {
        max-width: 98%;
        width: 98%;
        padding: 15px;
    }
    
    #world-map {
        height: 400px;
    }
}

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

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.stat-card:first-child .stat-icon {
    color: #1a5f7a;
}

.stat-card:nth-child(2) .stat-icon {
    color: #2c7a8a;
}

.stat-card:nth-child(3) .stat-icon {
    color: #1a5f7a;
}

.stat-card h3 {
    margin-bottom: 10px;
}

.stat-card:first-child h3 {
    color: #1a5f7a;
}

.stat-card:nth-child(2) h3 {
    color: #2c7a8a;
}

.stat-card:nth-child(3) h3 {
    color: #1a5f7a;
}

.stat-card p {
    color: #666;
}

/* About Page Styles */
.about-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 0.7fr 1.5fr;
    gap: 100px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.about-text p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.about-text p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #2c7a8a;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
}

.vision-mission {
    padding: 80px 0;
    background: white;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    text-align: center;
    padding: 50px 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f7a, #2c7a8a);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 95, 122, 0.15);
}

.vm-card.vision::before {
    background: linear-gradient(90deg, #1a5f7a, #2c7a8a);
}

.vm-card.mission::before {
    background: linear-gradient(90deg, #2c7a8a, #1a5f7a);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a, #2c7a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
}

.vm-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vm-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.why-partner {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partner-content h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 95, 122, 0.15);
}

.benefit-item i {
    font-size: 28px;
    color: #1a5f7a;
    width: auto;
    text-align: center;
}

.benefit-item span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    max-width: 100%;
}

.partner-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #1a5f7a, #2c7a8a);
    border-radius: 15px;
    color: white;
}

.partner-cta p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.values-section {
    padding: 100px 0;
    background: white;
}

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

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

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

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 95, 122, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a, #2c7a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        display: flex;
        flex-direction: column;
    }
    
    .about-text {
        order: 1;
        width: 100%;
    }
    
    .about-image {
        order: 2;
        width: 100%;
    }
    
    .about-image img {
        height: 400px;
        width: 100%;
    }
    
    .about-text h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .about-text p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-text h2,
    .partner-content h2,
    .section-header h2 {
        font-size: 28px;
    }
    
    .vm-card {
        padding: 40px 30px;
    }
    
    .about-main,
    .vision-mission,
    .why-partner,
    .values-section {
        padding: 60px 0;
    }
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 60px;
    }
    
    .about-image img {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text {
        order: 1;
        width: 100%;
    }
    
    .about-image {
        order: 2;
        width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .vm-card {
        padding: 30px 20px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .about-text h2,
    .partner-content h2,
    .section-header h2 {
        font-size: 24px;
    }
    
    .about-image img {
        height: 300px;
        width: 100%;
    }
}

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    background: #128c7e;
}

.whatsapp-button i {
    font-size: 28px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 80px;
        right: 20px;
    }
    
    .whatsapp-button a {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 70px;
        right: 15px;
    }
    
    .whatsapp-button a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 22px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a5f7a, #2c7a8a);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(26, 95, 122, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(26, 95, 122, 0.4);
    background: linear-gradient(135deg, #2c7a8a, #1a5f7a);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive Back to Top Button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
