     .about_section_two {
         gap: 0;
         margin-top: 0;
     }

     body {
         font-family: "Kumbh Sans", sans-serif;
         background: #020202;
         color: #fff;
         margin: 0;
         padding: 0rem;
         flex-direction: column;
         align-items: center;
     }

     body.light {
         background-color: #270f0f;
         color: #333;
     }

     .main {
         display: flex;
         flex-direction: column;
         min-height: 100vh;
     }


     .section_two h1 {
         background: linear-gradient(45deg, #81ecec, #00cec9);
         -webkit-background-clip: text;
         background-clip: text;
         color: transparent;
         text-align: center;
         font-size: 2.25rem;
         margin: 2rem 0;
         text-transform: uppercase;
         letter-spacing: 2px;
         font-weight: 700;
     }

     body.light .section_two h1 {
         background: linear-gradient(45deg, #00cec9, #0984e3);
         -webkit-background-clip: text;
         background-clip: text;
     }

     .section_two_grid {
         display: grid;
         gap: 25px;
         padding: 20px;
         max-width: 1000px;
         margin: 0 auto;
     }

     .section_two_grid a {
         text-decoration: none;

     }

     .section_two_card {
         position: relative;
         overflow: hidden;
         background: linear-gradient(145deg, #1a2634, #2c3e50);
         border: 1px solid rgba(255, 255, 255, 0.1);
         transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
         padding: 1.5rem;
         display: flex;
         flex-direction: column;
         gap: 0.8rem;
         border-radius: 16px;
         backdrop-filter: blur(10px);
         -webkit-backdrop-filter: blur(10px);
     }

     .card-icon {
         font-size: 2rem;
         margin-bottom: 0.5rem;
         background: linear-gradient(45deg, #81ecec, #00cec9);
         -webkit-background-clip: text;
         background-clip: text;
         color: transparent;
         transition: transform 0.3s ease;
     }

     .section_two_card:hover {
         transform: translateY(-5px);
         box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
         border-color: rgba(129, 236, 236, 0.3);
     }

     .section_two_card:hover .card-icon {
         transform: scale(1.1) rotate(5deg);
     }

     .section_two_card h2 {
         font-size: 1.25rem;
         margin-bottom: 0.5rem;
         background: linear-gradient(45deg, #81ecec, #00cec9);
         -webkit-background-clip: text;
         background-clip: text;
         color: transparent;
         font-weight: 600;
     }

     .section_two_card p {
         font-size: 0.9rem;
         line-height: 1.5;
         color: #eee;
         margin-bottom: 1rem;
         opacity: 0.9;
     }

     .section_two_card span {
         display: inline-flex;
         align-items: center;
         gap: 0.5rem;
         padding: 0.5rem 0;
         font-size: 0.9rem;
         font-weight: 600;
         color: #00cec9;
         transition: all 0.3s ease;
     }

     .section_two_card span::after {
         content: '→';
         transition: transform 0.3s ease;
         display: inline-block;
     }

     .section_two_card:hover span {
         transform: translateX(5px);
         color: #81ecec;
     }

     .section_two_card:hover span::after {
         transform: translateX(5px);
     }

     /* Light mode adjustments */
     body.light .section_two_card {
         background: linear-gradient(145deg, #ffffff, #f8fafc);
         border: 1px solid rgba(0, 0, 0, 0.08);
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     }

     body.light .section_two_card:hover {
         background: linear-gradient(145deg, #ffffff, #f0f7ff);
         box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
         border-color: rgba(0, 206, 201, 0.3);
     }

     body.light .section_two_card h2 {
         background: linear-gradient(45deg, #00cec9, #0984e3);
         -webkit-background-clip: text;
         background-clip: text;
     }

     body.light .section_two_card p {
         color: #4a5568;
     }

     body.light .section_two_card span {
         color: #0984e3;
     }

     body.light .section_two_card:hover span {
         color: #00cec9;
     }

     @media (max-width: 1120px) {
         .main {
             flex-direction: row;
         }

     }



     @media (min-width: 768px) {
         .section_two_grid {
             grid-template-columns: repeat(2, 1fr);
         }
     }

     @media (min-width: 1024px) {
         .section_two_grid {
             grid-template-columns: repeat(3, 1fr);
         }
     }

     body.light .menu ul li.hovered {
         background: slategray;
     }


     .mange .sidenavlinks svg:hover {
         stroke: #1262ca;
     }

     .iptv .sidenavlinks svg:hover {
         stroke: #000000;
     }