/* Reset and Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8f9fa;
}


.container {
    max-width: 1500px;
    margin: auto;
    /*padding: 8px;*/
    /*padding: 20px;*/
}
.hero_container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}
a {
    text-decoration: none;
    color: #0056b3;
}
ul {
    list-style: none;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    position: fixed;
    z-index: 1000;
    width: 100%;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap:25px;*/
    /*justify-content: center;*/
}
.logo h1 {
    font-size: 24px;
    /*color: #003366;*/
    color:#0056b3;
}

.main-nav a {
    font-weight: bold;
}
.btn-cta {
    background: #003366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
}

/* Hero Section */
.hero {
    padding: 60px 20px;
    background: #e9f1fc;
}
.hero-text {
    max-width: 600px;
}
.hero-text h2 {
    font-size: 38px;
    color: #003366;
}
.hero-text .highlight {
    color: #007bff;
}
.hero-text p {
    margin: 20px 0;
}
.btn-primary,
.btn-secondary {
    padding: 10px 18px;
    margin-right: 10px;
    border-radius: 6px;
}
.btn-primary {
    background: #003366;
    color: white;
        font-weight: 600;
}
.btn-secondary {
    background: #6c757d;
    color: white;
        font-weight: 600;
}
.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
}


@media (min-width: 768px) {
    .hero_container {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
    }

    .hero-text {
        text-align: left;
        max-width: 50%;
    }

    .hero-image {
        max-width: 40%;
    }

    .hero-text h2 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.5rem;
    }
}


/* Services */
.services {
    background: #fff;
    padding: 15px 20px;
}
.services h2 {
       text-align: center;
    margin-bottom: 6px;
    font-size: 3rem;
    color: #003366;
}
.services p{
    text-align: center;
    margin-bottom: 40px;  
}
.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    flex-wrap: wrap;
}
.service-card {
    flex: 1;
    background: #f1f1f1;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.service-card ul li {
    margin-bottom: 8px;
}
.btn-outline {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    border: 2px solid #003366;
    color: #003366;
    border-radius: 6px;
}
.service-icon img {
    width: 40px;
    margin-bottom: 10px;
}
.service-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.service-card h3 {
    font-size: 20px;
    color: #002a5c;
    margin-bottom: 5px;
}

.service-subtitle {
    font-size: 16px;
    /*color: #004e92;*/
    font-weight: 500;
    margin-bottom: 12px;
}
.service-card p {
    margin-bottom: 15px;
    /*color: #333;*/
    color: #004e92;
    text-align: justify;
}
.service-card ul {
    padding-left: 18px;
}
.service-card ul li {
    margin-bottom: 8px;
    list-style-type: disc;
}

/* About Section */
.about {
    padding: 15px 20px;
    background: #e9f1fc;
}
.about-container{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}

.about-text h2 {
    margin-bottom: 20px;
}
.about-text ul {
    margin-top: 15px;
}
.about-text ul li {
    margin-bottom: 10px;
}
.about-text p{
    text-align:justify;
}
/* Contact Section */
.contact {
    padding: 15px 20px;
    background: #fff;
}
.contact h2 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}
.contact-info {
    flex: 1;
    font-size: 16px;
}

/* Footer */
.site-footer {
    background: #003366;
    color: #fff;
    padding: 40px 20px;
}
.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.site-footer h4 {
    margin-bottom: 10px;
}
.site-footer ul li {
    margin-bottom: 8px;
}
.site-footer a {
    color: #ddd;
}
/* Mobile Menu */
.mobile-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #003366;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 999;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .main-nav ul {
        flex-direction: column;
        padding: 10px 0;
    }
    .main-nav ul li {
        padding: 12px 20px;
    }
    .main-nav.active {
        display: block;
    }
    .mobile-toggle {
        display: block;
    }
    .btn-cta {
        display: none; /* Optional: hide CTA button on small screens */
    }
    .service-cards {gap:20px !important;}
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    /*color: #002a5c;*/
}

.checklist li::before {
    content: url('/v2/wp-includes/css/images/icon.png');
    margin-right: 10px;
    display: inline-block;
    width: 20px;
    height: 20px;
}
@media screen and (max-width: 768px) {
 
    .site-header .container {
        flex-direction: row;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
        margin-top: 10px;
                display: none !important;
    }

    /*.service-card {*/
    /*    text-align: center;*/
    /*}*/

    footer .container {
        flex-direction: column;
        text-align: center;
    }
}
/* Make text scale and wrap correctly */
body {
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Images scale properly */co
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Buttons */
.btn-cta {
    padding: 10px 20px;
    font-size: 16px;
    display: inline-block;
    background: #003366;
    color: white;
    border: none;
        font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
}

.header-top .element {
   display: flex;
    margin-right: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
}
@media (min-width: 992px) {
 .header-top .contact-info li {
        margin-right: 25px;
    }
}

 .header-top .contact-info li {
    display: inline-block;
    position: relative;
    margin-right: 15px;
}
.contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    justify-content: space-between;
}

