* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    font-family: 'Arial', sans-serif;
}

.address-bar {
    padding: 10px 0;
    background-color: rgb(37, 45, 94);
    border-bottom: 1px solid #ddd;
    overflow-x: auto;
    
}

.contact-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 16px;
}
  .contact-item img {
      width: 30px;
      height: 30px;
      margin-right: 10px;
  }
.contact-item a,
.contact-item p {
    text-decoration: none;
   
    color: white;
    font-size: 16px;
}


.contact-item a:hover {
    color: #007BFF;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgb(247,247,247);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
    width: 100%;
    max-width: 300px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links li:last-child {
    margin-right: 0;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #a4a0c5;
}

/* Appointment Button */
.appointment-btn {
    height: 50px;
    line-height: 50px;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(80,29,173);
    color: #ffffff !important;
    border-radius: 5px;
    text-decoration: none;
}

.appointment-btn:hover {
    background-color: rgb(130, 86, 212);
    color: #ffffff !important;
}

/* Hide menu on mobile devices and display hamburger icon */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
}

.hamburger .bar {
    height: 4px;
    width: 100%;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Mobile responsive styling */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: rgb(247,247,247);
        width: 100%;
        height: calc(100vh - 70px);
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger {
        display: flex;
    }
}


/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: about-pulse 2s infinite;
}

.about-whatsapp-icon {
    background-color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.about-whatsapp-icon i {
    font-size: 24px;
    color: #25D366;
}

.about-whatsapp-text {
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.about-whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

@keyframes about-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .about-whatsapp-text {
        display: none;
    }
    
    .about-whatsapp-button {
        padding: 10px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
}

/* Our Story Section */
.our-story {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.founder-image {
    width: 300px;
    border-radius: 50%;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Our Mission Section */
.our-mission {
    padding: 5rem 0;
}

.mission-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.mission-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background-color: #f0f8ff;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-10px);
}

.mission-item i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: #3498db;
    color: #fff;
}

.testimonial {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Awards Section */
.awards {
    padding: 5rem 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.award {
    text-align: center;
}

.award img {
    width: 100px;
    margin-bottom: 1rem;
}

/* Call to Action Section */
.cta {
    padding: 5rem 0;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-content, .mission-content {
        flex-direction: column;
    }

    .founder-image {
        width: 200px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) { 
    .whatsapp-button {
        padding: 10px; /* Reduce padding for smaller screens */
    }

    .whatsapp-icon {
        width: 30px;  /* Reduce icon size */
        height: 30px; 
    }

    .whatsapp-icon i {
        font-size: 18px; /* Reduce icon font size */
    }
} 
.site-footer {
    margin-top: 30px;
    background-color: rgb(37,45,94);
    color: #fff;
    padding: 40px 0 20px;
}
.footer-icon, .icon {
    animation: breathe 2s infinite ease-in-out;
}

@keyframes breathe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

.footer-section {
    flex: 1;
    margin-bottom: 20px;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p, .footer-section ul {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    display: inline-block;
    width: 24px;
    height: 24px;
}

.social-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 30px;
    }
}

