* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
    background-color: rgb(241, 241, 241);
    color: #1a472a;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.nav-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    flex-wrap: nowrap !important;
}

.logo-img {
    height: auto;
    max-height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    /* gap: 3rem; */
    image-rendering: auto;
}

.nav-menu {
    justify-content: flex-end;
    display: flex !important;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: nowrap !important;
    align-items: center;
    width: auto;
    overflow-x: auto;
}

.nav-menu a {
    font-weight: 600;
    color: #0e4421;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    font-weight: 700;
    transform: scale(1);
    color: blueviolet;
}

.mobile-menu-btn {
    display: none !important;
    background: none;
    border: none;
    color: #0e4421;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    box-shadow: 0 0 1px rgba(0.5, 0.5, 0.5, 0.05);
}

.mobile-menu-btn:hover {
    font-weight: 700;
    transform: scale(1);
    color: blueviolet;
}

/* Main Content */
.main-content {
    margin-top: 78px;
}

.page {
    display: none;
    box-sizing: border-box;
    width: 100%;
    min-height: calc(100vh - 80px);
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    /* min-height: 60vh; */
    background-image: url('images/solar-back.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    text-align: center;
    color: white;
    padding: 12rem 1rem 4rem;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1px;
    overflow: hidden;

}

.hero h1 {
    color: #fbff02;
    font-size: 3.5rem;
    margin-bottom: 10rem;
    text-shadow: 2px 2px 4px rgba(2.5, 3.5, 2.5, 4.5);
}

.hero h3 {
    color: #feda75;
    font-size: 1.8rem;
    margin-bottom: 4rem;
    margin-top: -8.9rem;
    text-shadow: 2px 2px 4px rgba(2.5, 3.5, 2.5, 4.5);
}

.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.cta-button {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    /* margin: 0.5rem; */
}

.cta-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Stats */
.counter-section {
    background-color: #fff;
    padding: 40px 20px;
}

.counter-container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.stats-box {
    /* background-color: rgb(243, 243, 243); */
    border-radius: 12px;
    padding: 30px 20px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
    transition: transform 0.3s ease;

}

.stats-box:hover {
    transform: translateY(-5px);
}

.counter {
    font-size: 36px;
    font-weight: bold;
    color: rgb(5, 8, 102);
    margin-bottom: 10px;
}

.stats-box p {
    font-weight: 600;
    font-size: 16px;
    color: #1a472a;
}


/* our solar Solution */
.solar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
    align-items: start;
    box-sizing: border-box;
}

.solar-card {
    border: 2px solid green;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: hidden;
}

.solar-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: block;
}

.solar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 10px;
    color: #1a472a;
}

.solar-card:hover {
    transform: translateY(-5px);
}

.solar-card:hover {
    transform: translateY(-5px);
}

.solar-card button {
    background: #002aff;
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.solar-card button:hover {
    background: #0055ff;
}

.Check-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Correct button class */
.Check-more-btn {
    background: #ffd700;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: large;
    box-shadow: 0 2px 4px rgb(112, 110, 21);
}

/* Corrected hover class */
.Check-more-btn:hover {
    background: #e8d153;
}

@media (min-width: 0px) {
    .Check-more-container {
        display: flex; 
        justify-content: center;
        align-items: center;
    }
}




/* YouTube Videos Section */
.youtube-section {
    padding: 2rem 1rem;
    background: #f9f9f9;
}

.youtube-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #1a472a;
    margin-bottom: 2.5rem;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
    align-items: start;
}

.youtube-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.youtube-video iframe {
    width: 100%;
    height: 200px;
    border: none;
}


.youtube-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.youtube-item:hover {
    transform: translateY(-4px);
}

