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

body{
    font-family: 'Poppins', 'Courier New', Courier, monospace;
    background-color: #ccccd2;
  }

.dropdown-item:focus, .dropdown-item:hover {
    color: #ffffff !important;
    background-color: #0d6efd !important;
}
  .top-header{
    background-color: var(--primary-color);
    color: #fff;
  }
  .bg-light{
    background-color: #f0f0f0 !important;
  }
  
  .btn {
    font-weight: 500;
    transition: .5s;
  }
  
  .btn.btn-primary {
    color: #FFFFFF;
  }
  .fw-semibold, .card-title {
    font-weight: 600 !important;
    color: #1559ba !important;
}
  .btn-sm-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-weight: normal;
  }
  
  .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
  }
  
  .navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
  }
  
  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: blue;
  }

  .logo{
    width: 250px;
  }

.book-now {
  background: #1559a6 !important;
  text-align: center;
  border-radius: 16px;
  padding: 10px 20px;
  color: white !important;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: glowingPulse 2s infinite ease-in-out;
}

@keyframes glowingPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(21, 89, 166, 0.5);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 15px 8px rgba(21, 89, 166, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(21, 89, 166, 0.1);
  }
}


  /* here section start here */
  .hero-section{
    background: url(../images/hero-right-side-shape.png) no-repeat;
}

  .hero-section {
    display: flex;
    align-items: center;
    padding: 2rem;
  }
  .hero-left h1 {
    font-weight: bold;
  }
  .hero-left p {
    max-width: 500px;
    font-size: 1.1rem;
    text-align:left;
  }
  .badge-custom {
    
    padding: 0.5rem 1rem;
    border-radius: 50px;
  }
  .contact-btn {
    background-color: #ff4d4d;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    margin-top: 1rem;
  }
  .form-box {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--secondry-color);
  }
  .form-box h5 {
    margin-bottom: 1.5rem;
    color: white;
    font-weight: bold;
  }
  .submit-btn {
    background-color: #ff4d4d;
    color: white;
    border: none;
  }
  
  /* our service start here */
  .section-title h6 {
    color: #ffc107; text-shadow: 2px 1px 1px black;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .section-title h2 {
    font-weight: 700;
    font-size: 2rem;
  }
  .card-icon {
    width: 60px;
    height: 60px;
    background-color: #ffc107; text-shadow: 2px 1px 1px black;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    margin: 0 auto 15px;
  }
  .card-title {
    font-weight: 600;
  }
  .card-text {
    min-height: 80px;
    color: #555;
  }
  .read-more {
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
  }
  .read-more:hover {
    text-decoration: underline;
  }

/* new section start  here */
.stats-section {
    background: url('https://images.unsplash.com/photo-1531545514256-b1400bc00f31?auto=format&amp;fit=crop&amp;w=1500&amp;q=80') center center/cover no-repeat;
    position: relative;
    padding: 80px 0;
    color: #fff;
  }
  .stats-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  .stats-content {
    position: relative;
    z-index: 2;
  }
  .stat-box i {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
  }
  .stat-box h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 0;
  }
  .stat-box p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
  }

  /* plane start here */
  .ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: #ffc107;
    color: rgb(0, 0, 0);
    padding: 5px 15px;
    font-size: 12px;
    border-bottom-left-radius: 5px;
  }
  .card-header-icon {
    width: 50px;
    height: 50px;
    background: #1559a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: auto;
  }
  .card-img-top {
    width: 100px;
    margin: 20px auto 0;
  }
  .card {
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
  }
  .card:hover {
    transform: translateY(-10px);
  }
  .btn-color{
    background:#1559a6;
    color: #fff !important;
    font-weight: 700;
  }
  .discover-btn {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
  }
  .section-title span {
    color: #ffc107; text-shadow: 2px 1px 1px black;
  }
  .section-title {
    text-align: center;
    margin-bottom: 40px;
  }

  /* client section start here */
  .client-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
  }
  .client-card img {
    height: 130px;
    object-fit: contain;
    padding: 20px;
  }
  .btn-view {
    margin-top: 12px;
    background: #1559a6 !important;
    color: white !important;
}

  /* footer style start here */
  .footer {
    background-color: #050336;
    color: #fff;
    padding: 60px 20px 30px;
    position: relative;
  }
  .footer a {
    color: #fff;
    text-decoration: none;
  }
  .footer a:hover {
    color: #ff4d30;
  }
  .footer h5 {
    font-weight: bold;
    margin-bottom: 20px;
  }
  .social-icons a {
    margin-right: 15px;
    font-size: 20px;
    color: #fff;
  }
  .social-icons a:hover {
    color: #ff4d30;
  }
  .whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 12px;
    background-color: #1559a6;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  .quick-contact {
    position: fixed;
    right: 0;
    top: 40%;
    background-color: #ff4d30;
    color: white;
    padding: 8px 15px;
    transform: rotate(-90deg);
    transform-origin: right top;
    font-weight: bold;
    z-index: 1000;
  }
  .scroll-up {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff4d30;
    color: white;
    padding: 12px;
    border-radius: 50%;
    font-size: 20px;
    z-index: 1000;
  }
  .footer-bottom {
    border-top: 1px solid #444;
    padding-top: 15px;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
  }
  /* mega-menu stayle start here */
  .dropdown-menu.show {
    display: block;
    margin-left: -100px;
}
  .mega-menu {
    width: 50%;
    left: 0;
    right: 0;
    transform: translateX(70%);
    top: 100%;
    border-top: 3px solid #0d6efd;
  }
  
  .navbar .dropdown-menu {
    border-radius: 0;
    border: none;
  }
  
  .navbar .dropdown-menu a {
    padding: 0.5rem 1rem;
  }
  .btn-sm-square{
    padding:4px !important;
  }
  /* review section start here */
  .testimonial {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
  }
  .testimonial h5 {
    font-weight: bold;
    margin-top: 15px;
  }
  .testimonial small {
    color: #777;
  }

  /* ========== FOOTER BASE STYLE ========== */
