<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> body {
     margin: 0;
     font-family: Arial, sans-serif;
     text-align: center;
     color: white;
     background-color: whitesmoke;
 }

 /* General Reset */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: Arial, sans-serif;
 }

 /* Navbar Styling */
 .navbar {
     display: flex;
     justify-content: space-around;
     align-items: center;
     background-color: whitesmoke;
     padding: 15px 30px;
     position: fixed;
     width: 100%;
     top: 0;
     left: 0;
     z-index: 1000;
     transition: 0.3s;
     height: 85px;
 }

 /* Hamburger icon */
 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
     gap: 5px;
     z-index: 1001;
     margin-left: auto;
     padding: 10px;
 }

 .hamburger span {
     width: 25px;
     height: 3px;
     background-color: #fff;
     border-radius: 2px;
     transition: 0.3s;
 }

 .logo {
     display: flex;
     align-items: center;
 }

 .logo img {
     height: 60px;
     margin-right: 10px;
 }

 .company-name {
     font-size: 28px;
     font-weight: bold;
     color: rgb(23, 23, 70);
 }

 .nav-links {
     list-style: none;
     display: flex;
     align-items: center;

 }

 .nav-links li {
     margin: 0 15px;
 }

 .nav-links a {
     text-decoration: none;
     color: rgb(23, 23, 70);
     font-size: 18px;
     font-weight: 500;
     transition: 0.3s;
 }

 .nav-links a:hover {
     color: #003366;
 }

 .hero {
     position: relative;
     width: 100%;
     height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
     overflow: hidden;
     background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
     margin-top: 85px;
 }

 #background-video {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: -1;
 }

 .hero-content {
     max-width: 700px;
     padding: 20px;
     background: rgba(0, 0, 0, 0.5);
     border-radius: 10px;
 }

 .hero-content h1 {
     font-size: 40px;
 }

 .hero-content p {
     font-size: 18px;
     margin-top: 10px;
 }

 .btn {
     display: inline-block;
     padding: 10px 20px;
     background: #ff6600;
     color: white;
     text-decoration: none;
     border-radius: 5px;
     margin-top: 10px;
 }


 section {
     padding: 50px;
     background: #f4f4f4;
     color: black;
 }

 h2 {
     color: #004aad;
     /* margin-bottom: 20px; */
 }

 .about-cards {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 20px;
     padding: 50px;
 }

 .card {
     background: white;
     color: #002147;
     padding: 20px;
     border-radius: 10px;
     width: 350px;
     height: 250px;
     text-align: center;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
 }

 .card:hover {
     transform: translateY(-10px);
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
     background: #004aad;
     color: white;
 }

 .card-icon {
     font-size: 40px;
     margin-bottom: 10px;
     color: #004aad;
     transition: color 0.3s;
 }

 .card:hover .card-icon {
     color: white;
 }

 #features {
     background-color: #f9f9f9;
     padding: 60px 20px;
     max-width: 1200px;
     margin: auto;
 }

 .accordion-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 20px;
 }

 .accordion-item {
     border: 1px solid #ddd;
     border-radius: 10px;
     overflow: hidden;
     transition: all 0.3s ease;
     background: whitesmoke;
 }

 .accordion-header {
     background-color: #004080;
     color: whitesmoke;
     font-size: 1rem;
     font-weight: 600;
     padding: 15px 20px;
     text-align: left;
     width: 100%;
     border: none;
     outline: none;
     cursor: pointer;
     position: relative;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .accordion-header .icon {
     font-size: 1.2rem;
     transition: transform 0.3s ease;
 }

 .accordion-header.active .icon {
     transform: rotate(45deg);
 }

 .accordion-content {
     max-height: 0;
     overflow: hidden;
     background: white;
     transition: max-height 0.4s ease;
     padding: 0 20px;
 }

 .accordion-content p {
     margin: 10px 0;
     text-align: left;
 }

 /* Popup Form Full-Screen Overlay */
 .popup-form {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: #001b33;
     /* Light blue transparent */
     display: none;
     /* Initially hidden */
     justify-content: center;
     align-items: center;
     z-index: 9999;
 }

 /* Form Container */
 .form-container {
     background-color: white;
     padding: 2rem;
     border-radius: 12px;
     width: 90%;
     max-width: 900px;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
     position: relative;
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 /* Close Button */
 .close-btn {
     position: absolute;
     top: 12px;
     right: 16px;
     font-size: 24px;
     color: #333;
     cursor: pointer;
 }

 /* Input Fields Style */
 form {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 1rem;
 }

 input,
 textarea {
     padding: 10px;
     border: 1px solid #ccc;
     border-radius: 6px;
     font-size: 16px;
     width: 100%;
 }

 textarea {
     grid-column: 1 / -1;
     resize: vertical;
     min-height: 100px;
 }

 /* Submit Button */
 button.btn {
     grid-column: 1 / -1;
     padding: 12px 20px;
     background-color: #007bff;
     color: white;
     border: none;
     border-radius: 6px;
     font-size: 16px;
     cursor: pointer;
     transition: background 0.3s ease;
 }

 button.btn:hover {
     background-color: #0056b3;
 }

 /* for product */
 .product-section {
     background-color: #f0f8ff;
     padding: 60px 20px;
 }

 .product-layout {
     display: flex;
     align-items: flex-start;
     justify-content: center;
     gap: 40px;
     flex-wrap: nowrap;
     margin-top: 20px;
 }



 /* Image stays left */
 .product-image img {
     width: 450px;
     height: 300px;
     /* margin: 20px; */
     object-fit: cover;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 /* Text on right side */
 .product-info {
     max-width: 600px;
     text-align: left;
     /* text inside is left-aligned */
 }

 /* Titles and paragraph */
 .product-title {
     font-size: 2.5rem;
     color: #003366;
     margin-bottom: 10px;
 }

 .product-subtitle {
     font-size: 1.3rem;
     color: #007bff;
     margin-bottom: 20px;
 }

 .product-description {
     font-size: 1rem;
     color: #333;
     line-height: 1.6;
 }

 .product-feature-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     ;
     gap: 30px;
     margin: 70px;
     padding-bottom: 60px;
 }

 .product-feature-card {
     background-color: #ffffff;
     height: 300px;
     width: 400px;
     border-radius: 12px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
     padding: 24px;
     text-align: left;
     /* align all text to the left */
     transition: transform 0.3s ease;
 }

 .product-feature-card:hover {
     transform: translateY(-5px);
 }

 .product-feature-card h3 {
     font-size: 1.2rem;
     margin-bottom: 8px;
     color: #003366;
     position: relative;
     padding-bottom: 6px;
 }

 .product-feature-card .hover-line {
     display: block;
     position: absolute;
     bottom: 0;
     left: 0;
     height: 2px;
     width: 0%;
     background-color: #007bff;
     transition: width 0.4s ease;
 }

 .product-feature-card:hover .hover-line {
     width: 100%;
 }

 .product-feature-card p {
     font-size: 0.95rem;
     color: #444;
     line-height: 1.5;
     margin-top: 10px;
 }

 .section-quote {
     background: linear-gradient(to right, #001b33, #004080);
     /* Navy blue gradient */
     padding: 40px 0;
     /* No left/right padding */
     color: #ffffff;
     text-align: left;
     width: 100%;
 }

 .section-quote&gt;h2 {
     color: white;
     font-size: 2.8rem;
     font-weight: 700;
     margin: 0 40px 10px 40px;
     /* Add margin for breathing room */
     text-transform: uppercase;
 }

 .underline {
     width: 100px;
     height: 3px;
     background-color: #ffffff;
     margin-left: 40px;
     margin-bottom: 10px;
 }

 .section-quote p {
     font-size: 1.2rem;
     font-weight: 300;
     margin-left: 40px;
     margin-right: 40px;
 }

 /* stats */
 .section-stats {
     width: 100%;
     background: linear-gradient(to right, #00294d, #003f7f);
     color: white;
     padding: 60px 0;
     margin: 0;
 }

 .stats-container {
     display: flex;
     justify-content: space-around;
     align-items: center;
     flex-wrap: wrap;
     text-align: center;
     max-width: 100%;
     margin: 0 auto;
 }

 .stat {
     flex: 1 1 200px;
     margin: 20px 0;
 }

 .stat h2 {
     color: white;
     font-size: 48px;
     margin-bottom: 10px;
     font-weight: 700;
 }

 .stat p {
     font-size: 18px;
     opacity: 0.9;
 }

 .footer {
     background-color: #001f3f;
     color: white;
     padding: 60px 20px 20px;
     font-size: 15px;
 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 30px;
     max-width: 1200px;
     margin: auto;
 }

 .footer-logo {
     width: 120px;
     margin-bottom: 10px;
 }

 .footer-column h4 {
     margin-bottom: 15px;
     font-size: 18px;
     color: #ffcc00;
 }

 .footer-column ul {
     list-style: none;
     padding: 0;
 }

 .footer-column ul li {
     margin-bottom: 10px;
 }

 .footer-column ul li a {
     text-decoration: none;
     color: #ccc;
     transition: 0.3s;
 }

 .footer-column ul li a:hover {
     color: white;
 }

 .social-icons a {
     margin-right: 15px;
     color: #ccc;
     font-size: 18px;
     transition: color 0.3s ease;
 }

 .social-icons a:hover {
     color: #ffcc00;
 }

 .footer-bottom {
     text-align: center;
     margin-top: 30px;
     border-top: 1px solid #444;
     padding-top: 15px;
     font-size: 14px;
     color: #bbb;
 }

 /* =========================
   📱 RESPONSIVE DESIGN
   ========================= */
 @media (max-width: 768px) {

     .hamburger {
         display: flex;
         color: #002147;
     }

     .hamburger span {
         width: 25px;
         height: 3px;
         background-color: #001f3f;
         /* Navy Blue */
         border-radius: 2px;
         transition: 0.3s;
     }

     .nav-links {
         display: none;
         flex-direction: column;
         background-color: whitesmoke;
         /* match navbar background */
         position: absolute;
         top: 70px;
         left: 0;
         width: 100%;
         z-index: 1000;
     }

     .nav-links.active {
         display: flex;
     }

     .nav-links li {
         text-align: center;
         padding: 15px 0;
         border-top: 1px solid rgba(255, 255, 255, 0.1);
     }

     .navbar {
         flex-wrap: wrap;
         position: relative;
     }

     .company-name {
         font-size: 22px;
         text-align: center;
     }

     .logo img {
         height: 50px;
     }

     /* Hero */
     .hero {
         height: 100vh;
         padding: 20px;
         margin-top: 85px;
     }

     .hero-content {
         padding: 15px;
     }

     .hero-content h1 {
         font-size: 30px;
     }

     .hero-content p {
         font-size: 16px;
     }

     .btn {
         padding: 8px 16px;
         font-size: 14px;
     }

     /* About Cards */
     .about-cards {
         flex-direction: column;
         padding: 30px 20px;
     }

     .card {
         width: 100%;
         max-width: 350px;
         height: auto;
     }

     /* Accordion */
     .accordion-grid {
         grid-template-columns: 1fr;
     }

     .accordion-header {
         font-size: 0.95rem;
         padding: 12px 16px;
     }

     .accordion-content p {
         font-size: 14px;
     }

     /* Popup Form */
     .form-container {
         padding: 1.5rem;
         gap: 0.8rem;
     }

     form {
         grid-template-columns: 1fr;
     }

     button.btn {
         font-size: 15px;
     }

     /* Product Section */
     .product-layout {
         flex-direction: column;
         align-items: center;
         gap: 20px;
     }

     .product-image img {
         width: 100%;
         max-width: 320px;
         height: auto;
     }

     .product-info {
         padding-top: 10px;
         text-align: center;
     }

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

     .product-subtitle {
         font-size: 1.1rem;
     }

     .product-description {
         font-size: 0.95rem;
     }

     /* Feature Grid */
     .product-feature-grid {
         grid-template-columns: 1fr;
         gap: 20px;
         margin: 30px 20px;
         padding-bottom: 40px;
     }

     .product-feature-card {
         width: 100%;
         height: auto;
         padding: 20px;
     }

     .product-feature-card h3 {
         font-size: 1.1rem;
     }

     .product-feature-card p {
         font-size: 0.95rem;
     }

     /* Section Quote */
     .section-quote&gt;h2 {
         font-size: 2rem;
         margin: 0 20px 10px;
     }

     .section-quote p {
         font-size: 1rem;
         margin: 0 20px;
     }

     .underline {
         margin-left: 20px;
     }

     /* Stats Section */
     .stats-container {
         display: flex;
         justify-content: space-around;
         align-items: center;
         flex-wrap: nowrap;
         /* prevent wrap */
         text-align: center;
         max-width: 100%;
         margin: 0 auto;
         overflow-x: auto;
         /* allow scroll if screen too small */
         gap: 40px;
     }

     .stat {
         flex: 0 0 auto;
         min-width: 200px;
     }

     .stat h2 {
         font-size: 36px;
     }

     .stat p {
         font-size: 16px;
     }

     /* Footer */
     .footer {
         text-align: center;
         padding: 40px 15px 15px;
     }

     .footer-container {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .footer-logo {
         margin: 0 auto 20px;
         width: 100px;
     }

     .footer-column h4 {
         font-size: 16px;
     }

     .footer-column ul li {
         margin-bottom: 8px;
     }

     .social-icons a {
         font-size: 20px;
         margin: 0 8px;
     }

     .footer-bottom {
         font-size: 13px;
         padding-top: 10px;
     }
 }</pre></body></html>