
/* Base Styles */
:root {
    --primary-color: #30B4C8;
    --primary-dark: #0e8a9d;
    --secondary-color: #0F0F1A;
    --accent-color: #4cc9f0;
    --text-light: #666;
    --text-dark: #333;
    --white: #fff;
    --light-bg: #f5fafd;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #caecf4;
    overflow-x: hidden;
    color: var(--text-dark);
    line-height: 1.6;
}


/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.9rem;
}

.slogan {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.contact-info a:hover {
    opacity: 0.8;
}

.contact-info i {
    font-size: 1rem;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

nav.scrolled {
    padding: 10px 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 55px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.1);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-links li:hover::after {
    width: 100%;
}


/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 400;
}

.dropdown-content a:hover {
    background-color: #f1f9fd;
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-toggle::after {
    content: '▾';
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    width: 90%;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.hero-btn {
    padding: 15px 35px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 15px rgba(76, 201, 240, 0.4);
}

.hero-btn:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
}

.swiper-slide-active .animate-text {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-section {
    padding: 50px 0 80px 0;
    background-color: var(--light-bg);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.about-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.tagline {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}


.description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.discover-btn {
    display: inline-block;
    padding: 10px 25px;  
    background-color: #30BDC9;  
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;  
    font-size: 1rem;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}

.discover-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(48, 180, 200, 0.4);
    transform: translateY(-5px);
}

/* Products Section */
.products-section {
    padding: 10px 0 80px 0;
    background: linear-gradient(to bottom, var(--light-bg), #fff);
}

.product-slider {
    margin-top: 40px;
    padding: 20px 0;
}

.product {
    text-align: center;
    padding: 15px;
    transition: var(--transition);
}

.product-img-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #eee;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: var(--transition);
}

.product:hover .product-img-container {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.product:hover img {
    transform: scale(1.1);
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 15px;
    transition: var(--transition);
}

.product:hover .product-title {
    color: var(--primary-color);
}

.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.product-link:hover {
    transform: translateY(-5px);
}

.product-link:hover .product-title {
    color: var(--primary-color);
}

.product-link:hover .product-img-container {
    border-color: var(--primary-color);
}



/* Contact Section */
.contact-section {
    padding: 10px 0 100px 0;
    background-color: var(--light-bg);
}

.contact-container {
    display: flex;
    gap: 40px;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-box {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-box h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-box p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: #f9f9f9;
    transition: var(--transition);
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(48, 180, 200, 0.2);
    outline: none;
}

textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(48, 180, 200, 0.3);
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: var(--border-radius);
    background: #f9f9f9;
    transition: var(--transition);
}

.contact-item:hover {
    background: #e6f7ff;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: rgba(48, 180, 200, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    text-align: left;
}

.contact-item a,
.contact-item span {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: none;
    text-align: left;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}


/* Footer */
.footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-about p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(48, 180, 200, 0.3);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-link:before {
    content: "→";
    color: var(--primary-color);
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-link:hover:before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info-item i {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.newsletter-button {
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(48, 180, 200, 0.3);
}

.back-to-top i {
    font-size: 1.2rem;
}



/* Active page styling */
nav ul li a.active {
    color: var(--primary-color);
    font-weight: bold;
}



/* Responsive Design */
@media screen and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image, .about-content {
        text-align: center;
    }

    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    nav {
        padding: 15px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 15px;
        display: block;
        border-bottom: 1px solid #eee;
    }

    .dropdown-content {
        position: static;
        background: #f9f9f9;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown.active .dropdown-content {
        max-height: 300px;
    }

    .dropdown-toggle::after {
        float: right;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .contact-container {
        flex-direction: column;
    }

    .form-group {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .tagline, .description-title {
        font-size: 1.3rem;
    }

    .description {
        font-size: 1rem;
    }
}

