 @import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: Urbanist, Sans-Serif;
     background: #fff;
     color: #000;
     line-height: 1.6;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 3rem 1rem;
 }

 /* --- Footer --- */
 .footer {
     background: #111;
     color: #fff;
     padding: 5rem 1rem;
     border-radius: 38px 38px 0 0;
     margin-top: 5rem;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 2rem;
 }

 @media (min-width: 768px) {
     .footer-container {
         flex-direction: row;
         justify-content: space-between;
         align-items: flex-start;
         text-align: left;
     }
 }

 .footer-logo-container img {
     max-width: 260px;
     height: auto;
 }

 .footer-title {
     font-size: 1.25rem;
     font-weight: 600;
     margin: 1rem 0 0.5rem;
     display: none;
 }

 @media (min-width: 768px) {
     .footer-title {
         display: block;
     }
 }

 .footer-desc {
     font-size: 0.9rem;
     color: #ccc;
     max-width: 300px;
     line-height: 1.6;
 }

 .footer-links-container {
     display: flex;
     margin-right: 40px;
     flex-direction: row;
     gap: 3rem;
     justify-content: center;
     flex-wrap: wrap;
 }

 .footer-col h4 {
     font-size: 1rem;
     font-weight: 600;
     margin-bottom: 1rem;
 }

 .footer-col ul {
     list-style: none;
     padding: 0;
 }

 .footer-col ul li {
     margin-bottom: 0.5rem;
 }

 .footer-col ul li a {
     color: #fff;
     font-size: 0.9rem;
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-col ul li a:hover {
     color: #0a60ff;
 }

 .footer-bottom {
     margin-top: 3rem;
     padding-top: 2rem;
     border-top: 1px solid #333;
     text-align: center;
 }

 .footer-bottom p {
     font-size: 0.85rem;
     color: #aaa;
 }


 /* --- Navbar --- */
 .navbar {
     position: sticky;
     top: 0;
     z-index: 1000;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 6%;
     background: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
 }

 li {
     list-style: none;
 }

 .nav-list {
     display: flex;
     gap: 2.5rem;
     align-items: center;
 }

 .nav-list a {
     text-decoration: none !important;
     color: #1a1a1a;
     font-size: 0.95rem;
     font-weight: 600;
     transition: all 0.3s ease;
     position: relative;
     display: inline-block;
 }

 .nav-list a:hover {
     color: #0366ff;
 }

 .nav-list a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -4px;
     left: 0;
     background: #0366ff;
     transition: width 0.3s ease;
 }

 .nav-list a:hover::after {
     width: 100%;
 }

 #Contact {
     text-decoration: none;
     background-color: #0366ff;
     color: #fff;
     padding: 12px 24px;
     border-radius: 999px;
     font-family: "Urbanist", sans-serif;
     font-weight: 700;
     font-size: 0.95rem;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(3, 102, 255, 0.2);
 }

 #Contact:hover {
     background-color: #0052d1;
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(3, 102, 255, 0.3);
 }

 .logo-container img {
     height: 50px;
     width: auto;
     display: block;
 }

 .nav-desktop {
     display: none;
 }

 .cta-desktop {
     display: none;
 }

 .nav-mobile {
     position: fixed;
     top: 0;
     right: -100%;
     width: 80%;
     height: 100vh;
     background: #fff;
     z-index: 1001;
     display: flex;
     flex-direction: column;
     justify-content: center;
     transition: 0.4s ease-in-out;
     box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
 }

 .nav-mobile.active {
     right: 0;
 }

 .nav-mobile .nav-list {
     flex-direction: column;
     align-items: center;
     gap: 2rem;
 }

 .nav-mobile .nav-list a {
     font-size: 1.2rem;
 }

 .hamburger {
     display: inline-flex;
     flex-direction: column;
     gap: 6px;
     background: none;
     border: 0;
     cursor: pointer;
     padding: 8px;
     z-index: 1002;
 }

 .hamburger span {
     width: 26px;
     height: 3px;
     background: #24292e;
     border-radius: 2px;
     transition: .25s;
 }

 .hamburger.active span:nth-child(1) {
     transform: rotate(-45deg) translate(-5px, 6px);
 }

 .hamburger.active span:nth-child(2) {
     opacity: 0;
 }

 .hamburger.active span:nth-child(3) {
     transform: rotate(45deg) translate(-5px, -6px);
 }



 @media (min-width: 768px) {
     .nav-desktop {
         display: block;
     }

     .cta-desktop {
         display: inline-block;
     }

     .hamburger {
         display: none;
     }

     .nav-mobile {
         display: none !important;
     }
 }


 /* --- Download Section --- */
 .download-section {
     margin: 5rem auto;
     padding: 0 50px
 }

 .download-section .header h1 {
     font-size: 67px;
     margin-bottom: 1rem;
 }

 .download-section .header p {
     font-size: 20px;
     color: #aeaeae;
     margin-bottom: 0.5rem;

 }

 .content {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 2rem;
     margin-top: 4rem;
     justify-items: center;
 }

 .card {
     display: flex;
     flex-direction: column;
     padding: 2rem;
     background: #fcfcfc;
     border-radius: 20px;
     border: 1px solid #eee;
     width: 100%;
     max-width: 350px;
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
 }

 .card-image {
     width: 100%;
     aspect-ratio: 1/1;
     overflow: hidden;
     border-radius: 12px;
     margin-bottom: 1.5rem;
 }

 .card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* Removed redundant max-width and margin-bottom from here */
 }

 /* Removed the redundant .card img rule */

 .card-content {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .card-content h3 {
     font-size: 1.6rem;
     margin: 0;
     color: #111;
 }

 .card-content p {
     font-size: 0.95rem;
     color: #666;
     margin: 0;
     line-height: 1.5;
 }

 .card-content a {
     margin-top: auto;
     text-decoration: none;
     background-color: #0a60ff;
     color: white;
     padding: 0.8rem 1.5rem;
     border-radius: 50px;
     font-weight: 600;
     transition: all 0.3s;
     max-width: fit-content;
     text-align: center;
 }

 .card-content a:hover {
     background: #0850cc;
     transform: translateY(-2px);
 }

 @media (max-width: 768px) {
     .content {
         grid-template-columns: 1fr;
         padding: 0 1.5rem;
     }

     .card {
         max-width: 100%;
         padding: 1.5rem;
     }
 }

 /* --- Modal Styles --- */
 .modal {
     display: none;
     position: fixed;
     z-index: 2000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     overflow: auto;
     background-color: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(5px);
     justify-content: center;
     align-items: center;
 }

 .modal.active {
     display: flex;
 }

 .modal-content {
     background-color: #fff;
     padding: 2.5rem;
     border-radius: 20px;
     width: 90%;
     max-width: 450px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     position: relative;
     animation: modalIn 0.3s ease-out;
 }

 @keyframes modalIn {
     from {
         transform: translateY(-30px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 .modal-header {
     margin-bottom: 1.5rem;
     text-align: center;
 }

 .modal-header h2 {
     font-size: 1.8rem;
     color: #111;
 }

 .modal-form {
     display: flex;
     flex-direction: column;
     gap: 1.2rem;
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
 }

 .form-group label {
     font-weight: 600;
     font-size: 0.9rem;
     color: #555;
 }

 .form-group input {
     padding: 0.8rem 1rem;
     border: 1px solid #ddd;
     border-radius: 10px;
     font-size: 1rem;
     outline: none;
     transition: border-color 0.3s;
 }

 .form-group input:focus {
     border-color: #0a60ff;
 }

 .submit-btn {
     background: #0a60ff;
     color: white;
     padding: 1rem;
     border: none;
     border-radius: 12px;
     font-weight: 700;
     font-size: 1rem;
     cursor: pointer;
     transition: background 0.3s, transform 0.2s;
     margin-top: 0.5rem;
 }

 .submit-btn:hover {
     background: #0850cc;
 }

 .submit-btn:active {
     transform: scale(0.98);
 }

 .close-modal {
     position: absolute;
     top: 15px;
     right: 20px;
     font-size: 1.5rem;
     cursor: pointer;
     color: #aaa;
     transition: color 0.3s;
 }

 .close-modal:hover {
     color: #333;
 }

 /* --- Notification Styles --- */
 .notification-container {
     position: fixed;
     top: 20px;
     right: 20px;
     z-index: 3000;
     display: flex;
     flex-direction: column;
     gap: 10px;
     pointer-events: none;
 }

 .notification {
     min-width: 300px;
     max-width: 400px;
     background: #fff;
     color: #333;
     padding: 16px 20px;
     border-radius: 12px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     display: flex;
     align-items: center;
     gap: 12px;
     pointer-events: auto;
     animation: slideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
     border-left: 5px solid #0a60ff;
     position: relative;
     overflow: hidden;
 }

 .notification.success {
     border-left-color: #00c853;
 }

 .notification.error {
     border-left-color: #ff3d00;
 }

 .notification.fade-out {
     animation: slideOut 0.4s ease forwards;
 }

 .notification-icon {
     font-size: 1.25rem;
     flex-shrink: 0;
 }

 .notification-content {
     flex-grow: 1;
 }

 .notification-title {
     font-weight: 700;
     font-size: 0.95rem;
     margin-bottom: 2px;
     display: block;
 }

 .notification-message {
     font-size: 0.85rem;
     color: #666;
     display: block;
 }

 .notification-progress {
     position: absolute;
     bottom: 0;
     left: 0;
     height: 3px;
     background: rgba(0, 0, 0, 0.05);
     width: 100%;
 }

 .notification-progress-bar {
     height: 100%;
     background: inherit;
     border-radius: 0 2px 2px 0;
     width: 0%;
     transition: width linear;
 }

 .notification.success .notification-progress-bar {
     background: #00c853;
     opacity: 0.3;
 }

 .notification.error .notification-progress-bar {
     background: #ff3d00;
     opacity: 0.3;
 }

 @keyframes slideIn {
     from {
         transform: translateX(100%);
         opacity: 0;
     }

     to {
         transform: translateX(0);
         opacity: 1;
     }
 }

 @keyframes slideOut {
     from {
         transform: translateX(0);
         opacity: 1;
     }

     to {
         transform: translateX(120%);
         opacity: 0;
     }
 }

 @media (max-width: 480px) {
     .notification-container {
         top: auto;
         bottom: 20px;
         right: 10px;
         left: 10px;
     }

     .notification {
         min-width: 0;
         width: 100%;
     }
 }