

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

:root {
    --primary-color: #00796b;
    --secondary-color: #004d40;
    --accent-color: #4db6ac;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --dark-bg: #263238;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 76px;
}

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

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-right: 30px;
}

/* About Section - Video */
.about-content {
    /* display: flex;  Remove flex display */
    align-items: center;
    /* justify-content: space-between;  Remove justify-content */
    flex-wrap: wrap; /* Add flex-wrap for responsiveness */
}

.about-video {
    /* width: 45%; Adjust as needed */
    padding: 20px;
    text-align: center;
}

.about-video video {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.about-text {
    /* width: 55%; Adjust as needed */
    text-align: right; /* Align text to the right */
    padding: 20px;
}

/* Style adjustments for smaller screens */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-video {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .about-text {
        width: 100%;
        text-align: center;
    }
}

/* Add general row and col classes for the layout */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-6 {
    width: 50%;
    padding: 15px;
}

@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
    }
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-top: 40px;
    padding-bottom: 40px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    color: var(--text-color) !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


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

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

/* Section Styles */
section {
    /* padding: 5rem 0; */
}

section h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

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

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}


/* Responsive Design */
@media (max-width: 992px) {
  body.mobile-device .animate-on-scroll.animate__animated {
    animation: none !important;
  }
  .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
      
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}




/* Template CSS */

/* Desktop styles (similar to Bootstrap) */
.custom-navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.5rem 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    margin-left: 1.5rem;
}

.navbar-links a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
}

.navbar-links a.active {
    color: #007bff;
}

.navbar-contact a {
    color: #333;
    text-decoration: none;
}

/* Mobile styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    position: relative;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #333;
    left: 0;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    bottom: -8px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1002;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1001;
    }
    
    .navbar-menu.active {
        transform: translateX(0);
    }
    
    .navbar-links {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .navbar-links li {
        margin: 1rem 0;
    }
    
    .navbar-links a {
        color: white;
        font-size: 1.5rem;
    }
    
    .navbar-contact a {
        color: white;
        font-size: 1.2rem;
    }
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 77, 64, 0.8), rgba(0, 77, 64, 0.8));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        background: rgba(44, 62, 80, 0.7);
    }
    50% {
        background: rgba(44, 62, 80, 0.5);
    }
    100% {
        background: rgba(44, 62, 80, 0.7);
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.custom-btn {
    font-size: 1.2rem;
    padding: 15px 35px;
    background-color: #164b7f !important;
    border-color: #164b7f !important;
}
.custom-btn2 {
    font-size: 1.2rem;
    padding: 15px 35px;
    background-color: #164b7f !important;
    border-color: #164b7f !important;
}


/* Hero Slider Styles */
.hero .slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

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

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

.hero .slide-layer {
    color: #fff;
    padding: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero .slide-layer a {
    font-size: 20px;
    margin-left: 5px;
    margin-right: 5px;
}
.hero .slider-buttons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero .slider-buttons button {
    background: none;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 10px;
}

.hero .slider-buttons button:hover {
    color: var(--accent-color);
}

.hero .slide-layer h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}



/* About Section */
.about {
    background-color: var(--light-bg);
    padding: 100px 0;
}


.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item .counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.highlighted-text {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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


/* Vision and Mission Sections */
.vision, .mission {
    padding: 100px 0;
}

.vision .row, .mission .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.vision .col-md-6, .mission .col-md-6 {
    padding: 20px;
}

.vision img, .mission img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.vision h2, .mission h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: right;
    transform: translateX(-5%);

}

.vision p, .mission p {
    line-height: 1.8;

    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.vision h2::after, .mission h2::after {
    right: 0;
    left: auto;
}


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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 20px;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.service-card .content {
    padding: 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}
.service-card:hover h3::after {
    width: 200px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(0%);

}

.service-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}



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

.news h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 20px;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.news-content {
    padding: 2rem;
    text-align: center;
}

.news-date {
    display: inline-block;
    color: #fff;
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}


    .gallery-item img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    filter: grayscale(100%);
}

.gallery-item img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-grid {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.gallery-item {
    text-align: center;
    margin: 10px;
    display: none; /* Hide initially */
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-item img:active {
    border: 3px solid var(--primary-color);
}

/* Slideshow Styles */
@media (max-width: 767px) { /* Mobile */
    .gallery-grid {
        justify-content: center; /* Center items */
    }
    .gallery-item {
        width: 100%; /* Show 1 image */
    }
}

@media (min-width: 768px) and (max-width: 991px) { /* Tablet */
    .gallery-item {
        width: 40%; /* Show 2 images */
    }
}

@media (min-width: 992px) { /* Desktop */
    .gallery-item {
        width: 30%; /* Show 3 images */
    }
}

.slideshow-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent scroll */
}

.slideshow-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slideshow-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-top: 20px;
    position: absolute;
    top: 50%;
}

.navigation-buttons button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.navigation-buttons button:hover {
    background-color: #009688;
}


/* Contact Section */
.contact {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

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

.contact-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    direction: ltr;
}

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

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p,.contact-item a {
    color: var(--text-color);
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-form button i {
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        text-align: center;
        grid-template-columns: 1fr;
    }

    .contact-item {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }
}



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

.map-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 20px;
    justify-content: center;
}



/* panel Section */
.panel {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.panel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.panel-banner {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.panel-banner:hover {
    transform: scale(1.02);
}


/* FAQ Section */
.faq {
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}



/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: #fff;
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-section.about p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-section .contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section .contact-info i {
    color: var(--accent-color);
}

.socials {
    
    display: flex;
    gap: 1rem;
    flex-direction: row;
    justify-content: flex-end;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul a:hover {
    color: var(--accent-color);
    transform: translateX(-5px);
}

.footer-section ul a i {
    font-size: 0.8rem;

}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}



.footer-section img.logo{
    width: 200px;
}


@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .socials {
        justify-content: center;
    }

    .footer-bottom .col-6 {
        text-align: center;
    }
}
.go-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #607D8B;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 1000;
}

.go-to-top:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}



.floating-button {
    position: fixed;
    bottom: 80px; /* Adjusted bottom position */
    left: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #607D8B;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 1000;
    margin-bottom: 10px; /* Space between buttons */
}

.floating-button:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Specific styles for WhatsApp button */
.whatsapp-button {
    bottom: 140px; /* Position above the phone button */
    background-color: #25D366; /* WhatsApp green */
}

/* Specific styles for Phone button */
.phone-button {
    bottom: 200px; /* Position above the go-to-top button */
    background-color: #007bff; /* A typical blue color */
}

