* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    overflow-x: hidden;
    background-color: #144050;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background:rgba(15, 23, 42, 0.95);  ;/*rgba(20, 66, 83, 0.95);*/
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(243, 108, 33, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75px;
    gap: 10px;
}

.logo img {
    max-width: 100%;
    width: auto;
    height: 75px;
}

/* Hide text on small screens */
@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
}

.nav-links a:hover {
    color: #F36C21;
}

.header .nav-container nav ul.nav-links {
    margin: 0;
}

/* Dropdown Styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #0f192c;
    border: 1px solid #333333;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(243, 108, 33, 0.3);
    padding: 0.75rem 0;
    min-width: 260px;
    list-style: none;

    /* Animation styles */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-15px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown arrow indicator */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #1a1a1a;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.5));
}

.dropdown-item {
    color: #e0e0e0;
    padding: 0.85rem 1.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    position: relative;
}

.dropdown-item i {
    color: #F36C21;
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.dropdown-item span {
    transition: transform 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(243, 108, 33, 0.15), transparent);
    color: #F36C21;
}

.dropdown-item:hover i {
    transform: scale(1.2) translateX(3px);
}

.dropdown-item:hover span {
    transform: translateX(5px);
}

.dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

/* Add subtle separator between items */
.dropdown-item + .dropdown-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile menu toggle */
.navbar-toggler {
    background: none;
    border: 2px solid #F36C21;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: #F36C21;
}

.navbar-toggler i {
    color: #F36C21;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.navbar-toggler:hover i {
    color: #ffffff;
}

.nav-item.dropdown.active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    position: relative;
    right: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(243, 108, 33, 0.3);
        border-top: 2px solid #F36C21;
    }

    .nav-links.show {
        display: flex;
    }

    .navbar-toggler {
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 3px solid #F36C21;
        margin-left: 1rem;
        padding-left: 0;
        transform: none;
        opacity: 0;
        visibility: hidden;
        display: none;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        background: #144050;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-item.dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        position: relative;
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links > li > a {
        padding: 1rem;
    }

    .dropdown-toggle {
        padding: 1rem;
    }

    .dropdown-item {
        padding: 0.75rem 1.5rem;
    }

    .dropdown-item:hover {
        padding-left: 2rem;
        background: rgba(243, 108, 33, 0.15);
    }

    .dropdown-item + .dropdown-item {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        height: 60px;
    }

    .logo img {
        height: 60px;
    }
}

/* Ensure dropdown works properly on large screens */
@media (min-width: 993px) {
    .nav-item.dropdown {
        position: relative;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    /* Ensure parent keeps hover active while moving into menu */
    .nav-item.dropdown:hover > .dropdown-toggle,
    .dropdown-menu:hover {
        color: #F36C21;
    }
}


/* Hero Section with Slider */
.hero {
    height: calc( 100vh - 108px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Swiper Container */
.heroSwiper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.heroSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

/* Hero Slide Image */
.hero-slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenburns 20s ease-in-out infinite alternate;
}

/* Ken Burns Effect (Zoom Animation) */
@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Dark Overlay on Images */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

/* Hero Content Wrapper (Above Slider) */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 2rem;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #F36C21 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #F36C21, #ff8a4c);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #F36C21;
    border: 2px solid #F36C21;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 108, 33, 0.5);
}

/* Swiper Navigation Buttons */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: #ffffff;
    background: rgba(243, 108, 33, 0.3);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: rgba(243, 108, 33, 0.8);
    border-color: #F36C21;
    transform: scale(1.1);
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
    font-size: 22px;
    font-weight: bold;
}

/* Swiper Pagination */
.heroSwiper .swiper-pagination {
    bottom: 30px;
    z-index: 20;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: #F36C21;
    width: 35px;
    border-radius: 6px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .heroSwiper .swiper-button-next:after,
    .heroSwiper .swiper-button-prev:after {
        font-size: 18px;
    }

    .hero-content-wrapper {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.3rem !important;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        display: none;
    }
}

/* Ensure hero nav buttons stay clickable */
.hero .hero-prev,
.hero .hero-next {
    z-index: 20;
    pointer-events: auto;
}

/* Prevent overlay from blocking clicks */
.hero-overlay,
.hero-content-wrapper {
    pointer-events: none;
}

.hero-content-wrapper .btn {
    pointer-events: auto;
}



/*!* Hero Section *!*/
/*.hero {*/
/*    height: 100vh;*/
/*    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);*/
/*    position: relative;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    overflow: hidden;*/
/*}*/

/*.hero::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23F36C21" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');*/
/*    animation: gridMove 20s linear infinite;*/
/*}*/

/*@keyframes gridMove {*/
/*    0% { transform: translate(0, 0); }*/
/*    100% { transform: translate(10px, 10px); }*/
/*}*/

/*.hero-content {*/
/*    text-align: center;*/
/*    max-width: 800px;*/
/*    z-index: 2;*/
/*    position: relative;*/
/*}*/

/*.hero h1 {*/
/*    font-size: 3.5rem;*/
/*    font-weight: 900;*/
/*    margin-bottom: 1.5rem;*/
/*    background: linear-gradient(135deg, #ffffff 0%, #F36C21 100%);*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    background-clip: text;*/
/*}*/

/*.hero p {*/
/*    font-size: 1.3rem;*/
/*    margin-bottom: 2.5rem;*/
/*    color: #b0b0b0;*/
/*    line-height: 1.8;*/
/*}*/

