/* Base Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #ff6600;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --text-color: #444;
    --text-light: #777;
    --white: #fff;
    --black: #000;
    --gray: #e9ecef;
    --dark-gray: #6c757d;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden !important;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    color: var(--secondary-color);
}

.btn-large {
    padding: 15px 35px;
    font-size: 16px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    text-align: center;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-description {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    color: var(--text-light);
}

/* Top Bar */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.hotline i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

/* Main Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 40px; /* Adjust based on your logo */
    width: auto;
    transition: opacity 0.3s ease;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
}

.nav-links li {
    position: relative;
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.nav-links a i {
    margin-left: 5px;
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 220px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

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

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: var(--text-color);
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: var(--gray);
    color: var(--primary-color);
    padding-left: 25px;
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    margin-left: 20px;
    z-index: 1100;
    background: none;
    border: none;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    -webkit-user-select: none; /* Add this line to support Safari 3+, Safari on iOS 3+ */
    user-select: none;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.slider-controls button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%; /* This makes it perfectly round */
    width: 50px; /* Fixed width */
    height: 50px; /* Fixed height (same as width for perfect circle) */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    /* Optional: Add a subtle shadow */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-controls button:hover {
    background: rgba(0, 0, 0, 0.8);
    /* Optional: Slightly enlarge on hover */
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
    gap: 10px;
}

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

.slider-indicators .indicator.active {
    background: white;
    transform: scale(1.2);
}

.slider-indicators .indicator:hover {
    background: white;
}

/* Mouse Scroll Animation */
.mouse-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: #fff;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    margin-bottom: 10px;
    position: relative;
}

.scroller {
    width: 6px;
    height: 10px;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    50% {
        top: 30px;
        opacity: 0.5;
    }
    100% {
        top: 10px;
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .slider-controls {
        display: none;
    }
}

/* Clients Section */
/* Clients Section */
.clients-section {
    padding: 80px 0;
    /* background: var(--light-color); */
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.client-logos-container {
    position: relative;
    overflow: hidden;
    padding: 0 0 40px 0; /* Increased top padding for tooltips */
    margin: 0 -20px;
}

.client-logos-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.client-logo-item {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 120px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    cursor: pointer;
    overflow: visible;
    transition: all .4s;
}

.client-logo-item:hover img {
    transition: all .3s;
    transform: scale(1.2);
}

.client-logo {
    max-height: 80px;
    max-width: 140px;
    object-fit: contain;
}


/* Gradient overlays for smooth edges */

/* Pause animation on hover */
.client-logos-container:hover .client-logos-track {
    animation-play-state: paused;
}

/* Animation keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .client-logo-item {
        width: 150px;
        height: 100px;
    }

}

/* Products Section */
.products-section {
    padding-bottom: 80px;
}

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

.product-card {
    background: var(--white);
    border: 1px solid #e7e7e7eb;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: var(--shadow); */
    transition: var(--transition);
}

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

.product-img {
    height: 130px;
    overflow: hidden;
}

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

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

.product-content {
    padding: 25px;
}

.product-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.product-description {
    margin-bottom: 20px;
    color: var(--text-light);
}

.product-btn {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.product-btn:hover {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-description {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background: #f8f9fa;
}

.why-choose-content {
    display: flex;
    gap: 30px;
}

.counters-section {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.counter-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.counter-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.features-section {
    flex: 1;
}

.feature-box {
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature-title {
    font-size: 1.1rem;
    margin: 0;
    cursor: pointer;
    position: relative;
    padding-right: 25px;
}

.feature-title::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary-color);
}

.feature-box.open .feature-title::after {
    content: '-';
}

.feature-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.3s;
    padding-top: 0;
}

.feature-box.open .feature-description {
    max-height: 200px; /* Increased for smoother transition with more content */
    padding-top: 8px;
}

.feature-description p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .why-choose-content {
        flex-direction: column;
    }

    .counters-section {
        margin-bottom: 20px;
    }
}

/* Technologies Section */

.technologies-section {
    padding: 60px 0;
    background: white;
}

.tech-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.tech-tab {
    padding: 8px 20px;
    background: #fff;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 14px;
}

.tech-tab:hover {
    color: #0066cc;
}

.tech-tab.active {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

.tech-content {
    display: none;
}

.tech-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.tech-description {
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
    color: #777;
    font-size: 15px;
}

.tech-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.tech-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 120px;
}

.tech-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0066cc;
}

.tech-name {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    transition: all 0.3s ease;
}

.tech-desc {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px;
    background: #fff;
    font-size: 13px;
    color: #777;
    transition: all 0.3s ease;
    opacity: 0;
}

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

.tech-item:hover .tech-name {
    transform: translateY(-15px);
}

.tech-item:hover .tech-desc {
    top: 50%;
    opacity: 1;
}

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

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns:repeat(auto-fill, minmax(150px, 1fr));
    }

    .tech-item {
        height: 110px;
        padding: 15px;
    }

    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Testimonials Section */
/* Enhanced Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.testimonial-slider-container {
    position: relative;
    max-width: auto;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.testimonial {
    min-width: 100%;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial.active {
    position: relative;
    opacity: 1;
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.testimonial.active .client-img {
    transform: scale(1.1);
}

.client-quote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    line-height: 1.8;
}

.client-quote::before,
.client-quote::after {
    content: '"';
    font-size: 40px;
    color: rgba(0, 102, 204, 0.2);
    position: absolute;
    line-height: 0;
}

.client-quote::before {
    top: -10px;
    left: -15px;
}

.client-quote::after {
    bottom: -30px;
    right: -15px;
}

.client-name {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.client-position {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-controls {
    display: flex;
    justify-content: space-between;
    align-items: cent;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.testimonial-prev:active,
.testimonial-next:active {
    transform: scale(0.95);
}

.testimonial-indicators {
    display: flex;
    gap: 10px;
}

.testimonial-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicators .indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial {
        padding: 30px 20px;
    }

    .client-quote {
        font-size: 16px;
    }

    .testimonial-controls {
        margin-top: 20px;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
    }
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: var(--dar);
}

.industry-slider-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.industry-slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

.industry-item {
    flex-shrink: 0;
    width: 200px;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.industry-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.industry-item:hover .industry-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.industry-name {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.industry-desc {
    font-size: 14px;
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact-item i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

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

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 14px;
}

.footer-newsletter button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: var(--secondary-color);
}

.footer-certificates {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-certificates img {
    border-radius: 5px;
    transition: var(--transition);
}

.footer-certificates img:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--gray);
}

.footer-bottom a {
    color: var(--gray);
    margin: 0 10px;
    font-size: 18px;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-out, background 0.1s ease, border 0.1s ease;
}

.cursor.hover,
.cursor-follower.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .products-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 0;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-btns .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .products-grid,
    .services-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-btns {
        flex-direction: column;
    }

    .cta-btns .btn {
        width: 100%;
    }
}

/* Hide social media buttons on mobile devices */
@media (max-width: 767px) {
    .fixed-social {
        display: none;
    }
}


/* Product Page Specific Styles 1280 to 1889*/

/* Base Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #ff6600;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --text-color: #444;
    --text-light: #777;
    --white: #fff;
    --black: #000;
    --gray: #e9ecef;
    --dark-gray: #6c757d;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    color: var(--secondary-color);
}

.btn-large {
    padding: 15px 35px;
    font-size: 16px;
}

/* Top Bar */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.hotline i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

/* Main Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-links {
    display: flex;
}

.nav-links li {
    position: relative;
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.nav-links a i {
    margin-left: 5px;
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 220px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

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

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: var(--text-color);
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: var(--gray);
    color: var(--primary-color);
    padding-left: 25px;
}

.mobile-menu-btn {
    /* display: none; */
    font-size: 28px;
    cursor: pointer;
    margin-left: 20px;
    z-index: 1100;
    background: none;
    border: none;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=1350&amp;q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-description {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
}

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

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact-item i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

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

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 14px;
}