.contact-form,
.contact-info {
    flex: 1 1 300px;
}

.contact-info {
   background-color: #003366;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
}

.contact-info h3 {
    margin-top: 0;
    font-size: 20px;
}
.contact-form {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    /*color: #002a5c;*/
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #003366;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.btn-primary {
    background-color: #003366;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    width: 100%;
    /*max-width: 200px;*/
}

.btn-primary:hover {
    background-color: #00509e;
}
.contact-info .tagline {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.contact-info .info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info .info-list li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.contact-info a {
    color: #003366;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .contact-box {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}
.contact-section {
  /*background-color: #0a3a60;*/
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.contact-card {
  background-color: #0a3a60;
  color: #fff;
  /*max-width: 550px;*/
  /*width: 100%;*/
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', sans-serif;
}

.contact-card h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  border-bottom: 2px solid #1e90ff;
  padding-bottom: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.contact-item i {
  font-size: 1.3rem;
  color: #1e90ff;
  margin-top: 4px;
  width: 25px;
}

.contact-item a {
  color: #fff;
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 30px 0 20px;
}

.quote-box p {
  margin: 10px 0;
}

.btn-quote {
  display: inline-block;
  padding: 10px 20px;
  background-color:#fff;
  color:  #1e90ff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-quote:hover {
  background-color: #d2d2d2;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .contact-card {
    padding: 20px;
  }

  .btn-quote {
    width: 100%;
    text-align: center;
  }
}
.info-block{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}
.site-footer {
  background-color: #0a3a60;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}


.footer-brand h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #ccc;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #1e90ff;
  padding-bottom: 6px;
  display: inline-block;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}


.footer-links ul li a:hover {
  color: #1e90ff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: flex-start;
  }
}
.site-footer {
  background-color: #0a3a60;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-columns > div {
  /*flex: 1 1 220px;*/
  min-width: 220px;
}

.footer-about h4,
.footer-links h4,
.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #1e90ff;
  padding-bottom: 6px;
  display: inline-block;
}

.footer-about p,
.footer-links ul,
.footer-newsletter p {
  font-size: 0.95rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #1e90ff;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.newsletter-form button {
  padding: 0 15px;
  border: none;
  background-color: #1e90ff;
  color: white;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: #007acc;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #fff;
}

.tagline {
  font-style: italic;
  margin-top: 10px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
  }
}
.about {
  padding: 25px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1500px;
  margin: auto;
}

.about-image {
  flex: 1 1 50px;
  text-align: center;
}

.about-image img {
      height: 500px;
    margin-left: 28px;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1 1 400px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0a3a60;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.about-highlights {
  margin-top: 20px;
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: #333;
}

.checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #1e90ff;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: justify;
  }

  .about-text {
    padding: 0 10px;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }
}
.header-top {
  background-color: #0a3a60;
  color: white;
  /*padding: 10px 20px;*/
  /*font-family: 'Segoe UI', sans-serif;*/
  font-size: 0.95rem;
}

.header-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.header-left,
.header-right {
  flex: 1 1 300px;
  padding: 5px 10px;
}

.header-left {
  text-align: left;
  font-weight: 600;
}

.header-right {
  text-align: right;
   font-weight: 600;

}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .header-top-container {
    /*flex-direction: column;*/
    text-align: center;
  }

  .header-left,
  .header-right {
    text-align: center;
  }
}
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  /*height: 60px; */
  height: 16vh;
  margin-right: 10px;
}

