/* Multi-color Variables */
:root {
    --primary-color: #0056b3;
    --secondary-color: #003459;
    --accent-color: #00a8e8;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --transition: all 0.3s ease;
    --color-1: #FF6B6B;
    --color-2: #4ECDC4;
    --color-3: #45B7D1;
    --color-4: #96CEB4;
    --color-5: #FFBE0B;
    --color-6: #9B5DE5;
    --color-7: #00BBF9;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Top Bar */
.top-bar {
    background: var(--secondary-color);
    padding: 8px 0;
    color: white;
    font-size: 0.9rem;
    height: 40px; /* Adjust this value to your desired height */
}

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

.contact-info a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.contact-info i {
    margin-right: 5px;
    font-size: 1.1rem;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.contact-info .fa-whatsapp {
    color: #25D366;
}

.social-links {
    display: flex;
    margin-left: auto; /* Pushes the social links to the right */
}

.social-links a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    padding-top: -10px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    background: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-text {
    color: var(--secondary-color);
}

.logo-highlight {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--secondary-color);
    z-index: 1002;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1001;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        opacity: 0;
        animation: slideIn 0.5s ease forwards;
    }

    .nav-links li a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
    }

    .quote-btn {
        margin-top: 1rem;
    }

    .quote-btn a {
        background: var(--primary-color);
        padding: 0.8rem 2rem !important;
        border-radius: 5px;
        color: white !important;
    }

    @keyframes slideIn {
        0% {
            transform: translateY(50px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .nav-links li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links li:nth-child(4) { animation-delay: 0.4s; }
    .nav-links li:nth-child(5) { animation-delay: 0.5s; }
    .nav-links li:nth-child(6) { animation-delay: 0.6s; }
    .nav-links li:nth-child(7) { animation-delay: 0.7s; }
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-text {
    color: var(--secondary-color);
}

.logo-highlight {
    color: var(--accent-color);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-links li a:hover {
    color: var(--primary-color);
}

.quote-btn a {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: var(--transition);
}

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

.brand-name {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    height: auto;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    background: #f5f5f5;
    width: 100%;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-slide img {
        max-height: 70vh;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    .hero-slide img {
        max-height: 60vh;
        width: 100vw;
        margin: 0;
    }
    .hero {
        width: 100vw;
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 8px;
    }
    .hero-slide img {
        max-height: 50vh;
        width: 100vw;
        margin: 0;
    }
    .hero {
        width: 100vw;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    .hero-swiper {
        width: 100vw;
    }
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.primary:hover {
    background: var(--secondary-color);
}

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

/* Swiper Pagination */
.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero {
        height: 70vh;
    }

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

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

@media (max-width: 768px) {
    .hero {
        height: 65vh;
    }

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

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        gap: 15px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 55vh;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-button {
        width: 100%;
        padding: 10px 20px;
    }
}

/* Quick Links Section */
.quick-links {
    padding: 50px 0;
    background: var(--light-gray);
}

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

.quick-link-item {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.quick-link-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quick-link-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.quick-link-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        flex-direction: column;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
        cursor: pointer;
    }
    
    .quick-link-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .quick-link-grid {
        grid-template-columns: 1fr;
    }
    
    .top-bar {
        display: none;
    }
}

/* Showcase Section */
.showcase {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.showcase-content {
    margin-top: 40px;
}

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

.showcase-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.showcase-item h3 {
    padding: 20px;
    text-align: center;
    color: #333;
    font-size: 1.5em;
    margin: 0;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-item img {
        height: 200px;
    }
}

.showcase h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.swiper-container {
    width: 100%;
    max-width: 100%; /* Ensure it doesn't exceed the viewport */
    overflow: hidden; /* Hide overflow */
}

.swiper-slide {
    width: auto; /* Allow slides to fit within the container */
    flex-shrink: 0; /* Prevent shrinking */
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
}

.swiper-slide:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    overflow: hidden;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .product-image {
        height: 300px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

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

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    color: white;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.cta-button {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero .swiper-pagination {
    bottom: 30px !important;
}

.hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.hero .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

@media (max-width: 1200px) {
    .hero {
        height: 70vh;
    }
    
    .slider-button {
        padding: 12px 8px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 65vh;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 55vh;
    }
    
    .slider-button {
        padding: 8px 6px;
        font-size: 14px;
    }
}

/* Products Showcase Section */
.showcase {
    padding: 80px 0;
    background-color: #fff;
}

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

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

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

.product-image {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
}

.product-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
}

.btn-primary {
    display: inline-block;
    padding: 10px 25px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .product-image {
        height: 250px;
    }
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #2193b0;
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    padding: 5rem 5%;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3, .product-card p {
    padding: 1rem;
}

.product-btn {
    width: 100%;
    padding: 1rem;
    background: #2193b0;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.product-btn:hover {
    background: #1b7a8d;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact .section-header {
    margin-bottom: 60px;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

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

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-details h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

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

.contact-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.highlight-message {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.btn {
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn i {
    font-size: 1.2rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.contact-form-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    position: relative;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    z-index: 1;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.input-group textarea {
    height: 150px;
    resize: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary-color);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 168, 232, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    cursor: pointer;
}

.submit-btn i {
    margin-right: 8px;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 30px 20px;
        margin: 40px auto;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .input-group input,
    .input-group textarea {
        padding: 12px 12px 12px 45px;
    }
    
    .input-group i {
        font-size: 1.1rem;
        left: 12px;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 20px 15px;
    }
    
    .input-group input,
    .input-group textarea {
        font-size: 0.9rem;
    }
}

/* Responsive Design for Contact Section */
@media (max-width: 992px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-message {
        padding: 30px 20px;
    }
    
    .highlight-message {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: white;
    text-decoration: none;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
}

/* Social Media Icons */
.social-section {
    display: flex;
    flex-direction: column;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #2193b0;
    transform: scale(1.1);
}

.social-icon i {
    font-size: 1.2rem;
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.float-whatsapp:hover {
    background-color: #20ba5a;
    color: white;
    transform: scale(1.1);
    box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
}

@media (max-width: 480px) {
    .float-whatsapp {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
        font-size: 25px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
}

/* Copper and Zinc Benefits Section */
.copper-zinc-benefits {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.benefits-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.benefit-column {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-column:hover {
    transform: translateY(-5px);
}

.benefit-header {
    text-align: center;
    margin-bottom: 25px;
}

.benefit-header i {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.benefit-header h3 {
    color: #333;
    font-size: 1.8em;
    margin: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 1.1em;
    line-height: 1.5;
}

.benefits-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .benefits-container {
        flex-direction: column;
    }
    
    .benefit-column {
        margin-bottom: 20px;
    }
}

/* Silver Ionization Section */
.silver-ionization {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.silver-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}

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

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

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

.benefit-card i {
    font-size: 2.5em;
    color: #4CAF50;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3em;
}

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

.how-it-works {
    margin-top: 60px;
    text-align: center;
}

.how-it-works h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2em;
    color: white;
}

.step p {
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        margin-bottom: 30px;
    }
}

/* Slim Banner */
.slim-banner {
    height: 300px;
    background: url('https://images.unsplash.com/photo-1606857521015-7f9fcf423740?w=1600') center/cover fixed;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,86,179,0.9), rgba(0,168,232,0.8));
}

.slim-banner .container {
    position: relative;
    z-index: 2;
}

.slim-banner h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slim-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

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

.section-header h2 {
    color: var(--secondary-color);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-top: 15px;
    font-weight: 500;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 15px;
}

.about-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    width: 100%;
}

.about-intro {
    margin-bottom: 50px;
}

.highlight-text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--secondary-color);
    font-weight: 500;
    padding: 30px;
    background: rgba(0, 168, 232, 0.05);
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-card h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card p {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 50px auto;
    max-width: 900px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-item span {
    color: #444;
    font-weight: 500;
    font-size: 1.4rem;
}

.about-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-description p {
    color: #666;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-description p strong {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
    
    .highlight-text {
        font-size: 1.4rem;
        padding: 25px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card {
        padding: 25px;
    }
    
    .about-description p {
        font-size: 1.3rem;
    }
    
    .about-description p strong {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .feature-item {
        padding: 15px;
    }
    
    .feature-item span {
        font-size: 1.3rem;
    }
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background: white;
}

@keyframes slideShow {
    0%, 20% {
        opacity: 1;
    }
    25%, 100% {
        opacity: 0;
    }
}

.slide {
    animation: slideShow 25s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }
.slide:nth-child(5) { animation-delay: 20s; }

.footer-section .social-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 10px;
}

.footer-section .social-links .social-icon {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 20px;
}

.footer-section .social-links .social-icon:hover {
    color: #4CAF50;
}

/* Image Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
}

#modalCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    padding: 10px 0;
    height: 150px;
}

.close-modal {
    position: absolute;
    right: 35px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

/* Add zoom effect */
.modal-content {
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* Responsive styles */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

/* Our Products Section */
.our-products {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.product-image-large {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    cursor: pointer;
}

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

.product-image-large:hover img {
    transform: scale(1.05);
}

.product-details {
    padding: 25px;
    text-align: center;
}

.product-details h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
}

.product-details p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.btn-learn-more {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #0056b3, #004494);
}

.btn-learn-more:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .products-showcase {
        grid-template-columns: 1fr;
    }

    .product-image-large {
        height: 400px;
    }

    .product-details h3 {
        font-size: 1.8em;
    }
}

/* Silver Ionization Section */
.silver-ionization {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.benefits-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: #007bff;
}

.benefit-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1200px) {
    .benefits-row {
        gap: 2rem;
    }
    .benefit-item {
        flex: 0 1 calc(33.333% - 2rem);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .benefit-item {
        flex: 0 1 calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .benefit-item {
        flex: 0 1 100%;
    }
}

/* Why Water Purifier Section */
.why-purifier {
    padding: 80px 0;
    background-color: #f8f9f9;
}

.why-purifier .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-purifier h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.purifier-content {
    max-width: 1000px;
    margin: 0 auto;
}

.purifier-content .intro-text,
.purifier-content .description,
.purifier-content .conclusion {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: justify;
}

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

.contaminant-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.contaminant-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.contaminant-card h3 {
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0;
    background: white;
}

/* Responsive styles */
@media (max-width: 992px) {
    .contaminants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contaminants-grid {
        grid-template-columns: 1fr;
    }

    .why-purifier h2 {
        font-size: 2rem;
    }

    .purifier-content .intro-text,
    .purifier-content .description,
    .purifier-content .conclusion {
        font-size: 1rem;
        text-align: left;
    }

    .contaminant-card img {
        height: 180px;
    }
}

.health-issues-images {
    margin-bottom: 2rem;
    margin-top: -2rem;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1200px;
}

.issue-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.issue-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.issue-item:hover .issue-image {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .issues-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Plans Page Styles */
.plans-hero {
    background: linear-gradient(45deg, var(--color-1), var(--color-2), var(--color-5));
    background-size: 200% 200%;
    animation: gradientBg 15s ease infinite;
    padding: 4rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

@keyframes gradientBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-text {
    background: linear-gradient(45deg, #fff, #f0f0f0, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {
    0% { background-position: -100% 50%; }
    100% { background-position: 200% 50%; }
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.divider-line {
    height: 3px;
    width: 50px;
    background: linear-gradient(90deg, var(--color-1), var(--color-2));
    border-radius: 3px;
}

.gradient-icon {
    color: white;
    font-size: 1.5rem;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Plans Grid */
.plans-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.plan-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: inherit;
}

.gradient-card-1 {
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
}

.gradient-card-2 {
    background: linear-gradient(135deg, var(--color-3), var(--color-4));
}

.gradient-card-3 {
    background: linear-gradient(135deg, var(--color-5), var(--color-6));
}

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

.plan-header {
    padding: 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plan-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2) 25%, transparent 25%);
    background-size: 3px 3px;
    animation: headerPattern 20s linear infinite;
}

@keyframes headerPattern {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.plan-header h3 {
    font-size: 1.8rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.plan-content {
    background: white;
    padding: 2rem;
}

.plan-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-content li {
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    color: #666;
    transition: all 0.3s ease;
}

.plan-content li:hover {
    transform: translateX(10px);
    color: var(--color-1);
}

.plan-content li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--color-2);
}

.plan-content li.note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    border-bottom: none;
}

.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.featured::after {
    content: 'Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--color-5);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .plans-hero {
        padding: 3rem 0;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .featured {
        transform: scale(1);
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #007bff;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Download Section Styles */
.download-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #007bff, #00a6ff);
    color: white;
}

.download-section .section-header {
    color: white;
}

.download-section .section-divider .divider-line {
    background: rgba(255, 255, 255, 0.3);
}

.download-section .section-divider i {
    color: white;
}

.download-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    margin-top: 3rem;
}

.download-text {
    flex: 1;
}

.download-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.download-text ul {
    list-style: none;
    padding: 0;
}

.download-text li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.download-text li i {
    color: #4CAF50;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
}

.app-button {
    display: block;
    transition: transform 0.3s ease;
}

.app-button:hover {
    transform: translateY(-5px);
}

.app-button img {
    height: 50px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .download-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .download-text li {
        justify-content: center;
    }

    .download-buttons {
        justify-content: center;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Benefits Grid Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 1400px;
    padding: 0 1rem;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #00a6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.benefit-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
    }

    .benefit-icon i {
        font-size: 1.2rem;
    }

    .benefit-content h3 {
        font-size: 1.1rem;
    }
}

/* Info Page Styles */
.info-page {
    padding: 6rem 0 4rem;
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.info-card h2 {
    color: #007bff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-card h2 i {
    color: #007bff;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info-card ul li::before {
    content: '•';
    color: #007bff;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.process-step {
    background: #e8f0fe;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #007bff;
    font-weight: 500;
}

.process-flow i {
    color: #007bff;
}

.warranty-details h3 {
    color: #333;
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.warranty-details ul li strong {
    color: #007bff;
}

@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-flow i {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .info-page {
        padding: 4rem 0 2rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h2 {
        font-size: 1.5rem;
    }
}

/* Blog Page Styles */
.blog-page {
    padding: 6rem 0 4rem;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.1);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-content h2 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

.newsletter-section {
    margin-top: 4rem;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-section h2 {
    color: #333;
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: #666;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #0056b3;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-page {
        padding: 4rem 0 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .blog-content h2 {
        font-size: 1.2rem;
    }
}

/* Company Motto Styles */
.company-motto {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-motto h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.motto-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.motto-list li {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.motto-list li i {
    color: #007bff;
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .company-motto {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .motto-list li {
        font-size: 0.85rem;
    }
}

.motto-list li i {
    flex-shrink: 0;
}

/* Buying Process Steps */
.buying-process {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
    padding: 2rem 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.process-steps::-webkit-scrollbar {
    display: none;
}

.step-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.step-content {
    flex: 1;
    margin-bottom: 1rem;
}

.step-number {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    display: inline-block;
}

.step-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: currentColor;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Arrow Styles */
.step-arrow {
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(45deg, var(--color-1), var(--color-2));
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: pulseArrow 2s infinite;
}

@keyframes pulseArrow {
    0% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

.step-arrow i {
    font-size: 1.5rem;
    animation: moveArrow 1.5s infinite;
}

@keyframes moveArrow {
    0%, 100% {
        transform: translateX(-3px);
    }
    50% {
        transform: translateX(3px);
    }
}

/* Step Card Color Variations */
.step-card[data-step="1"] .step-icon { background: linear-gradient(135deg, #FF6B6B, #FF8787); }
.step-card[data-step="2"] .step-icon { background: linear-gradient(135deg, #4ECDC4, #45B7D1); }
.step-card[data-step="3"] .step-icon { background: linear-gradient(135deg, #96CEB4, #FFEEAD); }
.step-card[data-step="4"] .step-icon { background: linear-gradient(135deg, #9B5DE5, #FF6B6B); }
.step-card[data-step="5"] .step-icon { background: linear-gradient(135deg, #00BBF9, #4ECDC4); }
.step-card[data-step="6"] .step-icon { background: linear-gradient(135deg, #FFBE0B, #FF6B6B); }
.step-card[data-step="7"] .step-icon { background: linear-gradient(135deg, #45B7D1, #96CEB4); }

/* Arrow Color Variations */
.step-card[data-step="1"] .step-arrow { background: linear-gradient(45deg, #FF6B6B, #FF8787); }
.step-card[data-step="2"] .step-arrow { background: linear-gradient(45deg, #4ECDC4, #45B7D1); }
.step-card[data-step="3"] .step-arrow { background: linear-gradient(45deg, #96CEB4, #FFEEAD); }
.step-card[data-step="4"] .step-arrow { background: linear-gradient(45deg, #9B5DE5, #FF6B6B); }
.step-card[data-step="5"] .step-arrow { background: linear-gradient(45deg, #00BBF9, #4ECDC4); }
.step-card[data-step="6"] .step-arrow { background: linear-gradient(45deg, #FFBE0B, #FF6B6B); }

/* Responsive Styles */
@media (max-width: 1200px) {
    .process-steps {
        justify-content: flex-start;
        padding-bottom: 1rem;
    }
    
    .step-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .step-card {
        flex: 0 0 260px;
        padding: 1.5rem;
    }

    .step-arrow {
        right: -1rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .step-arrow i {
        font-size: 1.2rem;
    }
}

.catalogue-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.catalogue-section .section-header {
    margin-bottom: 40px;
}

.catalogue-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.catalogue-section p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.catalogue-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.download-button {
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.download-button i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.download-info {
    font-size: 0.9rem;
    color: #777;
}

.buying-process {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
    padding: 2rem 0;
}

.step-wrapper {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
    display: flex;
    align-items: center;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-icon i {
    font-size: 1.8rem;
    color: white;
}

.step-content {
    text-align: center;
}

.step-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.step-arrow {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 2;
}

.arrow-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    position: relative;
}

.arrow-head {
    position: absolute;
    right: -10px;
    color: var(--primary-color);
    font-size: 1.2rem;
    animation: arrowPulse 1.5s infinite;
}

@keyframes arrowPulse {
    0% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(-5px); }
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step-wrapper {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        right: auto;
        bottom: -3rem;
        top: auto;
        left: 50%;
        width: 40px;
        margin-left: -20px;
    }
    
    .arrow-line::before,
    .arrow-line::after {
        width: 10px;
    }
    
    .step-wrapper:last-child .step-arrow {
        display: none;
    }
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.step-wrapper {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    position: relative;
    display: flex;
    align-items: center;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    z-index: 1;
}

.step-arrow {
    position: absolute;
    right: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 0;
    width: 80px;
}

.arrow-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    position: relative;
}

.arrow-line::before,
.arrow-line::after {
    content: '';
    position: absolute;
    right: 0;
    height: 2px;
    width: 12px;
    background: var(--primary-color);
}

.arrow-line::before {
    transform: rotate(45deg);
    top: -4px;
}

.arrow-line::after {
    transform: rotate(-45deg);
    top: 4px;
}

.arrow-head {
    display: none;
}

@media (max-width: 1400px) {
    .process-steps {
        gap: 3rem 1rem;
    }
    
    .step-arrow {
        width: 60px;
        right: -2rem;
    }
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .step-wrapper {
        width: 100%;
        max-width: 320px;
        margin: 0;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        right: auto;
        top: auto;
        bottom: -2rem;
        left: 50%;
        width: 40px;
        margin-left: -20px;
    }
    
    .arrow-line::before,
    .arrow-line::after {
        width: 10px;
    }
    
    .step-wrapper:last-child .step-arrow {
        display: none;
    }
}

.plans-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.plans-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.plans-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
    border-radius: 2px;
}

.plans-section .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.plans-section .gradient-icon {
    font-size: 1.8rem;
    margin: 0 1rem;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.plans-section .divider-line {
    flex: 1;
    height: 2px;
    width: 50px;
    background: linear-gradient(90deg, transparent, #FF6B6B, #4ECDC4, transparent);
    max-width: 150px;
}


/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: white;
    text-decoration: none;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
}

/* Social Media Icons */
.social-section {
    display: flex;
    flex-direction: column;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #2193b0;
    transform: scale(1.1);
}

.social-icon i {
    font-size: 1.2rem;
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.float-whatsapp:hover {
    background-color: #20ba5a;
    color: white;
    transform: scale(1.1);
    box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
}

@media (max-width: 480px) {
    .float-whatsapp {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
        font-size: 25px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
        text-align: center;
    }

    .footer-section {
        padding: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 10px;
    }

    footer {
        padding: 2rem 5% 1rem;
    }
}



.dev-logo {
    height: 25px;   /* adjust size if needed */
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect */
.dev-logo-link:hover .dev-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px #00bcd4);
}