.footer {
  background-color: #1e1e2f;
  color: #dcdcdc;
  padding: 60px 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer h5 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.footer h5::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: #1559a6;
  margin-top: 10px;
}

.footer p,
.footer li {
  font-size: 14px;
  color: #bbbbbb;
  line-height: 1.7;
}

.footer ul {
  padding: 0;
  list-style: none;
}

.footer a {
  color: #bbbbbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #0d6efd;
}

/* ========== SOCIAL ICONS ========== */
.social-icons a {
  display: inline-block;
  color: #ffffff;
  background-color: #1559a6;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin-right: 10px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: #019874;
}

/* ========== BOTTOM COPYRIGHT ========== */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #999;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-btn {
  position: fixed;
  bottom: 15px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  font-size: 24px;
  padding: 12px 15px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* ========== QUICK CONTACT ========== */
.quick-contact {
  position: fixed;
  bottom: 30px;
  left: 20px;
  background-color: #1559a6;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ========== SCROLL TO TOP ========== */
.scroll-up {
  position: fixed;
  bottom: 30px;
  right: 20px;
  font-size: 20px;
  background: #1559a6;
  color: #fff;
  padding: 10px 14px;
  border-radius: 50%;
  text-align: center;
  display: none; /* You can show/hide it via JS */
  z-index: 999;
}

.scroll-up:hover {
  background-color: #019874;
}

.footer img{
  background: white;
  padding:10px;
}
/* ========== RESPONSIVE STYLING ========== */
@media (max-width: 991.98px) {
  .footer .row &gt; div {
    text-align: center;
    margin-bottom: 30px;
  }

  .social-icons a {
    margin: 0 5px;
  }
}

@media (max-width: 575.98px) {
  .quick-contact {
    left: 10px;
    bottom: 20px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .whatsapp-btn,
  .scroll-up {
    right: 10px;
    bottom: 70px;
  }

  .footer {
    padding: 40px 15px 20px;
  }

  .footer h5::after {
    margin: 10px auto;
  }
  .dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--bs-dropdown-link-active-bg);
    width: max-content !important;
}
}


  @media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
  
    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
    .logo{
        width: 150px;
      }
      .badge-custom {
        font-size: 13px;
    }
    .hero-left h1 {
      font-weight: bold;
      font-size: 20px;
      text-align: start;
  }
  }
  
  .navbar-light .navbar-nav .nav-link {
    color: black;
    font-weight: 500;
  }
  
  .navbar-light.sticky-top {
    top: 0px;
    transition: .5s;
  }
  
  /* modal form style start here */
  .bg-primary1{
    background-color: var(--primary-color);
  }
  .btn-primary2{
    background-color: var(--primary-color) !important;
    color: white !important;
  }
  @media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
  
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
    .mega-menu {
        width: 80%;
        left: -50% !important;
        right: 0;
        transform: translateX(90%);
        top: 100%;
        border-top: 3px solid #0d6efd;
        background: #fff9e5 !important;
    }
    
  }

  @media(max-width:1200px) and (min-width:992px){
    .navbar-light .navbar-nav .nav-link{
      margin-right:3px;
      font-size:12px;
    }
  }</pre></body></html>