.youtube-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.youtube-content h3 {
    color: #1a472a;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

@media (max-width: 480px) {
    .youtube-video iframe {
        height: 180px;
    }
}


/* === ABOUT SECTION === */
.about-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: auto;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-left,
.about-right {
    flex: 1 1 48%;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 10px;
}

.about-subtext {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

.about-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background-color: #2a7d2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h3 {
    margin-top: -2px;
    margin: 0 2 3px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.feature-item p {
    color: #555;
    font-size: 14px;
}

/* RIGHT BOX */
.about-box {
    background-color: #1e3a8a;
    color: white;
    border-radius: 15px;
    padding: 30px;
}

.about-box h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-box p {
    font-size: 15px;
    margin-bottom: 25px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    font-size: 15px;
    margin-bottom: 10px;
}

.about-btn {
    background-color: #facc15;
    color: #1e3a8a;
    padding: 12px 20px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.about-btn:hover {
    background-color: #fcd34d;
}

/* Responsive */
@media (max-width: 768px) {

    .about-left,
    .about-right {
        flex: 1 1 100%;
    }

    .about-grid {
        gap: 30px;
    }
}



/* Recent project / Sections */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a472a;
}

/* Recent  Project */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-grid a {
    text-decoration: none;
    color: inherit;
}

.feature-card {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(5, 95, 2, 0.05);
    text-align: center;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    object-fit: cover;
}

.feature-card h3 {
    margin: 0.5rem 0;
    color: #1a472a;
}

.feature-card p {
    font-weight: 450;
    color: #333;
}

/* Products*/
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.product-card {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(5, 95, 2, 0.05);
    text-align: center;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.3s;
    border-top: 4px solid #ffd700;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    max-width: 100%;
    height: 280px;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
    margin: 0 auto;
}

.product-card h3 {
    margin: 0.5rem 0;
    color: #1a472a;
}


.product-card .price {
    color: green;
    font-weight: bold;
}

.buy-now {
    display: inline-block;
    margin-top: 10px;
    background-color: #1a472a;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

/* h2.section-title {
    text-align: center;
    margin-top: 2rem;
    font-size: 2rem;
} */

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.modal-content table td {
    padding: 8px;
    border: 1px solid #ddd;
}

.close-btn {
    float: right;
    font-size: 20px;
    cursor: pointer;
}


/* Product Showcase */
.product-range-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.product-range-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.product-range-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a472a;
}

.view-all-link {
    color: #00b33c;
    text-decoration: none;
    font-weight: 600;
}

.view-all-link:hover {
    text-decoration: underline;
}

.product-range-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.product-range-grid a {
    text-decoration: none;
    color: inherit;
}

.product-div {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s;
    border-top: 4px solid #ffd700;
}

.product-div:hover {
    transform: scale(1.05);
}

.product-div img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}


.product-div p {
    margin-top: 0.8rem;
    font-weight: 600;
    color: #333;
}


/* Service Section */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
    align-items: start;
}

.service-card {
    display: flex;
    justify-content: space-between;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    padding: 1rem;
    flex-direction: column;
    transition: transform 0.3s;
    border-top: 4px solid #ffd700;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.service-icon {
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #1a472a;
}

.service-card li {
    margin-left: 15px;
}

.service-card h3 {
    display: flex;
    justify-content: center;
    color: #1a472a;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.service-card button {
    background: #002aff;
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.service-card button:hover {
    background: #0055ff;
}

/* owner-section */
.owner-section {
    background-color: #f8f9fa;
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.owner-section:hover {
    transform: translateY(-5px);
}

/* Team Member Grid Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 1000px;
    padding: 0 1rem;
}

.team-member {
    background-color: #f8f9fa;
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-image {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #1a472a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

/* Blog section */
.blog-hero {
    background: url('images/solar-banner.jpg') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.blog-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
}

.blog-hero .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 20px 10px 0;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.btn-primary {
    background: #1a472a;
    color: white;
}

.btn-outline {
    border: 2px solid white;
    background: transparent;
    color: white;
}

.container {
    display: block;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
    align-items: start;
}

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
    border-radius: 8px;
}

.blog-card img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(50, 149, 0, 0.5);
}

.blog-card .content {
    padding: 20px;
}

.tag {
    background: #1a472a;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 10px;
}

.blog-card h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1a472a;
}

.blog-card p {
    font-size: 0.9rem;
    color: #555;
}

.blog-card a {
    display: inline-block;
    margin-top: 10px;
    color: #1a472a;
    border-radius: 5%;
    background-color: transparent;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.4s;
}

.blog-card a:hover {
    transform: translateY(-5px);
    background-color: #102c60;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: white;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a472a;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d5a3d;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem auto;
    max-width: 300px;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Social - Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Footer */
.footer {
    background-color: rgb(241, 241, 241);
    color: #1a472a;
    text-align: center;
    padding: 2rem 1rem;
    /* text-align: center; */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200PX;
    margin: auto;
    text-align: center;
    align-items: flex-start;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: #1a472a;
    /* font-weight: 600; */
    /* margin-bottom: 2rem; */
}

.footer-section {
    font-size: 0.90rem;
    font-weight: 500;
    line-height: 1.6;
    word-wrap: break-word;
}

.footer-section .logo-img {
    width: auto;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    color: #0e4421;
    margin-bottom: 1rem;
}

.footer-section p {
    margin: 0.5rem 0;
}

.footer-section a {
    color: #0e4421;
    text-decoration: none;
    display: blocK;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
    font-weight: 500;
}

.footer-section a:hover {
    font-weight: 700;
    transform: scale(1);
    color: blueviolet;
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons a {
    background-color: #0e4421;
    padding: 0.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 0.90rem;
    font-size: 1rem;
    color: #333;
    border-top: 1px solid #2d5a3d;
    /* margin-top: 2rem; */
}

@media (max-width: 500px) {
    .footer-content {
        text-align: center;
        grid-template-columns: 1fr;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-section {
        margin-bottom: 1rem;
    }
}

/* Legal Pages Styling */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.8;
}

.legal-content h3 {
    color: #1a472a;
    margin: 2rem 0 1rem 0;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }

    .nav-menu {
        display: none !important;
        flex-direction: column;
        background-color: rgb(241, 241, 241);
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        padding: 1rem;
        gap: 1rem;

    }

    .nav-menu.active {
        display: flex !important;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }


    .features-grid,
    .products-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .social-icons {
        flex-wrap: wrap;
    }
}


/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
}

.floating-whatsapp:hover {
    background: #128c7e;
    transform: scale(1.1);
}