<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&amp;display=swap');

:root {
    --primary-color: rgba(0, 163, 251, 1);
    --primary-variant: rgba(8, 132, 215, 1);
    --secondary-color: rgba(224, 116, 2, 1);
    --on-primary: rgba(250, 250, 250, 1);
    --on-background: rgba(66, 66, 66, 1);
    --on-background-alt: rgba(66, 66, 66, 0.5);
    --background: rgba(255, 255, 255, 1);
    --box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.2);
  }
  
  [data-theme="dark"] {
    --primary-color: rgba(0, 175, 152, 1); 
    --primary-variant: rgba(32, 254, 225, 1);
    --secondary-color: rgba(238, 96, 164, 1);
    --on-primary: #000;
    --on-background: rgba(255, 255, 255, 0.9);
    --on-background-alt: rgba(255, 255, 255, 0.7);
    --background: #121212;
  }

  html {
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    color: var(--on-background);
    font-family: Mukta, sans-serif;
    background-color: var(--background);
  }
  
  section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  h1 {
    font-size: 100px;
    margin-top: 0px;
    margin-bottom: -20px;
    padding-bottom: 0px;
  }
  
  h2 {
    font-size: 70px;
    color: var(--on-background);
    margin-top: 0px;
    margin-bottom: -5px;
    padding-top: 0px;
    font-weight: bold;
  }

  h3 {
    color: var(--secondary-color);
    margin-top: 0px;
    font-size: 28px;
    font-weight: normal;
  }

  h4 {
    color: var(--on-background-alt);
    font-size: 20px;
    font-weight: normal;
  }
  
  /* Navigation */
  nav {
    z-index: 10;
    position: fixed;
    font-size: 35px;
    font-family: Bebas Neue, sans-serif;
    letter-spacing: 1px;
    padding: 25px;
    width: 100vw;
    background: rgb(255 255 255 / 50%);
  }
  
  a {
    margin-right: 25px;
    color: var(--primary-variant);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    font-weight: bold;
  }
  
  a:hover,
  a:focus {
    color: var(--on-background);
    border-bottom: 2px solid;
  }
  
  /* Home Section */
  .title-group {
    text-align: center;
  }
  
  /* About Section */
  
  .about-container {
    display: flex;
    align-items: center;
    text-align: justify;
    padding: 0 30px;
    margin: 0px;
  }

  .about-text {
    flex: 2.5;
    padding: 10px;
    margin-left: 140px;
  }

  .about-image {
    flex: 1;
    margin-left: 60px;
  }
  
  .image-container {
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    padding: 10px 20px;
    margin-right: 25px;
    width: auto;
    background: var(--background);
    box-shadow: var(--box-shadow);
    cursor: pointer;
  }

  .services-h3 {
    color: var(--on-background-alt);
  }
  
  img {
    height: 250px;
    width: 250px;
  }
  
  /* Services Section */

  .services-container {
    margin-top: 50px;
    display: flex;
    text-align: center;
  }

  .buttons {
    margin-top: 15px;
    margin-bottom: 50px;
  }
  
  button {
    min-width: 100px;
    height: 40px;
    cursor: pointer;
    border-radius: 10px;
    margin-right: 10px;
    border: 2px solid var(--primary-color);
    font-size: 15px;
    outline: none;
  }
  
  button:disabled {
    opacity: 0.4;
    cursor: default;
  }
  
  button:hover:not(.outline) {
    filter: brightness(110%);
  }
  
  .primary {
    background: var(--primary-color);
    color: var(--on-primary);
  }
  
  .secondary {
    border: 2px solid var(--secondary-color);
  }
  
  .secondary,
  .secondary:hover,
  .outline.secondary:hover {
    background: var(--secondary-color);
    color: var(--on-primary);
  }
  
  .outline {
    background: var(--background);
    color: var(--on-background);
  }
  
  .outline:hover {
    background: var(--primary-color);
    color: var(--on-primary);
  }
  
  .text-box {
    width: 40%;
    text-align: justify;
    background: rgb(0 0 0 / 50%);
    color: var(--on-primary);
    border-radius: 10px;
    padding: 30px;
  }
  
  p {
    margin: 0;
    line-height: 25px;
  }
  
  /* Contact Section */
  .fab {
    font-size: 100px;
    margin-right: 50px;
    cursor: pointer;
    color: var(--primary-variant);
  }
  
  .fab:hover {
    color: var(--on-background);
  }

  .social-icons {
    margin-top: 50px;
  }
  
  /* Dark Mode Toggle */
  .theme-switch-wrapper {
    display: flex;
    align-items: center;
    z-index: 100;
    position: fixed;
    right: 25px;
    top: 30px;
  }
  
  .theme-switch-wrapper span {
    margin-right: 10px;
    font-size: 1rem;
  }
  
  .toggle-text {
    position: relative;
    top: -4px;
    right: 5px;
    color: var(--on-background);
  }
  
  .theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
  }
  
  .theme-switch input {
    display: none;
  }
  
  .slider {
    background: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.4s;
  }
  
  .slider::before {
    background: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: 0.4s;
    width: 26px;
  }
  
  input:checked + .slider {
    background: var(--secondary-color);
  }
  
  input:checked + .slider::before {
    transform: translateX(26px);
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round::before {
    border-radius: 50%;
  }
  
  .fas {
    font-size: 30px;
    margin-right: 5px;
  }</pre></body></html>