body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f9f9f9;
    color: #222;
  }
  
  header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .top-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 40px;
    background: #fff;
  }
  
  .logo {
    font-size: 1.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
  }
  
  .logo .icon {
    color: #afea2b;
    margin-right: 8px;
    font-size: 1rem;
  }
  
  .contact-info span {
    margin-left: 20px;
    font-size: 1rem;
  }
  
  nav {
    background: #afea2b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    margin: 0px 10%;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    margin: 0 18px;
    font-size: 30px;
  }
  
  nav ul li.active a, nav ul li a:hover {
    color: #fff;
    background: #49536c;
    padding: 6px 15px;
    border-radius: 4px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
  }
  
  .social-icons span {
    margin-left: 15px;
    font-size: 1.2rem;
    color: #49536c;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    background: url('images/banner-bg.jpg') center/cover no-repeat;
    height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 50, 94, 0.7);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 740px;
    margin: auto;
  }
  
  .hero-content h5 {
    letter-spacing: 1.7px;
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 500;
    color: #c3cbe3;
  }
  
  .hero-content h1 {
    font-size: 2.9rem;
    font-weight: 700;
    margin-bottom: 18px;
  }
  
  .hero-content p {
    font-size: 1.08rem;
    margin-bottom: 30px;
    color: #e5e9f3;
  }
  
  .cta-btn {
    background: #afea2b;
    color: #222;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  
  .cta-btn:hover {
    background: #49536c;
    color: #fff;
  }
  
  /* opening hours */
   .container {
      background: #fff;
      padding: 40px 60px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
      text-align: center;
      width: 500px;
      justify-content: center;
      margin:0px 27% ;
    }
    .container h2 {
      font-weight: 700;
      font-size: 35px;
      margin-bottom: 8px;
      color: #222;
    }
    .container p.subtitle2 {
      font-weight: 400;
      font-size: 18px;
      color: #8c8c8c;
      margin-bottom: 25px;
    }
    .status {
      background-color: #f8f8ff;
      border-radius: 5px;
      padding: 10px 15px;
      font-weight: 600;
      font-size: 20px;
      color: #2e2f36;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 25px;
    }
    .status .open-dot {
      width: 10px;
      height: 10px;
      background-color: #68bb59;
      border-radius: 50%;
    }
    .hours-list {
      text-align: left;
      font-size: 18px;
      color: #666;
      line-height: 1.6;
    }
    .hours-list span {
      float: right;
      color: #a0a0a0;
      font-size: 16px;
    }
    /* offer */
    .offers-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
  }
  
  .offers-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .subtitle {
    color: #777;
    margin-bottom: 40px;
    font-size: 16px;
  }
  
  .offers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .offer-box {
    flex: 1 1 calc(25% - 20px);
    background-color: #fafafa;
    border-radius: 8px;
    padding: 15px;
    text-align: left;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  
  .offer-box img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
  }
  
  .offer-box h3 {
    font-size: 16px;
    margin: 10px 0 10px;
    font-weight: bold;
  }
  
  .offer-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
  }
  
  /* feedback */
  .feedback-section {
    text-align: center;
    padding: 50px 20px;
  }
  .feedback-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  .feedback-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
  }
  .feedback-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .feedback-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    width: 300px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
  }
  .feedback-card:hover {
    transform: translateY(-5px);
  }
  .feedback-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }
  .feedback-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .feedback-card h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
  }
  .feedback-card span {
    font-size: 13px;
    color: #888;
  }
  
  /* team */
  h2 {
    font-size: 32px;
    color: #222;
    text-align: center;
  }
  p.subtitle {
    color: #777;
    margin-bottom: 40px;
    text-align: center;
    margin-left: 250px;
    margin-right: 250px;
  }
  .consultant-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  .consultant-card {
    position: relative;
    width: 200px;
    height: 240px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
  }
  .consultant-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  .consultant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(100, 221, 23, 0.9); /* Lime green with opacity */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 10px;
    text-align: center;
  }
  .consultant-card:hover .consultant-overlay {
    opacity: 1;
  }
  .consultant-overlay h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
  }
  .consultant-overlay p {
    margin-top: 5px;
    font-size: 14px;
  }
  
  /* features */
  .features-section {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  .features-section h2 {
    font-size: 26px;
    font-weight: bold;
    color: #111;
    margin-bottom: 10px;
    margin-top: 160px;
  }
  .features-section p.subtitle {
    color: #888;
    font-size: 14px;
    margin-bottom: 50px;
  }
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    text-align: left;
  }
  .feature-box {
    display: flex;
    align-items: flex-start;
    margin-left: 50px;
  }
  .feature-icon {
    font-size: 20px;
    color: #76c043;
  }
  .feature-content h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #111;
  } 
  .feature-content p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #666;
  }
  .feature-content h4:hover{
    color: #76c043;
    cursor: pointer;
  }
  
  /* input section */
  .div2{
    display: flex;
    flex-direction: row;
    height: 90vh;
    margin-top: 50px;
  }
  .left {
    flex: 1;
    background: url('images/appoinment-img.jpg') ;
  }
  .right {
    flex: 1;
    background-color: #0a0f1e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
    max-width: 500px;
  }
  .form-container {
    max-width: 500px;
  }
  .form-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
  
  }
  .form-container input,
  .form-container textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    font-size: 14px;
  }
  .form-row {
    display: flex;
    gap: 10px;
  }
  .form-row input {
    flex: 1;
  }
  .form-container textarea {
    min-height: 100px;
    resize: none;
  }
  .form-container button {
    background-color: #7ed321;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
  }
  .form-container button:hover {
    background-color: #6ab51c;
  }
  
  /* blog */
  .blog-section {
    text-align: center;
    padding: 60px 20px;
  }
  .blog-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  .blog-section p {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #666;
  }
  .blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
  }
  .blog-card {
    text-align: left;
  }
  .blog-card img {
    width: 100%;
    border-radius: 4px;
  }
  .date-tag {
    background: black;
    color: white;
    display: inline-block;
    font-size: 13px;
    padding: 4px 10px;
    margin: 12px 0;
    border-radius: 2px;
  }
  .blog-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
  }
  .blog-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
  }
  .blog-meta {
    display: flex;
    gap: 100px;
    font-size: 14px;
    color: #666;
  }
  .blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .blog-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  }
  .image-container {
    position: relative;
    overflow: hidden;
  } 
  .image-container img {
    width: 100%;
    border-radius: 4px;
    transition: transform 0.5s ease;
  }
  .image-container::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .blog-card:hover .image-container img {
    transform: scale(1.1);
  }
  .blog-card:hover .image-container::after {
    opacity: 1;
  }
  .date-tag {
    background: black;
    color: white;
    display: inline-block;
    font-size: 13px;
    padding: 4px 10px;
    margin: 12px 0;
    border-radius: 2px;
  }
  .blog-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  .blog-card h3:hover {
    color: #76c043;
    cursor: pointer;
  }
  .blog-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
  }
  .blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
  }
  .blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  /* footer */
  footer {
    background-color: #060b1a;
    padding: 50px 80px 20px 80px;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
  }
  .footer-column h4 {
    font-weight: bold;
    margin-bottom: 20px;
  }
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-column ul li {
    margin-bottom: 12px;
  }
  .footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
  }
  .footer-column ul li a:hover {
    color: #7fff00;
  }
  .contact p {
    margin: 8px 0;
    font-size: 14px;
  }
  .contact .phone {
    color: #7fff00;
    font-size: 18px;
    font-weight: bold;
  }
  .newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .newsletter input[type="email"] {
    padding: 12px;
    border: none;
    border-radius: 25px;
    outline: none;
    width: 250px;
    margin-right: 10px;
  }
  .newsletter button {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    background-color: #7fff00;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  .newsletter button:hover {
    background-color: #66cc00;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    color: #bbb;
  }
  .footer-bottom a {
    color: #7fff00;
    text-decoration: none;
  }
  .footer-social a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
  }
  .footer-social a:hover {
    color: #7fff00;
  }