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

main{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #021C4F;
}

.heading{
  width: 100%;
  font-size: 16px;
  /* background-color:#ffc198; */
  border-radius: 50px;
  /* padding: 0px 10px 0px 10px; */
}

header{
    height: 15vh;
    width:100%;
    background-color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    z-index: 1000;
    top: 0;
}

.head-wrap{
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Logo{
    width: 150px;
    height: 55px;
    object-fit: cover;
}

.Link{
    width: auto;
    height: 90%;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.list {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-right: 10px;
}

/* Navigation List Links */
.list li a {
    font-size: 16px;
    text-decoration: none;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
}

.list li a:hover {
    color: #F77F27;
}

.btn-holder{
    margin-top: 10px;
    height: 120px;
    width: 80%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}

.btn{
    display: none;
}

.menu{
    display: flex;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    object-fit: cover;
}

.button{
    width:150px;
    height:55px;
    font-size: 1rem; 
    border:none;
    border-radius:10px;
    background-color:#ff7f00;
    color: #ffff;
}

.hero-wrapper{
    padding: 20px 0px 20px 0px;
    color: #ffff; 
    height: 100%;
    width: 90%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.heroImage{
    height: auto;
    width: 100%;
    object-fit: contain;
    display: none;
}

.btn2{
    display: none;
}

.text-holder{
    width: 100%; 
    /* height: 100%;  */
    display: flex; 
    flex-direction: column;
    text-align: center;
    align-items: center;
}

h1{
    font-size: 35px;
    margin-bottom: 10px;
    line-height: 1.5; 
}

.para-1{
    font-size: 20px;
    margin-bottom: 5px;
    display: none;
    color:  rgb(207, 206, 206);
}

/* Existing modal styles... */
#show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    height: 90%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  
  /* Nav inside modal */
  .modal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  
  .modal-nav ul li {
    margin: 1rem 0;
  }
  
  .modal-nav ul li a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #333;
    transition: color 0.3s;
  }
  
  .modal-nav ul li a:hover {
    color: #ff7f00;
  }
  
  /* Close button */
  #closeModal {
    background-color: #ff7f00;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
  }
  

.para-2{
    font-size: 20px;
    color:  #999999;
    font-weight: normal;
    margin-bottom: 5px;
}

.about-section {
    width: 100%;
    padding: 60px 20px;
    color: #000;
    background-color: #f9f9f9;
    /* background-color: #314673; */
  }
  
  .contain {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    gap: 40px;
  }
  
  .about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .about-content {
    flex: 1;
    min-width: 280px;
  }
  
  .about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #021C4F;
  }
  
  .about-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
  }

  .services-section {
    width: 100%;
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .contained {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #021C4F;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color:#021c4f;
    margin-bottom: 40px;
    max-width: 700px;
    margin-inline: auto;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  
  .service-card h3 {
    font-size: 1.3rem;
    color: #021C4F;
    margin-bottom: 15px;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }
  
  /* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color:#fff;
    background-color: #021C4F;
  }
  
  /* Replace .container with .containeds */
  .containeds {
    width: 90%;
    margin: auto;
    max-width: 1200px;
  }
  
  /* Header */
  header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    height: 50px;
  }
  
  .nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-list li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .nav-list li a:hover {
    color: #ff7f00;
  }
  
  /* Hero Section */
  .hero {
    background-color: #021C4F;
    color: #fff;
    padding: 60px 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  /* Services Section */
  .services {
    width: 100%;
    padding: 60px 0;
  }
  
  .service {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .service h2 {
    color: #021C4F;
    margin-bottom: 15px;
  }
  
  .service p {
    margin-bottom: 15px;
  }
  
  .service ul {
    list-style: disc;
    padding-left: 20px;
  }
  
  .service ul li {
    margin-bottom: 8px;
  }
  
  /* Contact Section */
  .contact-section {
    width: 100%;
    background-color: #f8f8f8;
    padding: 60px 0;
    color: #000;
  }
  
  .contact-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #021C4F;
  }
  
  .contact-section .section-subtitle {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 40px;
    color: #555;
  }
  
  .contact-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }
  
  .contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  .contact-form button {
    padding: 12px;
    background-color: #021C4F;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: #003399;
  }
  
  .contact-details {
    flex: 1;
    min-width: 250px;
  }
  
  .contact-details h3 {
    margin-bottom: 15px;
    color: #021C4F;
  }
  
  .contact-details p {
    margin-bottom: 10px;
  }
  
  /* Footer */
 footer {
  background-color: #314673;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  height: 200px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #ff7f00;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}
  /* Responsive */
  @media (max-width: 768px) {
    .nav-list {
      flex-direction: column;
      gap: 10px;
    }
  
    .header-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-containeds {
      flex-direction: column;
      gap: 20px;
    }
  
    .contact-content {
      flex-direction: column;
    }
  }
  

  /* Responsive tweaks (optional) */
  @media (max-width: 600px) {
    .section-title {
      font-size: 2rem;
    }
  
    .section-subtitle {
      font-size: 1rem;
    }
  }
  

  @media (max-width: 616px) {
    .contain {
      flex-direction: column;
      text-align: center;
    }

    .about-content h2 {
      font-size: 1.75rem;
    }
  
    .about-content p {
      font-size: 1rem;
    }
  }

@media (min-width:760px) {
    .text-holder h1{
        font-size: 38px;
    }
    .hero-wrapper{
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 10px 0px 10px 0px;
    }

    .text-holder{
      align-items: unset;
    }
    
    .Logo{
        width: 150px;
        height: 50px;
    }

    .text-holder{
        text-align: start;
        width: 50%;
    }

    .Link{
        display: flex;
    }

    .menu{
        display:none;
    }

.para-2{
    font-size: 20px;
    margin-bottom: 5px;
}


.btn-holder{
    margin-top: 20px;
    height: auto;
    width: 90%;
    flex-direction: row;
    justify-content: space-between;
}

    .btn2{
        margin: 0;
        display: block;
    }

    .heroImage{
        width: 50%;
        object-fit: contain;
        display: block;
    }

    .hero-wrapper{
        height: 100Vh;
    }

    h1{
        font-size: 3rem;
    }

    .para-1{
        font-size: 1rem;
    }

}

@media (min-width:1024px) {

  .para-2{
    display: none;
  }

.para-1{
    font-size: 20px;
    margin-bottom: 5px;
    display: block;
    font-weight: normal;
}

    h1{
        font-size: 4rem;
    }

    .menu{
        display: none;
    }

    .btn-holder{
        margin-top: 20px;
        width: 55%;
        justify-content: space-between;
    }
}

@media (min-width: 1440px) {
    .Link {
        width: 40%;
    }
}

  @media (min-width: 768px) {
    .desktop-flex-start {
      justify-content: flex-start !important;
    }
  }</pre></body></html>