<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    scroll-behavior: smooth;
  }
  
  /* Header Styling */
  .navbar {
    top: 0;
    position: fixed;  
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(101, 35, 35, 0.3);
    padding: 12px 12px;
    z-index: 1000;  
    font-size: 18px;
   background-color: #004d99;
  
}

.navbar-left {
  display: flex;
  align-items: center;
}
.navbar-logo {
  height: 35px;
  margin-right: 5px; /* Or set to 0 if needed */
}

.navbar-left p {
  margin: 0;
  color: white;
  font-size: 16px;
  line-height: 1.2;
}
.navbar a {
    margin: 0 30px;
   color: white;
    text-decoration: none;
    padding: 8px;
    transition: all 0.3s ease; 
}
.navbar a:hover{
  color: #67d28b; /* Subtle green background */
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2); /* Slightly darker shadow on hover */
    transform: scale(1.07);
}
.navbar p {
    color: white;
    margin: 0 2px;
}
.menu {
    display: flex;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    color: black;
    cursor: pointer;
}
.navbar-logo {
  height: 40px;
  
}




.about-section,
.about-slide {
  width: 100%;
  min-height: 100vh; /* Let it grow if content needs more space */
  margin: 0;
  padding: 0;
}

.about-slide {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url('finance.jpg') no-repeat center center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px; /* Some breathing room on mobile */
  box-sizing: border-box;
}

.text-overlay {
  color: white;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.text-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.text-overlay p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.btn {
  background-color: #1abc9c;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: 0.3s;
}

/* Responsiveness */
@media (max-width: 768px) {
  .text-overlay h2 {
    font-size: 2rem;
  }

  .text-overlay p {
    font-size: 0.95rem;
  }

  .btn {
    width: auto;
    font-size: 0.95rem;
    padding: 8px 20px;
  }

  .button-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .text-overlay h2 {
    font-size: 1.6rem;
  }

  .text-overlay p {
    font-size: 0.85rem;
  }

  .btn {
    font-size: 0.85rem;
    padding: 10px 18px;
  }
}

  /* about us */
  .about-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 120vh;
    background: #ECF0F1;
    padding: 0px 20px;
    margin: 20px 0;

  }
  
  .about-content {
    max-width: 800px;
  }
  
  .about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .about-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Card Section Styling */
  .qualities {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
  }
  
  .quality-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 20px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease; 
    flex-wrap: wrap;
  }
  
  .quality-card h3 {
    font-size: 1.5rem;
    color: #004d99;
    margin-bottom: 15px;
  }
  
  .quality-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  .quality-card:hover {
    background-color: #67d28b; /* Subtle green background */
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2); /* Slightly darker shadow on hover */
    transform: scale(1.07);
  }
  .quality-card p:hover {
    color: white;
  }

  /* services */
  
  .services-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;
  }
  
  .services-container h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
    width: 100%;
  }
  
  .service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); 
    margin: 20px;
    padding: 20px;
    width: calc(33.33% - 40px);
    box-sizing: border-box;
    transition: all 0.3s ease; 
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
    
  }
  
  .service-card h3 {
    font-size: 1.5em;
    color: #0066cc;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 1em;
    color: #4c4c4c; 
    line-height: 1.5;
  }
  .service-card p:hover {
    color: white;
  }
  /* Hover effect */
  .service-card:hover {
    background-color: #67d28b; /* Subtle green background */
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2); /* Slightly darker shadow on hover */
    transform: scale(1.07);
  }
  
  @media (max-width: 768px) {
    .services-container {
      justify-content: center;
      align-items: center;
    }
    
    .service-card {
      margin: 10px auto; /* Center each card */
    }
  }    
  

  /* contact */

  .contact {
    background-color:  #ECF0F1 ;
    text-align: center;
    padding: 90px;
    color: #333;
  
}
.contact h2{
  color: #333;
  font-size: 36px;
}
.contact form {
    max-width: 500px;
    display: grid;
    grid-gap: 10px;
    margin: 25px auto;
}
.contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}
.contact button {
    padding: 10px;
    background-color: #004d99;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.contact button:hover {
    background-color:  #1abc9c;
}

  /* Footer Styling */
  footer {
   
    text-align: center;
    padding: 18px 0;
    background-color: #004d99;
    color: #fff;
  }
  
  /* Responsive Design for Mobile */
  @media only screen and (max-width: 768px) {
    header nav ul {
      text-align: center;
    }
  
    header nav ul li {
      display: block;
      margin: 10px 0;
    }
  
    .hero-content h1 {
      font-size: 2em;
    }
  
    .hero-content p {
      font-size: 1em;
    }
  
    section {
      padding: 15px;
    }
  
    footer {
      font-size: 14px;
    }
  }
  
