/* General Styles */
:root {
    --primary-color: #FF7F50; /* Coral */
    --secondary-color: #333333; /* Deep Gray */
    --accent-color: #FFA500; /* Orange */
    --background-color: #f4f4f4; /* Light Gray */
    --text-color: #222222; /* Darker Text */
    --hover-color: #ffcccb; /* Light coral hover effect */
}
 
body{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #333;
}

h2 {
    text-align: center;
    color: #8e44ad;
    margin-bottom: 20px;
}

/* Header Section */
/* Header Section */
/* Set the default font for the body */
body {
    font-family: 'Roboto', sans-serif;
}

/* Set the font for headings (h1, h2, h3, etc.) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}

/* Optionally, set a fallback font in case the custom font is not available */
body {
    font-family: 'Roboto', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', Georgia, serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding: 20px 10%;
}

header .logo {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

header .logo img {
    width: 70px; /* Adjust this to the size of your logo */
    height: auto;
}

/* Mobile Responsiveness for Logo */
@media (max-width: 768px) {
    header .logo {
        font-size: 2rem;
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: var(--primary-color);
    color: #fff;
}

header .logo {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: var(--hover-color);
}


.search-bar input {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: url('Assests/c1.jpg') center center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 10%;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: red;
}

.hero .btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: var(--accent-color);
}

/* About Section */
/* About Us Section */


.services-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.service {
    text-align: center;
    width: 30%;
}

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.service h3 {
    margin-top: 15px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}
* Services Section */
.services {
    text-align: center;
    padding: 50px 20px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    width: 300px;
}

.service-card img {
    width: 100%;
    border-radius: 10px;
}

.service-card:hover {
    transform: scale(1.05);
}

/* About Us Section */
#about {
    padding: 60px 10%;
    background-color: #f4f4f4;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    color: #FF7F50; /* Coral color */
    margin-bottom: 20px;
}

#about p {
    font-size: 1.2rem;
    color: #333333; /* Dark text color */
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.6;
}

