     :root {
       --color-primary: #4361ee;
       --color-secondary: #3f37c9;
       --color-success: #4cc9f0;
       --color-warning: #f72585;
       --color-light: #f8f9fa;
       --color-dark: #11234b;
       --bg-main: #F0F0F0;
       font-family: "Space Grotesk", sans-serif !important;
     }

     body {
       font-family: "Space Grotesk", sans-serif !important;
       background-color: var(--bg-main) !important;
     }

     .home-container {
       max-width: 1400px;
       margin: 0 auto;
       background: var(--bg-main);
     }

     .navbar-custom {
       background: #fff;
       padding: 15px 30px;
       position: sticky;
       top: 0;
       z-index: 1000;
     }

     .navbar-brand {
       display: flex;
       align-items: center;
       gap: 20px;
       padding: 15;
       width: auto;
     }

     .logo-icon {
       transform: rotate(-45deg);
     }

     .logo-text {
       font-size: 1.5em;
       font-weight: 700;
       color: var(--color-dark);
     }

     .logo-text span {
       color: var(--color-primary);
       font-weight: 800;
     }

     /* Start Loader */
     .page-loader {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(135deg, #030614 0%, #0a0f1f 100%);
       display: flex;
       align-items: center;
       justify-content: center;
       z-index: 9999;
       transition: opacity 0.5s ease, visibility 0.5s ease;
     }

     .page-loader.loaded {
       opacity: 0;
       visibility: hidden;
     }

     .loader-content {
       text-align: center;
       max-width: 400px;
       padding: 40px;
     }

     .loader-logo {
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 12px;
       margin-bottom: 40px;
       animation: logoFloat 2s ease-in-out infinite;
     }

     .loader-logo .logo-icon {
       width: 60px;
       height: 60px;
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
       border-radius: 15px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-size: 2em;
       transform: rotate(45deg);
       animation: iconRotate 3s linear infinite;
       margin-right: 10px;
     }

     .loader-logo .logo-icon i {
       transform: rotate(-45deg);
     }

     .loader-logo .logo-text {
       font-size: 2.2em;
       font-weight: 700;
       color: white;
     }

     .loader-logo .logo-text span {
       color: var(--color-primary);
       font-weight: 800;
       animation: textGlow 2s ease-in-out infinite;
     }

     @keyframes logoFloat {

       0%,
       100% {
         transform: translateY(0);
       }

       50% {
         transform: translateY(-10px);
       }
     }

     @keyframes iconRotate {
       0% {
         transform: rotate(45deg);
       }

       25% {
         transform: rotate(55deg);
       }

       75% {
         transform: rotate(35deg);
       }

       100% {
         transform: rotate(45deg);
       }
     }

     @keyframes textGlow {

       0%,
       100% {
         text-shadow: 0 0 5px rgba(67, 97, 238, 0.5);
       }

       50% {
         text-shadow: 0 0 20px rgba(67, 97, 238, 0.8);
       }
     }

     .loader-animation {
       margin: 30px 0;
     }

     .loader-bar {
       width: 200px;
       height: 4px;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 4px;
       margin: 0 auto 20px;
       overflow: hidden;
       position: relative;
     }

     .loader-bar::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       height: 100%;
       width: 40%;
       background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
       border-radius: 4px;
       animation: barMove 1.5s ease-in-out infinite;
     }

     @keyframes barMove {
       0% {
         left: -40%;
       }

       100% {
         left: 100%;
       }
     }

     .loader-dots {
       display: flex;
       justify-content: center;
       gap: 8px;
       margin: 20px 0;
     }

     .loader-dots span {
       width: 10px;
       height: 10px;
       background: var(--primary);
       border-radius: 50%;
       animation: dotsPulse 1.4s ease-in-out infinite;
     }

     .loader-dots span:nth-child(1) {
       animation-delay: 0s;
     }

     .loader-dots span:nth-child(2) {
       animation-delay: 0.2s;
     }

     .loader-dots span:nth-child(3) {
       animation-delay: 0.4s;
     }

     .loader-dots span:nth-child(4) {
       animation-delay: 0.6s;
     }

     @keyframes dotsPulse {

       0%,
       100% {
         transform: scale(1);
         opacity: 0.5;
         background: var(--primary);
       }

       50% {
         transform: scale(1.5);
         opacity: 1;
         background: var(--secondary);
       }
     }

     .loader-text {
       color: rgba(255, 255, 255, 0.7);
       font-size: 1.1em;
       letter-spacing: 2px;
       margin-top: 20px;
     }

     .loading-text {
       text-transform: uppercase;
       font-weight: 500;
     }

     .loading-dots {
       display: inline-block;
     }

     .loading-dots span {
       display: inline-block;
       animation: dotsJump 1.4s ease-in-out infinite;
     }

     .loading-dots span:nth-child(1) {
       animation-delay: 0s;
     }

     .loading-dots span:nth-child(2) {
       animation-delay: 0.2s;
     }

     .loading-dots span:nth-child(3) {
       animation-delay: 0.4s;
     }

     @keyframes dotsJump {

       0%,
       100% {
         transform: translateY(0);
       }

       50% {
         transform: translateY(-5px);
       }
     }

     @media (max-width: 576px) {
       .loader-logo .logo-icon {
         width: 50px;
         height: 50px;
         font-size: 1.6em;
       }

       .loader-logo .logo-text {
         font-size: 1.8em;
       }

       .loader-bar {
         width: 150px;
       }
     }

     /* End Loader */
     /* Start To Top */
     .back-to-top {
       position: fixed;
       bottom: 30px;
       right: 30px;
       width: 55px;
       height: 55px;
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
       border-radius: 16px;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       gap: 3px;
       color: white;
       text-decoration: none;
       box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
       z-index: 999;
       opacity: 0;
       visibility: hidden;
       transform: translateY(20px);
       transition: all 0.3s ease;
       border: 1px solid rgba(255, 255, 255, 0.2);
       backdrop-filter: blur(5px);
     }

     .back-to-top.show {
       opacity: 1;
       visibility: visible;
       transform: translateY(0);
     }

     .back-to-top:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 35px rgba(67, 97, 238, 0.5);
       width: 60px;
       height: 60px;
       background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
       color: #fff;
     }

     .back-to-top:hover .btt-icon i {
       animation: bounce 1s infinite;
     }

     .btt-icon {
       font-size: 1.3em;
       line-height: 1;
     }

     .btt-text {
       font-size: 0.65em;
       font-weight: 600;
       letter-spacing: 0.5px;
       text-transform: uppercase;
       opacity: 0.8;
     }

     @keyframes bounce {

       0%,
       100% {
         transform: translateY(0);
       }

       50% {
         transform: translateY(-3px);
       }
     }

     @media (max-width: 768px) {
       .back-to-top {
         bottom: 20px;
         right: 20px;
         width: 50px;
         height: 50px;
         border-radius: 14px;
       }

       .back-to-top:hover {
         width: 55px;
         height: 55px;
       }

       .btt-text {
         display: none;
       }
     }

     @media (max-width: 576px) {
       .back-to-top {
         bottom: 15px;
         right: 15px;
         width: 45px;
         height: 45px;
         border-radius: 12px;
       }

       .back-to-top:hover {
         width: 50px;
         height: 50px;
       }
     }

     /* End To Top */
     /* Start Navbar */
     .nav-link-custom {
       color: var(--color-dark);
       font-weight: 500;
       padding: 8px 16px !important;
       margin: 0 5px;
       border-radius: 8px;
       transition: all 0.3s ease;
       position: relative;
     }

     .nav-link-custom:hover {
       color: var(--color-primary);
       background: rgba(67, 97, 238, 0.05);
     }

     .nav-link-custom.active {
       color: var(--color-primary);
       background: rgba(67, 97, 238, 0.1);
     }

     .nav-link-custom.active::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 50%;
       transform: translateX(-50%);
       width: 30px;
       height: 3px;
       background: var(--color-primary);
       border-radius: 10px;
     }

     .user-menu {
       display: flex;
       align-items: center;
       gap: 15px;
       margin-left: 20px;
       padding-left: 20px;
       border-left: 2px solid #e9ecef;
     }

     .user-menu-2 {
       display: flex;
       align-items: center;
       gap: 15px;
       margin-left: 20px;
       padding-left: 20px;
     }

     .notification-badge {
       position: relative;
       cursor: pointer;
       font-weight: bold;
     }

     .logo-avatar {
       width: 40px;
       height: 40px;
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
       border-radius: 10px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-weight: 600;
       cursor: pointer;
       transition: all 0.3s ease;
     }

     .search-avatar {
       padding: 0 10px 0 10px;
       letter-spacing: 0.15rem;
       height: 40px;
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
       border-radius: 10px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-weight: 400;
       cursor: pointer;
       transition: all 0.3s ease;
     }

     .search-avatar:hover {
       transform: scale(1.05);
       box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
     }

     .logo-avatar:hover {
       transform: scale(1.05);
       box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
     }

     .dropdown-item-custom {
       padding: 10px 15px;
       border-radius: 8px;
       transition: all 0.3s ease;
       color: var(--color-dark);
     }

     .dropdown-item-custom:hover {
       background: rgba(67, 97, 238, 0.05) !important;
       color: var(--color-primary) !important;
       transform: translateX(5px);
     }

     .dropdown-item-custom i {
       width: 20px;
       margin-right: 10px;
       color: var(--color-primary);
     }

     @media (max-width: 991px) {
       .navbar-custom {
         padding: 15px 20px;
       }

       .nav-item:first-child {
         margin-top: 10px;
       }

       .nav-item {
         margin-top: 5px;
       }

       .user-menu {
         margin-left: 0;
         padding-left: 0;
         border-left: none;
         margin-top: 15px;
         padding-top: 15px;
         border-top: 2px solid #e9ecef;
         justify-content: flex-end;
       }

       .user-menu-2 {
         display: none;
       }

       .nav-link-custom.active::after {
         display: none;
       }

       .nav-link-custom {
         padding: 12px 16px !important;
         margin: 2px 0;
       }

       .nav-link-custom i {
         width: 25px;
       }
     }

     /* End Navbar */
     /* Start Landing */
     .landing-section {
       width: 100%;
       position: relative;
       overflow: hidden;
     }

     .landing-wrapper {
       display: flex;
       flex-wrap: wrap;
       min-height: 600px;
     }

     .image-showcase {
       flex: 1.2;
       position: relative;
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondry));
       overflow: hidden;
       min-height: 600px;
     }

     .slides-wrapper {
       position: relative;
       width: 100%;
       height: 100%;
     }

     .slide-item {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       opacity: 0;
       transition: opacity 0.8s ease-in-out;
       background-size: cover;
       background-position: center;
       background-repeat: no-repeat;
     }

     .slide-item.active-slide {
       opacity: 1;
       z-index: 2;
     }

     .slide-item-1 {
       background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?q=80&w=2070');
     }

     .slide-item-2 {
       background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=2074%22');
     }

     .slide-item-3 {
       background-image: url('https://images.unsplash.com/photo-1570710891163-6d3b5c47248b?q=80&w=2070%22');
     }

     .slide-item-4 {
       background-image: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?q=80&w=2075%22');
     }

     .image-overlay {
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
       z-index: 5;
       pointer-events: none;
     }

     .slides-controller {
       position: absolute;
       bottom: 30px;
       left: 50%;
       transform: translateX(-50%);
       display: flex;
       gap: 15px;
       z-index: 10;
     }

     .control-dot {
       width: 14px;
       height: 14px;
       border-radius: 50%;
       background: rgba(255, 255, 255, 0.5);
       cursor: pointer;
       transition: all 0.3s ease;
       border: 2px solid transparent;
       margin-bottom: 5PX;
     }

     .control-dot:hover {
       background: white;
       transform: scale(1.2);
     }

     .control-dot.active-dot {
       background: var(--color-primary);
       border-color: var(--color-primary);
       transform: scale(1.3);
       box-shadow: 0 0 15px white;
     }

     .auto-play-toggle {
       position: absolute;
       bottom: 30px;
       right: 30px;
       width: 40px;
       height: 40px;
       border-radius: 50%;
       background: rgba(255, 255, 255, 0.2);
       backdrop-filter: blur(5px);
       border: 2px solid rgba(255, 255, 255, 0.3);
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       cursor: pointer;
       z-index: 10;
       transition: all 0.3s ease;
     }

     .auto-play-toggle:hover {
       background: rgba(255, 255, 255, 0.3);
       transform: scale(1.1);
     }

     .slide-progress {
       position: absolute;
       bottom: 0;
       left: 0;
       height: 8px;
       background: var(--color-primary);
       width: 0%;
       transition: width 5s linear;
       z-index: 11;
     }

     .slide-progress .active-progress {
       width: 100%;
     }

     .content-showcase {
       flex: 0.8;
       background: var(--bg-main);
       display: flex;
       align-items: center;
       padding: 60px;
       position: relative;
       overflow: hidden;
     }

     .welcome-content {
       position: relative;
       z-index: 2;
       max-width: 500px;
     }

     .welcome-badge {
       display: inline-flex;
       align-items: center;
       gap: 10px;
       background: rgba(67, 97, 238, 0.1);
       padding: 8px 20px;
       border-radius: 40px;
       margin-bottom: 25px;
     }

     .badge-pulse {
       width: 10px;
       height: 10px;
       background: var(--color-primary);
       border-radius: 50%;
       position: relative;
     }

     .badge-pulse::before {
       content: '';
       position: absolute;
       width: 100%;
       height: 100%;
       background: var(--color-primary);
       border-radius: 50%;
       animation: badgePulse 2s infinite;
     }

     @keyframes badgePulse {
       0% {
         transform: scale(1);
         opacity: 1;
       }

       70% {
         transform: scale(2.5);
         opacity: 0;
       }

       100% {
         transform: scale(2.5);
         opacity: 0;
       }
     }

     .badge-text {
       color: var(--color-primary);
       font-weight: 600;
       font-size: 0.9em;
       letter-spacing: 0.5px;
     }

     .main-headline {
       font-size: 3.2em;
       font-weight: 900;
       line-height: 1.2;
       color: var(--dark);
       margin-bottom: 20px;
     }

     .headline-highlight {
       color: var(--color-primary);
       position: relative;
       display: inline-block;
     }

     .headline-highlight::after {
       content: '';
       position: absolute;
       bottom: 5px;
       left: 0;
       width: 100%;
       height: 8px;
       background: rgba(67, 97, 238, 0.2);
       z-index: -1;
     }

     .descriptive-text {
       font-size: 1.1em;
       color: #6c757d;
       line-height: 1.8;
       margin-bottom: 35px;
     }

     .tracking-action-btn {
       display: inline-flex;
       align-items: center;
       gap: 15px;
       background: linear-gradient(135deg, #4361ee, #3f37c9);
       color: white;
       padding: 18px 40px;
       border-radius: 50px;
       text-decoration: none;
       font-weight: 600;
       font-size: 1.1em;
       transition: all 0.3s ease;
       box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
       position: relative;
       overflow: hidden;
     }

     .tracking-action-btn::before {
       content: '';
       position: absolute;
       top: 50%;
       left: 50%;
       width: 0;
       height: 0;
       background: rgba(255, 255, 255, 0.2);
       border-radius: 50%;
       transform: translate(-50%, -50%);
       transition: width 0.6s, height 0.6s;
     }

     .tracking-action-btn:hover {
       transform: translateY(-3px);
       box-shadow: 0 15px 35px rgba(67, 97, 238, 0.4);
       color: #fff;
     }

     .tracking-action-btn:hover::before {
       width: 300px;
       height: 300px;
     }

     .btn-icon {
       width: 35px;
       height: 35px;
       background: rgba(255, 255, 255, 0.2);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       transition: all 0.3s ease;
     }

     .tracking-action-btn:hover .btn-icon {
       transform: rotate(45deg);
       background: rgba(255, 255, 255, 0.3);
       color: #fff;
     }

     .quick-stats {
       display: flex;
       gap: 40px;
       margin-top: 50px;
       padding-top: 30px;
       border-top: 2px solid var(--color-primary);
     }

     .stat-item {
       text-align: center;
     }

     .stat-number {
       font-size: 2em;
       font-weight: 800;
       color: var(--color-primary);
       margin-bottom: 5px;
     }

     .stat-label {
       color: var(--color-light);
       font-size: 0.9em;
       font-weight: 500;
     }

     @media (max-width: 991px) {
       .landing-wrapper {
         flex-direction: column;
       }

       .image-showcase {
         flex: none;
         width: 100%;
         min-height: 500px;
         height: 500px;
       }

       .content-showcase {
         flex: none;
         width: 100%;
         padding: 50px 40px;
       }

       .main-headline {
         font-size: 2.8em;
       }
     }

     @media (max-width: 768px) {
       .image-showcase {
         min-height: 400px;
         height: 400px;
       }

       .content-showcase {
         padding: 40px 30px;
       }

       .main-headline {
         font-size: 2.5em;
       }

       .descriptive-text {
         font-size: 1em;
       }

       .tracking-action-btn {
         padding: 15px 30px;
         font-size: 1em;
       }

       .quick-stats {
         gap: 25px;
         margin-top: 35px;
         padding-top: 25px;
       }

       .slides-controller {
         bottom: 20px;
         gap: 12px;
       }

       .control-dot {
         width: 12px;
         height: 12px;
       }

       .auto-play-toggle {
         bottom: 20px;
         right: 20px;
         width: 35px;
         height: 35px;
       }
     }

     @media (max-width: 576px) {
       .image-showcase {
         min-height: 350px;
         height: 350px;
       }

       .content-showcase {
         padding: 30px 20px;
       }

       .main-headline {
         font-size: 2.2em;
       }

       .welcome-badge {
         padding: 6px 15px;
         margin-bottom: 20px;
       }

       .badge-text {
         font-size: 0.8em;
       }

       .quick-stats {
         gap: 15px;
         flex-wrap: wrap;
         justify-content: center;
       }

       .stat-item {
         flex: 1;
         min-width: 100px;
       }

       .stat-number {
         font-size: 1.6em;
       }

       .stat-label {
         font-size: 0.8em;
       }

       .slides-controller {
         bottom: 15px;
         gap: 8px;
       }

       .control-dot {
         width: 10px;
         height: 10px;
       }
     }

     @media (max-width: 400px) {
       .image-showcase {
         min-height: 300px;
         height: 300px;
       }

       .main-headline {
         font-size: 1.8em;
       }

       .tracking-action-btn {
         padding: 12px 25px;
         font-size: 0.9em;
         width: 100%;
         justify-content: center;
       }

       .quick-stats {
         flex-direction: column;
         gap: 15px;
         align-items: center;
       }

       .stat-item {
         width: 100%;
         text-align: center;
       }
     }

     /* End Landing */
     /* Start Services */
     .services-showcase {
       width: 100%;
       background: linear-gradient(135deg, #0b1120 0%, #19223c 100%);
       position: relative;
       overflow: hidden;
       padding: 80px 0;
     }

     .services-showcase::before {
       content: '';
       position: absolute;
       top: -100px;
       right: -100px;
       width: 400px;
       height: 400px;
       background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
       border-radius: 50%;
       z-index: 0;
     }

     .services-showcase::after {
       content: '';
       position: absolute;
       bottom: -100px;
       left: -100px;
       width: 400px;
       height: 400px;
       background: radial-gradient(circle, rgba(247, 37, 133, 0.1) 0%, transparent 70%);
       border-radius: 50%;
       z-index: 0;
     }

     .services-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
       position: relative;
       z-index: 2;
     }

     .services-header {
       text-align: center;
       margin-bottom: 60px;
     }

     .services-badge {
       display: inline-block;
       background: rgba(67, 97, 238, 0.15);
       color: var(--color-primary);
       font-weight: 600;
       font-size: 0.9em;
       letter-spacing: 2px;
       padding: 8px 20px;
       border-radius: 30px;
       margin-bottom: 20px;
       border: 1px solid rgba(67, 97, 238, 0.3);
     }

     .services-title {
       font-size: 2.8em;
       font-weight: 800;
       color: white;
       margin-bottom: 20px;
       line-height: 1.2;
     }

     .services-description {
       font-size: 1.2em;
       color: rgba(255, 255, 255, 0.7);
       max-width: 700px;
       margin: 0 auto;
       line-height: 1.6;
     }

     .services-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 30px;
       margin-bottom: 60px;
     }

     .service-card {
       background: rgba(255, 255, 255, 0.05);
       backdrop-filter: blur(10px);
       border: 1px solid rgba(255, 255, 255, 0.1);
       border-radius: 30px;
       padding: 40px 30px;
       position: relative;
       transition: all 0.4s ease;
       overflow: hidden;
     }

     .service-card:hover {
       transform: translateY(-10px);
       border-color: rgba(67, 97, 238, 0.3);
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
     }

     .service-card.featured {
       background: rgba(67, 97, 238, 0.1);
       border: 2px solid var(--color-primary);
       transform: scale(1.02);
     }

     .card-badge {
       position: absolute;
       top: 20px;
       right: 30px;
       background: var(--color-primary);
       color: white;
       font-size: 0.7em;
       font-weight: 700;
       letter-spacing: 1px;
       padding: 4px 12px;
       border-radius: 20px;
       text-transform: uppercase;
       z-index: 3;
     }

     .card-decoration {
       position: absolute;
       top: 0;
       right: 0;
       width: 150px;
       height: 150px;
       background: radial-gradient(circle, rgba(67, 97, 238, 0.2) 0%, transparent 70%);
       border-radius: 50%;
       z-index: 0;
     }

     .card-icon-wrapper {
       width: 80px;
       height: 80px;
       border-radius: 30px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 25px;
       position: relative;
       z-index: 2;
       font-size: 2.5em;
       transition: all 0.4s ease;
     }

     .service-card:hover .card-icon-wrapper {
       transform: rotate(5deg) scale(1.1);
     }

     .ocean-wave {
       background: linear-gradient(135deg, #00b4db, #0083b0);
       color: white;
       box-shadow: 0 10px 20px rgba(0, 180, 219, 0.3);
     }

     .air-cloud {
       background: linear-gradient(135deg, #f7971e, #ffd200);
       color: white;
       box-shadow: 0 10px 20px rgba(247, 151, 30, 0.3);
     }

     .land-mountain {
       background: linear-gradient(135deg, #56ab2f, #a8e063);
       color: white;
       box-shadow: 0 10px 20px rgba(86, 171, 47, 0.3);
     }

     .card-title {
       font-size: 1.8em;
       font-weight: 700;
       color: white;
       margin-bottom: 15px;
       position: relative;
       z-index: 2;
     }

     .card-text {
       color: rgba(255, 255, 255, 0.7);
       line-height: 1.7;
       margin-bottom: 20px;
       position: relative;
       z-index: 2;
       font-size: 1em;
     }

     .card-features {
       list-style: none;
       padding: 0;
       margin: 0 0 25px 0;
       position: relative;
       z-index: 2;
     }

     .card-features li {
       color: rgba(255, 255, 255, 0.8);
       margin-bottom: 12px;
       display: flex;
       align-items: center;
       font-size: 0.95em;
     }

     .card-features li .icon-f {
       color: var(--color-primary);
       margin-right: 10px !important;
       font-size: 0.9em;
     }

     .card-link {
       color: white;
       text-decoration: none;
       font-weight: 600;
       display: inline-flex;
       align-items: center;
       gap: 8px;
       padding: 10px 20px;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 25px;
       transition: all 0.3s ease;
       position: relative;
       z-index: 2;
       border: 1px solid rgba(255, 255, 255, 0.1);
     }

     .card-link:hover {
       background: var(--color-primary);
       color: white;
       gap: 15px;
       border-color: var(--color-primary);
     }

     .services-stats {
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 50px;
       padding: 40px;
       background: rgba(255, 255, 255, 0.03);
       border-radius: 50px;
       border: 1px solid rgba(255, 255, 255, 0.1);
     }

     .stat-item {
       text-align: center;
     }

     .stat-number {
       display: block;
       font-size: 2.2em;
       font-weight: 800;
       color: var(--color-primary);
       margin-bottom: 5px;
     }

     .stat-label {
       color: rgba(255, 255, 255, 0.7);
       font-size: 0.9em;
       letter-spacing: 0.5px;
     }

     .stat-divider {
       width: 2px;
       height: 40px;
       background: rgba(255, 255, 255, 0.1);
     }

     @media (max-width: 1024px) {
       .services-grid {
         grid-template-columns: repeat(2, 1fr);
       }

       .services-title {
         font-size: 2.3em;
       }
     }

     @media (max-width: 768px) {
       .services-grid {
         grid-template-columns: 1fr;
         gap: 20px;
       }

       .services-wrapper {
         padding: 0 20px;
       }

       .services-title {
         font-size: 2em;
       }

       .services-description {
         font-size: 1em;
       }

       .service-card.featured {
         transform: scale(1);
       }

       .services-stats {
         flex-direction: column;
         gap: 20px;
         padding: 30px;
       }

       .stat-divider {
         width: 40px;
         height: 2px;
       }
     }

     @media (max-width: 480px) {
       .services-showcase {
         padding: 60px 0;
       }

       .services-title {
         font-size: 1.8em;
       }

       .service-card {
         padding: 30px 20px;
       }

       .card-title {
         font-size: 1.5em;
       }
     }

     /* End Servises */
     /* Start About Us */
     .about-showcase {
       width: 100%;
       background: linear-gradient(135deg, #0b1120 0%, #19223c 100%);
       position: relative;
       overflow: hidden;
       padding: 100px 0;
     }

     .about-showcase::before {
       content: '';
       position: absolute;
       top: -150px;
       right: -150px;
       width: 500px;
       height: 500px;
       background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
       border-radius: 50%;
       z-index: 0;
       animation: float 20s infinite ease-in-out;
     }

     .about-showcase::after {
       content: '';
       position: absolute;
       bottom: -150px;
       left: -150px;
       width: 500px;
       height: 500px;
       background: radial-gradient(circle, rgba(247, 37, 133, 0.1) 0%, transparent 70%);
       border-radius: 50%;
       z-index: 0;
       animation: float 25s infinite ease-in-out reverse;
     }

     @keyframes float {

       0%,
       100% {
         transform: translate(0, 0);
       }

       50% {
         transform: translate(30px, 30px);
       }
     }

     .about-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
       position: relative;
       z-index: 2;
     }

     .about-header {
       text-align: center;
       margin-bottom: 60px;
     }

     .about-badge {
       display: inline-block;
       background: rgba(67, 97, 238, 0.15);
       color: var(--color-primary);
       font-weight: 600;
       font-size: 0.9em;
       letter-spacing: 2px;
       padding: 8px 20px;
       border-radius: 30px;
       margin-bottom: 20px;
       border: 1px solid rgba(67, 97, 238, 0.3);
       backdrop-filter: blur(5px);
     }

     .about-title {
       font-size: 2.8em;
       font-weight: 800;
       color: white;
       margin-bottom: 20px;
       line-height: 1.2;
       text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
     }

     .about-description {
       font-size: 1.2em;
       color: rgba(255, 255, 255, 0.7);
       max-width: 700px;
       margin: 0 auto;
       line-height: 1.6;
     }

     .about-content {
       display: flex;
       gap: 60px;
       align-items: center;
     }

     .about-images {
       flex: 1;
       position: relative;
       min-height: 500px;
     }

     .main-image-wrapper {
       position: relative;
       width: 80%;
       height: 400px;
       border-radius: 30px;
       overflow: hidden;
       box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.5);
       border: 1px solid rgba(255, 255, 255, 0.1);
       z-index: 2;
     }

     .main-image {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 8s ease;
     }

     .main-image-wrapper:hover .main-image {
       transform: scale(1.1);
     }

     .image-overlay-shine {
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
       transform: translateX(-100%);
       transition: transform 0.6s ease;
     }

     .main-image-wrapper:hover .image-overlay-shine {
       transform: translateX(100%);
     }

     .secondary-image-wrapper {
       position: absolute;
       bottom: 0;
       right: 0;
       width: 60%;
       height: 300px;
       border-radius: 30px;
       overflow: hidden;
       box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.5);
       border: 3px solid var(--color-primary);
       z-index: 3;
     }

     .secondary-image {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 8s ease;
     }

     .secondary-image-wrapper:hover .secondary-image {
       transform: scale(1.1);
     }

     .image-stat-badge {
       position: absolute;
       top: 20px;
       left: 20px;
       background: rgba(0, 0, 0, 0.7);
       backdrop-filter: blur(5px);
       padding: 12px 20px;
       border-radius: 20px;
       border: 1px solid rgba(255, 255, 255, 0.1);
       z-index: 4;
     }

     .image-stat-badge .stat-number {
       display: block;
       font-size: 1.8em;
       font-weight: 800;
       color: var(--color-primary);
       line-height: 1;
       margin-bottom: 4px;
     }

     .image-stat-badge .stat-label {
       font-size: 0.7em;
       color: rgba(255, 255, 255, 0.8);
       letter-spacing: 0.5px;
     }

     .about-shape {
       position: absolute;
       border-radius: 50%;
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondry));
       opacity: 0.1;
       z-index: 1;
     }

     .shape-1 {
       width: 200px;
       height: 200px;
       top: -50px;
       left: -50px;
       animation: rotate 20s linear infinite;
     }

     .shape-2 {
       width: 150px;
       height: 150px;
       bottom: 50px;
       right: 20px;
       background: linear-gradient(135deg, var(--warning), #f72585);
       animation: rotate 15s linear infinite reverse;
     }

     @keyframes rotate {
       from {
         transform: rotate(0deg);
       }

       to {
         transform: rotate(360deg);
       }
     }

     .about-text {
       flex: 1;
       padding: 20px 0;
     }

     .about-subtitle {
       font-size: 2em;
       font-weight: 700;
       color: white;
       margin-bottom: 25px;
       line-height: 1.3;
     }

     .about-paragraph {
       color: rgba(255, 255, 255, 0.7);
       line-height: 1.8;
       margin-bottom: 35px;
       font-size: 1.1em;
     }

     .about-features-grid {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 25px;
       margin-bottom: 40px;
     }

     .feature-item {
       display: flex;
       gap: 15px;
       align-items: flex-start;
     }

     .feature-icon {
       width: 50px;
       height: 50px;
       background: rgba(67, 97, 238, 0.1);
       border-radius: 15px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: var(--color-primary);
       font-size: 1.3em;
       flex-shrink: 0;
       border: 1px solid rgba(67, 97, 238, 0.2);
       transition: all 0.3s ease;
     }

     .feature-item:hover .feature-icon {
       background: var(--color-primary);
       color: white;
       transform: rotate(5deg) scale(1.1);
     }

     .feature-text h4 {
       color: white;
       font-size: 1.1em;
       font-weight: 600;
       margin-bottom: 5px;
     }

     .feature-text p {
       color: rgba(255, 255, 255, 0.6);
       font-size: 0.9em;
       line-height: 1.5;
       margin: 0;
     }

     .about-achievements {
       display: flex;
       align-items: center;
       gap: 30px;
       padding: 25px 0;
       border-top: 2px solid rgba(255, 255, 255, 0.1);
       border-bottom: 2px solid rgba(255, 255, 255, 0.1);
       margin-bottom: 35px;
     }

     .achievement-item {
       text-align: center;
       flex: 1;
     }

     .achievement-number {
       display: block;
       font-size: 1.8em;
       font-weight: 800;
       color: var(--color-primary);
       margin-bottom: 5px;
     }

     .achievement-label {
       color: rgba(255, 255, 255, 0.7);
       font-size: 0.85em;
       letter-spacing: 0.5px;
     }

     .achievement-divider {
       width: 2px;
       height: 40px;
       background: rgba(255, 255, 255, 0.1);
     }

     .about-cta {
       display: inline-flex;
       align-items: center;
       gap: 12px;
       background: linear-gradient(135deg, #4361ee, #3f37c9);
       color: white;
       padding: 16px 35px;
       border-radius: 40px;
       text-decoration: none;
       font-weight: 600;
       font-size: 1.1em;
       transition: all 0.3s ease;
       box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
       border: 1px solid rgba(255, 255, 255, 0.1);
     }

     .about-cta:hover {
       transform: translateY(-3px);
       box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
       gap: 18px;
       color: white;
     }

     @media (max-width: 1024px) {
       .about-content {
         gap: 40px;
       }

       .about-title {
         font-size: 2.3em;
       }

       .about-subtitle {
         font-size: 1.8em;
       }
     }

     @media (max-width: 991px) {
       .about-content {
         flex-direction: column;
       }

       .about-images {
         width: 100%;
         min-height: 450px;
       }

       .main-image-wrapper {
         width: 90%;
         height: 350px;
       }

       .secondary-image-wrapper {
         width: 70%;
         height: 250px;
       }

       .about-features-grid {
         gap: 15px;
       }
     }

     @media (max-width: 768px) {
       .about-showcase {
         padding: 70px 0;
       }

       .about-wrapper {
         padding: 0 20px;
       }

       .about-title {
         font-size: 2em;
       }

       .about-description {
         font-size: 1em;
       }

       .about-features-grid {
         grid-template-columns: 1fr;
       }

       .about-achievements {
         flex-direction: column;
         gap: 15px;
         padding: 20px 0;
       }

       .achievement-divider {
         width: 40px;
         height: 2px;
       }

       .about-cta {
         width: 100%;
         justify-content: center;
       }
     }

     @media (max-width: 576px) {
       .about-title {
         font-size: 1.8em;
       }

       .about-subtitle {
         font-size: 1.5em;
       }

       .main-image-wrapper {
         height: 280px;
       }

       .secondary-image-wrapper {
         height: 200px;
       }

       .image-stat-badge {
         padding: 8px 15px;
       }

       .image-stat-badge .stat-number {
         font-size: 1.4em;
       }
     }

     /* End About Us */
     /* Start TimeLine Example  */
     .tracking-showcase {
       width: 100%;
       background: linear-gradient(135deg, #0b1120 0%, #19223c 100%);
       position: relative;
       overflow: hidden;
       padding: 100px 0;
     }

     .tracking-showcase::before {
       content: '';
       position: absolute;
       top: -200px;
       right: -200px;
       width: 600px;
       height: 600px;
       background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
       border-radius: 50%;
       z-index: 0;
       animation: float 25s infinite ease-in-out;
     }

     .tracking-showcase::after {
       content: '';
       position: absolute;
       bottom: -200px;
       left: -200px;
       width: 600px;
       height: 600px;
       background: radial-gradient(circle, rgba(247, 37, 133, 0.1) 0%, transparent 70%);
       border-radius: 50%;
       z-index: 0;
       animation: float 30s infinite ease-in-out reverse;
     }

     @keyframes float {

       0%,
       100% {
         transform: translate(0, 0) rotate(0deg);
       }

       50% {
         transform: translate(40px, 40px) rotate(5deg);
       }
     }

     .tracking-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
       position: relative;
       z-index: 2;
     }

     .tracking-header {
       text-align: center;
       margin-bottom: 60px;
     }

     .tracking-badge {
       display: inline-block;
       background: rgba(67, 97, 238, 0.15);
       color: var(--color-primary);
       font-weight: 600;
       font-size: 0.9em;
       letter-spacing: 2px;
       padding: 8px 20px;
       border-radius: 30px;
       margin-bottom: 20px;
       border: 1px solid rgba(67, 97, 238, 0.3);
       backdrop-filter: blur(5px);
     }

     .tracking-title {
       font-size: 2.8em;
       font-weight: 800;
       color: white;
       margin-bottom: 20px;
       line-height: 1.2;
       text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
     }

     .tracking-description {
       font-size: 1.2em;
       color: rgba(255, 255, 255, 0.7);
       max-width: 700px;
       margin: 0 auto;
       line-height: 1.6;
     }

     .tracking-content {
       display: flex;
       gap: 50px;
       margin-bottom: 60px;
     }

     .tracking-visual {
       flex: 1;
     }

     .visual-wrapper {
       position: relative;
       width: 100%;
       height: 400px;
       border-radius: 30px;
       overflow: hidden;
       box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.5);
       border: 1px solid rgba(255, 255, 255, 0.1);
     }

     .tracking-main-image {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 10s ease;
     }

     .visual-wrapper:hover .tracking-main-image {
       transform: scale(1.1);
     }

     .visual-scan-line {
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 4px;
       background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
       animation: scan 3s linear infinite;
       opacity: 0.5;
       z-index: 2;
     }

     @keyframes scan {
       0% {
         top: -10px;
       }

       100% {
         top: 110%;
       }
     }

     .visual-icon {
       position: absolute;
       width: 50px;
       height: 50px;
       background: rgba(255, 255, 255, 0.1);
       backdrop-filter: blur(5px);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-size: 1.3em;
       border: 1px solid rgba(255, 255, 255, 0.2);
       animation: pulse 2s infinite;
       z-index: 3;
     }

     .icon-1 {
       top: 20%;
       left: 10%;
       animation-delay: 0s;
     }

     .icon-2 {
       bottom: 20%;
       right: 10%;
       animation-delay: 0.5s;
     }

     .icon-3 {
       top: 50%;
       right: 30%;
       animation-delay: 1s;
     }

     @keyframes pulse {

       0%,
       100% {
         transform: scale(1);
         opacity: 0.8;
       }

       50% {
         transform: scale(1.2);
         opacity: 1;
       }
     }

     .visual-dot {
       position: absolute;
       width: 4px;
       height: 4px;
       background: var(--color-primary);
       border-radius: 50%;
       box-shadow: 0 0 15px var(--color-primary);
       animation: moveDot 10s linear infinite;
       z-index: 3;
     }

     .dot-1 {
       top: 30%;
       left: 40%;
       animation-delay: 0s;
     }

     .dot-2 {
       top: 60%;
       left: 60%;
       animation-delay: 2s;
     }

     .dot-3 {
       top: 40%;
       left: 80%;
       animation-delay: 4s;
     }

     @keyframes moveDot {
       0% {
         transform: translate(0, 0);
         opacity: 1;
       }

       25% {
         transform: translate(50px, -30px);
         opacity: 0.5;
       }

       50% {
         transform: translate(100px, 0);
         opacity: 1;
       }

       75% {
         transform: translate(50px, 30px);
         opacity: 0.5;
       }

       100% {
         transform: translate(0, 0);
         opacity: 1;
       }
     }

     .tracking-demo {
       flex: 1;
       background: rgba(255, 255, 255, 0.05);
       backdrop-filter: blur(10px);
       border-radius: 30px;
       padding: 30px;
       border: 1px solid rgba(255, 255, 255, 0.1);
     }

     .demo-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       margin-bottom: 25px;
       padding-bottom: 20px;
       border-bottom: 2px solid rgba(255, 255, 255, 0.1);
     }

     .demo-title {
       color: white;
       font-size: 1.3em;
       font-weight: 600;
       margin: 0;
     }

     .demo-badge {
       background: rgba(67, 97, 238, 0.2);
       color: var(--color-primary);
       padding: 5px 12px;
       border-radius: 20px;
       font-size: 0.85em;
       font-weight: 600;
       letter-spacing: 0.5px;
       border: 1px solid rgba(67, 97, 238, 0.3);
     }

     .shipment-info {
       margin-bottom: 30px;
     }

     .info-row {
       display: flex;
       align-items: center;
       justify-content: space-between;
       margin-bottom: 15px;
     }

     .info-block {
       text-align: center;
       flex: 1;
     }

     .info-label {
       display: block;
       color: rgba(255, 255, 255, 0.5);
       font-size: 0.8em;
       margin-bottom: 5px;
     }

     .info-value {
       color: white;
       font-weight: 600;
       font-size: 1.1em;
     }

     .info-arrow {
       color: var(--color-primary);
       font-size: 1.3em;
       animation: arrowMove 1.5s infinite;
     }

     @keyframes arrowMove {

       0%,
       100% {
         transform: translateX(0);
       }

       50% {
         transform: translateX(10px);
       }
     }

     .info-progress {
       height: 8px;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 4px;
       margin: 20px 0;
       overflow: hidden;
     }

     .progress-bar {
       height: 100%;
       background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
       border-radius: 4px;
       position: relative;
       animation: progressPulse 2s infinite;
     }

     @keyframes progressPulse {

       0%,
       100% {
         opacity: 1;
       }

       50% {
         opacity: 0.8;
       }
     }

     .info-status {
       display: flex;
       align-items: center;
       gap: 10px;
     }

     .status-label {
       color: rgba(255, 255, 255, 0.5);
       font-size: 0.9em;
     }

     .status-value {
       color: var(--color-primary);
       font-weight: 600;
       font-size: 0.95em;
     }

     /* Timeline مصغر */
     .demo-timeline {
       margin: 30px 0;
       position: relative;
       padding-left: 20px;
     }

     .demo-timeline::before {
       content: '';
       position: absolute;
       left: 33px;
       top: 0;
       bottom: 0;
       width: 2px;
       background: linear-gradient(to bottom, var(--color-primary), rgba(67, 97, 238, 0.1));
       border-radius: 2px;
     }

     .timeline-node {
       display: flex;
       align-items: flex-start;
       gap: 15px;
       margin-bottom: 20px;
       position: relative;
     }

     .node-marker {
       width: 30px;
       height: 30px;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-size: 0.8em;
       border: 2px solid rgba(255, 255, 255, 0.1);
       z-index: 2;
       flex-shrink: 0;
     }

     .timeline-node.completed .node-marker {
       background: var(--color-primary);
       border-color: var(--color-primary);
       color: white;
     }

     .timeline-node.active .node-marker {
       border-color: var(--color-primary);
       animation: markerPulse 2s infinite;
     }

     @keyframes markerPulse {
       0% {
         box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.7);
       }

       70% {
         box-shadow: 0 0 0 10px rgba(67, 97, 238, 0);
       }

       100% {
         box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
       }
     }

     .pulse-dot {
       width: 10px;
       height: 10px;
       background: var(--color-primary);
       border-radius: 50%;
       position: relative;
     }

     .pulse-dot::before {
       content: '';
       position: absolute;
       width: 100%;
       height: 100%;
       background: var(--color-primary);
       border-radius: 50%;
       animation: dotPulse 2s infinite;
     }

     .marker-number {
       font-size: 0.8em;
       font-weight: 600;
     }

     .node-content {
       flex: 1;
       padding-bottom: 15px;
     }

     .node-title {
       display: block;
       color: white;
       font-weight: 600;
       margin-bottom: 3px;
     }

     .node-date {
       color: rgba(255, 255, 255, 0.5);
       font-size: 0.8em;
     }

     .tracking-features {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 30px;
       margin-top: 50px;
     }

     .feature-card {
       background: rgba(255, 255, 255, 0.05);
       backdrop-filter: blur(5px);
       border-radius: 20px;
       padding: 30px 25px;
       text-align: center;
       border: 1px solid rgba(255, 255, 255, 0.1);
       transition: all 0.3s ease;
     }

     .feature-card:hover {
       transform: translateY(-5px);
       border-color: rgba(67, 97, 238, 0.3);
       background: rgba(255, 255, 255, 0.08);
     }

     .feature-card-icon {
       width: 70px;
       height: 70px;
       background: rgba(67, 97, 238, 0.1);
       border-radius: 20px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin: 0 auto 20px;
       color: var(--color-primary);
       font-size: 2em;
       border: 1px solid rgba(67, 97, 238, 0.2);
       transition: all 0.3s ease;
     }

     .feature-card:hover .feature-card-icon {
       background: var(--color-primary);
       color: white;
       transform: rotate(5deg) scale(1.1);
     }

     .feature-card h4 {
       color: white;
       font-size: 1.2em;
       font-weight: 600;
       margin-bottom: 10px;
     }

     .feature-card p {
       color: rgba(255, 255, 255, 0.6);
       line-height: 1.6;
       margin: 0;
     }

     @media (max-width: 1024px) {
       .tracking-content {
         flex-direction: column;
       }

       .tracking-title {
         font-size: 2.3em;
       }
     }

     @media (max-width: 768px) {
       .tracking-showcase {
         padding: 70px 0;
       }

       .tracking-wrapper {
         padding: 0 20px;
       }

       .tracking-title {
         font-size: 2em;
       }

       .tracking-features {
         grid-template-columns: 1fr;
         gap: 15px;
       }

       .visual-wrapper {
         height: 300px;
       }

       .info-row {
         flex-direction: column;
         gap: 15px;
       }

       .info-arrow {
         transform: rotate(90deg);
       }

       @keyframes arrowMove {

         0%,
         100% {
           transform: rotate(90deg) translateX(0);
         }

         50% {
           transform: rotate(90deg) translateX(10px);
         }
       }
     }

     @media (max-width: 576px) {
       .tracking-title {
         font-size: 1.8em;
       }

       .demo-header {
         flex-direction: column;
         gap: 10px;
         align-items: flex-start;
       }

       .tracking-demo-cta {
         width: 100%;
         justify-content: center;
       }
     }

     /* End TimeLine Example  */
     /* Start Contact */
     .contact-showcase {
       width: 100%;
       background: linear-gradient(135deg, #0b1120 0%, #19223c 100%);
       position: relative;
       overflow: hidden;
       padding: 100px 0;
     }

     .contact-showcase::before {
       content: '';
       position: absolute;
       top: -150px;
       right: -150px;
       width: 500px;
       height: 500px;
       background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, transparent 70%);
       border-radius: 50%;
       z-index: 0;
       animation: contactFloat 25s infinite ease-in-out;
     }

     .contact-showcase::after {
       content: '';
       position: absolute;
       bottom: -150px;
       left: -150px;
       width: 500px;
       height: 500px;
       background: radial-gradient(circle, rgba(247, 37, 133, 0.1) 0%, transparent 70%);
       border-radius: 50%;
       z-index: 0;
       animation: contactFloat 30s infinite ease-in-out reverse;
     }

     @keyframes contactFloat {

       0%,
       100% {
         transform: translate(0, 0) rotate(0deg);
       }

       50% {
         transform: translate(30px, 30px) rotate(5deg);
       }
     }

     .contact-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
       position: relative;
       z-index: 2;
     }

     .contact-header {
       text-align: center;
       margin-bottom: 60px;
     }

     .contact-badge {
       display: inline-block;
       background: rgba(67, 97, 238, 0.15);
       color: var(--color-primary);
       font-weight: 600;
       font-size: 0.9em;
       letter-spacing: 2px;
       padding: 8px 20px;
       border-radius: 30px;
       margin-bottom: 20px;
       border: 1px solid rgba(67, 97, 238, 0.3);
       backdrop-filter: blur(5px);
     }

     .contact-title {
       font-size: 2.8em;
       font-weight: 800;
       color: white;
       margin-bottom: 20px;
       line-height: 1.2;
       text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
     }

     .contact-description {
       font-size: 1.2em;
       color: rgba(255, 255, 255, 0.7);
       max-width: 700px;
       margin: 0 auto;
       line-height: 1.6;
     }

     .contact-content {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 50px;
       margin-bottom: 50px;
     }

     .contact-subtitle {
       color: white;
       font-size: 1.5em;
       font-weight: 600;
       margin-bottom: 30px;
       position: relative;
       display: inline-block;
     }

     .contact-subtitle::after {
       content: '';
       position: absolute;
       bottom: -8px;
       left: 0;
       width: 50px;
       height: 3px;
       background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
       border-radius: 3px;
     }

     .contact-emails {
       background: rgba(255, 255, 255, 0.03);
       backdrop-filter: blur(5px);
       border-radius: 30px;
       padding: 40px;
       border: 1px solid rgba(255, 255, 255, 0.05);
     }

     .emails-grid {
       display: flex;
       flex-direction: column;
       gap: 20px;
     }

     .email-card {
       display: flex;
       align-items: center;
       gap: 20px;
       padding: 20px 25px;
       background: rgba(255, 255, 255, 0.05);
       border-radius: 20px;
       text-decoration: none;
       border: 1px solid rgba(255, 255, 255, 0.05);
       transition: all 0.4s ease;
       position: relative;
       overflow: hidden;
     }

     .email-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 4px;
       height: 100%;
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
       opacity: 0;
       transition: opacity 0.4s ease;
     }

     .email-card:hover {
       transform: translateX(10px);
       background: rgba(255, 255, 255, 0.08);
       border-color: rgba(67, 97, 238, 0.3);
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
     }

     .email-card:hover::before {
       opacity: 1;
     }

     .email-icon-wrapper {
       width: 60px;
       height: 60px;
       background: rgba(67, 97, 238, 0.1);
       border-radius: 18px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: var(--color-primary);
       font-size: 1.5em;
       transition: all 0.4s ease;
       flex-shrink: 0;
       border: 1px solid rgba(67, 97, 238, 0.2);
     }

     .email-card:hover .email-icon-wrapper {
       background: var(--color-primary);
       color: white;
       transform: rotate(5deg) scale(1.1);
     }

     .email-details {
       flex: 1;
     }

     .email-label {
       display: block;
       color: rgba(255, 255, 255, 0.7);
       font-size: 0.9em;
       margin-bottom: 5px;
       letter-spacing: 0.5px;
     }

     .email-address {
       display: block;
       color: white;
       font-weight: 600;
       font-size: 1.1em;
     }

     .email-arrow {
       width: 45px;
       height: 45px;
       background: rgba(255, 255, 255, 0.05);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: var(--color-primary);
       font-size: 1.2em;
       transition: all 0.4s ease;
       opacity: 0.7;
       border: 1px solid rgba(255, 255, 255, 0.1);
     }

     .email-card:hover .email-arrow {
       background: var(--color-primary);
       color: white;
       opacity: 1;
       transform: rotate(45deg);
     }

     .contact-addresses {
       background: rgba(255, 255, 255, 0.03);
       backdrop-filter: blur(5px);
       border-radius: 30px;
       padding: 40px;
       border: 1px solid rgba(255, 255, 255, 0.05);
     }

     .addresses-grid {
       display: flex;
       flex-direction: column;
       gap: 20px;
     }

     .address-card {
       display: flex;
       align-items: center;
       gap: 20px;
       padding: 20px 25px;
       background: rgba(255, 255, 255, 0.05);
       border-radius: 20px;
       border: 1px solid rgba(255, 255, 255, 0.05);
       transition: all 0.4s ease;
     }

     .address-card:hover {
       transform: translateX(10px);
       background: rgba(255, 255, 255, 0.08);
       border-color: rgba(67, 97, 238, 0.2);
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
     }

     .address-icon-wrapper {
       width: 60px;
       height: 60px;
       background: rgba(247, 37, 133, 0.1);
       border-radius: 18px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: var(--color-warning);
       font-size: 1.5em;
       transition: all 0.4s ease;
       flex-shrink: 0;
       border: 1px solid rgba(247, 37, 133, 0.2);
     }

     .address-card:hover .address-icon-wrapper {
       background: var(--color-warning);
       color: white;
       transform: rotate(5deg) scale(1.1);
     }

     .address-details {
       flex: 1;
     }

     .address-label {
       display: block;
       color: rgba(255, 255, 255, 0.7);
       font-size: 0.9em;
       margin-bottom: 5px;
       letter-spacing: 0.5px;
     }

     .address-text {
       display: block;
       color: white;
       font-weight: 500;
       font-size: 1em;
       line-height: 1.5;
     }

     .contact-hours {
       margin-top: 50px;
     }

     .hours-card {
       background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(247, 37, 133, 0.1));
       backdrop-filter: blur(5px);
       border-radius: 50px;
       padding: 25px 40px;
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 25px;
       border: 1px solid rgba(255, 255, 255, 0.1);
       max-width: 600px;
       margin: 0 auto;
       transition: all 0.4s ease;
     }

     .hours-card:hover {
       transform: translateY(-5px);
       border-color: rgba(67, 97, 238, 0.3);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
     }

     .hours-icon {
       width: 60px;
       height: 60px;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: var(--color-primary);
       font-size: 1.8em;
       border: 1px solid rgba(255, 255, 255, 0.1);
     }

     .hours-details {
       text-align: center;
     }

     .hours-label {
       display: block;
       color: rgba(255, 255, 255, 0.7);
       font-size: 0.9em;
       margin-bottom: 5px;
       letter-spacing: 0.5px;
     }

     .hours-text {
       display: block;
       color: white;
       font-weight: 600;
       font-size: 1.2em;
     }

     @media (max-width: 1024px) {
       .contact-content {
         grid-template-columns: 1fr;
         gap: 30px;
       }

       .contact-title {
         font-size: 2.3em;
       }
     }

     @media (max-width: 768px) {
       .contact-showcase {
         padding: 70px 0;
       }

       .contact-wrapper {
         padding: 0 20px;
       }

       .contact-title {
         font-size: 2em;
       }

       .contact-description {
         font-size: 1em;
       }

       .contact-emails,
       .contact-addresses {
         padding: 30px 20px;
       }

       .email-card,
       .address-card {
         padding: 15px 20px;
       }

       .email-icon-wrapper,
       .address-icon-wrapper {
         width: 50px;
         height: 50px;
         font-size: 1.2em;
       }

       .email-address {
         font-size: 1em;
       }

       .hours-card {
         flex-direction: column;
         gap: 15px;
         padding: 25px;
         text-align: center;
       }
     }

     @media (max-width: 576px) {
       .contact-title {
         font-size: 1.8em;
       }

       .contact-subtitle {
         font-size: 1.3em;
       }

       .email-card,
       .address-card {
         flex-direction: column;
         text-align: center;
         gap: 15px;
       }

       .email-details,
       .address-details {
         text-align: center;
       }

       .email-arrow {
         display: none;
       }

       .hours-text {
         font-size: 1em;
       }
     }

     /* End Contact */
     /* Start Footer */
     .footer-showcase {
       width: 100%;
       background: linear-gradient(135deg, #030614 0%, #0a0f1f 100%);
       position: relative;
       overflow: hidden;
       padding: 80px 0 20px;
       border-top: 1px solid rgba(255, 255, 255, 0.05);
     }

     .footer-showcase::before {
       content: '';
       position: absolute;
       top: -200px;
       right: -200px;
       width: 500px;
       height: 500px;
       background: radial-gradient(circle, rgba(67, 97, 238, 0.08) 0%, transparent 70%);
       border-radius: 50%;
       z-index: 0;
     }

     .footer-showcase::after {
       content: '';
       position: absolute;
       bottom: -200px;
       left: -200px;
       width: 500px;
       height: 500px;
       background: radial-gradient(circle, rgba(247, 37, 133, 0.05) 0%, transparent 70%);
       border-radius: 50%;
       z-index: 0;
     }

     .footer-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
       position: relative;
       z-index: 2;
     }

     .footer-grid {
       display: grid;
       grid-template-columns: 1.2fr 0.8fr 1.2fr;
       gap: 50px;
       margin-bottom: 50px;
     }

     .footer-about {
       padding-right: 30px;
     }

     .footer-logo {
       display: flex;
       align-items: center;
       gap: 12px;
       margin-bottom: 25px;
     }

     .footer-logo .logo-icon {
       width: 45px;
       height: 45px;
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
       border-radius: 15px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-size: 2em;
       transform: rotate(45deg);
       animation: iconRotate 3s linear infinite;
       margin-right: 10px;
     }

     .footer-logo .logo-icon i {
       transform: rotate(-45deg);
     }

     .footer-logo .logo-text {
       font-size: 1.8em;
       font-weight: 700;
       color: white;
     }

     .footer-logo .logo-text span {
       color: var(--primary);
       font-weight: 800;
     }

     .footer-description {
       color: rgba(255, 255, 255, 0.5);
       line-height: 1.8;
       margin-bottom: 25px;
       font-size: 0.95em;
     }

     .footer-title {
       color: white;
       font-size: 1.3em;
       font-weight: 600;
       margin-bottom: 25px;
       position: relative;
       padding-bottom: 12px;
     }

     .footer-title::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 40px;
       height: 3px;
       background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
       border-radius: 3px;
     }

     .footer-menu {
       list-style: none;
       padding: 0;
       margin: 0;
     }

     .footer-menu li {
       margin-bottom: 15px;
     }

     .footer-menu li a {
       color: rgba(255, 255, 255, 0.6);
       text-decoration: none;
       display: flex;
       align-items: center;
       gap: 10px;
       transition: all 0.3s ease;
       font-size: 0.95em;
     }

     .footer-menu li a i {
       font-size: 0.7em;
       color: var(--color-primary);
       transition: all 0.3s ease;
     }

     .footer-menu li a:hover {
       color: white;
       transform: translateX(8px);
     }

     .footer-menu li a:hover i {
       transform: translateX(3px);
     }

     .footer-subtitle {
       color: rgba(255, 255, 255, 0.8);
       font-size: 1.1em;
       font-weight: 500;
       margin: 20px 0 15px;
     }

     .footer-subtitle:first-of-type {
       margin-top: 0;
     }

     .footer-emails,
     .footer-locations {
       margin-bottom: 25px;
     }

     .contact-item {
       display: flex;
       align-items: center;
       gap: 12px;
       color: rgba(255, 255, 255, 0.5);
       text-decoration: none;
       margin-bottom: 12px;
       transition: all 0.3s ease;
       font-size: 0.95em;
       line-height: 1.5;
     }

     .contact-item i {
       width: 20px;
       color: var(--color-primary);
       font-size: 1.1em;
       flex-shrink: 0;
     }

     .contact-item span {
       flex: 1;
     }

     .footer-emails .contact-item:hover {
       color: white;
       transform: translateX(5px);
     }

     .footer-emails .contact-item:hover i {
       color: var(--color-primary);
     }

     .footer-locations .contact-item {
       cursor: default;
     }

     .footer-locations .contact-item:hover {
       color: rgba(255, 255, 255, 0.5);
       transform: none;
     }

     .footer-bottom {
       padding-top: 30px;
       margin-top: 30px;
       border-top: 2px solid rgba(255, 255, 255, 0.05);
       display: flex;
       justify-content: space-between;
       align-items: center;
       flex-wrap: wrap;
       gap: 20px;
     }

     .copyright {
       color: rgba(255, 255, 255, 0.4);
       font-size: 0.9em;
     }

     .footer-badges {
       display: flex;
       gap: 15px;
     }

     .footer-badges .badge {
       background: rgba(255, 255, 255, 0.03);
       color: rgba(255, 255, 255, 0.4);
       padding: 6px 15px;
       border-radius: 30px;
       font-size: 0.8em;
       font-weight: 500;
       border: 1px solid rgba(255, 255, 255, 0.05);
       letter-spacing: 0.5px;
     }

     @media (max-width: 1024px) {
       .footer-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 40px;
       }

       .footer-contact {
         grid-column: span 2;
       }
     }

     @media (max-width: 768px) {
       .footer-showcase {
         padding: 60px 0 20px;
       }

       .footer-wrapper {
         padding: 0 20px;
       }

       .footer-grid {
         grid-template-columns: 1fr;
         gap: 40px;
       }

       .footer-contact {
         grid-column: auto;
       }

       .footer-about {
         padding-right: 0;
       }

       .footer-bottom {
         flex-direction: column;
         text-align: center;
         gap: 15px;
       }

       .footer-badges {
         flex-wrap: wrap;
         justify-content: center;
       }
     }

     @media (max-width: 576px) {
       .footer-logo .logo-text {
         font-size: 1.5em;
       }

       .footer-title {
         font-size: 1.2em;
       }

       .footer-subtitle {
         font-size: 1em;
       }

       .contact-item {
         font-size: 0.9em;
       }

       .footer-badges .badge {
         padding: 4px 10px;
         font-size: 0.7em;
       }
     }

     /* End Footer */
     /* Start About */
     .about-page {
       width: 100%;
       overflow-x: hidden;
     }

     .about-hero {
       width: 100%;
       background: linear-gradient(135deg, #0b1120 0%, #19223c 100%);
       position: relative;
       overflow: hidden;
       padding: 140px 0 100px;
     }

     .about-hero-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
       position: relative;
       z-index: 2;
     }

     .about-hero-content {
       max-width: 800px;
       text-align: center;
       margin: 0 auto;
     }

     .about-hero-badge {
       display: inline-block;
       background: rgba(67, 97, 238, 0.15);
       color: var(--color-primary);
       font-weight: 600;
       font-size: 0.9em;
       letter-spacing: 2px;
       padding: 8px 20px;
       border-radius: 30px;
       margin-bottom: 25px;
       border: 1px solid rgba(67, 97, 238, 0.3);
       backdrop-filter: blur(5px);
     }

     .about-hero-title {
       font-size: 3.5em;
       font-weight: 800;
       color: white;
       margin-bottom: 25px;
       line-height: 1.2;
     }

     .text-gradient {
       background: linear-gradient(135deg, var(--color-primary), var(--color-warning));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
     }

     .about-hero-description {
       font-size: 1.2em;
       color: rgba(255, 255, 255, 0.7);
       line-height: 1.8;
       max-width: 600px;
       margin: 0 auto;
     }

     .hero-shape {
       position: absolute;
       border-radius: 50%;
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
       opacity: 0.1;
       filter: blur(40px);
       animation: float 20s infinite ease-in-out;
     }

     .shape-1 {
       width: 400px;
       height: 400px;
       top: -200px;
       right: -100px;
     }

     .shape-2 {
       width: 300px;
       height: 300px;
       bottom: -150px;
       left: -50px;
       animation-delay: -5s;
     }

     .shape-3 {
       width: 200px;
       height: 200px;
       top: 50%;
       left: 30%;
       animation-delay: -10s;
     }

     .story-section {
       width: 100%;
       background: linear-gradient(135deg, #0b1120 0%, #19223c 100%);
       position: relative;
       overflow: hidden;
       padding: 100px 0;
     }

     .story-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
       position: relative;
       z-index: 2;
     }

     .story-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 60px;
       align-items: center;
     }

     .section-badge {
       display: inline-block;
       background: rgba(67, 97, 238, 0.15);
       color: var(--color-primary);
       font-weight: 600;
       font-size: 0.9em;
       letter-spacing: 2px;
       padding: 8px 20px;
       border-radius: 30px;
       margin-bottom: 20px;
       border: 1px solid rgba(67, 97, 238, 0.3);
     }

     .section-title {
       font-size: 2.5em;
       font-weight: 700;
       color: white;
       margin-bottom: 30px;
       line-height: 1.3;
     }

     .story-text {
       margin-bottom: 40px;
     }

     .story-paragraph {
       color: rgba(255, 255, 255, 0.7);
       line-height: 1.8;
       margin-bottom: 20px;
       font-size: 1.1em;
     }

     .dropcap {
       float: left;
       font-size: 4em;
       line-height: 0.8;
       padding-right: 10px;
       color: var(--color-primary);
       font-weight: 700;
     }

     .story-stats {
       display: flex;
       gap: 40px;
     }

     .story-stats .stat-number {
       display: block;
       font-size: 2.2em;
       font-weight: 800;
       color: var(--color-primary);
       margin-bottom: 5px;
     }

     .story-stats .stat-label {
       color: rgba(255, 255, 255, 0.6);
       font-size: 0.9em;
     }

     .story-images {
       position: relative;
       min-height: 500px;
     }

     .main-image-wrapper {
       width: 80%;
       height: 400px;
       border-radius: 30px;
       overflow: hidden;
       border: 2px solid rgba(255, 255, 255, 0.1);
       box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.5);
     }

     .main-image {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 8s ease;
     }

     .main-image-wrapper:hover .main-image {
       transform: scale(1.1);
     }

     .image-overlay {
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: linear-gradient(45deg, rgba(67, 97, 238, 0.2), transparent);
     }

     .secondary-image-wrapper {
       position: absolute;
       bottom: 0;
       right: 0;
       width: 60%;
       height: 250px;
       border-radius: 30px;
       overflow: hidden;
       border: 3px solid var(--color-primary);
       box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.5);
     }

     .secondary-image {
       width: 100%;
       height: 100%;
       object-fit: cover;
     }

     .image-caption {
       position: absolute;
       bottom: 20px;
       left: 20px;
       background: rgba(0, 0, 0, 0.7);
       backdrop-filter: blur(5px);
       padding: 10px 15px;
       border-radius: 15px;
       display: flex;
       flex-direction: column;
     }

     .caption-year {
       color: var(--color-primary);
       font-size: 0.8em;
       font-weight: 600;
     }

     .caption-text {
       color: white;
       font-size: 0.9em;
     }

     .floating-card {
       position: absolute;
       top: 30px;
       right: 20px;
       background: rgba(255, 255, 255, 0.1);
       backdrop-filter: blur(10px);
       padding: 20px;
       border-radius: 20px;
       display: flex;
       align-items: center;
       gap: 15px;
       border: 1px solid rgba(255, 255, 255, 0.1);
       animation: float 3s ease-in-out infinite;
       z-index: 999;
     }

     .floating-card i {
       font-size: 2em;
       color: var(--color-warning);
     }

     .card-number {
       display: block;
       font-size: 1.5em;
       font-weight: 700;
       color: white;
     }

     .card-label {
       color: rgba(255, 255, 255, 0.6);
       font-size: 0.8em;
     }

     .values-section {
       width: 100%;
       background: linear-gradient(135deg, #030614 0%, #0a0f1f 100%);
       padding: 100px 0;
     }

     .values-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
     }

     .section-header {
       text-align: center;
       margin-bottom: 60px;
     }

     .section-description {
       color: rgba(255, 255, 255, 0.7);
       font-size: 1.1em;
       max-width: 600px;
       margin: 0 auto;
     }

     .values-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 30px;
     }

     .value-card {
       background: rgba(255, 255, 255, 0.03);
       backdrop-filter: blur(5px);
       border-radius: 30px;
       padding: 40px 30px;
       text-align: center;
       border: 1px solid rgba(255, 255, 255, 0.05);
       transition: all 0.4s ease;
     }

     .value-card:hover {
       transform: translateY(-10px);
       background: rgba(255, 255, 255, 0.05);
       border-color: rgba(67, 97, 238, 0.2);
     }

     .value-icon {
       width: 80px;
       height: 80px;
       background: rgba(67, 97, 238, 0.1);
       border-radius: 30px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin: 0 auto 25px;
       color: var(--color-primary);
       font-size: 2em;
       transition: all 0.4s ease;
     }

     .value-card:hover .value-icon {
       background: var(--color-primary);
       color: white;
       transform: rotate(5deg) scale(1.1);
     }

     .value-title {
       color: white;
       font-size: 1.4em;
       font-weight: 600;
       margin-bottom: 15px;
     }

     .value-text {
       color: rgba(255, 255, 255, 0.6);
       line-height: 1.7;
       margin: 0;
     }

     .achievements-section {
       width: 100%;
       background: linear-gradient(135deg, #030614 0%, #0a0f1f 100%);
       padding: 100px 0;
     }

     .achievements-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
     }

     .section-header.light .section-title {
       color: white;
     }

     .achievements-grid {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       gap: 30px;
     }

     .achievement-card {
       background: rgba(255, 255, 255, 0.03);
       backdrop-filter: blur(5px);
       border-radius: 30px;
       padding: 40px 30px;
       text-align: center;
       border: 1px solid rgba(255, 255, 255, 0.05);
       transition: all 0.4s ease;
       position: relative;
       overflow: hidden;
     }

     .achievement-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 4px;
       background: linear-gradient(90deg, var(--color-primary), var(--color-warning));
       transform: scaleX(0);
       transition: transform 0.4s ease;
     }

     .achievement-card:hover::before {
       transform: scaleX(1);
     }

     .achievement-card:hover {
       transform: translateY(-10px);
       background: rgba(255, 255, 255, 0.05);
     }

     .achievement-icon {
       width: 70px;
       height: 70px;
       background: rgba(67, 97, 238, 0.1);
       border-radius: 20px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin: 0 auto 20px;
       color: var(--color-primary);
       font-size: 2em;
     }

     .achievement-year {
       display: block;
       color: var(--color-primary);
       font-size: 0.9em;
       font-weight: 600;
       margin-bottom: 10px;
     }

     .achievement-title {
       color: white;
       font-size: 1.1em;
       font-weight: 600;
       margin-bottom: 10px;
       line-height: 1.4;
     }

     .achievement-org {
       color: rgba(255, 255, 255, 0.5);
       font-size: 0.85em;
     }

     @media (max-width: 1024px) {
       .about-hero-title {
         font-size: 3em;
       }

       .story-grid {
         grid-template-columns: 1fr;
         gap: 50px;
       }

       .values-grid {
         grid-template-columns: repeat(2, 1fr);
       }

       .team-grid {
         grid-template-columns: repeat(2, 1fr);
       }

       .achievements-grid {
         grid-template-columns: repeat(2, 1fr);
       }
     }

     @media (max-width: 768px) {
       .about-hero {
         padding: 100px 0 80px;
       }

       .about-hero-title {
         font-size: 2.5em;
       }

       .section-title {
         font-size: 2em;
       }

       .values-grid {
         grid-template-columns: 1fr;
       }

       .team-grid {
         grid-template-columns: 1fr;
       }

       .achievements-grid {
         grid-template-columns: 1fr;
       }

       .story-stats {
         flex-direction: column;
         gap: 20px;
       }
     }

     @media (max-width: 576px) {
       .about-hero-title {
         font-size: 2em;
       }

       .about-hero-description {
         font-size: 1em;
       }

       .section-title {
         font-size: 1.8em;
       }
     }

     /* End About */
     /* Start Contact */
     .contact-page {
       width: 100%;
       overflow-x: hidden;
     }

     .contact-hero {
       width: 100%;
       background: linear-gradient(135deg, #0b1120 0%, #19223c 100%);
       position: relative;
       overflow: hidden;
       padding: 140px 0 100px;
     }

     .contact-hero-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
       position: relative;
       z-index: 2;
     }

     .contact-hero-content {
       max-width: 800px;
       text-align: center;
       margin: 0 auto;
     }

     .contact-hero-badge {
       display: inline-block;
       background: rgba(67, 97, 238, 0.15);
       color: var(--color-primary);
       font-weight: 600;
       font-size: 0.9em;
       letter-spacing: 2px;
       padding: 8px 20px;
       border-radius: 30px;
       margin-bottom: 25px;
       border: 1px solid rgba(67, 97, 238, 0.3);
       backdrop-filter: blur(5px);
     }

     .contact-hero-title {
       font-size: 3.5em;
       font-weight: 800;
       color: white;
       margin-bottom: 25px;
       line-height: 1.2;
     }

     .text-gradient {
       background: linear-gradient(135deg, var(--color-primary), var(--color-warning));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
     }

     .contact-hero-description {
       font-size: 1.2em;
       color: rgba(255, 255, 255, 0.7);
       line-height: 1.8;
       max-width: 600px;
       margin: 0 auto;
     }

     .hero-shape {
       position: absolute;
       border-radius: 50%;
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
       opacity: 0.1;
       filter: blur(40px);
       animation: float 20s infinite ease-in-out;
     }

     .shape-1 {
       width: 400px;
       height: 400px;
       top: -200px;
       right: -100px;
     }

     .shape-2 {
       width: 300px;
       height: 300px;
       bottom: -150px;
       left: -50px;
       animation-delay: -5s;
     }

     .shape-3 {
       width: 200px;
       height: 200px;
       top: 50%;
       left: 30%;
       animation-delay: -10s;
     }

     .welcome-section {
       width: 100%;
       background: linear-gradient(135deg, #0b1120 0%, #19223c 100%);
       position: relative;
       padding: 100px 0;
     }

     .welcome-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
     }

     .welcome-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 60px;
       align-items: center;
     }

     .section-badge {
       display: inline-block;
       background: rgba(67, 97, 238, 0.15);
       color: var(--color-primary);
       font-weight: 600;
       font-size: 0.9em;
       letter-spacing: 2px;
       padding: 8px 20px;
       border-radius: 30px;
       margin-bottom: 20px;
       border: 1px solid rgba(67, 97, 238, 0.3);
     }

     .section-title {
       font-size: 2.5em;
       font-weight: 700;
       color: white;
       margin-bottom: 30px;
       line-height: 1.3;
     }

     .message-content {
       margin-bottom: 30px;
     }

     .message-paragraph {
       color: rgba(255, 255, 255, 0.7);
       line-height: 1.8;
       margin-bottom: 20px;
       font-size: 1.1em;
     }

     .message-paragraph strong {
       color: var(--color-primary);
     }

     .trust-badges {
       display: flex;
       gap: 25px;
       margin-top: 30px;
     }

     .trust-item {
       display: flex;
       align-items: center;
       gap: 10px;
       background: rgba(255, 255, 255, 0.05);
       padding: 12px 20px;
       border-radius: 40px;
       border: 1px solid rgba(255, 255, 255, 0.1);
     }

     .trust-item .icon-contact {
       color: var(--color-primary) !important;
       font-size: 1.2em;
     }

     .trust-item span {
       color: white;
       font-size: 0.9em;
       font-weight: 500;
     }

     .welcome-image {
       position: relative;
     }

     .image-wrapper {
       position: relative;
       width: 100%;
       height: 400px;
       border-radius: 30px;
       overflow: hidden;
       border: 2px solid rgba(255, 255, 255, 0.1);
       box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.5);
     }

     .main-image {
       width: 100%;
       height: 100%;
       object-fit: cover;
     }

     .image-overlay {
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: linear-gradient(45deg, rgba(67, 97, 238, 0.2), transparent);
     }

     .floating-card {
       position: absolute;
       top: 30px;
       left: -30px;
       background: rgba(255, 255, 255, 0.1);
       backdrop-filter: blur(10px);
       padding: 15px 25px;
       border-radius: 20px;
       display: flex;
       align-items: center;
       gap: 15px;
       border: 1px solid rgba(255, 255, 255, 0.1);
       animation: float 3s ease-in-out infinite;
     }

     .floating-card.card-2 {
       bottom: 30px;
       right: -30px;
       top: auto;
       left: auto;
       animation-delay: 1s;
     }

     .floating-card i {
       font-size: 2em;
       color: var(--color-warning);
     }

     .card-number {
       display: block;
       font-size: 1.3em;
       font-weight: 700;
       color: white;
     }

     .card-label {
       color: rgba(255, 255, 255, 0.6);
       font-size: 0.8em;
     }

     .contact-info-section {
       width: 100%;
       background: linear-gradient(135deg, #030614 0%, #0a0f1f 100%);
       padding: 100px 0;
     }

     .contact-info-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
     }

     .section-header {
       text-align: center;
       margin-bottom: 60px;
     }

     .section-description {
       color: rgba(255, 255, 255, 0.7);
       font-size: 1.1em;
       max-width: 600px;
       margin: 0 auto;
     }

     .info-cards-grid {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       gap: 25px;
     }

     .info-card {
       background: rgba(255, 255, 255, 0.03);
       backdrop-filter: blur(5px);
       border-radius: 30px;
       padding: 40px 25px;
       text-align: center;
       border: 1px solid rgba(255, 255, 255, 0.05);
       transition: all 0.4s ease;
     }

     .info-card:hover {
       transform: translateY(-10px);
       background: rgba(255, 255, 255, 0.05);
       border-color: rgba(67, 97, 238, 0.2);
     }

     .card-icon {
       width: 70px;
       height: 70px;
       background: rgba(67, 97, 238, 0.1);
       border-radius: 20px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin: 0 auto 20px;
       color: var(--color-primary);
       font-size: 2em;
     }

     .card-title {
       color: white;
       font-size: 1.3em;
       font-weight: 600;
       margin-bottom: 15px;
     }

     .card-address {
       color: rgba(255, 255, 255, 0.6);
       line-height: 1.6;
       margin: 0;
     }

     .card-email {
       display: block;
       color: rgba(255, 255, 255, 0.6);
       text-decoration: none;
       margin-bottom: 10px;
       transition: all 0.3s ease;
     }

     .card-email:hover {
       color: var(--color-primary);
     }

     .card-phone {
       display: block;
       color: rgba(255, 255, 255, 0.6);
       text-decoration: none;
       margin-bottom: 10px;
       transition: all 0.3s ease;
     }

     .card-phone:hover {
       color: var(--color-primary);
     }

     .card-note {
       color: rgba(255, 255, 255, 0.4);
       font-size: 0.85em;
       margin-top: 15px;
     }

     .hours-list {
       text-align: left;
     }

     .hours-item {
       display: flex;
       justify-content: space-between;
       margin-bottom: 10px;
       padding: 8px 0;
       border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     }

     .hours-item.emergency {
       background: rgba(67, 97, 238, 0.1);
       padding: 10px;
       border-radius: 10px;
       border-bottom: none;
     }

     .days {
       color: rgba(255, 255, 255, 0.7);
       font-size: 0.9em;
     }

     .time {
       color: white;
       font-weight: 500;
     }

     .emergency .days,
     .emergency .time {
       color: var(--color-warning);
     }

     @media (max-width: 1024px) {
       .contact-hero-title {
         font-size: 3em;
       }

       .welcome-grid {
         grid-template-columns: 1fr;
         gap: 40px;
       }

       .info-cards-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
       }
     }

     @media (max-width: 768px) {
       .contact-hero {
         padding: 100px 0 80px;
       }

       .contact-hero-title {
         font-size: 2.5em;
       }

       .section-title {
         font-size: 2em;
       }

       .trust-badges {
         flex-direction: column;
         gap: 10px;
       }

       .floating-card {
         display: none;
       }

       .info-cards-grid {
         grid-template-columns: 1fr;
       }

       .cta-buttons {
         flex-direction: column;
       }

       .cta-title {
         font-size: 2em;
       }
     }

     @media (max-width: 576px) {
       .contact-hero-title {
         font-size: 2em;
       }

       .contact-hero-description {
         font-size: 1em;
       }
     }

     /* End Contact */
     /* Start Services */
     .services-page {
       width: 100%;
       overflow-x: hidden;
     }

     .services-hero {
       width: 100%;
       background: linear-gradient(135deg, #0b1120 0%, #19223c 100%);
       position: relative;
       overflow: hidden;
       padding: 140px 0 100px;
     }

     .services-hero-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
       position: relative;
       z-index: 2;
     }

     .services-hero-content {
       max-width: 800px;
       text-align: center;
       margin: 0 auto;
     }

     .services-hero-badge {
       display: inline-block;
       background: rgba(67, 97, 238, 0.15);
       color: var(--color-primary);
       font-weight: 600;
       font-size: 0.9em;
       letter-spacing: 2px;
       padding: 8px 20px;
       border-radius: 30px;
       margin-bottom: 25px;
       border: 1px solid rgba(67, 97, 238, 0.3);
       backdrop-filter: blur(5px);
     }

     .services-hero-title {
       font-size: 3.5em;
       font-weight: 800;
       color: white;
       margin-bottom: 25px;
       line-height: 1.2;
     }

     .text-gradient {
       background: linear-gradient(135deg, var(--color-primary), var(--color-warning));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
     }

     .services-hero-description {
       font-size: 1.2em;
       color: rgba(255, 255, 255, 0.7);
       line-height: 1.8;
       max-width: 600px;
       margin: 0 auto;
     }

     .hero-shape {
       position: absolute;
       border-radius: 50%;
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
       opacity: 0.1;
       filter: blur(40px);
       animation: float 20s infinite ease-in-out;
     }

     .shape-1 {
       width: 400px;
       height: 400px;
       top: -200px;
       right: -100px;
     }

     .shape-2 {
       width: 300px;
       height: 300px;
       bottom: -150px;
       left: -50px;
       animation-delay: -5s;
     }

     .shape-3 {
       width: 200px;
       height: 200px;
       top: 50%;
       left: 30%;
       animation-delay: -10s;
     }

     @keyframes float {

       0%,
       100% {
         transform: translate(0, 0) rotate(0deg);
       }

       50% {
         transform: translate(30px, 30px) rotate(5deg);
       }
     }

     .service-section {
       width: 100%;
       position: relative;
       overflow: hidden;
       padding: 100px 0;
     }

     .ocean-service {
       background: linear-gradient(135deg, #030614 0%, #0a1a2f 100%);
       border-top: 1px solid rgba(67, 97, 238, 0.2);
       border-bottom: 1px solid rgba(67, 97, 238, 0.2);
       position: relative;
     }

     .ocean-service::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 2px;
       background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), var(--color-warning), transparent);
       animation: borderGlow 3s linear infinite;
     }

     .ocean-service::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       right: 0;
       height: 2px;
       background: linear-gradient(90deg, transparent, var(--color-warning), var(--color-secondary), var(--color-primary), transparent);
       animation: borderGlow 3s linear infinite reverse;
     }

     @keyframes borderGlow {
       0% {
         opacity: 0.5;
       }

       50% {
         opacity: 1;
       }

       100% {
         opacity: 0.5;
       }
     }

     .air-service {
       background: linear-gradient(135deg, #0b1120 0%, #1a1f35 100%);
     }

     .land-service {
       background: linear-gradient(135deg, #030614 0%, #1a2815 100%);
     }

     .service-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
       position: relative;
       z-index: 2;
     }

     .service-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 60px;
       align-items: center;
     }

     .service-grid.reverse {
       direction: rtl;
     }

     .service-grid.reverse .service-content {
       direction: ltr;
     }

     .service-content {
       padding: 20px 0;
     }

     .service-badge {
       display: inline-block;
       background: rgba(67, 97, 238, 0.15);
       color: var(--color-primary);
       font-weight: 600;
       font-size: 0.85em;
       letter-spacing: 2px;
       padding: 6px 16px;
       border-radius: 30px;
       margin-bottom: 20px;
       border: 1px solid rgba(67, 97, 238, 0.3);
     }

     .service-title {
       font-size: 3em;
       font-weight: 800;
       color: white;
       margin-bottom: 20px;
       line-height: 1.2;
     }

     .ocean-service .service-title {
       background: linear-gradient(135deg, #fff, var(--color-primary));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
       text-shadow: 0 0 20px rgba(67, 97, 238, 0.3);
     }

     .service-description {
       color: rgba(255, 255, 255, 0.7);
       font-size: 1.1em;
       line-height: 1.8;
       margin-bottom: 30px;
     }

     .service-features {
       margin-bottom: 30px;
     }

     .feature-item {
       display: flex;
       align-items: center;
       gap: 12px;
       margin-bottom: 12px;
       color: rgba(255, 255, 255, 0.8);
     }

     .feature-item i {
       color: var(--color-primary);
       font-size: 1.1em;
     }

     .ocean-service .feature-item i {
       color: var(--warning);
       filter: drop-shadow(0 0 5px var(--color-warning));
     }

     .service-stats {
       display: flex;
       gap: 30px;
       margin-bottom: 35px;
       padding: 20px 0;
       border-top: 2px solid rgba(255, 255, 255, 0.05);
       border-bottom: 2px solid rgba(255, 255, 255, 0.05);
     }

     .stat-item {
       text-align: center;
     }

     .stat-number {
       display: block;
       font-size: 1.8em;
       font-weight: 800;
       color: var(--color-primary);
       margin-bottom: 5px;
     }

     .ocean-service .stat-number {
       color: var(--color-warning);
     }

     .stat-label {
       color: rgba(255, 255, 255, 0.6);
       font-size: 0.85em;
     }

     .service-actions {
       display: flex;
       gap: 15px;
     }

     .service-btn {
       display: inline-flex;
       align-items: center;
       gap: 8px;
       padding: 14px 28px;
       border-radius: 40px;
       text-decoration: none;
       font-weight: 600;
       transition: all 0.3s ease;
       font-size: 0.95em;
     }

     .service-btn.primary {
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
       color: white;
       box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
     }

     .ocean-service .service-btn.primary {
       background: linear-gradient(135deg, var(--color-warning), #f72585);
       box-shadow: 0 10px 20px rgba(247, 37, 133, 0.3);
     }

     .service-btn.primary:hover {
       transform: translateY(-3px);
       box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
     }

     .service-btn.secondary {
       background: rgba(255, 255, 255, 0.05);
       color: white;
       border: 1px solid rgba(255, 255, 255, 0.1);
     }

     .service-btn.secondary:hover {
       background: rgba(255, 255, 255, 0.1);
       transform: translateY(-3px);
     }

     .service-image {
       position: relative;
     }

     .image-wrapper {
       position: relative;
       width: 100%;
       height: 500px;
       border-radius: 30px;
       overflow: hidden;
       border: 2px solid rgba(255, 255, 255, 0.1);
       box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.5);
     }

     .main-image {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 8s ease;
     }

     .image-wrapper:hover .main-image {
       transform: scale(1.1);
     }

     .image-overlay {
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: linear-gradient(45deg, rgba(67, 97, 238, 0.2), transparent);
       pointer-events: none;
     }

     .ocean-service .image-overlay {
       background: linear-gradient(45deg, rgba(247, 37, 133, 0.2), rgba(67, 97, 238, 0.2));
     }

     .floating-badge {
       position: absolute;
       top: 30px;
       right: 30px;
       background: rgba(255, 255, 255, 0.1);
       backdrop-filter: blur(10px);
       padding: 12px 25px;
       border-radius: 40px;
       display: flex;
       align-items: center;
       gap: 10px;
       border: 1px solid rgba(255, 255, 255, 0.2);
       z-index: 3;
       animation: badgeFloat 3s ease-in-out infinite;
     }

     .floating-badge i {
       color: var(--color-warning);
       font-size: 1.2em;
     }

     .floating-badge span {
       color: white;
       font-weight: 600;
       font-size: 0.9em;
     }

     @keyframes badgeFloat {

       0%,
       100% {
         transform: translateY(0);
       }

       50% {
         transform: translateY(-10px);
       }
     }

     .stats-card {
       position: absolute;
       bottom: 30px;
       left: 30px;
       background: rgba(0, 0, 0, 0.7);
       backdrop-filter: blur(10px);
       border-radius: 20px;
       padding: 15px 25px;
       display: flex;
       gap: 25px;
       border: 1px solid rgba(255, 255, 255, 0.1);
       z-index: 3;
     }

     .stats-card.left {
       left: auto;
       right: 30px;
     }

     .stats-card-item {
       text-align: center;
     }

     .stats-value {
       display: block;
       color: var(--color-primary);
       font-size: 1.3em;
       font-weight: 700;
       margin-bottom: 3px;
     }

     .ocean-service .stats-value {
       color: var(--color-warning);
     }

     .stats-label {
       color: rgba(255, 255, 255, 0.6);
       font-size: 0.75em;
     }

     .cta-section {
       width: 100%;
       background: linear-gradient(135deg, #030614 0%, #0a0f1f 100%);
       padding: 80px 0;
     }

     .cta-wrapper {
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 30px;
     }

     .cta-content {
       text-align: center;
       max-width: 700px;
       margin: 0 auto;
     }

     .cta-title {
       font-size: 2.5em;
       font-weight: 700;
       color: white;
       margin-bottom: 20px;
     }

     .cta-description {
       color: rgba(255, 255, 255, 0.7);
       font-size: 1.2em;
       margin-bottom: 40px;
     }

     .cta-buttons {
       display: flex;
       gap: 20px;
       justify-content: center;
     }

     .cta-btn {
       display: inline-flex;
       align-items: center;
       gap: 10px;
       padding: 15px 35px;
       border-radius: 40px;
       text-decoration: none;
       font-weight: 600;
       transition: all 0.3s ease;
     }

     .cta-btn.primary {
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
       color: white;
       box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
     }

     .cta-btn.primary:hover {
       transform: translateY(-3px);
       box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
     }

     .cta-btn.secondary {
       background: rgba(255, 255, 255, 0.05);
       color: white;
       border: 1px solid rgba(255, 255, 255, 0.1);
     }

     .cta-btn.secondary:hover {
       background: rgba(255, 255, 255, 0.1);
       transform: translateY(-3px);
     }

     @media (max-width: 1024px) {
       .services-hero-title {
         font-size: 3em;
       }

       .service-title {
         font-size: 2.5em;
       }

       .service-grid {
         gap: 40px;
       }
     }

     @media (max-width: 991px) {

       .service-grid,
       .service-grid.reverse {
         grid-template-columns: 1fr;
         direction: ltr;
       }

       .service-image {
         order: -1;
       }

       .image-wrapper {
         height: 400px;
       }

       .service-actions {
         flex-direction: column;
       }

       .service-btn {
         justify-content: center;
       }
     }

     @media (max-width: 768px) {
       .services-hero {
         padding: 100px 0 80px;
       }

       .services-hero-title {
         font-size: 2.5em;
       }

       .service-title {
         font-size: 2.2em;
       }

       .service-stats {
         flex-direction: column;
         gap: 15px;
       }

       .stats-card {
         position: relative;
         bottom: auto;
         left: auto;
         margin-top: 20px;
         justify-content: center;
       }

       .cta-buttons {
         flex-direction: column;
       }

       .cta-title {
         font-size: 2em;
       }
     }

     @media (max-width: 576px) {
       .services-hero-title {
         font-size: 2em;
       }

       .service-title {
         font-size: 1.8em;
       }

       .image-wrapper {
         height: 300px;
       }

       .floating-badge {
         display: none;
       }
     }

     /* End Services */
     /* Start TimeLine */
     .tracking-page {
       width: 100%;
       overflow-x: hidden;
     }

     .tracking-search-section {
       width: 100%;
       background: linear-gradient(135deg, #0b1120 0%, #19223c 100%);
       position: relative;
       overflow: hidden;
       padding: 120px 0 100px;
     }

     .tracking-search-wrapper {
       max-width: 1100px;
       margin: 0 auto;
       padding: 0 30px;
       position: relative;
       z-index: 2;
     }

     .search-header {
       text-align: center;
       margin-bottom: 50px;
     }

     .search-badge {
       display: inline-block;
       background: rgba(67, 97, 238, 0.15);
       color: var(--color-primary);
       font-weight: 600;
       font-size: 0.9em;
       letter-spacing: 2px;
       padding: 8px 20px;
       border-radius: 30px;
       margin-bottom: 20px;
       border: 1px solid rgba(67, 97, 238, 0.3);
       backdrop-filter: blur(5px);
     }

     .search-title {
       font-size: 3em;
       font-weight: 800;
       color: white;
       margin-bottom: 15px;
       line-height: 1.2;
     }

     .search-description {
       font-size: 1.1em;
       color: rgba(255, 255, 255, 0.7);
       max-width: 600px;
       margin: 0 auto;
       line-height: 1.6;
     }

     .search-form-container {
       background: rgba(255, 255, 255, 0.05);
       backdrop-filter: blur(10px);
       border-radius: 20px;
       padding: 30px;
       border: 1px solid rgba(255, 255, 255, 0.1);
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     }

     .form-row {
       display: flex;
       align-items: flex-end;
       gap: 15px;
     }

     .form-group {
       flex: 1;
       position: relative;
     }

     .button-group {
       flex: 0 0 auto;
       min-width: 120px;
     }

     .form-label {
       display: flex;
       align-items: center;
       gap: 8px;
       color: rgba(255, 255, 255, 0.8);
       font-size: 0.9em;
       font-weight: 500;
       margin-bottom: 8px;
     }

     .form-label i {
       color: var(--color-primary);
       font-size: 0.95em;
     }

     .input-wrapper,
     .select-wrapper {
       position: relative;
       width: 100%;
     }

     .form-input {
       width: 100%;
       height: 55px;
       background: rgba(255, 255, 255, 0.03);
       border: 2px solid rgba(255, 255, 255, 0.1);
       border-radius: 12px;
       padding: 0 16px;
       color: white;
       font-size: 0.95em;
       transition: all 0.3s ease;
     }

     .form-input:focus {
       outline: none;
       border-color: var(--color-primary);
       background: rgba(255, 255, 255, 0.05);
       box-shadow: 0 0 20px rgba(67, 97, 238, 0.2);
     }

     .form-input::placeholder {
       color: rgba(255, 255, 255, 0.3);
       font-size: 0.9em;
     }

     .form-select {
       width: 100%;
       height: 55px;
       background: rgba(255, 255, 255, 0.03) !important;
       border: 2px solid rgba(255, 255, 255, 0.1) !important;
       border-radius: 12px !important;
       padding: 0 16px;
       color: white !important;
       font-size: 0.95em;
       appearance: none;
       cursor: pointer;
       transition: all 0.3s ease;
     }

     .form-select:focus {
       outline: none;
       border-color: var(--color-primary);
       background: rgba(255, 255, 255, 0.05);
       box-shadow: 0 0 20px rgba(67, 97, 238, 0.2);
     }

     .form-select option {
       background: #0b1120;
       color: white;
     }

     .select-arrow {
       position: absolute;
       right: 16px;
       top: 50%;
       transform: translateY(-50%);
       color: rgba(255, 255, 255, 0.5);
       pointer-events: none;
       transition: all 0.3s ease;
       font-size: 0.9em;
     }

     .form-select:focus+.select-arrow {
       color: var(--color-primary);
       transform: translateY(-50%) rotate(180deg);
     }

     .input-focus-border {
       position: absolute;
       bottom: 0;
       left: 50%;
       width: 0;
       height: 2px;
       transition: all 0.3s ease;
       transform: translateX(-50%);
       border-radius: 2px;
     }

     .form-input:focus~.input-focus-border,
     .form-select:focus~.input-focus-border {
       width: 100%;
     }

     .search-button {
       height: 55px;
       padding: 0 25px;
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
       border: none;
       border-radius: 12px;
       color: white;
       font-size: 1em;
       font-weight: 600;
       cursor: pointer;
       transition: all 0.3s ease;
       box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 8px;
       width: 100%;
       white-space: nowrap;
       letter-spacing: 3px;
     }

     .search-button:hover {
       transform: translateY(-2px);
       box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
     }

     .search-button:active {
       transform: translateY(0);
     }

     .button-icon {
       font-size: 1em;
     }

     .button-text {
       font-size: 1em;
     }

     .search-shape {
       position: absolute;
       border-radius: 50%;
       background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
       opacity: 0.05;
       filter: blur(60px);
       animation: float 20s infinite ease-in-out;
     }

     .shape-1 {
       width: 400px;
       height: 400px;
       top: -200px;
       right: -100px;
     }

     .shape-2 {
       width: 300px;
       height: 300px;
       bottom: -150px;
       left: -50px;
       animation-delay: -5s;
     }

     .shape-3 {
       width: 200px;
       height: 200px;
       top: 50%;
       left: 20%;
       animation-delay: -10s;
     }

     @keyframes float {

       0%,
       100% {
         transform: translate(0, 0) rotate(0deg);
       }

       50% {
         transform: translate(30px, 30px) rotate(5deg);
       }
     }

     @media (max-width: 900px) {
       .form-row {
         flex-direction: column;
         align-items: stretch;
         gap: 20px;
       }

       .button-group {
         min-width: 100%;
       }

       .search-button {
         height: 55px;
       }
     }

     @media (max-width: 768px) {
       .tracking-search-section {
         padding: 100px 0 80px;
       }

       .search-title {
         font-size: 2.2em;
       }

       .search-description {
         font-size: 1em;
       }

       .search-form-container {
         padding: 25px;
       }
     }

     @media (max-width: 576px) {
       .search-title {
         font-size: 1.8em;
       }

       .search-badge {
         font-size: 0.8em;
         padding: 6px 16px;
       }

       .form-input,
       .form-select,
       .search-button {
         height: 50px;
       }

       .form-label {
         font-size: 0.85em;
       }
     }

     /* Start Result Search */
     .tracking-result-section {
       width: 100%;
       background: linear-gradient(135deg, #0b1120 0%, #19223c 100%);
       position: relative;
       padding: 60px 0;
     }

     .tracking-result-wrapper {
       max-width: 1100px;
       margin: 0 auto;
       padding: 0 30px;
     }

     .result-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       margin-bottom: 30px;
     }

     .result-title-wrapper {
       display: flex;
       align-items: center;
       gap: 12px;
     }

     .icon-result {
       font-size: 1.2em;
       color: var(--color-primary) !important;
     }

     .result-title {
       color: white;
       font-size: 1.8em;
       font-weight: 700;
       margin: 0;
     }

     .result-date {
       color: rgba(255, 255, 255, 0.5);
       font-size: 0.9em;
     }

     .shipment-main-card {
       background: rgba(255, 255, 255, 0.05);
       backdrop-filter: blur(10px);
       border-radius: 30px;
       padding: 35px;
       border: 1px solid rgba(255, 255, 255, 0.1);
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     }

     .shipment-id-row {
       display: flex;
       justify-content: space-between;
       align-items: center;
       margin-bottom: 20px;
       padding-bottom: 20px;
       border-bottom: 2px solid rgba(255, 255, 255, 0.1);
     }

     .id-wrapper {
       display: flex;
       align-items: center;
       gap: 12px;
     }

     .id-wrapper i {
       font-size: 1.8em;
       color: var(--color-primary);
     }

     .id-label {
       color: rgba(255, 255, 255, 0.6);
       font-size: 1em;
     }

     .id-number {
       color: white;
       font-size: 1.4em;
       font-weight: 700;
       letter-spacing: 1px;
       background: rgba(67, 97, 238, 0.2);
       padding: 5px 15px;
       border-radius: 40px;
       border: 1px solid rgba(67, 97, 238, 0.3);
     }

     .print-button {
       background: rgba(255, 255, 255, 0.05);
       border: 1px solid rgba(255, 255, 255, 0.1);
       border-radius: 40px;
       padding: 12px 25px;
       color: white;
       font-size: 0.95em;
       font-weight: 500;
       cursor: pointer;
       transition: all 0.3s ease;
       display: flex;
       align-items: center;
       gap: 10px;
     }

     .print-button:hover {
       background: var(--color-primary);
       border-color: var(--color-primary);
       transform: translateY(-2px);
     }

     .print-button i {
       font-size: 1.1em;
     }

     .shipment-description {
       color: rgba(255, 255, 255, 0.7);
       font-size: 1.1em;
       line-height: 1.6;
       margin-bottom: 35px;
       padding: 15px 20px;
       background: rgba(255, 255, 255, 0.02);
       border-radius: 16px;
       border-left: 4px solid var(--color-primary);
     }

     .info-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 25px;
     }

     .info-item {
       display: flex;
       gap: 15px;
       padding: 20px;
       background: rgba(255, 255, 255, 0.02);
       border-radius: 20px;
       transition: all 0.3s ease;
     }

     .info-item:hover {
       background: rgba(255, 255, 255, 0.05);
       transform: translateY(-3px);
     }

     .info-icon {
       width: 50px;
       height: 50px;
       background: rgba(67, 97, 238, 0.1);
       border-radius: 16px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: var(--color-primary);
       font-size: 1.3em;
       flex-shrink: 0;
     }

     .info-content {
       flex: 1;
     }

     .info-label {
       display: block;
       color: rgba(255, 255, 255, 0.5);
       font-size: 0.8em;
       letter-spacing: 0.5px;
       margin-bottom: 5px;
     }

     .info-value {
       display: block;
       color: white;
       font-size: 1.2em;
       font-weight: 600;
       margin-bottom: 3px;
     }

     .info-sub {
       display: block;
       color: rgba(255, 255, 255, 0.4);
       font-size: 0.8em;
     }

     .live-location .info-value {
       display: flex;
       align-items: center;
       gap: 8px;
     }

     .pulse-dot {
       width: 10px;
       height: 10px;
       background: #4cc9f0;
       border-radius: 50%;
       position: relative;
     }

     .pulse-dot::before {
       content: '';
       position: absolute;
       width: 100%;
       height: 100%;
       background: #4cc9f0;
       border-radius: 50%;
       animation: livePulse 2s infinite;
     }

     @keyframes livePulse {
       0% {
         transform: scale(1);
         opacity: 1;
       }

       70% {
         transform: scale(2.5);
         opacity: 0;
       }

       100% {
         transform: scale(2.5);
         opacity: 0;
       }
     }

     .live-location .info-icon {
       background: rgba(76, 201, 240, 0.1);
       color: #4cc9f0;
     }

     @media (max-width: 900px) {
       .info-grid {
         grid-template-columns: repeat(2, 1fr);
       }
     }

     @media (max-width: 768px) {
       .tracking-result-section {
         padding: 40px 0;
       }

       .result-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 10px;
       }

       .result-title {
         font-size: 1.5em;
       }

       .shipment-main-card {
         padding: 25px;
       }

       .shipment-id-row {
         flex-direction: column;
         align-items: flex-start;
         gap: 15px;
       }

       .id-wrapper {
         flex-wrap: wrap;
       }

       .id-number {
         font-size: 1.2em;
       }

       .print-button {
         width: 100%;
         justify-content: center;
       }

       .info-grid {
         grid-template-columns: 1fr;
       }
     }

     @media (max-width: 576px) {
       .shipment-main-card {
         padding: 20px;
       }

       .info-item {
         padding: 15px;
       }

       .info-value {
         font-size: 1.1em;
       }
     }

     /* End Result Search  */
     /* Start TimeLine Result */
     .tracking-timeline-section {
       width: 100%;
       background: linear-gradient(135deg, #0b1120 0%, #19223c 100%);
       position: relative;
       padding: 80px 0;
     }

     .timeline-wrapper {
       max-width: 900px;
       margin: 0 auto;
       padding: 0 30px;
     }

     .timeline-header {
       display: flex;
       align-items: center;
       gap: 20px;
       margin-bottom: 60px;
       background: rgba(255, 255, 255, 0.05);
       backdrop-filter: blur(10px);
       padding: 25px 30px;
       border-radius: 30px;
       border: 1px solid rgba(255, 255, 255, 0.1);
     }

     .header-icon {
       width: 70px;
       height: 70px;
       background: rgba(67, 97, 238, 0.1);
       border-radius: 20px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: var(--color-primary);
       font-size: 2em;
     }

     .header-text {
       flex: 1;
     }

     .timeline-title {
       color: white;
       font-size: 1.8em;
       font-weight: 700;
       margin-bottom: 5px;
     }

     .timeline-subtitle {
       color: rgba(255, 255, 255, 0.6);
       font-size: 0.95em;
     }

     .header-status {
       display: flex;
       gap: 10px;
     }

     .status-badge {
       padding: 8px 15px;
       border-radius: 30px;
       font-size: 0.8em;
       font-weight: 600;
       text-transform: uppercase;
       letter-spacing: 0.5px;
     }

     .status-badge.completed {
       background: rgba(76, 201, 240, 0.15);
       color: #4cc9f0;
       border: 1px solid rgba(76, 201, 240, 0.3);
     }

     .status-badge.in-progress {
       background: rgba(247, 37, 133, 0.15);
       color: #f72585;
       border: 1px solid rgba(247, 37, 133, 0.3);
     }

     .status-badge.pending {
       background: rgba(108, 117, 125, 0.15);
       color: #adb5bd;
       border: 1px solid rgba(108, 117, 125, 0.3);
     }

     .timeline-container {
       position: relative;
       padding: 20px 0;
       display: flex;
       flex-direction: column;
       gap: 30px;
     }

     .point-card {
       background: rgba(255, 255, 255, 0.05);
       backdrop-filter: blur(10px);
       border-radius: 24px;
       padding: 25px;
       border: 1px solid rgba(255, 255, 255, 0.1);
       transition: all 0.3s ease;
     }

     .point-header {
       display: flex;
       align-items: center;
       gap: 20px;
       margin-bottom: 25px;
       padding-bottom: 15px;
       border-bottom: 2px solid rgba(255, 255, 255, 0.1);
     }

     .point-footer {
       display: flex;
       align-items: center;
       gap: 20px;
       margin-top: 25px;
       padding-top: 15px;
       border-top: 2px solid rgba(255, 255, 255, 0.1);
     }

     .point-footer-btn {
       width: 100%;
       align-items: center;
       gap: 15px;
       background: linear-gradient(135deg, #4361ee, #3f37c9);
       color: white;
       padding: 18px 40px;
       border-radius: 10px;
       text-decoration: none;
       font-weight: 600;
       font-size: 1.1em;
       transition: all 0.3s ease;
       box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
       position: relative;
       overflow: hidden;
       text-align: center;
     }

     .point-footer-btn:hover {
       transform: translateY(-3px);
       box-shadow: 0 15px 35px rgba(67, 97, 238, 0.4);
       color: #fff;
     }

     .point-number {
       width: 60px;
       height: 60px;
       border-radius: 16px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.5em;
       font-weight: 700;
       flex-shrink: 0;
       transition: all 0.3s ease;
     }

     .point-number.completed {
       background: rgba(76, 201, 240, 0.15);
       color: #4cc9f0;
       border: 2px solid #4cc9f0;
       box-shadow: 0 0 20px rgba(76, 201, 240, 0.3);
     }

     .point-number.in-progress {
       background: rgba(247, 37, 133, 0.15);
       color: #f72585;
       border: 2px solid #f72585;
       box-shadow: 0 0 20px rgba(247, 37, 133, 0.3);
       animation: numberPulse 2s infinite;
     }

     .point-number.pending {
       background: rgba(108, 117, 125, 0.15);
       color: #adb5bd;
       border: 2px solid #6c757d;
     }

     @keyframes numberPulse {
       0% {
         box-shadow: 0 0 0 0 rgba(247, 37, 133, 0.7);
       }

       70% {
         box-shadow: 0 0 0 10px rgba(247, 37, 133, 0);
       }

       100% {
         box-shadow: 0 0 0 0 rgba(247, 37, 133, 0);
       }
     }

     .point-titles {
       flex: 1;
     }

     .point-main-title {
       color: white;
       font-size: 1.3em;
       font-weight: 700;
       margin-bottom: 5px;
     }

     .point-sub-title {
       color: rgba(255, 255, 255, 0.6);
       font-size: 0.9em;
     }

     .point-status {
       font-size: 0.8em;
       font-weight: 600;
       padding: 6px 15px;
       border-radius: 30px;
       text-transform: uppercase;
       letter-spacing: 0.5px;
       white-space: nowrap;
     }

     .timeline-point.completed .point-status {
       background: rgba(76, 201, 240, 0.15);
       color: #4cc9f0;
       border: 1px solid rgba(76, 201, 240, 0.3);
     }

     .timeline-point.in-progress .point-status {
       background: rgba(247, 37, 133, 0.15);
       color: #f72585;
       border: 1px solid rgba(247, 37, 133, 0.3);
     }

     .timeline-point.pending .point-status {
       background: rgba(108, 117, 125, 0.15);
       color: #adb5bd;
       border: 1px solid rgba(108, 117, 125, 0.3);
     }

     .point-actions {
       display: flex;
       flex-direction: column;
       gap: 15px;
     }

     .action-item {
       display: flex;
       gap: 15px;
       padding: 15px;
       border-radius: 16px;
       transition: all 0.3s ease;
     }

     .action-item.completed {
       background: rgba(76, 201, 240, 0.05);
       border-left: 4px solid #4cc9f0;
     }

     .action-item.in-progress {
       background: rgba(247, 37, 133, 0.05);
       border-left: 4px solid #f72585;
     }

     .action-item.pending {
       background: rgba(108, 117, 125, 0.05);
       border-left: 4px solid #6c757d;
     }

     .action-item:hover {
       transform: translateX(5px);
     }

     .action-icon {
       width: 45px;
       height: 45px;
       border-radius: 12px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.2em;
       flex-shrink: 0;
     }

     .action-item.completed .action-icon {
       background: rgba(76, 201, 240, 0.15);
       color: #4cc9f0;
     }

     .action-item.in-progress .action-icon {
       background: rgba(247, 37, 133, 0.15);
       color: #f72585;
     }

     .action-item.pending .action-icon {
       background: rgba(108, 117, 125, 0.15);
       color: #6c757d;
     }

     .action-details {
       flex: 1;
     }

     .action-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       margin-bottom: 5px;
     }

     .action-name {
       font-weight: 600;
       font-size: 1em;
     }

     .action-item.completed .action-name {
       color: #4cc9f0;
     }

     .action-item.in-progress .action-name {
       color: #f72585;
     }

     .action-item.pending .action-name {
       color: #adb5bd;
     }

     .action-date {
       font-size: 0.8em;
       color: rgba(255, 255, 255, 0.5);
     }

     .action-info {
       color: rgba(255, 255, 255, 0.7);
       font-size: 0.9em;
       line-height: 1.5;
       margin: 0;
     }

     .timeline-legend {
       display: flex;
       justify-content: center;
       gap: 30px;
       margin-top: 60px;
       padding: 20px;
       background: rgba(255, 255, 255, 0.03);
       border-radius: 50px;
       border: 1px solid rgba(255, 255, 255, 0.05);
     }

     .legend-item {
       display: flex;
       align-items: center;
       gap: 10px;
     }

     .legend-color {
       width: 16px;
       height: 16px;
       border-radius: 4px;
     }

     .legend-color.completed {
       background: #4cc9f0;
       box-shadow: 0 0 0 2px rgba(76, 201, 240, 0.3);
     }

     .legend-color.in-progress {
       background: #f72585;
       box-shadow: 0 0 0 2px rgba(247, 37, 133, 0.3);
     }

     .legend-color.pending {
       background: #6c757d;
       box-shadow: 0 0 0 2px rgba(108, 117, 125, 0.3);
     }

     .legend-text {
       color: rgba(255, 255, 255, 0.7);
       font-size: 0.9em;
     }

     @media (max-width: 768px) {
       .timeline-header {
         flex-direction: column;
         text-align: center;
       }

       .header-status {
         flex-wrap: wrap;
         justify-content: center;
       }

       .point-header {
         flex-wrap: wrap;
         gap: 15px;
       }

       .point-number {
         width: 50px;
         height: 50px;
         font-size: 1.3em;
       }

       .point-status {
         margin-left: auto;
       }

       .action-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 5px;
       }

       .timeline-legend {
         flex-direction: column;
         align-items: center;
         gap: 15px;
         border-radius: 30px;
       }
     }

     @media (max-width: 576px) {
       .timeline-wrapper {
         padding: 0 20px;
       }

       .point-card {
         padding: 20px;
       }

       .point-header {
         flex-direction: column;
         align-items: flex-start;
       }

       .point-status {
         margin-left: 0;
       }

       .action-item {
         padding: 12px;
       }

       .action-icon {
         width: 40px;
         height: 40px;
         font-size: 1em;
       }
     }

     /* End TimeLine Result */
     /* الشريط المتحرك */
     .notice-bar {
       width: 100%;
       background: linear-gradient(90deg, #1a2639, #2a3a5a, #1a2639);
       background-size: 200% 200%;
       animation: gradientMove 8s ease infinite;
       border-bottom: 1px solid rgba(255, 255, 255, 0.1);
       position: relative;
       overflow: hidden;
     }

     @keyframes gradientMove {
       0% {
         background-position: 0% 50%;
       }

       50% {
         background-position: 100% 50%;
       }

       100% {
         background-position: 0% 50%;
       }
     }

     .notice-bar::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
       animation: shine 3s infinite;
     }

     @keyframes shine {
       0% {
         left: -100%;
       }

       20% {
         left: 100%;
       }

       100% {
         left: 100%;
       }
     }

     .notice-content {
       max-width: 1300px;
       margin: 0 auto;
       padding: 12px 30px;
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 20px;
       position: relative;
       z-index: 2;
     }

     .notice-icon {
       width: 36px;
       height: 36px;
       background: rgba(255, 255, 255, 0.1);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: #4cc9f0;
       font-size: 1.2em;
       animation: iconPulse 2s infinite;
       flex-shrink: 0;
     }

     @keyframes iconPulse {

       0%,
       100% {
         transform: scale(1);
         background: rgba(255, 255, 255, 0.1);
       }

       50% {
         transform: scale(1.1);
         background: rgba(255, 255, 255, 0.15);
       }
     }

     .notice-text-wrapper {
       flex: 1;
       overflow: hidden;
     }

     .notice-text {
       color: rgba(255, 255, 255, 0.9);
       font-size: 0.95em;
       font-weight: 400;
       letter-spacing: 0.3px;
       animation: slideIn 0.5s ease;
     }

     .notice-label {
       color: #4cc9f0;
       font-weight: 700;
       margin-right: 5px;
       text-transform: uppercase;
       letter-spacing: 0.5px;
     }

     .notice-close {
       width: 30px;
       height: 30px;
       background: rgba(255, 255, 255, 0.05);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       color: rgba(255, 255, 255, 0.5);
       font-size: 0.9em;
       cursor: pointer;
       transition: all 0.3s ease;
       flex-shrink: 0;
     }

     .notice-close:hover {
       background: rgba(255, 255, 255, 0.15);
       color: white;
       transform: rotate(90deg);
     }

     @keyframes slideIn {
       from {
         opacity: 0;
         transform: translateY(-10px);
       }

       to {
         opacity: 1;
         transform: translateY(0);
       }
     }

     @media (max-width: 768px) {
       .notice-content {
         padding: 10px 20px;
       }

       .notice-text {
         font-size: 0.9em;
       }
     }

     @media (max-width: 576px) {
       .notice-content {
         flex-wrap: wrap;
         gap: 10px;
       }

       .notice-icon {
         width: 30px;
         height: 30px;
         font-size: 1em;
       }

       .notice-text {
         font-size: 0.85em;
         line-height: 1.5;
       }

       .notice-close {
         position: absolute;
         top: 5px;
         right: 5px;
       }
     }

     /* End TimeLine */
