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

body {
    font-family: "Marcellus", serif;
    font-weight: 500;
}

/* Header styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #6F9A37;
    color: white;
    position: relative;
}

.header .logo img {
    height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fcfcfc; /* Match with the overall theme */
 
    line-height: 1.1; /* Ensures the text is evenly spaced vertically */
   
    align-items: center; /* Vertically centers the text if there's only one line */
    padding-top: 5px; /* Optional: Adds extra top spacing for perfect balance */
    padding-bottom: 5px; /* Optional: Adds extra bottom spacing for perfect balance */
}

/* Menu styling */
.menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.menu a:hover {
    background-color: #6F9A37;
    border-radius: 4px;
}

/* Submenu styling */
.menu .submenu {
    display: none;
    list-style: none;
    background-color: #6f9a37;
    color: black;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: -1px;
    padding: 10px;
    z-index: 1000;
    width: 200px;
}

.menu .submenu li {
    white-space: nowrap;
}

.menu .submenu a {
    color: white;
    padding: 5px 15px;
    display: block;
}

.menu .submenu a:hover {
    background-color: #6F9A37;
}

/* Show submenu on hover (desktop view) */
.menu li:hover .submenu {
    display: block;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    background-color: white;
    height: 3px;
    width: 25px;
    margin: 3px 0;
}

/* Mobile menu toggle */
#menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background-color: #6F9A37;
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        padding: 20px 0;
        animation: slideIn 0.3s ease-in-out;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
    }

    .menu .submenu {
        display: none;
        position: relative;
        background-color: #8FBF4D;
        width: 100%;
        left: 0;
        top: 0;
    }

    /* Show menu when checked */
    #menu-toggle:checked + .hamburger + .menu {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    /* Show submenu on click in mobile */
    .menu li.active .submenu {
        display: block;
    }
}

/* Animation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}
.hero-section {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 20px;
    background-color: #A9C47F;
    background-size: cover;
    background-position: center;
    
    margin: 0; /* Remove margin */
}

.hero-image {
    flex: 1;
    max-width: 500px;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    height: 500px;
 
}

.our-story {
    flex: 1;
    max-width: 60%;
    min-width: 300px;
    
    padding: 20px;
    
}

.our-story h2 {
    font-size: 4rem;
    font-family: "Marcellus", serif;
    font-weight: 500;
    margin-bottom: 15px;
}

.our-story p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.statistics {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 300px;
    padding: 15px;
    /* background-color: #f4f4f4; */
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333333;
}

.stat-item p {
    font-size: 1rem;
    color: #333;
}

.principles-section {
    padding: 60px 20px;
    text-align: center;
}

.principles-section h2 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 40px;
    font-family: "Marcellus", serif;
    color: #333;
}

/* Card Container */
.card-container {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: center;

}

/* Card Styling */
.card {
    width: 300px;
    height: 350px;
    perspective: 1000px;
}

.card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
    
}


.card-front {
    background-color: #6F9A37; /* Green background for the front */
}

.card-back {
    background-size: cover;
    background-position: center;
    transform: rotateY(180deg);
}