.footer-newsletter button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: var(--secondary-color);
}

.footer-certificates {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-certificates img {
    border-radius: 5px;
    transition: var(--transition);
}

.footer-certificates img:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--gray);
}

.footer-bottom a {
    color: var(--gray);
    margin: 0 10px;
    font-size: 18px;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* Hero Slider Smooth Transition */
.hero-slide {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s;
}

/* Ensure the hero-slider is positioned relative for absolute slides */
.hero-slider {
    position: relative;
    overflow: hidden;
}

/* Why Choose Us Modern Section */
.why-chooseus-flex {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    margin-top: 40px;
    flex-wrap: wrap;
}

.why-counters {
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 220px;
    flex: 1 1 220px;
    justify-content: center;
}

.why-counter-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    padding: 24px 18px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.why-counter-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    background: rgba(0, 102, 204, 0.08);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-counter-number {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
}

.why-counter-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    flex: 2 1 400px;
}

.why-feature-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    padding: 28px 20px 20px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 140px;
    position: relative;
}

.why-feature-icon {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 6px;
}

.why-feature-desc {
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Responsive for Why Choose Us */
@media (max-width: 900px) {
    .why-chooseus-flex {
        flex-direction: column;
        gap: 30px;
    }

    .why-counters, .why-features {
        min-width: 0;
        width: 100%;
    }

    .why-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .why-counter-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 18px 10px;
    }

    .why-feature-card {
        padding: 18px 12px 14px 12px;
        min-height: 100px;
    }
}

/* Newsletter Modern Styles */
.footer-newsletter {
    width: 100%;
    margin-top: 10px;
}

.newsletter-group {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 4px 6px 4px 16px;
    gap: 0;
    flex-direction: row !important;
}

.newsletter-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    padding: 12px 8px;
    flex: 1;
    color: var(--dark-color);
    border-radius: 30px 0 0 30px;
    min-width: 0;
}

.newsletter-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 600;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .newsletter-group {
        flex-direction: row !important;
        padding: 4px 4px 4px 10px;
    }

    .newsletter-input, .newsletter-btn {
        border-radius: 18px;
        width: auto;
        margin: 0;
        height: 40px;
    }
}