.services-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service {
    position: relative;
    width: 30%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    cursor: pointer;
    background-color: #fff; /* White background */
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.service .service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service:hover .service-content {
    opacity: 1;
}

.service h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.service p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .service {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .service {
        width: 100%;
    }

    #about h2 {
        font-size: 2rem;
    }

    #about p {
        font-size: 1rem;
    }
}
/* Services Section */
.services {
    background-color: #fff;
    padding: 50px 10%;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Title of the services */
.services h2 {
    font-size: 2.5rem;
    color: var(--primary-color); /* Coral Color */
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Paragraph under the title */
.services p {
    font-size: 1.1rem;
    color: var(--secondary-color); /* Dark Gray */
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Services container */
.services-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;  /* Space between boxes */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    margin-top: 40px;
}

/* Service card */
.service-card {
    background-color: #fafafa;
    width: 30%;  /* Three boxes in one row */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);  /* Slight elevation effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Image inside service card */
.service-card img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* Service card title */
.service-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

/* Service card paragraph */
.service-card p {
    font-size: 1.1rem;
    color: var(--secondary-color); /* Dark Gray */
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Hover effect: image zoom-in */
.service-card:hover img {
    transform: scale(1.1);  /* Image zoom effect */
}

/* Add an icon or decoration to the service card */
.service-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.service-card:hover::before {
    background-color: var(--accent-color);  /* Change color on hover */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-card {
        width: 45%;  /* Two boxes in one row on medium screens */
    }
}

@media (max-width: 768px) {
    .service-card {
        width: 100%;  /* Stack boxes vertically on smaller screens */
    }
}

/* Mobile styling */
@media (max-width: 480px) {
    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-card p {
        font-size: 1rem;
    }
}
#artists {
    padding: 50px 0;
    background-color: #f4f4f4;
  }
  #artists h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
  }
  .artist {
    text-align: center;
    margin-bottom: 30px;
  }
  .artist img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  .artist h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .artist p {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  .artist button {
    padding: 10px 20px;
    background-color: #ff6f61;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .artist button:hover {
    background-color: #e65c4f;
  }
  
/* Services Section */
.services {
    background-color: #f0f4f8;
    padding: 60px 15%;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Title of the services */
.services h2 {
    font-size: 2.8rem;
    color: #ff6b6b; /* Coral color */
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #ff6b6b;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Paragraph under the title */
.services p {
    font-size: 1.2rem;
    color: #6c757d; /* Gray color */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services container */
.services-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Service card
.service-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.3));
    width: 30%;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(255, 107, 107, 0.5));
}

.service-card .service-icon {
    font-size: 40px;
    color: #fff;
    background-color: #ff6b6b;
    border-radius: 50%;
    padding: 20px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #ff3b3b;
}

/* Service card title */
/* .service-card h3 {
    font-size: 1.9rem;
    color: #ff6b6b;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #ff3b3b;
}

/* Service card paragraph */
/* .service-card p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
} */

/* Hover effect: image zoom-in */
/* .service-card:hover img {
    transform: scale(1.1);
} */

/* Responsive Design */
/* @media (max-width: 1200px) {
    .service-card {
        width: 45%;  /* Two boxes in one row */
    

/* @media (max-width: 768px) {
    .service-card {
        width: 100%;  /* Stack boxes vertically */


/* Mobile styling */
/* @media (max-width: 480px) {
    .service-card h3 {
        font-size: 1.6rem;
    }

    .service-card p {
        font-size: 1rem;
    }
} */ */ */

.services-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom right, #fff0f6, #fce3ff);
    font-family: 'Poppins', sans-serif;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #800080;
    margin-bottom: 60px;
    position: relative;
    animation: fadeIn 1s ease-in-out;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
  
  .service-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
    padding: 20px;
  }
  
  .service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  }
  
  .service-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  
  .service-box h3 {
    color: #a933a7;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .service-box ul {
    padding-left: 0;
    list-style: none;
    color: #444;
    font-size: 0.98rem;
  }
  
  .service-box ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
  }
  
  .service-box ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #ff66cc;
    font-weight: bold;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @media (max-width: 600px) {
    .section-title {
      font-size: 2rem;
    }
  }


/* Pricing Section */
.pricing {
    text-align: center;
    padding: 60px 10%;
    background-color: var(--background-color);
}

.pricing h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.pricing-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.pricing-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 22%;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.pricing-card p {
    font-size: 1.3rem;
    color: var(--secondary-color);
}
.pricing-card  img{
    width: 200px;
    height: 200px;
}

/* Our Team Section */

.team {
    padding: 60px 10%;
    background-color: #fff5e6;
    text-align: center;
}

.team h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff7043; /* Orange color for the heading */
}

.team-container {
    display: flex;
    justify-content: center; /* Centers the team members */
    gap: 30px;
    flex-wrap: wrap; /* Ensures they wrap on smaller screens */
    align-items: center; /* Aligns team members vertically */
}

.team-member {
    width: 250px; /* Width of each member box */
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out; /* Smooth transition for hover effect */
}

.team-member:hover {
    transform: scale(1.05); /* Slight zoom effect when hovered */
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.team-member h3 {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #ff7043; /* Orange color for name */
}

.team-member p {
    font-size: 1.1rem;
    color: #555;
}


#why-choose-us {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  #why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
  }
  
  .reasons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .reason {
    background-color: #fff;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .icon {
    font-size: 2rem;
    color: #ff6f61;
    margin-bottom: 10px;
  }
  
  .reason p {
    font-size: 1.2rem;
    color: #333;
  }
  

  #salon {
    padding: 50px 0;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  #salon h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  #salon p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
  }
  
  #salon ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
  }
  
  #salon li {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .map iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .contact-details {
    font-size: 1.2rem;
    margin-top: 20px;
  }
  
 
  
  #salon {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  #salon h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  #salon p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
  }
  
  #salon ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
  }
  
  #salon li {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .map iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .contact-details {
    font-size: 1.2rem;
    margin-top: 20px;
  }
  


