/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #1c1c2e; /* Dark blue background */
    color: #ffffff; /* White text */
    margin: 0;
    padding: 0;
}

/* Header Styles */
#header {
    background-color: #d63384; /* Dark pink background for header */
    padding: 20px;
}

#header h1 {
    font-family: 'Playfair Display', serif; /* Fancy, stylish font for the header */
    font-size: 2.5rem;
    margin: 0;
}

#header nav a {
    font-family: 'Roboto', sans-serif; /* Modern font for the links */
    font-size: 1.1rem;
    color: #ffffff;
    margin-left: 20px;
    transition: color 0.3s ease; /* Animation for link hover */
}

/* Animation on links hover */
#header nav a:hover {
    color: #ffdeea; /* Light pink on hover */
    text-decoration: underline;
}

/* Hero Section */
#hero {
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #ffffff;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fading effect on the background image */
    z-index: 1;
}

#hero h1,
#hero p {
    z-index: 2;
    font-family: 'Playfair Display', serif;
}

/* Zoom Animation for Images */
img {
    transition: transform 0.3s ease-in-out;
}

img:hover {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* Footer Styles */
#footer {
    background-color: #d63384; /* Dark pink background for footer */
    padding: 20px;
    color: #ffffff;
}

#footer form input[type="email"] {
    font-family: 'Roboto', sans-serif;
    padding: 10px;
    width: 80%;
}

#footer form button {
    background-color: #ffdeea;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    color: #d63384;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#footer form button:hover {
    background-color: #ffffff;
}

/* Link Hover Animation */
a {
    color: #ffdeea; /* Light pink links */
    transition: color 0.3s ease, transform 0.3s ease; /* Animation for color and slight transform */
}

a:hover {
    color: #ffccff; /* Lighter pink on hover */
    transform: scale(1.05);
}

/* Modern Font for General Text */
h1,
h2,
h3,
h4,
h5,
p {
    font-family: 'Roboto', sans-serif;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Section Headings */
h1.text-center {
    font-family: 'Playfair Display', serif;
    color: #ffdeea; /* Light pink for headers */
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Specialization and Testimonials Sections */
#specialization .col-md-4,
#testimonials .col-md-4 {
    margin-bottom: 20px;
}

/* Additional Modern Decorations */
hr {
    border-top: 2px solid #d63384; /* Dark pink line for hr */
    width: 50%;
    margin: 30px auto;
}

#cookie-consent {
    
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    padding: 10px 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
  }
 
  #cookie-consent.hidden {
    display: none;
  }
 
  #cookie-consent button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
  }
 
  #cookie-consent button:hover {
    background-color: #0056b3;
  }