.logo h1 {
  font-size: 24px; 
  margin: 0;
}
.site-footer {
  background-color: #003366;
  color: #fff;
  padding: 15px 20px;
  position: relative;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-left,
.footer-right {
  /*flex: 1 1 100%;*/
  margin: 5px 0;
}

.footer-left a,
.footer-right a {
  color: #fff;
  text-decoration: none;
}

.footer-left a:hover,
.footer-right a:hover {
  text-decoration: underline;
}

.scroll-top {
  position: absolute;
  right: 20px;
  bottom: 15px;
  background: #1e90ff;
  color: #fff;
  font-size: 18px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s;
}
.canvas-container {
  width: 100%;
  max-width: 700px;
  margin: auto;
}

.canvas-container video {
  width: -webkit-fill-available;
  height: auto;
  display: block;
}

.scroll-top:hover {
  background: #cc0000;
}

/* Responsive styles */
@media (min-width: 600px) {
  .footer-left,
  .footer-right {
    /*flex: 1;*/
    text-align: left;
  }

  .footer-right {
    text-align: right;
  }
}

@media (min-width: 769px) {
    #imageCanvas {
  height:400px;

      width: -webkit-fill-available !important;  
    }
   
}
 @media (max-width: 769px) { #imageCanvas {width:100%;  }}
@media (min-width: 1800px) {
  .container, .about-content {
    max-width: 180vh;
  }
}
@media  (min-width: 2000px) {
  .container, .about-content {
    max-width: 220vh;
  }
}
@media (max-width: 480px) {
  .hero-image.vertical-style img {
    max-width: 100%;
  }
}
#imageCanvas {
  display: block;
  margin: auto;
  border: 2px solid #fff;
  border-radius: 8px;
  /*height:400px;*/
  /*width:100%;*/
}

  .carousel-slide {
    display: none;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
  }

  .carousel-slide.active {
    display: block;
    z-index: 1;
  }

  .carousel-slide::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
  }
  .white-text {
    font-size: 18px;
    color: white;
  }

  .highlight-text {
  font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-top: 336px;
  }



  @media (min-width: 768px) {
    .highlight-text {
      font-size: 36px;
    }

    .white-text {
      font-size: 22px;
    }
  }
    .carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .carousel-text h1 {
    font-size: 2rem;
    margin: 0;
  }





  @media (max-width: 768px) {
    .carousel {
      height: 65vh;
    }

#videoElement {
  /*position: absolute;*/
  top: 0;
  left: 0;
  width: 100%;
  /*height: 100%;*/
  object-fit: cover; /* or use contain depending on your design needs */
}
    .carousel-text h1 {
      font-size: 1.2rem;
    }

    .carousel-controls span {
      font-size: 2rem;
    }
  }
  .carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05); /* Start zoomed in */
    transition: opacity 1s ease-in-out, transform 1.5s ease-out;
  }

  .carousel-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1); /* Zoom out to normal */
  }
.carousel-text {
    width: 70%;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:2;
    text-align: center;
    color: white;
    border-radius: 15px;
    max-width: 90%;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
    animation-delay: 0.5s;
  }

  .carousel-slide.active .carousel-text {
    animation: fadeInUp 1.2s ease forwards;
  }

  @keyframes fadeInUp {
    0% {
      transform: translate(-50%, 30%);
      opacity: 0;
    }
    100% {
      transform: translate(-50%, 0);
      opacity: 1;
    }
  }


  .carousel-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
  }

  .carousel-controls span {
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s;
    user-select: none;
  }

  @media (max-width: 768px) {
   
    .carousel-text {
    /*top:50%;*/
    top:39%;
    }
  }
  .scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #1e90ff;
  color: white;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 999;
  display: none;
  transition: all .3s linear 0ms;;
}
.scroll-to-top:hover {
  background-color: #101010;
}
.btn2 {
    font-size: 24px;
    font-weight: 900;
    padding: 0 15px;
    line-height: 80px;
}
@media (max-width: 1255px) {
  .hide-on-mobile {
    display: none !important;
  }
}
  @media screen and (max-width: 1199px) {
    #main-menu-mobile .btn-nav-mobile {  
	color: #282828;
    display: inline-block;
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
    width: 30px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all .3s linear 0ms;
    -khtml-transition: all .3s linear 0ms;
    -moz-transition: all .3s linear 0ms;
    -ms-transition: all .3s linear 0ms;
    -o-transition: all .3s linear 0ms;
    transition: all .3s linear 0ms;
	}
  }	
	@media screen and (max-width: 1199px) {
    #site-header-wrap #main-menu-mobile {
        position: absolute;
        top: 50%;
        right: 15px;
        -webkit-transform: translate(0, -50%);
        -khtml-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0px;
}

.main-nav a {
  text-decoration: none;
  /*color: #003366;*/
  color:#0056b3;
  font-weight: 900;
  padding: 10px 15px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

 /*Highlight "active" link (Home) */
.main-nav a.active {
  background-color: #003366;
  color: white;
}

/* Hover effect for Services (or any link) */
/*.main-nav a:hover {*/
/*  background-color: #e0e0e0;*/
/*  color: #000;*/
/*}*/

.main-nav a:hover {
  /*background-color: #e0e0e0;*/
  color: #003366;
  transform: scale(1.05);
}