/* Footer Up Section Styling */
#footer-up-section {
    background-color: #004d99;
    font-family: Arial, sans-serif;
    padding: 100px;
    font-size: 15px;
  }
  
  .footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1 1 250px;
    min-width: 220px;
    max-width: 350px;
  }
  
  /* Removed logo style since &lt;img&gt; is gone */
  /* .logo {
    width: 80px;
    margin-bottom: 10px;
  } */
  
  .social-icons a {
    text-decoration: none;
    margin-right: 10px;
    font-weight: bold;
    color: white;
    font-size: 18px;
  }
  
  .social-icons span {
    display: inline-block;
  }
  
  .get-in-touch a {
    color: white;
    text-decoration: none;
    margin-left: 5px;
    display: inline;
  }
  
  .footer-section i {
    margin-right: 8px;
    color: #004d99;
  }
  
  .extra-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .extra-links li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
  }
  
  .extra-links li:last-child {
    border-bottom: none;
  }
  
  .extra-links a {
    text-decoration: none;
    color: white;
    display: block;
    transition: color 0.3s;
    transition: all 0.3s ease; 
  }
  
  .extra-links a:hover {
    color:  #1abc9c;
    transform: scale(1.02);
  }
  #footer-up-section,
#footer-up-section p,
#footer-up-section h3,
#footer-up-section h4,
#footer-up-section a,
#footer-up-section li,
#footer-up-section i,
#footer-up-section span {
  color: white ;
  font-family: 'Poppins', sans-serif;
}

#footer-up-section i {
  color: white ;
  font-family: 'Font Awesome 5 Free' ;
  font-weight: 900;
}



/* Responsive Design for Tablets and Below */
@media (max-width: 992px) {
  .qualities, .services-container {
    flex-direction: column;
    align-items: center;
  }

  .quality-card,
  .service-card {
    width: 80%;
    margin-bottom: 20px;
    
  }

  .about-centered {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

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

  .footer-section {
    width: 100%;
    max-width: 90%;
    margin-bottom: 20px;
  }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 10px;
  }

  .navbar a, .navbar p {
    margin: 10px 0;
  }

  .text-overlay h2 {
    font-size: 28px;
    white-space: normal;
  }

  .btn {
    padding: 6px 25px;
    font-size: 14px;
  }

  .contact {
    padding: 50px 20px;
  }

  .contact h2 {
    font-size: 28px;
  }

  #footer-up-section {
    padding: 10px 10px;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .quality-card,
  .service-card {
    width: 100%;
  }

  .about-slide,
  .about-section {
    height: auto;
  }

  .text-overlay {
    padding: 10px;
  }

  .text-overlay h2 {
    font-size: 22px;
  }

  .btn {
    font-size: 12px;
    padding: 6px 20px;
  }

  .footer-section {
    padding: 10px;
  }

  .social-icons a {
    font-size: 16px;
  }
}
/* Navbar Responsive Styling */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: whitesmoke;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 0;
    z-index: 999;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    display: block;
    text-align: center;
    padding: 15px;
    color: #004d99;
    border-top: 1px solid #ccc;
    width: 100%;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    color: white;
    cursor: pointer;
    margin-right: 10px;
  }

  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .navbar p {
    margin: 0;
  }
}

</pre></body></html>