      :root {
          --primary-blue: #1F6E92;
          --secondary-blue: #2980B9;
          --gradient-start: #1F6E92;
          --gradient-end: #3498DB;
      }

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

      body {
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          overflow-x: hidden;
          direction: rtl;
      }

      .container {
          max-width: 1200px;
          margin: 0 auto;
          overflow-x: hidden;

      }

      .hero-section {
          background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, var(--primary-blue) 100%);
          min-height: 100vh;
          position: relative;
      }

      .hero-section::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(135deg, rgba(31, 110, 146, 0.1) 0%, rgba(31, 110, 146, 0.8) 100%);
          z-index: 1;
      }

      .hero-section::after {
          content: '';
          position: absolute;
          top: -50px;
          left: -200px;
          width: 400px;
          height: 400px;
          background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
          border-radius: 50%;
          opacity: 0.3;
          z-index: 0;
      }

      @media(max-width: 768px) {
          .hero-section::after {
              display: none;
          }
      }

      .navbar {
          background: transparent !important;
          padding: 1rem 0;
          z-index: 1000;
          position: relative;
      }

      .navbar-brand {
          font-size: 1.8rem;
          font-weight: bold;
          color: var(--primary-blue) !important;
      }

      .navbar-brand img {
          height: 40px;
          /* margin-right: 0.5rem; */
      }

      .navbar-nav .nav-link {
          color: white !important;
          font-weight: 500;
          margin: 0 0.5rem;
          transition: all 0.3s ease;
      }

      .navbar-nav .nav-link:hover {
          color: #ffffff !important;
          transform: translateY(-2px);
      }


      .lng {
          background-color: var(--primary-blue);
          color: #fff;
          padding: 0.5rem 1rem;
          border-radius: 30px;
          text-decoration: none;
          font-weight: 600;
          font-size: 12px;
          transition: all 0.3s ease;
      }

      .lng:hover {
          background-color: var(--secondary-blue);
          color: #fff;
          transform: translateY(-3px);
          box-shadow: 0 10px 25px rgba(31, 110, 146, 0.3);
      }

      /*  */

      .hero-content {
          position: relative;
          z-index: 2;
          /* padding: 4rem 0; */
      }

      .hero-title {
          font-size: 2.5rem;
          font-weight: 800;
          color: #ffffff;
          line-height: 1.2;
          margin-bottom: 1.5rem;
      }

      .hero-description {
          font-size: 1.2rem;
          color: #ffffff;
          line-height: 1.6;
          margin-bottom: 2.5rem;
          max-width: 500px;
      }

      .download-buttons {
          display: flex;
          gap: 1rem;
          flex-wrap: wrap;
      }

      .download-btn {
          display: flex;
          align-items: center;
          gap: 0.75rem;
          padding: 0.55rem 2.5rem;
          border: 2px solid var(--primary-blue);
          border-radius: 30px;
          text-decoration: none;
          transition: all 0.3s ease;
          background: var(--primary-blue);
          color: #fff;
          font-weight: 600;
          font-size: 12px;
          -webkit-border-radius: 30px;
          -moz-border-radius: 30px;
          -ms-border-radius: 30px;
          -o-border-radius: 30px;
      }

      .download-btn:hover {
          background: var(--primary-blue);
          color: white;
          transform: translateY(-3px);
          box-shadow: 0 10px 25px rgba(31, 110, 146, 0.3);
      }

      .download-btn i {
          font-size: 1.2rem;
      }

      .hero-illustration {
          position: relative;
          z-index: 2;
          height: 85vh;
          background: url('../img/hero-image.svg') no-repeat center center;
          background-size: contain;
          filter: hue-rotate(1000deg) saturate(1.2) brightness(0.9);
      }

      .floating-elements {
          position: absolute;
          width: 100%;
          height: 100%;
          pointer-events: none;
      }

      .floating-circle {
          position: absolute;
          width: 20px;
          height: 20px;
          background: #feffff;
          border-radius: 50%;
          top: 20%;
          left: 10%;
          animation: float 3s ease-in-out infinite;
          opacity: 0.7;
      }

      .floating-triangle {
          position: absolute;
          width: 0;
          height: 0;
          border-left: 15px solid transparent;
          border-right: 15px solid transparent;
          border-bottom: 25px solid var(--secondary-blue);
          top: 60%;
          left: 5%;
          animation: float 4s ease-in-out infinite reverse;
          opacity: 0.8;
      }

      .floating-square {
          position: absolute;
          width: 15px;
          height: 15px;
          background: #feffff;
          top: 40%;
          right: 15%;
          animation: float 5s ease-in-out infinite;
          opacity: 0.6;
          transform: rotate(45deg);
      }

      @keyframes float {
          0%, 100% {
              transform: translateY(0px);
          }

          50% {
              transform: translateY(-20px);
          }
      }

      @media (max-width: 768px) {
          .hero-title {
              font-size: 1.2rem;
              font-weight: 600;
              padding-top: 20px;
          }

          .hero-description {
              font-size: 1rem;
          }

          .download-buttons {
              flex-direction: column;
              align-items: center;
          }


          .accordion_main {
              text-align: center;
          }



          .hero-illustration {
              height: 400px;
              margin-top: 2rem;
          }
      }

      .navbar-toggler {
          border: none;
          color: white;
      }

      .navbar-toggler:focus {
          box-shadow: none;
      }

      /*  */

      .features-section {
          padding: 80px 0;
          background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
          position: relative;
          overflow: hidden;
      }

      .section-title_tow {
          font-size: 2.5rem;
          font-weight: 700;
          color: #1F6E92;
          margin-bottom: 1rem;
      }

      .section-subtitle_tow {
          font-size: 1.2rem;
          color: #64748b;
          line-height: 1.6;
          max-width: 600px;
          margin: 0 auto;
      }

      .feature-card {
          transition: all 0.3s ease;
          border: 1px solid #e2e8f0;
          position: relative;
          overflow: hidden;
      }

      .feature-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 4px;
          background: linear-gradient(135deg, #f8fafc 0%, #3e6392 10%, var(--primary-blue) 100%);
          transform: scaleX(0);
          transition: transform 0.3s ease;
      }

      .feature-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
      }

      .feature-card:hover::before {
          transform: scaleX(1);
      }

      .feature-icon {
          width: 80px;
          height: 80px;
          margin: 0 auto 1rem;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          position: relative;
          transition: all 0.3s ease;
      }

      .feature-icon i {
          font-size: 2.5rem !important;
          transition: all 0.3s ease;
      }

      .feature-card:hover .feature-icon {
          transform: scale(1.1);
      }

      .feature-card:hover .feature-icon i {
          transform: rotateY(360deg);
      }

      .feature-card:nth-child(1) .feature-icon {
          background: linear-gradient(135deg, #f8fafc 0%, #3e6392 10%, var(--primary-blue) 100%);
      }

      .feature-card:nth-child(1) .feature-icon i {
          color: white;
      }

      .feature-card:nth-child(2) .feature-icon {
          background: linear-gradient(135deg, #10b981, #059669);
      }

      .feature-card:nth-child(2) .feature-icon i {
          color: white;
      }

      .feature-card:nth-child(3) .feature-icon {
          background: linear-gradient(135deg, #f59e0b, #d97706);
      }

      .feature-card:nth-child(3) .feature-icon i {
          color: white;
      }

      .feature-card:nth-child(4) .feature-icon {
          background: linear-gradient(135deg, #ef4444, #dc2626);
      }

      .feature-card:nth-child(4) .feature-icon i {
          color: white;
      }

      .feature-title {
          font-weight: 600;
          color: #1e293b;
          margin-bottom: 1rem;
      }

      .feature-description {
          color: #64748b;
          line-height: 1.6;
          font-size: 0.95rem;
      }

      .floating-elements {
          position: absolute;
          width: 100%;
          height: 100%;
          pointer-events: none;
          z-index: 1;
      }

      .floating-dot {
          position: absolute;
          width: 12px;
          height: 12px;
          background: #3b82f6;
          border-radius: 50%;
          opacity: 0.3;
          animation: float 6s ease-in-out infinite;
      }

      .floating-dot:nth-child(1) {
          top: 20%;
          left: 10%;
          animation-delay: 0s;
      }

      .floating-dot:nth-child(2) {
          top: 60%;
          right: 15%;
          animation-delay: 2s;
      }

      .floating-dot:nth-child(3) {
          bottom: 30%;
          left: 20%;
          animation-delay: 4s;
      }

      @keyframes float {
          0%, 100% {
              transform: translateY(0px) scale(1);
              opacity: 0.3;
          }

          50% {
              transform: translateY(-20px) scale(1.2);
              opacity: 0.6;
          }
      }

      @media (max-width: 768px) {
          .section-title_tow {
              font-size: 2rem;
          }

          .section-subtitle_tow {
              font-size: 1rem;
          }

          .features-section {
              padding: 60px 0;
          }
      }

      .container {
          position: relative;
          z-index: 2;
      }

      .row {
          position: relative;
          z-index: 2;
      }

      /*  */



      .chat-features-section {
          background: #1F6E92;
          min-height: 100vh;
          padding: 80px 0;
          position: relative;
          overflow: hidden;
      }

      .chat-features-section::before {
          content: '';
          position: absolute;
          top: -50%;
          left: -50%;
          width: 200%;
          height: 200%;
          background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
          animation: rotate 20s linear infinite;
      }

      @keyframes rotate {
          0% {
              transform: rotate(0deg);
          }

          100% {
              transform: rotate(360deg);
          }
      }

      .section-title {
          font-size: 2.5rem;
          font-weight: 700;
          color: white;
          text-align: center;
          margin-bottom: 1rem;
          position: relative;
          z-index: 2;
      }

      .title-divider {
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 4rem;
          position: relative;
          z-index: 2;
      }

      .title-divider::before,
      .title-divider::after {
          content: '';
          width: 60px;
          height: 3px;
          background: white;
          margin: 0 15px;
      }

      .title-divider .dots {
          display: flex;
          gap: 8px;
      }

      .title-divider .dot {
          width: 8px;
          height: 8px;
          background: white;
          border-radius: 50%;
      }

      .phone-container {
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;
          z-index: 3;
      }

      .phone-background {
          position: absolute;
          width: 400px;
          height: 400px;
          background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 70%, transparent 100%);
          border-radius: 50%;
          z-index: 1;
      }

      .phone-mockup {
          width: 280px;
          height: 560px;
          background: linear-gradient(145deg, #ffffff, #f0f0f0);
          border-radius: 40px;
          padding: 20px;
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
          position: relative;
          z-index: 2;
      }

      .phone-screen {
          width: 100%;
          height: 100%;
          background: #1F6E92;
          border-radius: 30px;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          position: relative;
          overflow: hidden;
      }

      .phone-notch {
          position: absolute;
          top: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 120px;
          height: 25px;
          background: #ffffff;
          border-radius: 0 0 15px 15px;
      }

      .app-logo {
          display: flex;
          align-items: center;
          gap: 15px;
          color: white;
          margin-top: 40px;
      }

      .logo-icon {
          width: 60px;
          height: 60px;
          background: white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          position: relative;
      }

      .logo-icon::before,
      .logo-icon::after {
          content: '';
          width: 16px;
          height: 16px;
          background: #2a5298;
          border-radius: 50%;
          position: absolute;
      }

      .logo-icon::before {
          left: 15px;
      }

      .logo-icon::after {
          right: 15px;
      }

      .app-name {
          font-size: 1.8rem;
          font-weight: 600;
          font-style: italic;
      }

      .features-container {
          position: relative;
          z-index: 2;
      }

      .feature-item {
          display: flex;
          align-items: flex-start;
          gap: 15px;
          margin-bottom: 3rem;
          color: white;
      }

      .feature-bullet {
          width: 12px;
          height: 12px;
          background: white;
          border-radius: 50%;
          margin-top: 8px;
          flex-shrink: 0;
      }

      .feature-content h4 {
          font-size: 1.2rem;
          font-weight: 600;
          margin-bottom: 0.5rem;
          line-height: 1.4;
      }

      .feature-content p {
          font-size: 0.95rem;
          opacity: 0.9;
          line-height: 1.5;
          margin: 0;
      }

      .features-left {
          text-align: right;
      }

      .features-right {
          /* text-align: left; */
      }

      .floating-elements {
          position: absolute;
          width: 100%;
          height: 100%;
          pointer-events: none;
          z-index: 1;
      }

      .floating-circle {
          position: absolute;
          border: 2px solid rgba(255, 255, 255, 0.2);
          border-radius: 50%;
          animation: float 6s ease-in-out infinite;
      }

      .floating-circle:nth-child(1) {
          width: 100px;
          height: 100px;
          top: 10%;
          left: 10%;
          animation-delay: 0s;
      }

      .floating-circle:nth-child(2) {
          width: 150px;
          height: 150px;
          top: 60%;
          right: 15%;
          animation-delay: 2s;
      }

      .floating-circle:nth-child(3) {
          width: 80px;
          height: 80px;
          bottom: 20%;
          left: 20%;
          animation-delay: 4s;
      }

      @keyframes float {
          0%, 100% {
              transform: translateY(0px) rotate(0deg);
          }

          50% {
              transform: translateY(-20px) rotate(180deg);
          }
      }

      @media (max-width: 768px) {
          .section-title {
              font-size: 2rem;
          }

          .phone-mockup {
              width: 220px;
              height: 440px;
          }

          .phone-background {
              width: 300px;
              height: 300px;
          }

          .feature-item {
              margin-bottom: 2rem;
          }

          .features-right {
              text-align: right;
          }
      }

      /*  */
      /* Wrapper to center frame */
      .mobile-frame-wrapper {
          display: flex;
          justify-content: center;
          align-items: center;
      }

      /* Frame */
      .mobile-frame {
          width: 320px;
          height: 650px;
          background: url('../img/iphone-mask.png') no-repeat center center;
          background-size: cover;
          position: relative;
          padding: 60px 20px;
          box-sizing: border-box;
      }

      /* Swiper container */
      .mySwiper {
          width: 100%;
          height: 100%;
      }

      /* Slides */
      .swiper-slide {
          /* background: #fff; */
          border-radius: 20px;
          overflow: hidden;
          /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); */
          transition: transform 0.4s ease;
      }

      .swiper-slide img {
          width: 100%;
          height: 100%;
          object-fit: cover;
      }

      .swiper-section {
          display: flex;
          justify-content: center;
          align-items: center;
          background-color: #f4f4f4;
          padding: 50px 0;
          position: relative;
      }

      .phone-frame {
          position: relative;
          width: 300px;
          height: 600px;
      }

      .frame-bg {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          z-index: 2;
          pointer-events: none;
      }

      .swiper-container {
          width: 100%;
          height: 100%;
          z-index: 1;
          padding: 50px 0;
          box-sizing: border-box;
      }

      .swiper-slide {
          display: flex;
          justify-content: center;
          align-items: center;
          transform: scale(0.8);
          transition: transform 0.4s ease;
      }

      .swiper-slide img {
          width: 300px;
          height: 540px;
          border-radius: 30px;
          object-fit: contain;
      }

      .swiper-slide-active {
          transform: scale(1);
          z-index: 3;
      }

      @media (max-width: 767px) {
          .mySwiper {
              overflow: hidden;
          }
      }




      /*  */

      .contact-section {
          padding:50px 0 0 0;
          background-color: #f8fafc;
      }

      .contact-container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
      }

      .contact-row {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 4rem;
          /* align-items: start; */
          justify-content: center;
      }

      /* Left Side - Contact Form */
      .contact-form-section {
          background: #f1f5f9;
          border-radius: 20px;
          padding: 3rem;
      }

      .form-title {
          font-size: 1.8rem;
          font-weight: 600;
          color: #334155;
          margin-bottom: 2rem;

      }

      .form-group {
          margin-bottom: 1.5rem;
      }

      .form-control {
          width: 100%;
          padding: 15px 20px;
          border: 1px solid #e2e8f0;
          border-radius: 10px;
          font-size: 1rem;
          background: white;
          transition: all 0.3s ease;
          font-family: 'Inter', sans-serif;
      }

      .form-control:focus {
          outline: none;
          border-color: #1F6E92;
          box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
      }

      .form-control::placeholder {
          color: #94a3b8;
      }

      textarea.form-control {
          resize: vertical;
          min-height: 120px;
      }

      .send-btn {
          background: linear-gradient(135deg, #1F6E92, #1F6E92);
          color: white;
          border: none;
          padding: 15px 30px;
          border-radius: 10px;
          font-size: 1rem;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
          font-family: 'Inter', sans-serif;
      }

      .send-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 25px #1F6E92;
      }

      /* Right Side - Contact Info */
      .contact-info-section {
          padding: 2rem 0;
      }

      .info-title {
          font-size: 2.2rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 1.5rem;
          line-height: 1.3;
          text-align: center;
      }

      .info-description {
          font-size: 1.1rem;
          color: #64748b;
          margin-bottom: 2rem;
          line-height: 1.6;
          text-align: center;
      }

      .get-directions-btn {
          display: inline-flex;
          align-items: center;
          gap: 0.5rem;
          background: transparent;
          color: #1F6E92;
          border: 2px solid #1F6E92;
          padding: 12px 24px;
          border-radius: 10px;
          font-size: 1rem;
          font-weight: 600;
          text-decoration: none;
          transition: all 0.3s ease;
          margin-bottom: 3rem;
      }

      .get-directions-btn:hover {
          background: #1F6E92;
          color: white;
          transform: translateX(5px);
      }

      .contact-info-list {
          list-style: none;
      }

      .contact-info-item {
          display: flex;
          align-items: flex-start;
          gap: 1rem;
          margin-bottom: 2rem;
      }

      .contact-icon {
          width: 50px;
          height: 50px;
          background: linear-gradient(135deg, #1F6E92, #1F6E92);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          font-size: 1.2rem;
          flex-shrink: 0;
      }

      .contact-details h4 {
          font-size: 1.3rem;
          font-weight: 600;
          color: #1e293b;
          margin-bottom: 0.5rem;
      }

      .contact-details p {
          color: #64748b;
          margin: 0;
          font-size: 1rem;
      }

      @media (max-width: 768px) {
          .contact-row {
              grid-template-columns: 1fr;
              gap: 2rem;
          }

          .contact-form-section {
              padding: 2rem;
          }

          .info-title {
              font-size: 1.8rem;
          }

          .contact-section {
              padding: 60px 0;
          }
      }

      /* Animation for form submission */
      .form-success {
          background: #10b981;
          color: white;
          padding: 1rem;
          border-radius: 10px;
          text-align: center;
          margin-top: 1rem;
          display: none;
      }

      .send-btn.loading {
          opacity: 0.7;
          pointer-events: none;
      }

      .send-btn.loading::after {
          content: '';
          width: 16px;
          height: 16px;
          border: 2px solid transparent;
          border-top: 2px solid white;
          border-radius: 50%;
          animation: spin 1s linear infinite;
          display: inline-block;
          margin-left: 8px;
      }

      @keyframes spin {
          0% {
              transform: rotate(0deg);
          }

          100% {
              transform: rotate(360deg);
          }
      }


      /*  */


      /* Demo content to show footer at bottom */
      .main-content {
          flex: 1;
          padding: 50px 0;
          background: #f8fafc;
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .demo-text {
          text-align: center;
          color: #64748b;
          font-size: 1.2rem;
      }

      /* Footer Styles */
      .footer {
          background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
          color: white;
          padding: 30px 0;
          position: relative;
          overflow: hidden;
      }

      .footer::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
          z-index: 1;
      }

      .footer-content {
          position: relative;
          z-index: 2;
      }

      .footer-row {
          display: flex;
          justify-content: space-between;
          align-items: center;
          flex-wrap: wrap;
          gap: 1rem;
      }

      .copyright {
          font-size: 1rem;
          color: rgba(255, 255, 255, 0.9);
          font-weight: 400;
      }

      .copyright strong {
          color: white;
          font-weight: 600;
      }

      .social-links {
          display: flex;
          gap: 1rem;
          align-items: center;
      }

      .social-link {
          width: 45px;
          height: 45px;
          background: rgba(255, 255, 255, 0.1);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          text-decoration: none;
          font-size: 1.2rem;
          transition: all 0.3s ease;
          backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .social-link:hover {
          background: rgba(255, 255, 255, 0.2);
          transform: translateY(-3px);
          color: white;
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      }

      /* Specific hover colors for each social platform */
      .social-link.facebook:hover {
          background: #1877f2;
          border-color: #1877f2;
      }

      .social-link.twitter:hover {
          background: #1da1f2;
          border-color: #1da1f2;
      }

      .social-link.instagram:hover {
          background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
          border-color: #e6683c;
      }

      .social-link.linkedin:hover {
          background: #0077b5;
          border-color: #0077b5;
      }

      .social-link.youtube:hover {
          background: #ff0000;
          border-color: #ff0000;
      }

      .social-link.whatsapp:hover {
          background: #25d366;
          border-color: #25d366;
      }

      .social-link.telegram:hover {
          background: #0088cc;
          border-color: #0088cc;
      }

      .social-link.tiktok:hover {
          background: #000000;
          border-color: #000000;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
          .footer-row {
              flex-direction: column;
              text-align: center;
              gap: 1.5rem;
          }

          .copyright {
              order: 2;
              font-size: 0.9rem;
          }

          .social-links {
              order: 1;
              justify-content: center;
          }

          .footer {
              padding: 25px 0;
          }
      }

      /* Animation for social icons */
      .social-links {
          animation: fadeInUp 0.8s ease-out;
      }

      @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(20px);
              -webkit-transform: translateY(20px);
              -moz-transform: translateY(20px);
              -ms-transform: translateY(20px);
              -o-transform: translateY(20px);
          }

          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      /* Floating animation for social icons */
      .social-link {
          animation: float 3s ease-in-out infinite;
      }

      .social-link:nth-child(1) {
          animation-delay: 0s;
      }

      .social-link:nth-child(2) {
          animation-delay: 0.2s;
      }

      .social-link:nth-child(3) {
          animation-delay: 0.4s;
      }

      .social-link:nth-child(4) {
          animation-delay: 0.6s;
      }

      .social-link:nth-child(5) {
          animation-delay: 0.8s;
      }

      .social-link:nth-child(6) {
          animation-delay: 1s;
      }

      .social-link:nth-child(7) {
          animation-delay: 1.2s;
      }

      .social-link:nth-child(8) {
          animation-delay: 1.4s;
      }

      @keyframes float {
          0%, 100% {
              transform: translateY(0px);
          }

          50% {
              transform: translateY(-8px);
              -webkit-transform: translateY(-8px);
              -moz-transform: translateY(-8px);
              -ms-transform: translateY(-8px);
              -o-transform: translateY(-8px);
          }
      }


      /* 
      */
      .scroll-to-top {
          position: fixed;
          bottom: 30px;
          right: 30px;
          z-index: 1000;
          background-color: #1F6E92;
          color: #fff;
          border: none;
          border-radius: 50%;
          padding: 15px 18px;
          cursor: pointer;
          font-size: 18px;
          display: none;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
          transition: all 0.3s ease;
      }

      .scroll-to-top.show {
          display: block;
      }

      .scroll-to-top.style-2 {
          background-color: #1F6E92;
      }

      #scrollProgress {
          position: fixed;
          top: 0;
          left: 0;
          height: 15px;
          background-color: #1F6E92;
          z-index: 9999;
          width: 0;
      }