* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        html,
        body {
            font-family: 'Roboto', sans-serif;
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            align-items: center;
            background: #e9ecef;
            z-index: 1200;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-right: 15px;
            text-decoration: none;
        }

        .logo img {
            height: 40px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            margin-right: auto;
        }

        .nav-links a {
            position: relative;
            color: #454444;
            text-decoration: none;
            font-size: 16px;
            padding-bottom: 4px;
            transition: all 0.3s ease;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: #000000;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #000000;
            transform: translateY(-3px);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-button button {
            padding: 10px 20px;
            background: #e9ecef;
            color: #000;
            border: 1px solid #000;
            border-radius: 12px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s, color 0.3s, border-color 0.3s;
        }

        .nav-button button:hover {
            background: #000;
            color: #e9ecef;
            border-color: #000;
        }

        @media (max-width: 768px) {

            .navbar .nav-links,
            .navbar .nav-actions {
                display: none;
            }

            .navbar {
                padding: 20px;
                background: transparent;
            }

            .logo img {
                height: 34px;
            }
        }

        .menu-toggle {
            position: absolute;
            top: 50%;
            right: 30px;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            cursor: pointer;
            z-index: 1250;
            display: none;
            transition: all 0.3s ease;
        }

        .menu-toggle span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            background: #000;
            transition: all 0.3s ease;
        }

        .menu-toggle span:nth-child(1) {
            top: 4px;
        }

        .menu-toggle span:nth-child(2) {
            top: 10px;
        }

        .menu-toggle span:nth-child(3) {
            top: 16px;
        }

        .menu-toggle.open span:nth-child(1) {
            transform: rotate(45deg);
            top: 10px;
        }

        .menu-toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.open span:nth-child(3) {
            transform: rotate(-45deg);
            top: 10px;
        }

        .menu-toggle:hover span {
            background: #333;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            left: auto;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            height: 100vh;
            background: #e9ecef;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: right 1s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 1000;
        }

        .mobile-menu.open {
            right: 0;
            left: 0;
        }

        .mobile-menu .nav-links {
            display: flex;
            flex-direction: column;
            gap: 30px;
            list-style: none;
            width: 100%;
            align-items: center;
            order: 1;
        }

        .mobile-menu .nav-links li {
            text-align: center;
        }

        .mobile-menu .nav-links a {
            color: #000;
            font-size: 24px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .mobile-menu .nav-links a:hover {
            color: #000000;
            transform: translateY(-3px);
        }

        .mobile-menu .nav-button {
            margin-top: 40px;
            order: 2;
        }

        .mobile-menu .nav-links li a,
        .mobile-menu .nav-button button {
            opacity: 0;
            transform: translateY(40px);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-menu.open .nav-links li:nth-child(1) a {
            animation: fadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.4s;
        }

        .mobile-menu.open .nav-links li:nth-child(2) a {
            animation: fadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.5s;
        }

        .mobile-menu.open .nav-links li:nth-child(3) a {
            animation: fadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.6s;
        }

        .mobile-menu.open .nav-links li:nth-child(4) a {
            animation: fadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.7s;
        }

        .mobile-menu.open .nav-links li:nth-child(5) a {
            animation: fadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.8s;
        }

        .mobile-menu.open .nav-button button {
            animation: fadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.9s;
        }

        .mobile-menu .nav-button button {
            padding: 12px 24px;
            font-size: 18px;
            color: #000;
            background: #e9ecef;
            border: 2px solid #000;
            border-radius: 12px;
            cursor: pointer;
            transition: background 0.3s, color 0.3s, border-color 0.3s;
        }

        .mobile-menu .nav-button button:hover {
            background: #000;
            color: #e9ecef;
            border-color: #000;
        }






















        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #e9ecef;
            color: #333;
        }

        .hero {
            width: 1200px;
            margin: 0 auto;
            background-color: #e9ecef;
            border-radius: 12px;
            padding: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            height: 100vh;
            box-sizing: border-box;
        }

        .vertical-info {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 2;
        }

        .vertical-info .vertical-text-top,
        .vertical-info .vertical-text-bottom {
            transform: rotate(-90deg);
            font-size: 1.1rem;
            color: black;
            opacity: 0.5;
            white-space: nowrap;
        }

        .vertical-info .vertical-text-top {
            margin-bottom: 50px;
        }

        .vertical-info .vertical-text-bottom {
            margin-top: 50px;
        }

        .vertical-info .line {
            width: 2px;
            height: 350px;
            background-color: rgba(0, 0, 0, 0.3);
            margin: 0;
        }

        .vertical-email {
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            font-size: 1.1rem;
            color: black;
            opacity: 0.7;
            white-space: nowrap;
            z-index: 2;
        }

        .scroll-down {
            position: absolute;
            left: 40px;
            bottom: 20px;
            font-size: 1rem;
            color: black;
            opacity: 0.7;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            z-index: 2;
        }

        .scroll-down::after {
            content: '↓';
            font-size: 1.2rem;
        }

        .hero-content {
            width: 100%;
            max-width: 1100px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .hero-main {
            width: 50%;
            padding: 30px;
            display: flex;
            flex-direction: column;
            position: relative;
            top: -80px;
        }

        .stats-container {
            display: flex;
            flex-direction: row;
            gap: 30px;
            margin-bottom: 30px;
            line-height: 1.4;
            justify-content: flex-start;
            order: -1;
        }

        .stats-container p {
            margin: 0;
            text-align: center;
        }

        .stats-container .big {
            font-size: 2rem;
            font-weight: bold;
        }

        .stats-container .small {
            font-size: 0.8rem;
            color: #555;
        }

        .greeting {
            font-size: 10rem;
            font-weight: 100;
            margin: 20px 0 5px;
            line-height: 1;
            position: relative;
            top: 20px;
        }

        .name-role {
            font-size: 1.5rem;
            color: black;
            margin: 0;
            position: relative;
            top: 20px;
        }

        .hero-right {
            width: 50%;
            padding: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .img-container {
            width: 100%;
            max-width: 800px;
            height: 600px;
            overflow: hidden;
            border-radius: 12px;
            position: relative;
        }

        .img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 720px) {
    .hero {
        width: 100%;
        max-width: 90%;
        padding: 30px;
        flex-direction: column;
        height: auto;
        min-height: calc(100vh - 80px);
        box-sizing: border-box;
        margin: 80px auto 20px;
        border-radius: 10px;
    }

    .hero-content {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .hero-main {
        width: 100%;
        padding: 20px 0;
        text-align: center;
        top: 0;
        order: 2;
    }

    .hero-right {
        width: 100%;
        padding: 10px 0;
        text-align: center;
        order: 1;
        position: relative;
    }

    .stats-container {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 0;
        margin-top: 30px;
        justify-content: center;
        order: 3;
    }

    .stats-container .big {
        font-size: 2.4rem;
    }

    .stats-container .small {
        font-size: 1.2rem;
    }

    .greeting {
        font-size: 6rem;
        font-weight: 400;
        margin: 10px 0 10px;
        top: 0;
    }

    .name-role {
        font-size: 1.8rem;
        top: 0;
    }

    .vertical-info {
        display: flex;
        position: absolute;
        left: -20px;
        top: -20px; 
        transform: none; 
        flex-direction: column;
        align-items: center;
        z-index: 2;
    }

    .vertical-email {
        display: block;
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        font-size: 1rem;
        color: black;
        opacity: 0.7;
        white-space: nowrap;
        z-index: 2;
    }

    .scroll-down {
        display: none;
    }

    .img-container {
        max-width: 100%;
        width: 95%;
        height: 600px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        width: 100%;
        max-width: 90%;
        padding: 20px;
        flex-direction: column;
        height: auto;
        min-height: calc(100vh - 60px);
        box-sizing: border-box;
        margin: 20px auto 20px;
        border-radius: 8px;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .hero-main {
        width: 100%;
        padding: 15px 0;
        text-align: center;
        top: 0;
        order: 2;
    }

    .hero-right {
        width: 100%;
        padding: 5px 0;
        text-align: center;
        order: 1;
        position: relative;
    }

    .stats-container {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 0;
        margin-top: 20px;
        justify-content: center;
        order: 3;
    }

    .stats-container .big {
        font-size: 2rem;
    }

    .stats-container .small {
        font-size: 1.1rem;
    }

    .greeting {
        font-size: 4.5rem;
        font-weight: 200;
        margin: 5px 0 5px;
        top: 0;
    }

    .name-role {
        font-size: 1rem;
        top: 0;
    }

    .vertical-info {
        display: flex;
        position: absolute;
        left: -15px;
        top: 65px; 
        transform: none; 
        flex-direction: column;
        align-items: center;
        z-index: 2;
    }

    .vertical-info .vertical-text-top,
    .vertical-info .vertical-text-bottom {
        font-size: 0.9rem;
    }

    .vertical-info .line {
        height: 250px;
    }

    .vertical-email {
        display: block;
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        font-size: 0.9rem;
        color: black;
        opacity: 0.7;
        white-space: nowrap;
        z-index: 2;
    }

    .scroll-down {
        display: none;
    }

    .img-container {
        max-width: 100%;
        width: 95%;
        height: 550px;
        border-radius: 8px;
        margin-right: 25px;
    }
}
















.container {
      max-width: 1190px;
      margin: 100px auto 0 auto;
      background-color: #e9ecef;
      padding: 40px 20px;
      box-sizing: border-box;
    }

    .title {
      text-align: center;
      margin-bottom: 40px;
    }

    .title .subtitle {
      font-size: 1rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin: 0;
      font-weight: normal;
      opacity: 0.8;
    }

    .title .maintitle {
      font-size: 2.5rem;
      margin: 10px 0 0;
      text-transform: uppercase;
      opacity: 0.8;
    }

    .maincontent {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
    }

    .gallery {
      width: 30%;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .gallery .photoframe {
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-radius: 20px;
      position: relative;
    }

    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 20px;
      transition: transform 1.4s ease-in-out;
      transform-origin: center center;
    }

    .gallery .photoframe:hover img {
      transform: scale(1.1);
    }

    .textblock {
      width: 40%;
      line-height: 1.6;
      text-align: center;
    }

    .textblock p {
      margin-bottom: 20px;
      opacity: 0.8;
    }

    .highlights {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      background-color: #e9ecef;
    }

    .highlight {
      flex: 1;
      text-align: center;
    }

    .highlight img {
      width: 60px;
      height: auto;
      margin-bottom: 10px;
      opacity: 0.8;
    }

    .highlight h3 {
      margin: 10px 0;
      text-transform: uppercase;
      font-size: 1.5rem;
      opacity: 0.8;
    }

    .highlight p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.4;
      opacity: 0.8;
    }

    @media (max-width: 768px) {
      .maincontent {
        flex-direction: column;
      }

      .gallery,
      .textblock {
        width: 100%;
      }

      .highlights {
        flex-direction: column;
      }
    }

    @media (max-width: 480px) {
      .title .maintitle {
        font-size: 24px;
      }

      .title .subtitle {
        font-size: 0.8rem;
      }

      .highlight h3 {
        font-size: 1.3rem;
      }

      .highlight p {
        font-size: 0.9rem;
      }
    }























    .about-wrapper {
  padding: 5rem 1.25rem 3.75rem;
  background: #e9ecef;
  max-width: 1185px;
  margin: 0 auto;
}

.about-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 2px solid rgba(0, 0, 0, 0.348);
  background: #e9ecef;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  width: 100%;
}

.about-text {
  flex: 1 1 55%;
  opacity: 0.85;
}

.about-text h2 {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #2d2d2d;
  position: relative;
  margin-bottom: 1rem;
}

.about-text h2::after {
  content: '';
  width: 3rem;
  height: 3px;
  background: #333;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  border-radius: 2px;
}

.about-text h3 {
  font-size: 2.3rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #2d2d2d;
  margin-bottom: 0.5rem;
}

.about-text p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 90%;
}

.cta-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: #e9ecef;
  color: #2d2d2d;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.348);
  margin: 0 0 1rem 0;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  transition: 0.5s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-image {
  flex: 1 1 45%;
  position: relative;
  min-height: 22.5rem;
}

.about-image img {
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.about-image .big-img {
  width: 110%;
  height: 120%;
  position: absolute;
  top: -25%;
  left: -5%;
}

.about-image .small-img {
  width: 90%;
  position: absolute;
  bottom: -8%;
  right: -10%;
}

.slider-container {
  width: 100%;
  margin-top: 1.5rem;
  overflow: hidden;
  position: relative;
  --height: 3.5rem;
  --width: 6rem;
  --quantity: 8;
  opacity: 0.85;
}

.slider-container::before,
.slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 2rem;
  height: 100%;
  z-index: 2;
}

.slider-container::before {
  left: 0;
  background: linear-gradient(to right, #e9ecef 20%, transparent);
}

.slider-container::after {
  right: 0;
  background: linear-gradient(to left, #e9ecef 20%, transparent);
}

.slider {
  width: 100%;
  height: var(--height);
  overflow: hidden;
}

.slider .list {
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}

.slider .list .item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun 30s linear infinite;
  animation-delay: calc((30s / var(--quantity)) * (var(--position) - 1) - 30s);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: #2d2d2d;
  transition: filter 0.3s;
}

@keyframes autoRun {
  from { left: 100%; }
  to { left: calc(var(--width) * -1); }
}

.slider:hover .item {
  animation-play-state: paused;
  filter: grayscale(1);
}

.slider .item:hover {
  filter: grayscale(0);
}

.slider[reverse="true"] .item {
  animation: reversePlay 30s linear infinite;
}

@keyframes reversePlay {
  from { left: calc(var(--width) * -1); }
  to { left: 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-box {
    flex-direction: column;
    padding: 1.5rem;
    align-items: flex-start;
  }

  .about-text {
    flex: 1 1 100%;
    text-align: center;
    width: 100%;
  }

  .about-text h2 {
    font-size: 0.875rem;
  }

  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-text h3 {
    font-size: 1.75rem;
  }

  .about-text p {
    font-size: 0.875rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-btn {
    padding: 0.375rem 1.25rem;
    font-size: 0.75rem;
    margin: 0 0 0.75rem 0;
  }

  .about-image {
    flex: 1 1 100%;
    min-height: 18rem;
    width: 100%;
  }

  .about-image .big-img {
    width: 100%;
    height: 100%;
    position: static;
  }

  .about-image .small-img {
    display: none;
  }

  .slider-container {
    width: calc(100% - 1rem);
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    --height: 2.5rem;
    --width: 5rem;
  }

  .slider .list .item {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .about-wrapper {
    padding: 3rem 1rem 2rem;
  }

  .about-box {
    padding: 1rem;
    border-radius: 12px;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .cta-btn {
    padding: 0.45rem 1.7rem;
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
  }

  .about-image {
    min-height: 15rem;
  }

  .slider-container {
    width: calc(100% - 0.5rem);
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    --height: 2rem;
    --width: 4rem;
  }

  .slider .list .item {
    font-size: 0.8rem;
  }
}

@media (min-width: 1200px) {
  .about-text h3 {
    font-size: 3rem;
  }

  .about-text p {
    font-size: 1.125rem;
  }

  .cta-btn {
    padding: 0.625rem 2rem;
    font-size: 1rem;
    margin: 0 0 1rem 0;
  }
}

























.our-principles {
      background-color: #e9ecef;
      max-width: 1185px;
      margin: 0 auto;
      padding: 30px 20px;
      border-radius: 15px;
    }
    .our-principles__title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 30px;
      font-weight: 300;
      color: #2d2d2d;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      opacity: 0.7;
    }
    .our-principles__title::after {
      content: '';
      width: 60px;
      height: 3px;
      background: #333;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }
    .our-principles__content {
      display: flex;
      align-items: center;
      gap: 30px;
    }
    .our-principles__points-wrapper {
      flex: 0 0 40%;
    }
    .our-principles__points-list {
      position: relative;
      padding-left: 40px;
    }
    .our-principles__divider {
      position: absolute;
      left: 10px;
      top: 0;
      height: 100%;
      width: 3px;
      background-color: #d1d5db;
    }
    .our-principles__indicator {
      position: absolute;
      left: 10px;
      width: 3px;
      background-color: #2d2d2d;
      opacity: 0.6;
      transition: top 0.5s ease, height 0.5s ease;
      box-shadow: 0 0 8px rgba(45, 45, 45, 0.3);
    }
    .our-principles__point {
      opacity: 0.5;
      transition: opacity 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      padding: 15px 10px;
      transform: translateX(-10px);
      border-radius: 8px;
      margin: 5px 0;
    }
    .our-principles__point--active {
      opacity: 1;
      transform: translateX(0);
    }
    .our-principles__point h3 {
      margin: 0;
      font-size: 1.4rem;
      font-weight: 500;
      color: #2d2d2d;
    }
    .our-principles__point p {
      margin: 8px 0 0;
      font-size: 1.1rem;
      color: #4b5563;
      line-height: 1.5;
    }
    .our-principles__images {
      flex: 0 0 60%;
      position: relative;
      min-height: 500px;
      border-radius: 25px;
      overflow: hidden;
      background: #e9ecef;
    }
    .our-principles__images img {
      position: absolute;
      top: 0;
      left: 0;
      width: 96%;
      height: 100%;
      object-fit: cover;
      border-radius: 25px;
      opacity: 0;
      transform: scale(0.95);
      transition: opacity 0.6s ease, transform 0.6s ease;
      background: #e9ecef;
    }
    .our-principles__images img.active {
      opacity: 1;
      transform: scale(1);
    }
    @media (max-width: 1024px) {
      .our-principles {
        padding: 20px 15px;
      }
      .our-principles__title {
        font-size: 1.8rem;
        margin-bottom: 25px;
      }
      .our-principles__content {
        gap: 20px;
      }
      .our-principles__points-wrapper {
        flex: 0 0 45%;
      }
      .our-principles__images {
        flex: 0 0 55%;
        min-height: 400px;
      }
      .our-principles__point h3 {
        font-size: 1.3rem;
      }
      .our-principles__point p {
        font-size: 1rem;
      }
    }
    @media (max-width: 768px) {
      .our-principles__content {
        flex-direction: column;
        gap: 15px;
      }
      .our-principles__points-wrapper,
      .our-principles__images {
        flex: 1;
        width: 100%;
        padding-left: 0;
      }
      .our-principles__points-list {
        padding-left: 30px;
      }
      .our-principles__divider,
      .our-principles__indicator {
        left: 5px;
      }
      .our-principles__images {
        min-height: 350px;
      }
      .our-principles__images img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .our-principles__title {
        font-size: 1.6rem;
      }
      .our-principles__point h3 {
        font-size: 1.2rem;
      }
      .our-principles__point p {
        font-size: 0.95rem;
      }
    }
    @media (max-width: 480px) {
      .our-principles {
        padding: 15px 10px;
      }
      .our-principles__title {
        font-size: 1.4rem;
        margin-bottom: 20px;
      }
      .our-principles__points-list {
        padding-left: 25px;
      }
      .our-principles__divider,
      .our-principles__indicator {
        left: 3px;
      }
      .our-principles__point {
        padding: 10px 0;
      }
      .our-principles__point h3 {
        font-size: 1.1rem;
      }
      .our-principles__point p {
        font-size: 0.9rem;
      }
      .our-principles__images {
        min-height: 250px;
      }
      .our-principles__images img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }



















    .wwd-container {
  background-color: #e9ecef;
  max-width: 1235px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}
.wwd-container h1,
.wwd-container h2,
.wwd-container p,
.wwd-service h3,
.wwd-service p {
  opacity: 0.8;
}
.wwd-container h1 {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 10px;
}
.wwd-container h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
}
.wwd-container p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.wwd-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.wwd-service {
  flex: 1 1 calc(30% - 20px);
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}
.wwd-service:nth-child(2) {
  margin-top: 50px;
}
.wwd-service:nth-child(2)::before {
  content: '𒆜𒆜𒆜𒆜𒆜𒆜';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 34px;
  opacity: 0.8;
}
.wwd-service img {
  width: 40%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
  border-radius: 15px;
  opacity: 0.8;
}
.wwd-service h3 {
  margin-top: 0;
  font-size: 20px;
}
.wwd-service p {
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .wwd-container {
    padding: 30px 15px;
  }
  .wwd-container h1 {
    font-size: 0.8rem;
  }
  .wwd-container h2 {
    font-size: 24px;
  }
  .wwd-container p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .wwd-services {
    gap: 15px;
  }
  .wwd-service {
    flex: 1 1 calc(45% - 15px);
    padding: 15px;
  }
  .wwd-service:nth-child(2) {
    margin-top: 40px;
  }
  .wwd-service:nth-child(2)::before {
    font-size: 28px;
    top: -50px;
  }
  .wwd-service h3 {
    font-size: 18px;
  }
  .wwd-service p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .wwd-container {
    padding: 20px 10px;
  }
  .wwd-container h1 {
    font-size: 0.9rem;
  }
  .wwd-container h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .wwd-container p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .wwd-services {
    flex-direction: column;
    gap: 10px;
  }
  .wwd-service {
    flex: 1 1 100%;
    padding: 10px;
    margin-bottom: 15px;
  }
  .wwd-service:nth-child(2) {
    margin-top: 30px;
  }
  .wwd-service:nth-child(2)::before {
    font-size: 28px;
    top: -40px;
  }
  .wwd-service h3 {
    font-size: 18px;
  }
  .wwd-service p {
    font-size: 15px;
  }
}























    .project-blog {
      max-width: 1190px;
      margin: 0 auto;
      padding: 40px 20px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto 1fr;
      grid-template-areas:
        "intro intro featured"
        "hijab cinema .";
      gap: 32px;
    }

    .project-blog .intro {
      grid-area: intro;
    }

    .project-blog .intro h3,
    .project-blog .intro .tagline {
      opacity: 0.8;
    }

    .project-blog .intro .small-title {
      font-size: 1rem;
      font-weight: normal;
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .project-blog .intro .big-title {
      font-size: 2.5rem;
      font-weight: 300;
      margin-bottom: 16px;
    }

    .project-blog .intro .tagline {
      font-size: 1.1rem;
      margin-bottom: 24px;
    }

    .project-blog .intro .btn {
      padding: 0.75em 1.5em;
      font-size: 0.9rem;
      border: 1px solid #343a40;
      background: transparent;
      border-radius: 30px;
      opacity: 0.8;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .project-blog .intro .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: 0.5s;
    }

    .project-blog .intro .btn:hover::before {
      left: 100%;
    }

    .project-blog .intro .btn:hover {
      background: #343a40;
      color: #fff;
      opacity: 1;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      border-color: #fff;
    }

    .project-blog .featured,
    .project-blog .hijab,
    .project-blog .cinema {
      display: flex;
      flex-direction: column;
    }

    .project-blog .image-container {
      width: 100%;
      height: 280px;
      overflow: hidden;
      border-radius: 30px;
    }

    .project-blog img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 2s ease;
    }

    .project-blog .image-container:hover img {
      transform: scale(1.1);
    }

    .project-blog .featured {
      transform: translateY(110px);
    }

    .project-blog .cinema {
      transform: translateY(-150px);
    }

    .project-blog .hijab {
      transform: translateY(-40px);
    }

    .project-blog h4 {
      margin: 16px 0 8px;
      font-size: 1.1rem;
      opacity: 0.9;
    }

    .project-blog a {
      font-size: 0.9rem;
      text-decoration: none;
      color: #343a40;
      opacity: 0.7;
    }

    @media (max-width: 768px) {
      .project-blog {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
          "intro intro"
          "featured hijab"
          "cinema .";
        gap: 24px;
        padding: 20px;
      }

      .project-blog .intro .big-title {
        font-size: 2rem;
      }

      .project-blog .image-container {
        height: 200px;
      }

      .project-blog .featured,
      .project-blog .hijab,
      .project-blog .cinema {
        transform: translateY(0);
      }
    }

    @media (max-width: 480px) {
      .project-blog {
        grid-template-columns: 1fr;
        grid-template-areas:
          "intro"
          "featured"
          "hijab"
          "cinema";
        gap: 16px;
        padding: 16px;
      }

      .project-blog .intro {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .project-blog .intro .big-title {
        font-size: 1.5rem;
        text-align: center;
      }

      .project-blog .intro .small-title,
      .project-blog .intro .tagline,
      .project-blog h4 {
        text-align: center;
      }

      .project-blog .image-container {
        height: 240px;
      }

      .project-blog a {
        text-align: right;
      }
    }






















    .unique-pricing-section {
      max-width: 1220px;
      margin: 0 auto;
      padding: 20px;
      text-align: center;
      background: #e9ecef;
    }
    .design-heading {
      font-size: 1rem;
      text-transform: uppercase;
      margin: 0 0 12px;
      opacity: 0.8;
    }
    .unique-section-title {
      font-size: 2.5rem;
      line-height: 1.3;
      max-width: 700px;
      font-weight: 300;
      margin: 0 auto 16px;
      opacity: 0.8;
    }
    .unique-section-subtitle {
      font-size: 1.1rem;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto 40px;
      opacity: 0.8;
    }
    .unique-tabs {
      display: inline-flex;
      background: #f7fafc;
      border: 1px solid #e2e8f0;
      border-radius: 50px;
      padding: 4px;
      margin-bottom: 50px;
      position: relative;
      overflow: hidden;
    }
    .unique-tab {
      padding: 12px 32px;
      cursor: pointer;
      background: transparent;
      color: #4a5568;
      font-size: 1rem;
      font-weight: 500;
      border: none;
      outline: none;
      border-radius: 50px;
      transition: color 0.4s ease;
      z-index: 2;
    }
    .unique-tab.active {
      color: #2d3748;
    }
    .unique-toggle-slider {
      position: absolute;
      top: 4px;
      left: 4px;
      width: calc(var(--slider-width, 0) - 8px);
      height: calc(100% - 8px);
      background: #fff;
      border-radius: 50px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1), width 0.5s cubic-bezier(0.77, 0, 0.175, 1);
      z-index: 1;
    }
    .unique-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      justify-content: center;
    }
    .unique-card {
      background: #e9ecef;
      padding: 24px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.15);
      display: flex;
      flex-direction: column;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .unique-card.fade {
      opacity: 0;
      transform: translateY(10px);
    }
    .unique-basic,
    .unique-standard,
    .unique-premium {
      flex: 1;
    }
    .unique-card:nth-child(2) {
      position: relative;
      overflow: hidden;
    }
    .unique-card:nth-child(2)::before {
      content: 'Most Popular';
      position: absolute;
      top: 12px;
      right: -40px;
      background: #000;
      color: #fff;
      font-size: 0.8rem;
      padding: 6px 40px;
      transform: rotate(45deg);
      font-weight: 500;
    }
    .unique-card h3 {
      margin-bottom: 12px;
      font-size: 1.6rem;
      font-weight: 600;
      color: #2d3748;
    }
    .unique-price {
      font-size: 2.2rem;
      margin: 12px 0 8px;
      font-weight: 700;
    }
    .unique-period {
      font-size: 0.9rem;
      margin-left: 6px;
    }
    .unique-price-note {
      font-size: 0.85rem;
      margin: 8px 0 12px;
    }
    .unique-features {
      list-style: none;
      text-align: left;
      margin: 20px 0 0;
      flex-grow: 1;
      color: #4a5568;
    }
    .unique-features li {
      margin: 10px 0;
      padding-left: 28px;
      position: relative;
      font-size: 0.9rem;
    }
    .unique-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      width: 18px;
      height: 18px;
      line-height: 18px;
      text-align: center;
      color: #000;
      font-weight: bold;
      border: 1px solid #000;
      border-radius: 50%;
      font-size: 0.8rem;
    }
    .unique-btn {
      display: inline-block;
      padding: 12px 28px;
      border: none;
      border-radius: 8px;
      background: #000;
      color: #fff;
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
      margin: 12px 0 0;
    }
    .unique-btn:hover {
      background: #333;
    }
    @media (min-width: 768px) {
      .unique-pricing-section {
        padding: 20px 40px;
      }
    }
    @media (max-width: 768px) {
      .unique-section-title {
        font-size: 2.2rem;
      }
      .unique-section-subtitle {
        font-size: 1rem;
      }
      .unique-tabs {
        padding: 4px;
      }
      .unique-tab {
        padding: 10px 24px;
        font-size: 0.9rem;
      }
    }
    @media (max-width: 480px) {
      .unique-pricing-section {
        padding: 16px;
      }
      .unique-section-title {
        font-size: 2rem;
      }
      .unique-section-subtitle {
        font-size: 1.1rem;
      }
      .unique-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
      }
      .unique-card {
        padding: 20px;
      }
    }





















.footer-border {
  max-width: 1130px;
  margin: 0 auto 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.footer-container {
  display: flex;
  max-width: 1150px;
  margin: 0 auto;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer-branding {
  flex: 1;
  min-width: 220px;
  opacity: 0.8;
}
.footer-branding .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.footer-branding .footer-logo img {
  width: 60px;
  height: 60px;
}
.footer-about {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  opacity: 0.8;
}
.social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  opacity: 0.8;
}
.social-icons a {
  color: #222;
  font-size: 18px;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #555;
}
.footer-links {
  display: flex;
  flex: 2;
  gap: 40px;
  opacity: 0.8;
}
.footer-link-column {
  min-width: 150px;
}
.footer-link-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 0.8;
}
.footer-link-column ul {
  list-style: none;
  padding: 0;
}
.footer-link-column ul li {
  margin-bottom: 4px;
  line-height: 1.6;
  opacity: 0.8;
}
.footer-link-column ul li a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s;
  opacity: 0.8;
}
.footer-link-column ul li a:hover {
  color: #555;
}
.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 60px;
  text-align: center;
  font-size: 14px;
  color: #666;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-branding,
  .footer-links {
    width: 100%;
  }
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .footer-container {
    padding: 30px 20px;
    gap: 30px;
  }
  .footer-branding .footer-logo {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  .footer-branding .footer-logo img {
    margin-bottom: 8px;
  }
  .footer-link-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .footer-link-column ul li {
    font-size: 14px;
  }
  .footer-bottom {
    font-size: 13px;
    margin-bottom: 50px;
    padding: 0 20px;
  }
}


















.xai-custom-loader {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #e9ecef;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9000;
            transition: opacity 1s ease;
            opacity: 1;
        }
        .xai-custom-loader.xai-hidden {
            opacity: 0;
            pointer-events: none;
        }
        .xai-custom-container {
            --uib-size: 100px;
            --uib-color: #000;
            --uib-speed: 1.4s;
            --uib-bg-opacity: 0.1;
            height: var(--uib-size);
            width: var(--uib-size);
            transform-origin: center;
            overflow: visible;
        }
        .xai-custom-car {
            fill: none;
            stroke: var(--uib-color);
            stroke-dasharray: 15, 85;
            stroke-dashoffset: 0;
            stroke-linecap: round;
            animation: xai-custom-travel var(--uib-speed) linear infinite;
            will-change: stroke-dasharray, stroke-dashoffset;
            transition: stroke 0.5s ease;
        }
        .xai-custom-track {
            stroke: var(--uib-color);
            opacity: var(--uib-bg-opacity);
            transition: stroke 0.5s ease;
        }
        @keyframes xai-custom-travel {
            0% {
                stroke-dashoffset: 0;
            }
            100% {
                stroke-dashoffset: -100;
            }
        }
        .xai-page-content {
            padding: 20px;
            text-align: center;
            opacity: 0;
            transition: opacity 1s ease;
        }
        .xai-page-content.xai-visible {
            opacity: 1;
        }  