:root {
    --primary-pink: #c3809f;
    --secondary-lavender: #a98ad9;
    --accent-mint: #7fcca3;
    --accent-yellow: #f5ca71;
    --light-pink: #f9eef1;
    --dark-text: #333333;
    --light-text: #666666;
    --white: #ffffff;
    --off-white: #f9f7fa;
    --shadow: rgba(0, 0, 0, 0.08);
  }
  
  .section-title::after, .hero-title::after {
    height: 2px;
    opacity: 0.8;
  }
  
  .hero-title, .section-title {
    background: #CFE7FA;
    background: linear-gradient(to right, #a5d6ff 0%, #6393C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

  }
  
  * {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
  }
  
  body {
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  @import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
  
  h1, h2, h3, h4, .logo {
    font-family: 'Abril Fatface', serif;
    letter-spacing: 0.5px;
  }
  
  
  h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 700;
  }
  
  h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    font-weight: 700;
  }
  
  h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }
  
  p, body, button, input, textarea, select {
    font-family: Arial, sans-serif;
  }
  
  .logo {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    
    
  }
  
  .specialty-price {
    font-family: 'Abril Fatface', serif;
    letter-spacing: 0;
  }
  
  .process-number {
    font-family: 'Abril Fatface', serif;
    letter-spacing: 0;
  }
  .hero {
    text-align: center;
    padding: 50px;
    background: #f4f4f4;
}

.hero h2 {
    font-size: 28px;
}

.hero .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
/*courses start*/

.course-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.course-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    width: 250px;
}

.course-card h3 {
    margin-bottom: 10px;
}

