
body{
    padding-top:70px ;
    font-family: 'Arial', sans-serif;
}

/* Appointment Button Styling */
.appointment-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.125rem;
    color: #fff;
    background-color: #28a745;
    text-decoration: none;
    border-radius: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.appointment-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

.appointment-btn:active {
    background-color: #1e7e34;
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}



/* ==================== Navbar Styles ==================== */
/* Navbar Logo */ 
.navbar {
    background-color: #28a745; /* Keeping the original green background */
    padding: 10px 0;  /* More compact padding */
    position: fixed; /* Fix navbar at the top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding-top: 20px;
    padding-bottom:20px ;
}

.navbar .logo {
    height: 40px;  /* Smaller logo */
    width: auto;
}

/* Navbar Title Styling */
.navbar-title {
    color: #fff;
    font-family: 'Playfair Display', serif; /* Elegant serif font */
    font-size: 1.5rem; /* Smaller title size */
    font-weight: 700;
    margin-left: 10px;
}

/* Navbar Links Styling */
.navbar-nav .nav-item {
    margin-right: 15px; /* Reduced space between links */
}

.navbar-nav .nav-item .nav-link {
    font-size: 16px; /* Smaller font size */
    color: #f1f1f1; /* Light gray color for better contrast */
    font-weight: 500; /* Medium weight for better visibility */
    padding: 8px 12px;  /* Reduced padding */
    text-transform: uppercase; /* Uppercase links */
    letter-spacing: 0.5px; /* Slight spacing between letters */
    transition: all 0.3s ease; /* Smooth transitions */
}

/* Navbar Link Hover Effect */
.navbar-nav .nav-item .nav-link:hover {
    color: #28a745; /* Green color on hover */
    background-color: #fff; /* White background on hover */
    border-radius: 5px; /* Rounded corners on hover */
    transform: translateY(-3px); /* Slight lift effect */
}

/* Active Link Styling */
.navbar-nav .nav-item.active .nav-link {
    color: white;
    font-weight: 700;
    border-bottom: 3px solid #ffffff; /* Green underline for active link */
}

.navbar-nav .nav-item.active .nav-link:hover {
    color: #48d311;
    font-weight: 700;
    border-bottom: 3px solid #48d311; /* Green underline for active link */
}

/* Mobile-Specific Adjustments */
@media (max-width: 767px) {
    .navbar .logo {
        height: 35px; /* Smaller logo on mobile */
    }

    .navbar-title {
        font-size: 1.2rem; /* Smaller title font for mobile */
    }

    .navbar-nav .nav-item {
        margin-right: 10px; /* Less space between items */
    }
}


/*=================hover foe droprown=============== */
/* Show dropdown on hover */
.navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Smooth transition effect for dropdown */
.navbar .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Optional: Add a shadow to the dropdown */
.navbar .dropdown-menu {
    background-color: #28a745; /* Match navbar color */
    border: none; /* Remove border */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
}

/* Dropdown item styles */
.navbar .dropdown-menu .dropdown-item {
    color: #fff; /* White text for items */
    font-weight: 500;
    padding: 10px 20px; /* Adjust padding */
    transition: all 0.3s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
    color: #28a745; /* Green text on hover */
    background-color: #fff; /* White background on hover */
    border-radius: 5px; /* Rounded corners */
}



/* ==================== Footer Section ==================== */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
}
footer p{
    color: white;
}

/* Social Cards Styles */


  
  .social-cards {
    padding-top: 10px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
      margin-bottom: 25px;
  }
  
  .card {
    background-color: #fff;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .card .icon {
    background-color: #f9f9f9;
    padding: 20px;
  }
  
  .card .icon img {
    width: 50px;
    height: 50px;
  }
  
  .card h3 {
    margin: 10px 0;
    color: #333;
  }
  
  .card p {
    margin: 0 10px 20px;
    color: #555;
    font-size: 0.9rem;
  }
  
  /* Instagram-specific styles */
  .card.instagram {
    border-top: 4px solid #e4405f;
  }
  
  /* YouTube-specific styles */
  .card.youtube {
    border-top: 4px solid #ff0000;
  }
  
  /* Facebook-specific styles */
  .card.facebook {
    border-top: 4px solid #3b5998;
  }
  /* End of Social Cards*/

