 :root {
      --primary-color: #21b573;
      --secondary-color: #a7ffeb;
      --text-color: #ffffff;
      --hover-color: #00ffff;
      --shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      --transition: all 0.3s ease;
      --scrolled-bg-color: #ffffff;
      --scrolled-text-color: #333333;
      --scrolled-logo-color: var(--primary-color);
      --scrolled-button-bg: var(--secondary-color);
      --scrolled-button-text: var(--primary-color);
      --scrolled-button-border: var(--primary-color);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Open Sans", sans-serif;
      background-color: #f0f0f0;
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .container {
      width: min(90%, 1110px);
      margin-inline: auto;
    }

    /* Navigation */
    .background-container {
      width: 100%;
      min-height: 600px;
      background: linear-gradient(to top left, #00b386 60%, #5b5bb0 60%);
      position: relative;
    }

    .navbar {
      background-color: var(--primary-color);
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--text-color);
      box-shadow: var(--shadow);
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 1000;
      transition: var(--transition);
    }

    .navbar.scrolled {
      background-color: var(--scrolled-bg-color);
      padding: 0.8rem 2rem;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand a {
      color: white;
      font-family: "Montserrat", sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      text-decoration: none;
      transition: var(--transition);
    }

    .navbar.scrolled .navbar-brand a {
      color: black;
    }

    .navbar-brand a:hover {
      color: var(--hover-color);
    }

    .navbar.scrolled .navbar-brand a:hover {
      color: var(--primary-color);
    }

    .navbar-nav {
      display: flex;
      list-style: none;
      gap: 1.5rem;
      margin: 0;
      padding: 0;
    }

    .nav-hover a:hover {
      border-bottom: 2px solid #00ffff;
    }

    .nav-item .nav-link {
      color: var(--text-color);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding: 0.5rem 0;
      position: relative;
      transition: var(--transition);
      cursor: pointer;
    }

    .navbar.scrolled .nav-item .nav-link {
      color: var(--scrolled-text-color);
    }

    .nav-item .nav-link:hover {
      color: var(--hover-color);
    }

    .navbar.scrolled .nav-item .nav-link:hover {
      color: var(--primary-color);
    }

    .nav-item.active .nav-link {
      font-weight: 700;
    }

    .nav-item.active .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 3px;
      background-color: var(--secondary-color);
    }

    .navbar.scrolled .nav-item.active .nav-link::after {
      background-color: var(--primary-color);
    }

    .navbar-contact {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .navbar-contact .icon {
      color: var(--secondary-color);
      font-size: 1.2rem;
    }

    .navbar.scrolled .navbar-contact .icon {
      color: #000;
    }

    .navbar-contact .contact-button {
      background-color: transparent;
      color: var(--text-color);
      border: 2px solid var(--text-color);
      padding: 0.5rem 1rem;
      border-radius: 2rem;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      transition: var(--transition);
    }

    .navbar.scrolled .navbar-contact .contact-button {
      background-color: #fff;
      color: #000;
      border-color: #000;
    }

    .navbar-contact .contact-button:hover {
      background-color: blue;
      color: var(--primary-color);
      border-color: var(--primary-color);
    }

    .navbar.scrolled .navbar-contact .contact-button:hover {
      background-color: blue;
      color: var(--text-color);
      border-color: var(--primary-color);
    }

    .hamburger {
      display: none;
      cursor: pointer;
      font-size: 1.8rem;
      color: var(--text-color);
      transition: var(--transition);
    }

    .navbar.scrolled .hamburger {
      color: var(--scrolled-text-color);
    }

    .hamburger:hover {
      color: var(--hover-color);
    }

    .navbar.scrolled .hamburger:hover {
      color: var(--primary-color);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--scrolled-bg-color);
      z-index: 1000;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
      transition: var(--transition);
    }

    .mobile-menu.active {
      display: flex;
    }

    .mobile-menu .close-btn {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--scrolled-text-color);
      transition: var(--transition);
    }

    .mobile-menu .close-btn:hover {
      color: var(--primary-color);
    }

    .mobile-menu .mobile-nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      list-style: none;
      padding: 0;
      margin-bottom: 3rem;
    }

    .mobile-menu .nav-link {
      font-size: 1.2rem;
      color: var(--scrolled-text-color);
      text-decoration: none;
    }

    .mobile-menu .navbar-contact {
      flex-direction: column;
      gap: 1rem;
    }

    .mobile-menu .contact-button {
      padding: 0.8rem 1.5rem;
      background-color: var(--scrolled-button-bg);
      color: var(--scrolled-button-text);
      border-color: var(--scrolled-button-border);
    }

    .mobile-menu .contact-button:hover {
      background-color: var(--primary-color);
      color: var(--text-color);
      border-color: var(--primary-color);
    }

    .mobile-menu .navbar-contact .icon {
      color: var(--scrolled-logo-color);
    }

    /* Hero Section */
    .hero {
      padding: 60px 20px;
      color: #333;
      
    }

    .hero-container {
      max-width: 1200px;
      margin: 0 auto;
      margin-top: 9rem;
      
    }

    .hero-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .hero-text {
      flex: 1 1 400px;
      min-width: 300px;
    }

    .hero-greeting {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 25px;
    }

    .hero-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 4px solid white;
      object-fit: cover;
      margin-bottom: 0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .bubble {
      background-color: white;
      border-radius: 50px;
      padding: 12px 25px;
      margin-bottom: 20px;
      display: inline-block;
      font-size: 1.2rem;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .hello {
      font-weight: 700;
      font-size: 1.5rem;
      color: #00b386;
    }

    .available {
      color: #00b386;
      font-weight: 600;
      display: block;
      font-size: 1.2rem;
    }

    .cta-button {
      display: inline-block;
      padding: 15px 30px;
      background-color: green;
      color: white;
      font-weight: bold;
      border-radius: 25px;
      text-decoration: none;
      margin-top: 20px;
      transition: all 0.3s ease;
      font-size: 1.1rem;
      border: 2px solid transparent;
    }

    .cta-button:hover {
      background-color: #444488;
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    .hero-image {
      flex: 1 1 400px;
      min-width: 300px;
      position: relative;
    }

    .hero-image-container {
      width: 300px;
      height: 300px;
      margin: 0 auto;
      background-color: white;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .hero-main-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      position: relative;
      z-index: 2;
    }

    /* Story Section */
    .story-section {
      width: 100%;
      padding: 3.9rem;
    }

    .box {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-top: 2rem;
      margin-bottom: 7.5rem;
    }

    .box-img img {
      width: 38rem;
      height: 26.5rem;
      border-radius: 1.25rem;
    }

    .story {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .story .header-story {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 10rem;
      background-color: #14b789;
      padding-left: 6rem;
      border-radius: 1rem;
      gap: 1rem;
    }

    .header-story h1 {
      font-size: 2rem;
      text-align: center;
      font-weight: 700;
      color: #ffffff;
    }

    .header-story img {
      width: 10rem;
      height: 10rem;
      border-radius: 50%;
      object-fit: cover;
      padding-block: 0.18rem;
    }

    .story .info-story {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .info-story a {
      text-decoration: none;
      color: rgb(113, 114, 117);
    }

    .info-story a:hover {
      color: rgb(20, 183, 137);
    }

    .info-story h2 {
      font-size: 2.25rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      line-height: 2.7rem;
    }

    .info-story p {
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5rem;
      color: rgb(113, 114, 117);
    }

    /* Information Section */
    .information-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .information-card {
      flex: 1;
      min-width: 300px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 2rem;
    }

    .information-card h1 {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
      color: #333;
      border-bottom: 2px solid #14b789;
      padding-bottom: 0.5rem;
    }

    .info-table {
      width: 100%;
      border-collapse: collapse;
    }

    .info-table tr:not(:last-child) {
      border-bottom: 1px solid #eee;
    }

    .info-table th {
      text-align: left;
      padding: 12px 0;
      width: 30%;
      color: #14b789;
      font-weight: 600;
    }

    .info-table td {
      padding: 12px 0;
      color: #666;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .stat-box {
      background: white;
      border-radius: 10px;
      padding: 1.5rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .stat-box:hover {
      transform: translateY(-5px);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #14b789;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 1rem;
      color: #666;
    }

    /* Services Section */
    .service {
      height: 75rem;
      background-color: rgb(249, 249, 249);
      padding-top: 1rem;
      margin-block: 3.75rem;
    }

    .servise-one {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      height: 10rem;
      background-color: rgb(20, 183, 137);
      padding: 1rem 0;
      border-radius: 1rem;
      margin-block: 2rem;
    }

    .servise-one img {
      width: 9rem;
      height: 9rem;
      border-radius: 50%;
    }

    .servise-one h1 {
      color: #fff;
      font-size: 3rem;
      font-weight: 700;
    }

    .servise-two {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-top: 4rem;
    }

    .servise-box {
      background-color: #fff;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 1rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      padding: 1.875rem;
      overflow: hidden;
      position: relative;
      height: 23rem;
      transition: all 0.5s;
    }

    .servise-box:hover {
      box-shadow: 0 10px 20px rgb(20, 183, 137);
      border-color: rgb(20, 183, 137);
    }

    .box-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .price {
      background-color: #6f42c1;
      color: #fff;
      padding: 5px 15px;
      border-radius: 20px;
      font-weight: bold;
      font-size: 14px;
    }

    .servise-box h5 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .servise-box p {
      font-size: 14px;
      color: #666;
      margin-top: 1rem;
      margin-bottom: 1.25rem;
    }

    .servise-box .discover-btn {
      display: inline-block;
      padding: 10px 20px;
      background-color: transparent;
      border: 1px solid #ccc;
      border-radius: 25px;
      text-decoration: none;
      color: #333;
      transition: all 0.3s ease;
    }

    .discover-btn:hover {
      background-color: rgb(20, 183, 137);
      box-shadow: 0 10px 20px rgba(37, 37, 37, 0.3);
      color: #fff;
    }

    .boxs-icon {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50%;
      height: 55%;
      border-radius: 10%;
      background-color: #f2f2f2;
      transform: rotate(-35deg) translateY(55px);
      transition: all ease 0.5s;
      display: flex;
      justify-content: center;
      align-items: center !important;
      font-size: 2.75rem;
      color: #333;
    }

    .boxs-icon:hover {
      cursor: pointer;
      background-color: rgb(20, 183, 137);
    }

    /* Projects Section */
    .projects-section {
      width: 100%;
      padding: 2rem 1rem;
    }

    .projects-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .projects-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: #21b573;
      color: white;
      text-align: center;
      padding: 2rem;
      border-radius: 12px;
      margin-bottom: 3rem;
      gap: 1.5rem;
    }

    .projects-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid white;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .projects-title {
      margin: 0;
      font-size: 2rem;
      font-weight: 600;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 0 auto;
    }

    .project-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    .project-card-content {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .project-tag {
      font-size: 0.8rem;
      text-transform: uppercase;
      color: #21b573;
      font-weight: bold;
      letter-spacing: 0.5px;
      margin-bottom: 0.5rem;
    }

    .project-title {
      margin: 0 0 1rem 0;
      font-size: 1.5rem;
      color: #333;
    }

    .project-image-container {
      width: 100%;
      margin-top: auto;
      overflow: hidden;
      border-radius: 8px;
    }

    .project-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .project-card:hover .project-image {
      transform: scale(1.03);
    }

    /* Logo Grid */
    .logo-grid {
      width: 100%;
      background-color: #fff;
      padding: 4rem 1rem;
    }

    .logo-grid-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo-grid-title {
      font-size: 2rem;
      margin-bottom: 3rem;
      color: #333;
      text-align: center;
    }

    .logo-grid-items {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem;
      align-items: center;
      justify-content: center;
    }

    .logo-grid-item {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1rem;
      transition: transform 0.3s ease;
    }

    .logo-img {
      width: 100%;
      max-width: 180px;
      height: auto;
      max-height: 80px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    .logo-grid-item:hover .logo-img {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.1);
    }

    /* Contact Section */
    .contact-section {
      background-color: rgba(225, 227, 229, 0.4);
      height: 52rem;
      padding-block: 5.5rem;
      margin-block: 4rem;
    }

    .say-hi {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      height: 10rem;
      width: 34rem;
      background-color: #14b789;
      margin-bottom: 5rem;
      border-radius: 8px;
    }

    .say-hi img {
      width: 10rem;
      height: 10rem;
      border-radius: 50%;
      padding-block: 0.18rem;
    }

    .say-hi h1 {
      font-size: 2.5rem;
      text-align: center;
      font-weight: 700;
      color: #ffffff;
    }

    .contact {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-bottom: 5rem;
    }

    .contact-one {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
                  0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    .contact-Services {
      height: 25rem;
      background-color: hsl(0, 0%, 100%);
      padding: 3rem 0.9rem;
      border-right: 1px solid rgba(0, 0, 0, 0.3);
    }

    .contact-Services-one span {
      display: inline-block;
      padding: 0.5rem 0.75rem;
      border: 1px solid rgba(0, 0, 0, 0.5);
      border-radius: 50px;
      margin: 0.8rem 0.25rem;
      font-size: 1rem;
    }

    .contact-Services-one span a {
      text-decoration: none;
      color: #6c757d;
    }

    .contact-Services-one span a:hover {
      text-decoration: none;
      color: #ffffff;
    }

    .contact-Services-one span:hover {
      background-color: #14b789;
      color: #ffffff;
    }

    .contact-Services-two li {
      list-style: none;
      display: inline-block;
      padding: 0.5rem;
      border: 1px solid rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      font-size: 13px;
      text-align: center;
      margin-right: 10px;
      margin-top: 0.5rem;
    }

    .contact-Services-two li:hover {
      background-color: #14b789;
      color: #ffffff;
    }

    .contact-Services-three {
      margin-top: 1.25rem;
    }

    .contact-about {
      height: 25rem;
      background-color: #ffffff;
      padding: 3rem 1rem;
    }

    .contact-about-one {
      margin-bottom: 2rem;
    }

    .contact-about-one h4 {
      padding-bottom: 1.5rem;
    }

    .contact-about-one p {
      color: #6c757d;
    }

    .contact-two-name {
      display: flex;
      gap: 1rem;
    }

    .contact-two-name input {
      height: 3.5rem;
      width: 100%;
      padding: 0.75rem 0.7rem;
      border: 2px solid #e9eaeb;
      color: #717275;
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }

    input:hover {
      border-color: #14b789;
      background-color: rgba(108, 117, 125, 0.1);
    }

    .contact-two-box {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .contact-boxs {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.5rem;
      border: 1px solid rgba(113, 114, 117, 0.5);
      background-color: #ffffff;
      color: #717275;
      cursor: pointer;
    }

    .contact-boxs i {
      color: #14b789;
    }

    .contact-boxs:hover {
      border-color: #14b789;
      background-color: rgba(108, 117, 125, 0.1);
    }

    .contact-two-comment textarea {
      padding: 0.8rem 1.5rem;
      border: 1px solid rgba(113, 114, 117, 0.5);
      background-color: #ffffff;
      color: #717275;
      height: 9.5rem;
      width: 100%;
    }

    .contact-two-comment textarea:hover {
      border-color: #14b789;
      background-color: rgba(108, 117, 125, 0.1);
    }

    .contact-two-comment button {
      width: 7.2rem;
      height: 3.5rem;
      background-color: rgb(20, 183, 137);
      text-align: center;
      font-size: 1.25rem;
      border: none;
      border-radius: 1.25rem;
      color: #ffffff;
      cursor: pointer;
      margin-top: 1rem;
    }

    /* Footer */
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
      align-items: center;
      padding: 2rem 0;
    }

    .copyright {
      font-size: 1rem;
      color: #717275;
    }

    .portfolio {
      color: black;
    }

    .design-credit {
      font-size: 1rem;
      color: #717275;
    }

    .design-credit a {
      color: black;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .design-credit a:hover {
      color: #4b6cb7;
      text-decoration: underline;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
      .navbar-nav {
        gap: 1rem;
      }

      .hero-content {
        flex-direction: column;
        text-align: center;
      }

      .hero-greeting {
        justify-content: center;
      }

      .hero-image {
        margin-top: 2rem;
      }

      .box {
        grid-template-columns: 1fr;
      }

      .header-story {
        padding-left: 2rem;
        padding-right: 9rem;
      }

      .header-story img {
        width: 7rem;
        height: 7rem;
      }

      .projects-header {
        padding: 1.5rem;
      }
      
      .projects-title {
        font-size: 1.8rem;
      }

      .logo-grid {
        padding: 3rem 1rem;
      }

      .logo-grid-title {
        font-size: 1.7rem;
        margin-bottom: 2rem;
      }

      .logo-grid-items {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
      }
    }

    @media (max-width: 768px) {
      .navbar-nav,
      .navbar-contact {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .hero {
        padding: 50px 20px;
       
      }
      .hero-container {
        margin-top: 4rem;
      }
      .bubble {
        font-size: 1rem;
        padding: 10px 20px;
      }

      .hello {
        font-size: 1.3rem;
      }

      .available {
        font-size: 1.1rem;
      }

      .hero-image-container {
        width: 250px;
        height: 250px;
      }

      .hero-main-image {
        max-width: 350px;
      }

      .projects-section {
        padding: 1.5rem 1rem;
      }
      
      .projects-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
      }
      
      .projects-title {
        font-size: 1.5rem;
      }
      
      .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
      }
      
      .project-image {
        height: 200px;
      }

      .contact-section {
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        padding: 3rem;
      }

      .contact {
        display: flex;
        flex-direction: column;
        gap: 2rem;
      }

      .contact-one {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        box-shadow: 0;
        gap: 1.5rem;
      }

      .contact-Services {
        border-right: 0;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
                    0 6px 20px 0 rgba(0, 0, 0, 0.19);
        padding-left: 1.5rem;
      }

      .contact-about {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
                    0 6px 20px 0 rgba(0, 0, 0, 0.19);
        padding-left: 1.5rem;
      }

      .contact-two-comment button {
        width: 100%;
        margin-left: 0;
      }

      .service {
        width: 100%;
        padding: 0rem;
        height: 100%;
        margin-bottom: 2rem;
      }

      .servise-one {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        height: 10rem;
        background-color: rgb(20, 183, 137);
        padding: 1rem 0;
        width: 100%;
      }

      .servise-two {
        display: flex;
        flex-direction: column;
      }

      .boxs-icon {
        margin-right: -2.2rem;
      }
    }

    @media (max-width: 480px) {
      .navbar {
        padding: 1rem;
      }

      .navbar-brand a {
        font-size: 1.5rem;
      }

      .mobile-menu .mobile-nav {
        gap: 1.5rem;
      }

      .hero-avatar {
        width: 70px;
        height: 70px;
      }

      .hero-greeting {
        flex-direction: column;
        gap: 15px;
      }

      .bubble {
        font-size: 0.9rem;
        padding: 8px 16px;
        margin-bottom: 15px;
      }

      .hello {
        font-size: 1.1rem;
      }

      .available {
        font-size: 1rem;
      }

      .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
      }

      .hero-image-container {
        width: 220px;
        height: 220px;
      }

      .hero-main-image {
        max-width: 280px;
      }

      .projects-header {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
      }
      
      .projects-avatar {
        width: 70px;
        height: 70px;
      }
      
      .projects-title {
        font-size: 1.3rem;
      }
      
      .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
      }
      
      .project-card {
        max-width: 100%;
      }
      
      .project-image {
        height: 180px;
      }

      .story-section {
        width: 100%;
        padding: 2rem;
      }

      .box {
        display: flex;
        flex-direction: column;
      }

      .box .box-img img {
        width: 100%;
      }

      .header-story h1 {
        margin-left: 1rem;
      }

      .info-story h2 {
        font-size: 1.5rem;
      }

      .contact-section {
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        padding: 1rem;
        gap: 0.5rem;
      }

      .say-hi {
        width: 100%;
      }

      .contact-one {
        display: flex;
        flex-direction: column;
        gap: 0;
        box-shadow: none;
      }

      .contact-two-name {
        display: flex;
        flex-direction: column;
      }

      .contact-two-box {
        display: flex;
        flex-wrap: wrap;
      }

      .contact-boxs i, span {
        font-size: 1.5rem;
      }

      .service {
        width: 100%;
        padding: 1rem;
        height: 100%;
        margin-bottom: 2rem;
      }

      .servise-one {
        display: flex;
        gap: 0.5rem;
        width: 100%;
        padding: 1rem;
      }

      .servise-one h1 {
        font-size: 2.5rem;
      }

      .servise-two {
        display: flex;
        flex-direction: column;
      }

      .boxs-icon {
        margin-right: 1rem;
      }

      .logo-grid {
        padding: 2rem 1rem;
      }

      .logo-grid-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
      }

      .logo-grid-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }

      .logo-img {
        max-width: 120px;
      }

      .footer-content {
        padding: 1rem;
        gap: 0.5rem;
      }

      .copyright,
      .design-credit {
        font-size: 0.875rem; 
        text-align: center;  
      }

      .design-credit a {
        font-size: 0.875rem;
      }

      .information-container {
        flex-direction: column;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }

      .stat-box {
        padding: 1.25rem;
      }
    }
  