 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    body {
      background: #f8faff;
      color: #1e1e2f;
      line-height: 1.5;
      scroll-behavior: smooth;
          overflow-x: hidden;
    width:100%;
    }

    /* width */
  ::-webkit-scrollbar {
    width: 10px;
  }

/* Track */
  ::-webkit-scrollbar-track {
    background: white; 
  }
 
/* Handle */
  ::-webkit-scrollbar-thumb {
    background: #333; 
  }

/* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }


  #myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #333;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}

    /* modern navigation */
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 5%;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .logo a {
      font-weight: 400;
      font-size: 1.2rem;
      letter-spacing: -0.02em;
      background: black;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-decoration: none;
      font-family: cursive;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }

    
    

    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: #333;
      transition: color 0.2s;
      font-size: 1.05rem;
    }

    .nav-links a:hover {
      border-bottom:2px solid red;
    }

    /* social media icons (navbar) */
    .social-nav {
      display: flex;
      gap: 1.2rem;
      align-items: center;
      margin-left: 1.5rem;
    }

    .social-nav a {
      color: black;
      font-size: 1.4rem;
      transition: transform 0.2s, color 0.2s;
    }

    .social-nav a:hover {
      color: #25D366; /* whatsapp brand */
      transform: scale(1.1);
    }

    .social-nav a .fa-facebook:hover {
      color: #333;
    }

    /* mobile menu toggle */
    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: #333;
      background: none;
    }

   

    /* main sections */
    section {
      padding: 5rem 7%;
    }

    ul li{
      text-align: left;
      margin-left: 3px;
    }

    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background-image:url('../Media/1000007516.jpg') ;
      background-size:cover;
      background-repeat: no-repeat;
      border-radius: none;
      margin: 0;
      box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
    }

    .hero h1 {
      font-size: 3.4rem;
      font-weight: 700;
      max-width: 800px;
      background: black;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.3rem;
      color: black;
      max-width: 600px;
      margin-bottom: 2rem;
    }

    .hero p a{
      color:red;
    }

    .section-title {
      font-size: 2.4rem;
      font-weight: 650;
      margin-bottom: 3rem;
      position: relative;
      display: inline-block;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 60px;
      height: 4px;
      background: none;
      border-radius: 4px;
    }

    .accordion {
  background-color: #eee;
  border-left:5px solid red;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #333;
  color:white;
  letter-spacing: 2px;
}

.accordion:after {
  content: '\002B';
  color: black;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}



.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-left:5px solid red;
}
    /* service cards with price */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .service-card {
      background: white;
      padding: 2.2rem 1.8rem;
      border-radius: none;
      box-shadow: 0 15px 30px -10px rgba(0,0,0,0.05);
      transition: all 0.25s ease;
      border: 1px solid rgba(255,255,255,0.6);
      backdrop-filter: blur(4px);
      text-align: center;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 40px -10px rgba(90, 79, 207, 0.15);
      border-color: #dcdcff;
    }

   

    .service-card h3 {
      font-size: 1.7rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .price {
      font-size: 2rem;
      font-weight: 700;
      color: #1e1e2f;
      background: none;
      display: inline-block;
      padding: 0.3rem 1.2rem;
      border-radius: 60px;
      margin: 1rem 0 0.5rem;
      letter-spacing: 0.5px;
    }
    .price small {
      font-size: 1rem;
      font-weight: 400;
      color: #5a5a77;
    }

 

    /* portfolio placeholder */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin: 2.5rem 0;
    }

    .portfolio-item {
      background: #ffffff;
      border-radius: 2rem;
      padding: 2rem 1rem;
      text-align: center;
      box-shadow: 0 10px 20px rgba(0,0,0,0.02);
      border: 1px solid #f0f0ff;
      transition: 0.15s;
      font-weight: 500;
      color: #34344e;
    }
    .portfolio-item i {
      font-size: 2.5rem;
      color: #333;
      margin-bottom: 0.8rem;
      display: block;
    }
    .portfolio-item:hover {
      background: #fafbff;
      border-color: #b1a7ff;
    }

    /* about & contact */
    .about-content {
      max-width: 1100px;
      background: white;
      padding: 2.1rem;
      border-radius: 2.5rem;
      box-shadow: 0 20px 30px -10px rgba(0,0,0,0.05);
    }

    .contact-row {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      background: white;
      padding: 2.5rem;
      border-radius: 2.5rem;
    }
    .contact-info {
      flex: 1 1 250px;
    }
    .contact-info p {
      margin: 1.2rem 0;
      font-size: 1.2rem;
      text-align: left;
    }
    .contact-info i {
      width: 2rem;
      color: #333;
    }
    .social-big {
      margin-top: 2rem;
      display: flex;
      gap: 1.1rem;
    }
    .social-big a {
      font-size: 2.2rem;
      color: #333;
      transition: 0.2s;
    }
    .social-big a:hover {
      color: #25D366;
    }
    .facebook-big:hover {
      color: #1877f2 !important;
    }

    /* footer */
    .footer {
      text-align: center;
      padding: 2rem 5%;
      background-image: url('../Media/bgcolor.jfif');
      background-repeat: no-repeat;
      background-size: cover;
      backdrop-filter: blur(4px);
      border-top: 1px solid #edeaff;
      color:black;
    }

    .footer p{
      font-weight: bold;
    }

    .footer a{
      text-decoration: none;
      color:inherit;
      font-weight: bolder;
    }

    /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 1.2s;
  animation-name: animatetop;
  animation-duration: 1.2s;
  border-radius: 20px;

}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: red;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #333;
  color: white;
  text-align: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.modal-body {padding: 2px 16px;}



    /* responsive */
    @media (max-width: 900px) {
      .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 1.5rem;
        padding: 2.5rem 0;
        box-shadow: 0 20px 30px rgba(0,0,0,0.05);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-radius: 0 0 2rem 2rem;
        z-index: 99;
      }
      .nav-links.active {
        transform: translateY(0);
      }
      .social-nav {
        margin-left: 0;
        margin-top: 0.5rem;
      }
      .menu-toggle {
        display: block;
      }
      .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
      }

        .contact-info p {
      margin: 1.2rem 0;
      font-size: 1.2rem;
      text-align: left;
      color:#fff;
    }
    .contact-info i {
      width: 2rem;
      color: #fff;
    }
    }

    @media (max-width: 550px) {
      section { padding: 3rem 5%; }
      .hero h1 { font-size: 2.5rem; }
      .portfolio-grid { grid-template-columns: 1fr; }

      #hide-email{
        display: none;
      }

       .social-big {
      margin-top: 2rem;
      display: flex;
      gap: 1.1rem;
      text-align: center;
    }
    }

    /* dummy smooth */
    .nav-links a.active {
      color: #4a3fe0;
      font-weight: 600;
    }