/* Card 1: Plain text initially */
.card1 .card-front {
    background: linear-gradient(to top, #2d2217, #a1723c);
    /* Green background for the front */
}
.card1 .card-back {
    background-image: url('compassion.jpg');
    filter: grayscale(50%);
}

/* Card 2: Image visible initially */
.card2 .card-front {
    background-image: url('inno1.jpg');
    filter: grayscale(50%);
}
.card2 .card-back {
    background: linear-gradient(to top, #2d2217, #a1723c);
    /* Green background for the back */
}

/* Card 3: Plain text initially */
.card3 .card-front {
    background: linear-gradient(to top, #2d2217, #a1723c);
    /* Green background for the front */
}
.card3 .card-back {
    background-image: url('integrity.jpg');
    filter: grayscale(50%);
}

/* Card 4: Image visible initially */
.card4 .card-front {
    background-image: url('well.jpg');
    filter: grayscale(50%);
}
.card4 .card-back {
    background: linear-gradient(to top, #2d2217, #a1723c);
/* Green background for the back */
}
/* Add slide-up animation */
@keyframes slideUp {
    from {
        transform: translateY(50px); /* Start below the section */
        opacity: 0; /* Initially hidden */
    }
    to {
        transform: translateY(0); /* Move to original position */
        opacity: 1; /* Fully visible */
    }
}

.slide-up {
    animation: slideUp 1s ease-out forwards;
}

/* Optional: Add some transition for smoothness on other elements inside the section */
.card {
    opacity: 0; /* Initially hidden */
    transition: opacity 1s ease-out;
}

.card.slide-up {
    opacity: 1; /* Fade in when triggered */
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .card-container {
        gap: 15px;
        justify-content: center;
    }

    .card {
        width: 200px;
        height: 300px;
    }

    .principles-section h2 {
        font-size: 2rem;
    }
    .card-front, .card-back {



font-size: 1.5rem;

}
}
/* Default styles already optimized for smaller screens */

@media (min-width: 1400px) {
.principles-section {
padding: 80px 40px; /* Increase padding for larger screens */
}

.principles-section h2 {
font-size: 2.5rem; 
}

.card-container {
gap: 30px; 
}

.card {
width: 350px; /* Larger card width for 1900px+ screens */
height: 400px; /* Adjust card height proportionally */
}

.card-front, .card-back {
font-size: 2.2rem; /* Slightly larger font size inside the cards */
}
}

@media screen and (max-width: 1239px){

    .hero-image img {
        width: 100%;
        height: 350px;
    }
    .our-story {
        flex: 1;
        max-width: 60%;
        min-width: 300px;
        padding: 20px;
    }
    .statistics {
        margin-top: 120px;
        display: flex
    ;
        gap: 20px;
        margin-left: -389px;
        flex-wrap: wrap;
    }

}

@media screen and (max-width: 480px) {
    .card {
        width: 180px;
        height: 250px;
    }
    
    .principles-section h2 {
        font-size: 2rem;
    }
}

.founder-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    margin: 0 auto;
 
    border-left: 8px solid #6F9A37; /* Green left border */
    background-color: #d3ba7569 /* Optional: to highlight the section */
}
    .founder-info {
        flex: 1;
        font-family: "Marcellus", serif;
        padding: 20px;
        max-width: 1000px;
    }

    .founder-info h2 {
        font-size: 2rem;
        margin-bottom: 10px;
        color: #333;
    }

    .founder-info p {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
    }

    .founder-info .quote {
        font-size: 1.5rem;
        color: #333;
        text-align: center;
        margin-top: 20px;
    }

    .founder-info .quote:before {
        content: "“";
        font-size: 4rem;
        color: #333;
        position: relative;
        top: -10px;
        left: -20px;
    }

    .founder-info .lines-from-founder {
        font-size: 1.2rem;
        font-style: italic;
        color: #555;
        text-align: center;
        margin-top: 20px;
    }

    .founder-image {
        flex: 1;
        max-width: 400px;
        min-width: 250px;
    }

    .founder-image img {
        width: 100%;
        height: auto;
       
    }
    @keyframes slideUp {
        from {
            transform: translateY(50px); /* Start below the section */
            opacity: 0; /* Initially hidden */
        }
        to {
            transform: translateY(0); /* Move to original position */
            opacity: 1; /* Fully visible */
        }
    }
    
    .slide-up {
        animation: slideUp 1s ease-out forwards;
    }
    
    .team-section {
        padding: 20px 20px;
        text-align: center;
        background: linear-gradient(#ede3c673, #eee3c752), url(back1.jpg) center / cover no-repeat;
        color: white;
    }

    .team-section h2 {
        font-size: 3rem;
        margin-bottom: 40px;
        color: #333;
        margin-top: -10px;
        font-weight: 500;
    }
    .team-section h1 {
        font-family: "Corinthia", cursive;
        font-size: 2rem;
      
        color: #333;
        font-weight: 500;
    }

    .team-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .team-card {
        background: white;
        color: #333;
        /* height: 600px; */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        width: 300px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .team-card img {
    width: 100%;
    height: 350px; /* Fixed height for uniform card images */
    object-fit: cover;
    margin: 0; /* Remove margin */
}

    .team-card h3 {
        font-size: 1.2rem;
        margin: 10px 0;
    }

    .team-card p {
        color: #777;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .social-icons {
        /* display: flex; */
        justify-content: center;
        /* gap: 15px; */
        margin: 10px 0;
    }

    .social-icons a {
        color: #777;
        font-size: 1.2rem;
        transition: color 0.3s;
        text-decoration: none;
    }

    .social-icons a:hover {
        color: #6f9a37;
    }

    .view-profile-section {
        background-color: #6f9a37;
        color: white;
        text-align: center;
        padding: 15px;
        cursor: pointer;
        margin-top: auto;
        transition: background-color 0.3s;
    }

    .view-profile-section:hover {
        background-color: #5e4308;
    }

    /* Modal Styles */
    .modal {
        display: none; /* Hidden by default */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .modal-content {
        background: white;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        width: 80%;
        max-width: 400px;
    }

    .modal-content img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 20px;
    }

    .modal-content h3 {
        margin-bottom: 10px;
    }

    .modal-content p {
        font-size: 1rem;
        color: #555;
        margin-bottom: 20px;
    }

    .close-btn {
        background-color: #6f9a37;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
    }
     @media (max-width: 768px) {
    .team-section h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .team-section h1 {
        font-family: "Corinthia", cursive;
        font-size: 2rem;
        color: #333;
        font-weight: 500;
    }

    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        width: 50%;
    }

    .team-card h3 {
        font-size: 1.1rem;
    }

    .team-card p {
        font-size: 0.85rem;
    }

    .modal-content {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 15px;
    }

    .team-section h2 {
        font-size: 1.5rem;
    }

    .team-card h3 {
        font-size: 1rem;
    }

    .team-card p {
        font-size: 0.8rem;
    }

    .social-icons a {
        font-size: 1rem;
    }
} 

.faq-heading {
    text-align: center;
    font-size: 40px;
    margin-top: 45px;
}
.faq-section {
    max-width: 1000px; /* Increase the width */
    margin: 0 auto;
    padding: 20px; /* Add padding inside the section */
    display: flex;
    font-family: "Marcellus", serif;
    flex-wrap: wrap; /* Enable wrapping for responsive design */
    gap: 20px; /* Space between items */
}

.faq-item {
    flex: 1 1 calc(50% - 20px); /* Two items per row with equal spacing */
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}

.faq-question {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px 10px;
    color: #000000;
    font-size: 1.2rem;
    background-color: #52852b00;
    border-radius: 3px;
    border-bottom: 2px solid #5ad322;
    transition: background-color 0.3s ease;
}
.faq-answer {
    margin-top: 8px;
    padding-left: 15px;
    display: none;
    font-size: 1rem; /* Increase font size for readability */
    color: #333;
}
a{
    text-decoration: none;
}
.contact-button-faq {
    display: block;
    margin: 20px auto;
    padding: 15px 30px; /* Bigger button */
    background-color: #6F9A37;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem; /* Bigger font */
    text-align: center;
}

.common-heading {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 2rem;
}
@media (min-width: 1200px) {
    .faq-section {
        max-width: 1200px; 
        gap: 30px; 
    }

    .faq-item {
        flex: 1 1 calc(50% - 20px); 
    }

    .faq-question {
        font-size: 1.5rem; 
        padding: 25px 15px; 
    }

    .faq-answer {
        font-size: 1.2rem; 
    }
}
@media (max-width: 600px) {
    .faq-item {
        flex: 1 1 100%; 
    }
}
/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        align-items: center;
    }

    .statistics {
        display: none;
    }

    .hero-image, .our-story {
        max-width: 100%;
        min-width: auto;
    }

    .our-story h2 {
        font-size: 2rem;
    }

    .our-story p {
        font-size: 1rem;
        text-align: justify;
    }
    .card-container {
        flex-direction: column;
        gap: 15px; /* Space between stacked cards */
        align-items: center;
    }

    .card {
        width: 90%;
        height: 250px;
    }

   
    .founder-section {
        flex-direction: column; /* Stack content vertically on small screens */
        align-items: center;
    }

    .founder-info {
        text-align: center; /* Center align text on mobile */
        padding: 0;
        max-width: 100%;
    }

    .founder-image {
        max-width: 80%;
        margin-top: 20px; /* Space between text and image */
    }

    .founder-info h2 {
        font-size: 2rem;
    }

    .founder-info p {
        font-size: 1rem;
        text-align: justify;
    }

    .founder-info .quote {
        font-size: 1.2rem;
    }

    .founder-info .lines-from-founder {
        font-size: 1rem;
    }
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        margin-top: 0; /* Remove overlap */
        margin-bottom: 20px;
    }

    .background-image {
        height: 100%; /* Make background image fully visible */
        position: static; /* Make it part of the flow */
    }
}



@media screen and (max-width: 480px) {
    .card {
        width: 100%;
        height: 220px;
    }

   
}

.why-choose-us {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: #444;
  
    margin-bottom: 10px;
}
.why-choose-us h1 {
    
    font-family: "Corinthia", cursive;
    color: #333;
    font-size: 2rem;
    
}

.why-choose-us p {
    font-size: 1rem;
    color: #777;
    margin-right: 15%;
    margin-left: 15%;
    margin-bottom: 30px;
}

.content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    width: 100%; /* Ensure it stretches fully */
}

