* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        html,
        body {
            font-family: 'Roboto', sans-serif;
        }

        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #e9ecef;
            color: #333;
        }

        .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;
        }
















        .footer-border {
  max-width: 1150px;
  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;
  }
}



















.unique-content {
            max-width: 1180px;
            margin: 60px auto 0;
            padding: 60px 20px;
            opacity: 1;
            transition: opacity 1s ease;
        }
        .unique-content h1 {
            font-size: 4.5rem;
            margin-bottom: 10px;
            font-weight: 300;
            color: #1f2937;
        }
        .unique-desc {
            font-size: 1.15rem;
            color: #495057;
            margin: 0 0 40px;
            max-width: 700px;
            line-height: 1.6;
        }
        .unique-contact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: flex-start;
        }
        .unique-contact-info,
        .unique-contact-form {
            flex: 1;
            min-width: 300px;
        }
        .unique-contact-details p {
            margin-bottom: 14px;
            font-size: 1rem;
            color: #343a40;
        }
        .unique-contact-details p strong {
            display: inline-block;
            width: 100px;
        }
        .unique-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 500px;
        }
        .unique-input-group {
            position: relative;
            width: 100%;
        }
        .unique-input-group input,
        .unique-input-group textarea {
            background: transparent;
            border: 0;
            border-bottom: 2px solid #1f2937;
            width: 100%;
            padding: 14px 0 10px;
            font-size: 17px;
            color: #1f2937;
            transition: border-color 0.3s ease;
        }
        .unique-input-group input:focus,
        .unique-input-group input:not(:placeholder-shown),
        .unique-input-group textarea:focus,
        .unique-input-group textarea:not(:placeholder-shown) {
            outline: 0;
            border-bottom-color: #2563eb;
        }
        .unique-input-group label {
            position: absolute;
            top: 14px;
            left: 0;
            pointer-events: none;
        }
        .unique-input-group label span {
            font-size: 17px;
            color: #1f2937;
            transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .unique-input-group input:focus + label span,
        .unique-input-group input:not(:placeholder-shown) + label span,
        .unique-input-group textarea:focus + label span,
        .unique-input-group textarea:not(:placeholder-shown) + label span {
            color: #2563eb;
            transform: translateY(-26px);
        }
        input::placeholder,
        textarea::placeholder {
            color: transparent;
        }
        textarea {
            resize: vertical;
            min-height: 100px;
        }
        button {
            display: inline-block;
            width: 150px;
            height: 45px;
            border-radius: 10px;
            border: 1px solid #1f2937;
            position: relative;
            overflow: hidden;
            transition: 0.5s ease-in;
            z-index: 1;
            background: transparent;
            cursor: pointer;
            align-self: flex-end;
        }
        button::before,
        button::after {
            content: '';
            position: absolute;
            top: 0;
            width: 0;
            height: 100%;
            transform: skew(15deg);
            transition: 0.5s;
            z-index: -1;
        }
        button::before {
            left: -10px;
            background: #343a40;
        }
        button::after {
            right: -10px;
            background: #495057;
        }
        button:hover::before,
        button:hover::after {
            width: 58%;
        }
        button span {
            color: #1f2937;
            font-size: 17px;
            transition: 0.3s ease-in;
        }
        button:hover span {
            color: #e0aaff;
        }
        @media (max-width: 768px) {
            .unique-contact-section {
                flex-direction: column;
            }
            .unique-content h1 {
                font-size: 3rem;
                text-align: center;
            }
            .unique-desc {
                text-align: center;
                margin: 0 auto 40px;
            }
            .unique-contact-info,
            .unique-contact-form {
                width: 100%;
            }
            button {
                align-self: flex-end;
            }
        }
        @media (max-width: 480px) {
            .unique-content {
        margin-top: 20px; 
    }
            button {
                width: 130px;
                height: 42px;
                align-self: flex-end;
            }
        }
        .unique-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;
        }
        .unique-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;
        }
        .unique-car {
            fill: none;
            stroke: var(--uib-color);
            stroke-dasharray: 15, 85;
            stroke-dashoffset: 0;
            stroke-linecap: round;
            animation: unique-travel var(--uib-speed) linear infinite;
            will-change: stroke-dasharray, stroke-dashoffset;
            transition: stroke 0.5s ease;
        }
        .unique-track {
            stroke: var(--uib-color);
            opacity: var(--uib-bg-opacity);
            transition: stroke 0.5s ease;
        }
        @keyframes unique-travel {
            0% {
                stroke-dashoffset: 0;
            }
            100% {
                stroke-dashoffset: -100;
            }
        }