     /* Reset & Base */
     * {
         margin: 0;
         padding: 0;
         box-sizing: border-box;
         font-family: "Segoe UI", "SegoeUI", "Helvetica Neue", Helvetica, Arial, sans-serif;
     }

     /* Header */
     .universal_header {
         display: flex;
         justify-content: space-between;
         align-items: center;
         padding: 12px 24px;
         background-color: #ffffff;
         box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
         height: 60px;
     }

     .nav_logo {
         display: flex;
         align-items: center;
         gap: 15px;
     }

     .nav_logo img {
         height: 40px;
         object-fit: contain;
     }

     .hamburger {
         font-size: 24px;
         cursor: pointer;
         color: #363434;
         display: none;
         /* Hidden by default, show only on mobile */
     }

     .nav-menu {
         display: flex;
         align-items: center;
         gap: 25px;
         flex-grow: 1;
         justify-content: flex-end;
     }

     .nav-links {
         margin-right: 250px;
     }

     .nav-links a {
         text-decoration: none;
         margin: 0 10px;
         font-size: 14px;
         color: rgb(22, 21, 21);
         font-weight: 500;
     }

     .nav-links a:hover {
         text-decoration: underline;
     }

     .nav-icons {
         margin-right: 30px;
         font-size: 14px;
         display: flex;
         align-items: center;
         gap: 15px;
         color: rgb(54, 52, 52);
         cursor: pointer;
     }

     .nav-icons i {
         width: 20px;
         cursor: pointer;
         color: rgb(54, 52, 52);
     }

     .nav-icons span:hover {
         text-decoration: underline;
     }

     /* Main Section */
     .section_1 {
         position: relative;
         width: 100%;
     }

     .section_1 img {
         height: 70vh;
         width: 100%;
         object-fit: cover;
         display: block;
     }

     .section-text {
         position: absolute;
         top: 25%;
         left: 20%;
         transform: translate(-20%, -25%);
         color: rgb(0, 0, 0);
         text-align: left;
         padding: 15px;
         border-radius: 10px;
         max-width: 400px;
         background-color: rgba(255, 255, 255, 0.7);
     }

     .section-text h1 {
         font-size: 30px;
         margin-bottom: 10px;
         font-weight: 600;
     }

     .section-text p {
         font-size: 14px;
         margin-bottom: 20px;
     }

     .section-text button {
         padding: 10px 20px;
         background-color: #0067b8;
         border: none;
         color: white;
         font-weight: 600;
         border-radius: 4px;
         cursor: pointer;
     }

     .section-text button:hover {
         background-color: #004a87;
     }

     /* Features */
     .feature_container {
         display: flex;
         justify-content: center;
         gap: 40px;
         padding: 40px 20px;
         background-color: #ffffff;
         flex-wrap: wrap;
     }

     .feature {
         display: flex;
         flex-direction: column;
         align-items: center;
         text-align: center;
         width: 150px;
         transition: transform 0.3s ease;
         cursor: pointer;
     }

     .feature i {
         font-size: 40px;
         color: #000000;
         margin-bottom: 10px;
     }

     .feature a {
         color: #4d6eff;
         font-size: 14px;
         font-weight: 500;
         text-decoration: none;
     }

     .feature a:hover {
         text-decoration: underline;
     }

     .feature:hover {
         transform: scale(1.05);
     }

     /* Cards */
     .card_container {
         display: flex;
         justify-content: space-between;
         margin: 0 20px 60px;
         gap: 20px;
         flex-wrap: wrap;
     }

     .card {
         background-color: #fff;
         margin: 10px 0;
         width: 23%;
         box-sizing: border-box;
         height: 65vh;
         border-radius: 15px;
         box-shadow: 2px 2px 8px rgba(160, 150, 150, 0.3);
         display: flex;
         flex-direction: column;
         cursor: pointer;
         transition: box-shadow 0.3s ease;
     }

     .card:hover {
         box-shadow: 2px 4px 12px rgba(0, 103, 184, 0.7);
     }

     .card img {
         width: 100%;
         border-radius: 15px 15px 0 0;
         height: 40%;
         object-fit: cover;
     }

     .card h2,
     .card h3 {
         font-weight: 600;
         font-size: 20px;
         margin: 15px 10px 5px;
         line-height: 1.3;
         flex-grow: 0;
     }

     .card p {
         font-size: 14px;
         color: rgb(22, 21, 21);
         margin: 10px;
         flex-grow: 1;
     }

     .card button {
         margin: 15px 10px 15px;
         background-color: #0067b8;
         color: white;
         padding: 10px 20px;
         border: none;
         font-size: 14px;
         font-weight: 600;
         border-radius: 4px;
         cursor: pointer;
         align-self: flex-start;
     }

     .card button a {
         color: white;
         text-decoration: none;
     }



     .card button:hover {
         background-color: #004a87;
     }

     .badge {
         background-color: rgb(255, 221, 0);
         color: black;
         padding: 3px 8px;
         font-weight: 600;
         border-radius: 5px;
         width: fit-content;
         margin: 15px 10px 0;
     }

     /* Image Section */
     .imag_section {
         display: flex;
         justify-content: space-between;
         align-items: center;
         margin: 50px 20px;
         background-color: #000;
         color: #fff;
         border-radius: 10px;
         overflow: hidden;
         height: 70vh;
         flex-wrap: wrap;
     }

     .imag_section img {
         height: 100%;
         width: 50%;
         object-fit: cover;
     }

     .imag_text_box {
         width: 50%;
         padding: 40px;
         box-sizing: border-box;
     }

     .imag_text_box h2 {
         font-size: 28px;
         margin-bottom: 15px;
     }

     .imag_text_box p {
         font-size: 14px;
         margin-bottom: 20px;
         line-height: 1.6;
     }

     .imag_text_box button a {
         color: white;
         text-decoration: none;
     }

     .btn_group {
         display: flex;
         align-items: center;
         gap: 20px;
     }

     .btn_group button {
         background-color: #0067b8;
         color: #fff;
         border: none;
         padding: 10px 20px;
         border-radius: 4px;
         font-size: 14px;
         cursor: pointer;
     }

     .btn_group button:hover {
         background-color: #004a87;
     }

     .btn_group span {
         font-size: 14px;
         cursor: pointer;
         display: flex;
         align-items: center;
     }

     .btn_group i {
         margin-right: 5px;
         font-size: 18px;
     }

     /* Second Card Title */
     .Second_card {
         margin-left: 32px;
         margin-bottom: 5px;
         font-size: 24px;
         font-weight: 600;
     }

     /* Follow Microsoft Section */
     .follow_Microsoft {
         display: flex;
         align-items: center;
         margin: 100px 0 100px 50px;
         gap: 20px;
     }

     .follow_Microsoft p {
         font-size: 14px;
         color: #2e2d2d;
         margin: 0;
     }

     .follow_Microsoft a {
         font-size: 20px;
         color: #2e2d2d;
         text-decoration: none;
         transition: color 0.3s ease;
     }

     .follow_Microsoft a:hover {
         color: #0067b8;
     }

     /* Footer */
     .footer {
         display: flex;
         justify-content: space-evenly;
         background-color: #f0eded;
         padding: 20px;
         font-size: 13px;
         flex-wrap: wrap;
         gap: 20px;
     }

     .footer-section {
         min-width: 150px;
     }

     .footer-section h3 {
         margin-bottom: 10px;
         font-weight: 600;
         font-size: 15px;
     }

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

     .footer-section li {
         margin: 5px 0;
     }

     .footer-section li a {
         color: #333;
         text-decoration: none;
         transition: color 0.3s ease;
     }

     .footer-section li a:hover {
         text-decoration: underline;
         color: #0066cc;
     }

     /* Footer Navbar */
     .footer_navbar {
         display: flex;
         justify-content: space-between;
         align-items: center;
         background-color: #f0eded;
         padding: 10px 40px;
         flex-wrap: wrap;
         font-family: Arial, sans-serif;
         font-size: 14px;
         color: #333;
         gap: 20px;
     }

     .footer_icon span {
         margin-right: 25px;
         cursor: pointer;
         display: flex;
         align-items: center;
         gap: 6px;
         color: #555;
     }

     .footer_icon span i {
         font-size: 16px;
     }

     .footer_list ul {
         list-style: none;
         display: flex;
         gap: 20px;
         padding: 0;
         margin: 0;
     }

     .footer_list ul li {
         cursor: pointer;
         white-space: nowrap;
         transition: color 0.3s ease;
     }

     .footer_list ul li a {
         color: #333;
         text-decoration: none;
         transition: color 0.3s ease;
     }

     .footer_list ul li:hover a,
     .footer_list ul li a:hover {
         color: #0066cc;
     }

     /* Responsive */
     @media (max-width: 1024px) {
         .nav-links {
             margin-right: 20px;
         }

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

         .card {
             width: 90% !important;
             height: auto;
         }

         .feature_container {
             gap: 20px;
         }

         .imag_section {
             flex-direction: column;
             height: auto;
         }

         .imag_section img,
         .imag_text_box {
             width: 100%;
             height: auto;
         }

         .footer {
             flex-direction: column;
             align-items: flex-start;
         }

         .footer_navbar {
             flex-direction: column;
             gap: 10px;
         }
     }

     .footer-credit {
         font-size: 13px;
         background-color: #f0eded;
         color: #555;
         text-align: center;
         line-height: 1.6;
         padding-bottom: 30px;
     }

     @media (max-width: 768px) {
         .universal_header {
             flex-direction: column;
             height: auto;
             padding: 10px;
             gap: 10px;
         }

         .nav-links {
             flex-wrap: wrap;
             justify-content: center;
             margin: 10px 0;
         }

         .nav-links a {
             margin: 5px 10px;
         }

         .nav-icons {
             justify-content: center;
             flex-wrap: wrap;
             gap: 10px;
         }

         .section-text {
             top: 10%;
             left: 50%;
             transform: translate(-50%, 0);
             max-width: 90%;
             background-color: rgba(255, 255, 255, 0.85);
         }

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

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

         .card {
             width: 95%;
             height: auto;
         }

         .imag_section {
             flex-direction: column;
             padding: 10px;
         }

         .imag_text_box {
             padding: 20px;
             width: 100%;
         }

         .imag_section img {
             width: 100%;
             height: auto;
         }

         .follow_Microsoft {
             flex-direction: column;
             align-items: flex-start;
             margin: 50px 20px;
         }

         .footer_navbar {
             flex-direction: column;
             align-items: flex-start;
             padding: 20px;
         }

         .footer_icon,
         .footer_list {
             width: 100%;
             justify-content: flex-start;
             flex-wrap: wrap;
             gap: 10px;
         }

         .footer_list ul {
             flex-direction: column;
             gap: 10px;
         }

         .footer-credit {
             font-size: 12px;
             padding: 20px;
         }
     }

     /* Mobile Responsive Hamburger & Menu */
     @media (max-width: 768px) {
         .hamburger {
             display: block;
         }

         .nav-menu {
             position: fixed;
             top: 60px;
             right: -250px;
             /* hidden by default */
             width: 200px;
             height: 100vh;
             background: white;
             box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
             flex-direction: column;
             padding-top: 20px;
             gap: 20px;
             transition: right 0.3s ease;
             z-index: 999;
             flex-grow: 0;
         }

         .nav-menu.active {
             right: 0;
             /* Slide menu into view */
         }

         .nav-links {
             display: flex;
             flex-direction: column;
         }

         .nav-icons {
             display: none;
             /* Hide icons on mobile */
         }
     }
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        right: 10px;
        width: 85%;
        max-width: 320px;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
        display: none;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
        transition: all 0.3s ease-in-out;
    }

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

    .nav-links {
        margin: 0;
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        margin: 10px 0;
        font-size: 16px;
    }

    .nav-icons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 15px;
    }
}