.progress-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.progress-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #444;
}

.progress-bar {
    width: 100%; /* Stretch to full width */
    height: 25px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(to right, #8fbf4d, #52852b);
    border-radius: 12px;
    transition: width 2s ease-in-out;
}

.progress-percent {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #3b3b3b;
    font-weight: bold;
}

/* Image Section */
.image-container {
    flex: 1;
    max-width: 500px;
}

.image-container img {
    width: 70%;
    height: 500px;
    border-radius: 10px;
    /* box-shadow: 0 -11px 40px #6f9a37; */
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .progress-container {
        max-width: 80%; /* Full width on mobile */
        padding: 0 10px; /* Add some padding for spacing */
    }

    .progress-item h3 {
        font-size: 1rem;
    }

    .progress-bar {
        height: 20px; /* Larger bars for better visibility */
    }

    .progress-percent {
        font-size: 1.1rem;
    }
    .why-choose-us h2 {
        font-size: 2rem;
        color: #444;
        font-weight: 500;
        margin-bottom: 10px;
    }
    .image-container img {
        width: 100%;
        height: 300px;
        margin: 0 auto;
        display: block;
    }
}
@media (min-width: 1400px) {
    .progress-container {
        max-width: 800px; /* Wider container for extra-large screens */
    }

    .progress-item h3 {
        font-size: 1.5rem; /* Larger headings */
    }

    .progress-bar {
        height: 30px; /* Slightly taller bars */
    }

    .image-container {
        max-width: 600px; /* Larger image */
    }

    .why-choose-us h2 {
        font-size: 3rem; /* Bigger heading */
    }

    .why-choose-us p {
        font-size: 1.2rem; /* Slightly larger paragraph text */
    }
}
 /* Footer styling*/
.footer {
  /* background-image: url('footer.png'); */
  background-color: #79a232;  /* Match the green color */
  color: #fff;
  padding: 15px 20px;
  overflow-x: hidden;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-left: 33px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

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

.footer-column ul li {
  margin-bottom: 10px;
  color: #fff;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column p {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-column form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-column input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  flex: 1;
}

.footer-column button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #c2a583; /* Match the beige color */
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.footer-column button:hover {
  background-color: #b39572;
}

/* Footer Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid #fff;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 12px;
  margin-bottom: 0px;
}

.social-icons {
  margin-top: 20px;
  /* display: inline-block; */
}
.social-icons a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #00aced; /* Change to desired hover color */
}
.social-icons img {
  width: 20px;
  height: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      text-align: center;
  }

  .footer-bottom {
      flex-direction: column;
      text-align: center;
      margin-bottom: 10px;
      /* gap: 10px; */
  }

  .footer-column {
      min-width: 100%;
      margin-left: 0px;
      justify-items: center;
  }

}
/* Sticky WhatsApp Icon Styling */
.whatsapp-icon {
  position: fixed;
  bottom: 80px; /* Increased distance from bottom for better spacing */
  right: 20px; /* Distance from right */
  z-index: 1000;
  border-radius: 50%; 
  padding: 0px;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.whatsapp-icon img {
  width: 60px; /* Default size for the logo */
  height: 60px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .whatsapp-icon {
    bottom: 150px; /* Increased spacing for smaller screens */
    right: 15px;
    padding: 6px; /* Adjust padding */
  }

  .whatsapp-icon img {
    width: 55px; /* Smaller logo for mobile */
    height: 55px;
  }
}

@media (max-width: 480px) {
  .whatsapp-icon {
    bottom: 120px; /* Increased spacing for very small screens */
    right: 10px;
    padding: 2px;
  }

  .whatsapp-icon img {
    width: 40px; /* Adjust logo size */
    height: 40px;
  }
}
/* ============== hover effect for redirecting to xl management in the footer copyrights================= */
        .xl-credit {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            /* No underline */
            color: #f2f2f2;
            /* Default color */
            font-size: 12px;
            font-family: 'Marcellus', serif;
            transition: color 0.3s ease;
        }
    
        .xl-credit:hover {
            color: #385210;
            /* Hover color (adjust to match your design) */
        }
    
                .xl-logo {
                    height: 22px;
                    /* ✅ Fixes giant size */
                    width: auto;
                    max-width: 100%;
                    /* Prevents overflow */
                    object-fit: contain;
                    display: inline-block;
                }
/* ======================= Scroll to Top Button Styling ======================= */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
    background-color: #1beb08;
    color: white;
    border: none;
    border-radius: 45%;
    width: 45px;
    height: 45px;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    outline: none;
}

.scroll-to-top:hover {
    background-color: #3af700;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile responsiveness for scroll-to-top button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px; /* Move up to avoid WhatsApp button */
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 75px; /* Adjust for mobile WhatsApp button */
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Phone link behavior - disable on desktop, enable on mobile */
@media (min-width: 768px) {
    .phone-link {
        pointer-events: none;
        cursor: default;
    }
}

@media (max-width: 767px) {
    .phone-link {
        pointer-events: auto;
        cursor: pointer;
    }
}