.course-card .btn {
    display: block;
    margin-top: 10px;
    padding: 8px;
    background: linear-gradient(to right, #8fbfe6 0%, #6393C1 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
}

  header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    
    align-items: center;
    padding: 15px 0;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
    text-decoration: none;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  
  .nav-link {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
  }
  .nav-link:hover{
    border-bottom: #007bff;
    border-width: 10px;
  }
  
  .mobile-menu-button {
    margin-left: auto;
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-text);
    cursor: pointer;
  }
  
  .hero {
    background: linear-gradient(135deg, 
      hsl(340, 60%, 97%) 0%, 
      hsl(270, 40%, 95%) 50%, 
      hsl(150, 40%, 95%) 100%
    );
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 70% 20%, hsla(40, 85%, 70%, 0.4) 0%, transparent 35%),
      radial-gradient(circle at 20% 80%, hsla(342, 65%, 69%, 0.4) 0%, transparent 35%);
    z-index: 1;
  }
  
  .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
  }
  
  .hero-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit:contain;
    border-radius: 20px;
  }
  
  @media (max-width: 768px) {
    .hero-container {
      grid-template-columns: 1fr;
    }
  
    .hero-content {
      text-align: center;
      order: 2;
    }
  
    .hero-image {
      order: 1;
      height: 300px;
      border-radius: 20px;
      margin-bottom: 30px;
    }
  }
  
  .hero-title {
    margin-bottom: 20px;
  }
  
  .hero-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, 
      var(--primary-pink),
      var(--secondary-lavender)
    );
    margin: 20px auto;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .button {
    display: inline;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
  }
  
  .button-primary {
    background: linear-gradient(to right, #a5d6ff 0%, #6393C1 100%);
    color: white;
  }
  
  .button-primary:hover {
    background: linear-gradient(to right, #a5d6ff 0%, #6393C1 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .button-secondary {
    background-color: white;
    color: var(--dark-text);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .button-secondary:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .hero-buttons .button {
    width: 180px;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    align-items: flex-start;
  }
  
  @media (max-width: 768px) {
    .hero-buttons {
      align-items: center;
    }
  }
  
  .button-primary {
    background: linear-gradient(to right, #a5d6ff 0%, #6393C1 100%);
    color: white;
  }
  
  .button-primary:hover {
    background: linear-gradient(to right, #a5d6ff 0%, #6393C1 100%);
  }
  
  .button-secondary {
    background-color: white;
    color: var(--dark-text);
  }
  
  .button-secondary:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-light {
    background-color: var(--white);
  }
  
  .section-dark {
    background-color: var(--off-white);
  }
  
  .section-title {
    text-align: center;
    position: relative;
    margin-bottom: 50px;
  }
  
  .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, 
      var(--primary-pink),
      var(--secondary-lavender)
    );
    margin: 20px auto;
  }
  
  .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
  }
  
  .process-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
  }
  
  .process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .process-step:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: white;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
  }
  
  .process-step:nth-child(even) .process-number {
    left: auto;
    right: 0;
  }
  
  .process-content {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: left;
    margin: 0 40px 0 60px;
  }
  
  .process-step:nth-child(even) .process-content {
    margin: 0 60px 0 40px;
  }
  
  .process-image {
    flex: 1;
    background-color: #eee;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
  }
  
  .process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .specialty-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .specialty-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
  }
  
  
  .specialty-img {
    height: 250px;
    overflow: hidden;
  }
  
  .specialty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .specialty-content {
    padding: 30px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .specialty-tag {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--secondary-lavender);
    color: white;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .specialty-title {
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
  
  .specialty-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-pink);
    margin-top: 20px;
  }
  
  .specialty-action {
    margin-top: auto;
    padding-top: 20px;
  }
  
  .specialty-action .button {
    padding: 10px 25px;
  }
  
  .process-step {
    transition: transform 0.3s ease;
  }
  
  .contact-form button {
    margin-top: 10px;
  }
  
  a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  .gallery-item-1 {
    grid-column: span 2;
  }
  
  .gallery-item-5 {
    grid-column: span 2;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  
  .contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
  }
  
  .contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--dark-text);
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-text);
  }
  
  .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
  }
  
  .form-control:focus {
    outline: none;
    border-color: var(--primary-pink);
  }
  
  .contact-details {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
  }
  
  .contact-details h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--dark-text);
  }
  
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  
  .contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.2rem;
  }
  
  .contact-info-content h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--dark-text);
  }
  
  .contact-info-content p {
    margin-bottom: 0;
    color: var(--light-text);
  }
  /*footer*/
  footer {
    background: linear-gradient(to right, #CFE7FA 0%, #6393C1 100%);
    text-align: center;
    color: white;
    padding: 60px 0 30px;
  }
  a{
    text-decoration: none;
    color:#595959;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }
  
  .footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
  }
  
  .footer-column h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-pink);
  }
  
  .footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: var(--primary-pink);
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .social-link:hover {
    background-color: var(--primary-pink);
    translate: translateY(-5px);
  }
  
  .footer-copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
  }
  
  .footer-copyright a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
  }
  
  .footer-copyright a:hover {
    color: var(--primary-pink);
  }
  
  @media (max-width: 992px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
  
    .contact-details {
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    h1 {
      font-size: 2.5rem;
    }
  
    .nav-links {
      display: none;
    }
  
    .mobile-menu-button {
      display: block;
    }
  
    .process-step, 
    .process-step:nth-child(even) {
      flex-direction: column;
    }
  
    .process-content,
    .process-step:nth-child(even) .process-content {
      margin: 0 0 20px 0;
    }
  
    .process-number {
      position: relative;
      margin-bottom: 20px;
    }
  }

  /* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  color: rgb(0, 0, 0);
}

/* Mobile menu button */
.mobile-menu-button {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: rgb(0, 0, 0);
  cursor: pointer;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links ul {
  list-style: none;
  display: flex;
}

.nav-links ul li {
  margin: 0 10px;
}

.nav-links ul li a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
}

iframe{
  min-height: 250px;
  max-height: auto;
  min-width: 250px;
  max-width: auto;
  height:50%;
  width:100%;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
  .mobile-menu-button {
      display: block;
  }
  
  .nav-links {
      display: none;
      flex-direction: column;
      background: #ffffff;
      background-image: linear-gradient();
      width: 100%;
      position: absolute;
      top: 80px;
      left: 0;
  }

  .nav-links.show {
      display: flex;
  }

  .nav-links ul {
      flex-direction: column;
  }

  .nav-links ul li {
      padding: 10px;
      text-align: center;
  }
}
