/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Lato', sans-serif;
  }
  
  /* Header Top */
  .header {
    display: flex;
    flex-wrap: wrap;
    background-color: #f0f0f0;
  }
  .heading{
    font-size: 20px;
    color: #0089d0;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
  
  } 
  
  .logo1 {
    font-family:'Lato', sans-serif;
    font-weight: 40;
    position:relative;
    width: 30%;
    background-color: #051d40;
    color: #fff;
    padding: 1rem;
    text-align: center;
    /* flex: 1 1 100%; */
    font-size: 1rem;
    
  }
  
  .logo2 {
    background-color: #5c94cf;
    display: flex;
    align-items: center;
    color: white;
    /* flex: 1 1 100%; */
    padding: 1rem;
    width: 70%;
    /* flex-direction: column; */
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin-left: 1rem;
    justify-content: center;
    align-items: center;
  }

  .social-links li a {
    color: white;
    font-size: 1rem;
  }
  
  .social-links li a:hover {
    font-size: 1rem; /* Adjust icon size */
    color: #051d40 ; /* or your preferred color */
  }
  
  .top-right {
    margin-top: 0.5rem;
    margin-left: 1rem;
    text-align: right;
    /* padding: 0.5rem 2rem; */
    width: 100%;
    margin-right: 1rem;
  }
  .info-list {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .info-list a {
    color: white;
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s;
  }
  .info-list a:hover {
    color: #051d40;
    text-decoration: underline;
    
  }
  .info-list .icon {
    color: #051d40;
    font-size: 18px;
    
  }
  @media (max-width:768px){
    .logo1{
      display: none;
    }
    .logo2{
      width: 100%;
    }
    .social-links{
      display: none;
    }

   
  }
  /* NAVIGATION */
  .navbar {
    background-color: whitesmoke;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo-section {
    display: flex;
    align-items: center;
    max-width: 270px;
    overflow: hidden;
    margin-left: 20px;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  
  .logo{
    height: 40px;           /* Set a fixed height */
    width: auto;            /* Automatically adjust width to maintain aspect ratio */
    object-fit: contain;    /* Ensures image fits without distortion */
    display: block;
  }
  .logo-link img{
      height: 45px;
      width: auto;
      object-fit: contain;
  }
  
  .brand-name {
    font-size: 23px;
    font-weight: 550;
    color: #1c75bc;
    white-space: nowrap;
    word-spacing: 2px;
  }
  
  .nav-links{
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 15px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-right: 5rem;
    
  }
  .nav-links a {
    text-decoration: none;
    color: black;
    padding: 0.5rem 1rem;
    
  }
  .nav-links a:hover {
    color: #5c94cf;
    transition: 0.5s;
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
  }
  .dropdown-menu {
    list-style: none;
    display: none;
    position: absolute;
    top: 100%;
    background-color: #2c3640;
    padding: 0;
    right: -1.8rem;
  }
  @media (min-width:1024px){
    .dropdown-menu{
      width:10rem;
    }
    .nav-links{
        margin-bottom: 1rem;
        height: 1rem;
    }
}
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown-menu li a {
    color: white;
    padding: 10px 15px;
    font-family:'Lato', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    display: block;
  }
  .dropdown-menu li a:hover {
    background-color: #5c94cf;
    color: white;
    transition: 0.4s;
  }
  
  /* Contact Button */
  .btn-box {
    padding: 4px; /* Optional: reduce padding to avoid misalignment */
    margin: 0;
  }
  
  .btn-style-one {
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
    color: white !important;
    text-decoration: none;
    padding: 10px 30px;
    font-weight: 800;
    border-radius: 3px;
    background-color: #5c94cf;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    transition: background-color 0.3s;
  }
  
  .btn-style-one:hover {
    background-color: #062758;
    color: white;
  }
  
  /* Hamburger menu */
  .hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .tagline{
    margin-left: 5rem;
    margin-top: 3rem;
    font-size: 45px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white ;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    
  }
  main.visible .tagline1 {
  opacity: 1;
  transform: translateY(0);
}
.video-container {
  position: relative;
  width: 100%;
  height: 500px; /* adjust as needed */
  overflow: hidden;
}

#heroVideo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay-text {
  position: absolute;
  top: 30%;
  left: 17%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  color: white;
}

.overlay-text .tagline {
   margin-left: 5rem;
    margin-top: 3rem;
    font-size: 45px;
     word-spacing: 3px; 
  
  white-space: nowrap;         /* Prevents line break */
  overflow: hidden;            /* No overflow outside container */
  text-overflow: ellipsis;     /* Optional: shows “…” if truncated */
  display: block;              /* Treat as block-level for centering */
  width: 100%;                 /* Full width for centering */
  text-align: center;          /* Center the text */

    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white ;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    
}

.overlay-text .tagline1 {
 margin-left: 5rem;
    margin-top: 1rem;
    word-spacing: 8px;
    font-size: 45px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white ;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

  main {
  background-image: url("AllProductsBanner.png");
  background-size: cover;
  width: auto;
  height: 500px;
  padding: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.1s ease-out, transform 1s ease-out;
}

main.visible {
  opacity: 1;
  transform: translateY(0);
}


main.visible .tagline {
  opacity: 1;
  transform: translateY(0);
}

@media  (max-width: 1300px) {
  .video-container {
    height: 450px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .overlay-text .tagline {
    font-size: 40px;
    margin-left: 4rem;
  }
  .overlay-text .tagline1 {
    font-size: 30px;
    margin-left: 4rem;
  }
}
@media (max-width: 1180px) {
  .video-container {
    height: 400px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .overlay-text .tagline {
    font-size: 40px;
    margin-left: 4rem;
  }
  .overlay-text .tagline1 {
    font-size: 30px;
    margin-left: 4rem;
  }
}


@media (max-width: 1024px) {
  .video-container {
    height: 360px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
   .overlay-text .tagline {
    font-size: 36px;
    margin-left: 3rem;
  }
  .overlay-text .tagline1 {
    font-size: 26px;
    margin-left: 3rem;
  }
 
}

/* Small screens / mobile: max-width 768px */
@media (max-width: 970px) {
  .video-container {
    height: 320px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
   .overlay-text .tagline {
    font-size: 34px;
    margin-left: 3rem;
  }
  .overlay-text .tagline1 {
    font-size: 26px;
    margin-left: 3rem;
  }
 
}
@media (max-width: 841px) {
  .video-container {
    height: 290px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .overlay-text .tagline {
    font-size: 32px;
    margin-left: 3rem;
  }
  .overlay-text .tagline1 {
    font-size: 24px;
    margin-left: 3rem;
  }
}
@media (max-width: 769px) {
  .video-container {
    height: 250px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .overlay-text .tagline {
    font-size: 30px;
    margin-left: 3rem;
  }
  .overlay-text .tagline1 {
    font-size: 22px;
    margin-left: 3rem;
  }
} 
@media screen and (max-width: 641px) {
  .video-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
  }

  #heroVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 250%;                  /* Expand video so left 40% fills view */
    height: auto;
    object-fit: cover;
    object-position: left top;
    clip-path: inset(0 60% 0 0);  /* Clip right 60%, show left 40% */
  }

  .overlay-text {
    position: absolute;
    top: 15%;
    left: 40%;
    transform: translate(-50%, -15%);
    z-index: 1;
    
    /* Adjust font-size if needed */
  }
  .overlay-text .tagline {
    font-size: 35px;
    margin-left: 3rem;
  }
  .overlay-text .tagline1 {
    font-size: 28px;
    margin-left: 3rem;
  }
}
@media screen and (max-width: 510px) {
.video-container {
    position: relative;
    width: 100%;
    height: 360px;
    margin-bottom: 0;
     padding-bottom: 0;
    overflow: hidden;
     background-repeat: no-repeat;
  
  border-bottom: 1px solid black;
}
.overlay-text .tagline {
    font-size: 28px;
    margin-left: 3rem;
  }
  .overlay-text .tagline1 {
    font-size: 24px;
    margin-left: 3rem;
  }

}



@media screen and (max-width: 400px) {
.video-container {
    position: relative;
    width: 100%;
    height: 333px;
    margin-bottom: 0;
     padding-bottom: 0;
    overflow: hidden;
     background-repeat: no-repeat;
  
  border-bottom: 1px solid black;
}
.overlay-text .tagline {
    font-size: 26px;
    margin-left: 3rem;
  }
  .overlay-text .tagline1 {
    font-size: 22px;
    margin-left: 3rem;
  }

}




  /* Responsive Styles */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: whitesmoke;
      padding: 1rem 0;
      margin-right: 0;
      
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      text-align: center;
      width: 100%;
    }
  
    .dropdown-menu {
      position: static;
      background-color: #2c3640;
    }
    .tagline{
        font-size: 2.5rem;
    }

  }
  
  .features-wrapper {
  max-width: 1200px;
  margin: 0 auto; 
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9fafb;
  color: #1e293b;
  padding: 40px 20px;
  margin-top: 20px;
}


    .section-title {
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
      color: #0f3057;
      margin-bottom: 50px;
      opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;


  }
  .section-title.visible {
  opacity: 1;
  transform: translateY(0px);
}

    

    .feature-block {
      border-left: 4px solid #5c94cf;
      padding-left: 20px;
      margin-bottom: 40px;
      position: relative;
      

  }
  .feature-box{
     opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
  transition-delay: 0.5s;
  }
  .feature-box.visible {
  opacity: 1;
  transform: translateY(0px);
}

    
.feature-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 8px;
    }
    
    .feature-desc {
      font-size: 1.1rem;
      color: #475569;
      line-height: 1.6;
    }

    @media (max-width: 600px) {
      .section-title {
        font-size: 1.6rem;
      }
      .feature-title {
        font-size: 1.15rem;
      }

      .tagline{
        font-size: 2.1rem;
      }
     
    }
    
    .products-section {
      max-width: 70%;
      width: 100%;
      margin-top: 15px;
      
      padding: 40px 20px;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f8f9fa;
      opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease-in-out;
  
  }
  .products-section.visible {
  opacity: 1;
  transform: translateY(0px);
}
      
     
    

    .products-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 40px;
      color: #0f3057;
      word-spacing: 0.7rem;
    }

    .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
   width: 100%;
  gap: 40px 20px;

}
    .product-link {
      text-decoration: none;
      color: inherit;
    }

    .product-card {
      background-color: #ffffff;
      border: 1px solid #dce3ea;
      border-radius: 12px;
      overflow: hidden;
      transition: 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    }

    .product-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .product-info {
      padding: 16px;
    }

    .product-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: #14213d;
    }

    .product-desc {
      font-size: 0.95rem;
      color: #4b5563;
      line-height: 1.5;
    }



    .app-container {
      width: 30%;
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #acc2da;
      margin-top: 20px;
      padding: 40px 20px;
    }
    

    .app-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
      color: #0f3057;
      margin-top: 10px;
    }

    .app-box {
      background: #fff;
      border: 1px solid #cbd5e1;
      border-left: 4px solid #062758;
      border-radius: 8px;
      margin-bottom: 20px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      min-height: 75px;
      width: 380px;
    }

    .app-header {
      padding: 25px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s;
    }

    .app-header:hover {
      background-color: #e6f4ff;
    }

    .arrow {
      transition: transform 0.3s ease;
    }

    .app-content {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #f9fafb;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }

    .app-content.open {
      padding: 16px 20px;
      max-height: 500px;
    }

    .app-list {
      padding-left: 20px;
      list-style-type: disc;
      color: #334155;
    }

    .rotate {
      transform: rotate(90deg);
    }
    .box_container{
      max-width: 100%;
    margin-right: 20px;
     margin: 10px;
      gap: 20px; 
      display: flex;
    }
    

 .download-btn-container {
  padding-top: 1rem;
  text-align: center;
  width: 380px;
  min-height: 75px;
}

.download-btn {
   display: block;            /* Makes it fill the container */
  width: 100%;  
  background-color: #062758;
  color: white;
  padding: 20px 10px;
  border-radius: 5px;
  word-spacing: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background-color: #5c94cf;
}   

@media (max-width: 1400px) {
  .box_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }

  .products-section {
    width: 70%;
    padding: 30px 15px;
  }

  .app-container {
    width: 30%;
    padding: 30px 15px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 items per row */
    gap: 30px 15px;
  }

  .app-box {
    width: 100%; /* fits within 30% column */
  }
 .download-btn-container {
    width: 100%; /* Allow full width inside app-container */
    padding: 1rem 0;
  }

  .download-btn {
    font-size: 15px;
    padding: 20px 8px;
    min-height: 70px;
  }
}