/* Testimonials Section */
.testimonials {
    text-align: center;
    padding: 60px 10%;
    background-color: var(--accent-color);
    color: #fff;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.testimonial {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    margin: 20px auto;
    color: var(--secondary-color);
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
}

.testimonial span {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    color: var(--primary-color);
}

#portfolio {
    padding: 50px 20px;
    text-align: center;
  }
  
  #portfolio h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
  }
  
  .portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .portfolio-item {
    width: 250px;
    text-align: center;
  }
  
  .portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .portfolio-item p {
    font-size: 1.2rem;
    margin-top: 10px;
  }


/* Book Appointment Section */
#book {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  #book h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  /* Rectangle Form Container */
  .form-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  }
  
  /* Form Fields */
  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  .form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #333;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    resize: vertical;
  }
  
  /* Submit Button */
  #book .btn {
    background-color: #ff4b5c;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  #book .btn:hover {
    background-color: #d43f50;
  }
  
  /* WhatsApp Button */
  .whatsapp {
    margin-top: 20px;
    text-align: center;
  }
  
  .whatsapp a.btn-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .whatsapp a.btn-whatsapp:hover {
    background-color: #128c7e;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .form-box {
      padding: 20px 15px;
    }
  
    #book h2 {
      font-size: 2rem;
    }
  
    .btn, .btn-whatsapp {
      width: 100%;
    }
  }
  

/* Responsive Design */
@media (max-width: 768px) {
    .services-container, .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card, .testimonial {
        width: 90%;
    }

}

#contact {
    padding: 50px 0;
    background-color: #fff;
  }
  
  #contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    font-size: 1.2rem;
  }
  
  .form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    font-size: 1rem;
  }
  
  .form-group textarea {
    height: 100px;
  }
  
  button {
    padding: 10px 20px;
    background-color: #ff6f61;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #e65c4f;
  }
  
  .whatsapp a {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
  }
  
  .whatsapp a:hover {
    background-color: #128c7e;
  }
  


/* Footer  */
/* Footer Styling */
.footer {
    width: 100%;
    background-color: #FF7F50;
    padding: 40px 0;
    color: #fff;
}

/* Flexbox Layout */
.footer .all-sec {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}

/* Section Width */
.footer .all-sec .social,
.footer .all-sec .information,
.footer .all-sec .links,
.footer .all-sec .qun {
    width: 22%;
    min-width: 200px; /* Ensures sections don't shrink too much */
}

/* Footer Headings */
.footer .all-sec h1 {
    font-size: 2.5vmin;
    margin-bottom: 20px;
    color: #fff;
}

/* Social Media Section */
.footer .social p {
    font-size: 2vmin;
    text-align: justify;
    padding-bottom: 20px;
}

/* Social Media Icons */
.footer .icons {
    font-size: 3.5vmin;
}

.footer .icons a {
    text-decoration: none;
    color: white;
    background-color: rgb(70, 56, 56);
    padding: 10px;
    margin-right: 10px;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.footer .icons a:hover {
    background-color: #ff9800;
    transform: scale(1.1);
}

/* Information Section */
.footer .information h2 a {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.footer .information h2 a:hover {
    color: #ff9800;
}

/* Quick Links */
.footer .links ul {
    list-style: none;
    padding: 0;
}

.footer .links ul li {
    padding: 10px 0;
    font-size: 2vmin;
}

.footer .links ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.footer .links ul li a:hover {
    color: #ff9800;
}

/* Contact Section */
.footer .qun .contact-info p {
    font-size: 2vmin;
    margin-bottom: 10px;
}

.footer .qun .contact-info i {
    margin-right: 10px;
}

/* Copyright Section */
.footer .unic {
    text-align: center;
    padding: 20px 0;
    font-size: 2.5vmin;
    color: #f4f4f4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer .all-sec {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .all-sec .social,
    .footer .all-sec .information,
    .footer .all-sec .links,
    .footer .all-sec .qun {
        width: 100%;
        margin-bottom: 20px;
    }
}

.social-icons i {
  font-size: 18px;
  margin-right: 10px;
  margin-top: 10px;
  color: #1565c0;
}