/*.cta-buttons {*/
/*    display: flex;*/
/*    gap: 1.5rem;*/
/*    justify-content: center;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.btn {*/
/*    padding: 1rem 2rem;*/
/*    border: none;*/
/*    border-radius: 8px;*/
/*    font-weight: 600;*/
/*    text-decoration: none;*/
/*    transition: all 0.3s ease;*/
/*    cursor: pointer;*/
/*    font-size: 1rem;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.btn-primary {*/
/*    background: linear-gradient(135deg, #F36C21, #ff8a4c);*/
/*    color: white;*/
/*}*/

/*.btn-secondary {*/
/*    background: transparent;*/
/*    color: #F36C21;*/
/*    border: 2px solid #F36C21;*/
/*}*/

/*.btn:hover {*/
/*    transform: translateY(-3px);*/
/*    box-shadow: 0 10px 25px rgba(243, 108, 33, 0.5);*/
/*}*/

/* Counters Section */
.counters {
    background: rgba(15, 23, 42, 0.95);;
    padding: 4rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.counter-item {
    text-align: center;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);;
    border-radius: 12px;
    border: 1px solid rgba(243, 108, 33, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(243, 108, 33, 0.3);
    border-color: #F36C21;
}

.counter-icon {
    font-size: 3rem;
    color: #F36C21;
    margin-bottom: 1rem;
}

.counter-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #F36C21;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1.1rem;
    color: #b0b0b0;
}

/* Expertise Section */
.expertise {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.expertise-card {
    background: rgba(15, 23, 42, 0.8);;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: -webkit-fill-available;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F36C21, #ff8a4c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(243, 108, 33, 0.3);
    border-color: #F36C21;
}

.expertise-icon {
    font-size: 3.5rem;
    color: #F36C21;
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.expertise-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: #0f172a;
}

/* Swiper Styles */
.productSwiper {
    padding: 20px 0px;
    position: relative;
}

.swiper-slide {
    height: auto;
}

.product-card {
    background: rgba(30, 41, 59, 0.8);;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(243, 108, 33, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    padding: 15px 15px 30px 15px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(243, 108, 33, 0.3);
    border-color: #F36C21;
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #334155, #475569);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #F36C21;
    margin: -15px -15px 0px -15px;
}

.product-card h5 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.product-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: #F36C21;
    background: #1a1a1a;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #F36C21;
    color: #ffffff;
    border-color: #F36C21;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* About Section */
#about {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); !important;
}

.about {
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.about-content {
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.about p {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* World Map Section */
.world-presence {
    padding: 6rem 0;
    background: #0f172a;
    text-align: center;
}

.world-map {
    margin: 1rem auto;
    padding: 3rem;
    background: rgba(30, 41, 59, 0.3);;
    border-radius: 20px;
    border: 1px solid rgba(243, 108, 33, 0.2);
}

.map-placeholder {
    font-size: 4rem;
    color: #F36C21;
}

.world-stats {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.world-stat {
    text-align: center;
    border: 1px solid transparent;
    padding: 20px;
    border-radius: 10px;
}

.world-stat:hover {
    box-shadow: 0 15px 40px rgba(243, 108, 33, 0.3);
    border: 1px solid #F36C21;
    cursor: pointer;
}

.world-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #F36C21;
}

/* Experts Section */
.experts {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.expert-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border:1px solid rgba(243, 108, 33, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(243, 108, 33, 0.3);
    border-color: #F36C21;
}

.expert-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F36C21, #ff8a4c);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.expert-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.expert-role {
    color: #F36C21;
    font-weight: 600;
    margin-bottom: 1rem;
}

.expert-quote {
    color: #b0b0b0;
    font-style: italic;
    line-height: 1.6;
}

/* News Section */
.news {
    padding: 6rem 0;
    background: #0f172a;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.news-card {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(243, 108, 33, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(243, 108, 33, 0.3);
    border-color: #F36C21;
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, #334155, #475569);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #F36C21;
}

.news-content {
    padding: 2rem;
}

.news-date {
    color: #F36C21;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.news-excerpt {
    color: #b0b0b0;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, #144050 0%, #144050 100%);
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #ffffff;
}

.cta-banner p {
    color: #b0b0b0;
}

.cta-banner .btn {
    background: linear-gradient(135deg, #F36C21, #ff8a4c);
    color: #ffffff;
    border: 2px solid #F36C21;
}

.cta-banner .btn:hover {
    background: linear-gradient(135deg, #ff8a4c, #F36C21);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #0f172a;
    padding: 3rem 0 1rem;
    border-top: 3px solid #F36C21;
    color: #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #F36C21;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: #F36C21;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(243, 108, 33, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #F36C21;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.certifications {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    padding: 0.5rem 1rem;
    background: rgba(243, 108, 33, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #F36C21;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .counter-grid,
    .expertise-grid,
    .expert-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .world-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .productSwiper {
        padding: 20px 40px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }

    .text-left {
        text-align: left !important;
    }

    .text-center {
        text-align: center !important;
    }

    .text-right {
        text-align: right !important;
    }

    .text-justify {
        text-align: justify !important;
        text-justify: inter-word;
    }

    .underline-border {
        display: inline-block;
        border-bottom: 3px solid #F36C21;
        padding-bottom: 5px;
    }

    .heroSwiper .swiper-pagination {
        bottom: 15px !important;
    }
}

/* Additional dark theme utilities */
.bg-light {
    background-color: #144050 !important;
}

.text-dark {
    color: #e0e0e0 !important;
}

.text-muted {
    color: #808080 !important;
}
