<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.parts{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.part-1{
    width: 20%;
    height: 100vh;
    border: 1px solid;
    background-color: #2e3547;
    padding: 10px;
}
.nav-1{
    width: 100%;
    border: 1px solid #d5d9e3;
    height: 40px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 5px;
}
.part-2{
    width: 80%;
    height: 100vh;
    border: 1px solid red;
    padding: 10px;

}*/


/* Navbar Styles */


body{
        font-family: 'Times New Roman', Times, serif;
}
    .navbar {
      background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(26,41,56,1) 31%, rgba(2,75,89,1) 100%);
      padding: 1rem;
    }
    .navbar-brand {
     
    }
    .navbar-nav .nav-link {
      color: white;
      margin: 0 10px;
      transition: color 0.3s;
    }
    .navbar-nav .nav-link:hover {
      color: #FFB900;
    }
    .dropdown-menu {
      background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(26,41,56,1) 31%, rgba(2,75,89,1) 100%);
    }
    .dropdown-menu .dropdown-item {
      color: white;
    }
    .dropdown-menu .dropdown-item:hover {
      background-color: #005BB5;
      color: white;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(to bottom right, #141e30, #243b55);
      color: white;
      padding: 80px 20px;
      text-align: center;
    }

    /* Form Section */
    .form-section {
      padding: 40px 20px;
      background: linear-gradient(to bottom, #ffffff, #f1f6fb);
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      margin-top: -50px;
      position: relative;
      z-index: 2;
    }
    .btn-custom {
      background-color: #FFB900;
      color: #000;
      font-weight: bold;
      transition: background-color 0.3s;
    }
    .btn-custom:hover {
      background-color: #e6a700;
    }

    /* Ad Section */
    .ad-section {
      margin: 40px 0;
      text-align: center;
    }
    .ad-section img {
      max-width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* News Section */
    .news-section {
      margin: 40px auto;
    }
    .news-section h3 {
      margin-bottom: 20px;
      color: #0078D4;
    }
    .news-container {
      display: flex;
      overflow-x: scroll;
      gap: 20px;
      padding-bottom: 10px;
      overflow: auto;
    }

    .news-container::-webkit-scrollbar {
    height: 8px;

}

.news-container::-webkit-scrollbar-thumb {

    background: #0056B3;
    border-radius: 50px;
}

.news-container::-webkit-scrollbar-track {
    background: #ccc;
    border-radius: 50px;
}
    .news-card {
      width: 300px;
      flex-shrink: 0;
      border: none;
      border-radius: 10px;
      box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
    }
    .news-card img {
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      max-height: 150px;
      object-fit: cover;
    }

    /* FAQs Section */
    .faq-section {
      margin: 40px auto;
    }
    .faq-section h3 {
      color: #0078D4;
    }

    .accordion-button {
      color: #005BB5;
      font-weight: bold;
      font-size: 20px;
    }
    .accordion-button:not(.collapsed) {
      background-color: #E8F0FE;
    }

    /* Footer */
    .footer {
      background-color: #f8f9fa;
      padding: 20px 0;
    }
    .footer a {
      color: #0078D4;
      text-decoration: none;
      margin: 0 10px;
    }
    .footer a:hover {
      text-decoration: underline;
    }

    .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
    .social-icons a {
      margin: 0 10px;
      font-size: 1.2rem;
      color: #0078D4;
    }
    .social-icons a:hover {
      color: #005BB5;
    }


@media screen and (max-width: 480px) {


    .hero{
        padding: 20px 5px;
    }

}


.emergency-button {
            position: fixed;
            left: 0;
            top:60%;
            transform: translateY(-60%);
            padding: 5px 2px;
            background-color: #FF6347; /* Appealing red color */
            color: white;
            font-size: 14px;
            font-weight: bold;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            text-decoration: none;
            writing-mode: vertical-rl; /* Makes text vertical */
            text-orientation: mixed; /* Keeps text readable */
            z-index: 2000;
        }

        .emergency-button:hover {
            background-color: #FF4500; /* Darker red on hover */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            transform: translateY(-50%) scale(1.05);
        }
</pre></body></html>