/* ========================================
   IMPORT POPPINS FONT
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hidden Checkboxes for Menu Toggle */
.menu-toggle,
.dropdown-toggle {
    display: none;
}

/* ========================================
   TOP HEADER
   ======================================== */
.top-header {
    background: #00444d;
    color: white;
    padding: 0.8rem 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.top-header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-header-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.top-header-contact:hover {
    opacity: 0.8;
}

.top-header-contact i {
    font-size: 1rem;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-header-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 10001;
    position: relative;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: none;
}

.mobile-close-btn {
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: #333;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: background 0.2s ease;
}

.mobile-close-btn:hover {
    background: #f0f0f0;
    border-radius: 50%;
}

.mobile-close-btn i {
    display: block;
    color: #333;
    font-size: 1.5rem;
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 16px;
}

.nav-link:hover {
    color: #007bff;
}

.nav-link i {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

/* Dropdown Menu - Desktop */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-top: 3px solid #007bff;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    z-index: 1000;
    pointer-events: none;
}

/* Desktop Hover Effect */
@media (min-width: 769px) {
    .nav-item.has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .dropdown-menu:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .has-dropdown .dropdown-toggle {
        pointer-events: none !important;
    }
    
    .has-dropdown > label.nav-link {
        cursor: pointer;
    }
}

.dropdown-item {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    background: white;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #00444d;
    border-left-color: #ef8132;
    padding-left: 1rem;
}

/* Nav Utilities */
.nav-utilities {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.utility-search,
.utility-globe {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    text-decoration: none;
    color: #666;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.utility-search:hover,
.utility-globe:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cta-button {
    background: transparent;
    color: #007bff;
    padding: 0.7rem 1.5rem;
    border: 1px solid #007bff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #007bff;
    color: white;
}

.cta-button.primary {
    background: #6f42c1;
    color: white;
    border-color: #6f42c1;
}

.cta-button.primary:hover {
    background: #5a2d9f;
    border-color: #5a2d9f;
}

/* ========================================
   SLIDER SECTION
   ======================================== */
.slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    width: 400%;
}

.slide {
    min-width: 25%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.slide h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-button {
    background: #007bff;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: none;
}

.slide-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: white;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* ========================================
   COMMON SECTIONS
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   INDUSTRIES SECTION
   ======================================== */
.industries {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #667eea);
    color: white;
}

.industry-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.industry-card p {
    color: #666;
    line-height: 1.8;
}

/* ========================================
   SOLUTIONS SECTION
   ======================================== */
.solutions {
    padding: 6rem 2rem;
    background: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.solution-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.solution-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.solution-item p {
    color: #666;
    line-height: 1.7;
}

/* ========================================
   SUB BANNER SECTION
   ======================================== */
.sub-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.sub-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.sub-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sub-banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sub-banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.sub-banner-btn {
    background: #007bff;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.sub-banner-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.sub-banner-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sub-banner-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   COUNTER SECTION
   ======================================== */
.counter-section {
    background-color: #408e98;
    padding: 20px 0 40px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.counter-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
}

.counter-item:hover {
    transform: translateY(-10px);
    border-color: #007bff;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.counter-icon {
    color: #333;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* ========================================
   INTRODUCTION SECTION
   ======================================== */
.introduction {
    padding: 6rem 0;
    background: white;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-features {
    list-style: none;
    margin: 2rem 0;
}

.intro-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #666;
}

.intro-features li i {
    color: #007bff;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.intro-image {
    text-align: center;
}

.intro-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    background-color: #000;
}

.main-title {
    text-align: center;
}

.main-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.main-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.main-title1 {
    text-align: center;
    margin-bottom: 60px;
}

.main-title1 h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.main-title1 p {
    font-size: 18px;
    color: #000;
    max-width: 600px;
    margin: 0 auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.image-side {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-side:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 30px;
    color: #fff;
}

.image-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.content-side {
    padding: 20px;
}

.content-side h3 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-side > p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 35px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-left-color: #fff;
    background: #ffffff;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Alternative Why Choose Us Layout */
.why-choose-us {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6f42c1);
    transition: left 0.3s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    background: white;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: grid;
    grid-template-columns: 250px 1fr 200px 150px;
    align-items: center;
    padding: 2.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    gap: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    background: #f8f9fa;
    transform: translateX(10px);
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #007bff, #6f42c1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.service-image-wrapper {
    position: relative;
    width: 200px;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.service-item:hover .service-image-wrapper {
    opacity: 1;
    transform: translateX(0);
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 2px solid #333;
    border-radius: 50%;
    background: white;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.service-button:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: rotate(90deg);
}

.service-button i {
    font-size: 1.2rem;
}

/* ========================================
   LATEST NEWS SECTION
   ======================================== */
.latest-news {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.news-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    font-weight: 700;
}

.news-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.news-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.news-slide {
    min-width: 100%;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.news-image {
    width: 40%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.3), rgba(111, 66, 193, 0.3));
}

.news-content {
    width: 60%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-category {
    color: #007bff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.news-slide-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: white;
}

.news-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.news-arrows:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.news-arrow-prev {
    left: 20px;
}

.news-arrow-next {
    right: 20px;
}

.news-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.news-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-dot.active {
    background: #007bff;
    transform: scale(1.2);
}

/* ========================================
   MULTI-ITEM SLIDER
   ======================================== */
.multi-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    padding: 16px 10px 40px;
}

.multi-slider .track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.multi-slider .item {
    box-sizing: border-box;
    padding: 10px;
}

.multi-slider .card {
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.multi-slider .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.multi-slider .thumb-wrap {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
    padding: 8px;
}

.multi-slider .thumb-wrap img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 2px;
    background: #fff;
}

.multi-slider .title {
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-align: center;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.multi-slider .nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 42px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.multi-slider .nav:hover {
    background: #f0f0f0;
}

.multi-slider .prev {
    left: 8px;
}

.multi-slider .next {
    right: 8px;
}

.multi-slider .dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.multi-slider .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
}

.multi-slider .dot.active {
    background: #0040bf;
}

/* ========================================
   POPUP (IMAGE VIEWER)
   ======================================== */
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.popup .dialog {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}

.popup .dialog img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.popup .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

.popup .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10000;
}

.popup .prev {
    left: 30px;
}

.popup .next {
    right: 30px;
}

/* ========================================
   CONTACT SECTIONS
   ======================================== */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ========================================
   FOOTER - NEW DESIGN
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 4rem 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6f42c1, #007bff);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

/* Footer Company Section with Logo */
.footer-company {
    padding-right: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Footer Section Headers */
.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #6f42c1);
    border-radius: 2px;
}

/* Footer Links */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-section ul li a i.fa-chevron-right {
    font-size: 0.7rem;
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007bff;
    padding-left: 0.5rem;
}

.footer-section ul li a:hover i.fa-chevron-right {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info Styling */
.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-info li i {
    color: #007bff;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info li a:hover {
    color: #007bff;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social-icon:hover {
    background: linear-gradient(135deg, #007bff, #6f42c1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Newsletter Section */
.footer-newsletter {
    margin-top: 1.5rem;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #007bff;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #007bff, #6f42c1);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #007bff;
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   MOBILE RESPONSIVE - 768px and below
   ======================================== */
@media (max-width: 768px) {
    
    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-container {
        padding: 1rem;
        position: relative;
    }
    
    .nav-container > .logo {
        z-index: 10001;
        position: relative;
    }
    
    .logo img {
        height: 40px;
    }
    
    .menu-toggle:checked ~ .nav-container > .logo {
        opacity: 0;
        visibility: hidden;
    }
    
    .menu-toggle:checked ~ .nav-container .mobile-menu-btn {
        opacity: 0;
        visibility: hidden;
    }
    
    /* Mobile Menu Header */
    .mobile-menu-header {
        display: none;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        background: #ffffff !important;
        border-bottom: 1px solid #e9ecef;
        position: sticky;
        top: 0;
        z-index: 10;
        width: 100%;
    }
    
    .mobile-menu-header .logo {
        display: block !important;
    }
    
    .mobile-menu-header .logo img {
        height: 40px;
        display: block !important;
    }
    
    /* Mobile Menu - Slide in from left */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: #ffffff !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        overflow-y: auto;
        overflow-x: visible;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 10000;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-menu,
    .nav-menu * {
        background-color: inherit;
    }
    
    .menu-toggle:checked ~ .nav-container .nav-menu {
        left: 0;
    }
    
    .menu-toggle:checked ~ .nav-container::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        cursor: pointer;
    }
    
    .menu-toggle:checked ~ .nav-container .nav-menu .mobile-menu-header {
        display: flex;
    }
    
    .menu-toggle:checked ~ .nav-container .mobile-menu-btn span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle:checked ~ .nav-container .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .nav-container .mobile-menu-btn span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-list {
        flex-direction: column !important;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-item {
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
    }
    
    .nav-item.has-dropdown .dropdown-toggle {
        display: none !important;
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background: #ffffff !important;
        color: #333 !important;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        border: none;
        text-align: left;
        text-decoration: none;
        font-weight: 500;
    }
    
    .has-dropdown > label.nav-link {
        cursor: pointer;
        display: flex !important;
        width: 100%;
        touch-action: manipulation;
        position: relative;
    }
    
    .nav-link i {
        display: inline-block !important;
        color: #333;
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .dropdown-toggle:checked ~ label.nav-link i {
        transform: rotate(180deg);
    }
    
    /* Mobile Dropdown Menu */
    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        border-top: none !important;
        border-radius: 0 !important;
        background: #f8f9fa !important;
        max-height: 0;
        overflow: hidden;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: max-height 0.3s ease-in-out, padding 0.3s ease;
        padding: 0;
        margin: 0;
        width: 100%;
        list-style: none;
        display: block !important;
        pointer-events: auto !important;
    }
    
    .nav-item.has-dropdown .dropdown-toggle:checked ~ .dropdown-menu {
        max-height: 1000px !important;
        padding: 0.5rem 0 !important;
        overflow: visible !important;
    }
    
    .dropdown-menu li {
        display: block !important;
        width: 100%;
        list-style: none !important;
        background: #f8f9fa !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .dropdown-item {
        padding: 0.8rem 2rem !important;
        border-left: none !important;
        background: #f8f9fa !important;
        color: #1a1a1a !important;
        display: block !important;
        text-decoration: none !important;
        transition: all 0.2s ease;
        font-size: 0.95rem !important;
        line-height: 1.5;
        width: 100%;
        box-sizing: border-box;
        font-weight: 500 !important;
        cursor: pointer;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .dropdown-item:hover,
    .dropdown-item:active {
        padding-left: 2.5rem !important;
        background: white !important;
        color: #007bff !important;
    }
    
    /* Mobile Utilities & Buttons */
    .nav-utilities,
    .cta-buttons {
        width: 100%;
        padding: 1rem 1.5rem;
        flex-direction: column;
        border-top: 2px solid #e9ecef;
        gap: 1rem;
        display: flex !important;
    }
    
    .nav-utilities {
        flex-direction: row;
        justify-content: center;
    }
    
    .nav-utilities a {
        color: #666 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 1rem;
        display: inline-block !important;
    }
    
    /* Top Header Mobile */
    .top-header-container {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .top-header-left {
        gap: 1rem;
    }
    
    .top-header-contact {
        font-size: 0.85rem;
    }
    
    /* Slider Mobile */
    .slider {
        height: 400px;
    }
    
    .slide h2 {
        font-size: 2rem;
    }
    
    .slide p {
        font-size: 1.1rem;
    }
    
    /* Industries Mobile */
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    /* Solutions Mobile */
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    /* Service Items Mobile */
    .service-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .service-image-wrapper {
        width: 100%;
        height: 200px;
        opacity: 1;
        transform: translateX(0);
    }
    
    .service-button {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    /* Counter Mobile */
    .counter-item {
        width: 200px;
        height: 200px;
    }
    
    .counter-icon {
        font-size: 2.5rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    /* Content Wrapper Mobile */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-side {
        height: 400px;
    }
    
    /* Multi-slider Mobile */
    .multi-slider .thumb-wrap {
        height: 160px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-company {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-section h3 {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
        text-align: left;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-newsletter {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-bottom-links span {
        display: none;
    }
}

/* ========================================
   MOBILE RESPONSIVE - 480px and below
   ======================================== */
@media (max-width: 480px) {
    
    .top-header-left {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .slider {
        height: 350px;
    }
    
    .slide h2 {
        font-size: 1.8rem;
    }
    
    .slide p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        width: 90%;
    }
    
    .counter-item {
        width: 180px;
        height: 180px;
    }
    
    .why-choose-container {
        padding: 0 20px;
    }
    
    .main-title h2,
    .main-title1 h2 {
        font-size: 28px;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* ========================================
   TABLET RESPONSIVE - 992px and below
   ======================================== */
@media (max-width: 992px) {
    .multi-slider .thumb-wrap {
        height: 160px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-company {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
}