@media (max-width: 1024px) {
  .box_container {
    flex-direction: column;      /* Stack products and applications */
    align-items: center;         /* Center them when stacked */
  }

  .products-section,
  .app-container {
    width: 100%; 
    margin: 0;                /* Full width when stacked */
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr); /* Keep 3 products in a row */
    gap: 20px 15px;
    justify-content: center;
  }

  .app-box,
  .download-btn-container {
    width: 100%;
  }

  .download-btn {
    width: 100%;
    min-height: 65px;
  }
}

@media (max-width: 768px) {
  .box_container {
    flex-direction: column;
    align-items: center;
  }

  .products-section,
  .app-container {
    width: 100%;
    margin: 0;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 products per row */
    gap: 20px 15px;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    margin: 0;
  }

  .product-card {
    width: 100%;
    box-sizing: border-box;
  }

  .app-box,
  .download-btn-container {
    width: 100%;
    box-sizing: border-box;
  }

  .download-btn {
    width: 100%;
    min-height: 65px;
    padding: 20px 10px;
    font-size: 14px;
  }
}


@media (max-width: 480px) {
  .box_container {
    flex-direction: column;
    align-items: center;
  }

  .products-section,
  .app-container {
    width: 100%;
    padding: 20px 10px;
    box-sizing: border-box;
  }

  .products-grid {
    grid-template-columns: 1fr; /* 1 product per row */
    gap: 20px;
    width: 100%;
    padding: 0;
  }

  .product-card {
    width: 100%;
    box-sizing: border-box;
  }

  .app-box,
  .download-btn-container {
    width: 100%;
  }

  .download-btn {
    width: 100%;
    min-height: 60px;
    font-size: 13px;
    padding: 18px 10px;
  }
}


  footer {
    background-color: #051d40;
    color: white;
    padding: 40px 60px;
    font-family: sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  /* Logo Section */
  .footer-logo-box {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
  }
  
  .footer-logo {
    height: 45px;
    margin-right: 10px;
  }
  
  .footer-heading {
    font-size: 20px;
    font-weight: lighter;
    color: white;
    text-decoration: none;
  }
  a{
    text-decoration: none;
  }
  
  /* Info Section */
  .footer-info {
    flex: 2;
    min-width: 300px;
    font-size: 16px;
    color: #f1f1f1be;
    line-height: 1.6;
  }
  
  /* Contact Section */
  .footer-contact {
    flex: 1;
    min-width: 220px;
    text-align: left;
  }
  
  .footer-contact h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .footer-contact p {
    margin: 6px 0;
    font-size: 15px;
    color: #dddddd;
  }
  
  .footer-contact i {
    margin-right: 8px;
    color: #66b0ff;
  }
  
  .footer-contact a{
    color: white;
    text-decoration: none;
  }
  .footer-contact a:hover{
    color:#66b0ff;
    text-decoration: underline;
  }
  
  .fa-phone {
    color: #f1f1f1d5;
    font-size: 15px;
  }
  .email{
    color: #f1f1f1d3;
    font-size: 20px;
  
  }
  .add{
    color: #f1f1f1bb;
    font-size: 20px;
  }
  .name{
    text-align: center;
    width: 70%;
  
  }

  .main1.visible .tagline {
  opacity: 1;
  transform: translateY(0);
}

.main1 {
  background-image: url("AllProductsBanner.png");
  background-size: cover;
  width: auto;
  height: 500px;
  padding: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.main1.visible {
  opacity: 1;
  transform: translateY(0);
}

.image-swap {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
  }
  
  .image-swap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
  }

  .default-img{
    width: 10rem;
    
  }
  
  .hover-img {
    opacity: 0;
  }
  
  .image-swap:hover .default-img {
    opacity: 0;
  }
  
  .image-swap:hover .hover-img {
    opacity: 1;
  }

  .app-img{
    height: auto;
    width: 300px;
    align-items: center;
    justify-content: center;
  }