* {
    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;
  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;
  }
  
  /* 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;
    }
  }

html, body {
    margin: 0;
    padding: 0;
  }
  
  h1{
      font-size: 40px;
        color: rgb(13, 13, 136);
   
    }
    
    .slider-container {
      position: relative;
      width: 1500px; /* 3 images * 300px */
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      background: white;
      height:400px;
    }
    
    .slider-track {
      display: flex;
      width: calc(500px * 6); /* 5 slides */
      animation: scroll 15s linear infinite;
    }
    
    .slide {
      min-width: 500px;
      flex-shrink: 0;
      text-align: center;
      background: #fff;
    }
    
    .slide img {
      width: 500px;
      height: 300px;
      object-fit: cover;
      display: block;
    }
    
    .caption {
      padding: 10px;
      font-size: 30px;
      color: #333;
      background-color: #fafafa;
      border-top: 1px solid #ddd;
    }
    
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-1500px); /* Move 2 slides left */
      }
    }
    
    .controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      pointer-events: none;
    }
    
    .control-btn {
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      font-size: 30px;
      padding: 10px 20px;
      cursor: pointer;
      pointer-events: all;
      border-radius: 50%;
      transition: background 0.3s;
    }
    
    .control-btn:hover {
      background: rgba(0, 0, 0, 0.8);
    }
      h3{
        font-size: 30px;
        color: #141151;
      }
  
      
      .image-text-container {
        display: flex;
        flex-wrap: wrap; 
        align-items: center;
        justify-content: center;
        gap: 2.5rem; 
        max-width: 81.25rem;
        margin:  3.125rem auto;
        background: white;
        padding: 2.5rem;
        border-radius:  0.625rem;
        box-shadow: 0 0 0.625rem rgba(0,0,0,0.1);
      }
      
      .image-text-container img {
        width: 31.25rem;  
        height: auto;
        max-width: 100%;
        border-radius:  0.5rem;
        flex-shrink: 0;
      }
      
      .text-content {
        flex: 1;
        font-size: 1.125rem;
        line-height: 1.6;
         font-family: 'Segoe UI', sans-serif;
          opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;


  }
  .text-content.visible {
  opacity: 1;
  transform: translateY(0px);
}

.text-content h3{
  color: #005baa;
  font-weight: 670;
}
@media (max-width: 30rem) { 
  .image-text-container {
    padding: 1rem;
    gap: 1rem;
  }

  .image-text-container img {
    width: 100%; 
  }

  .text-content {
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: center;
  }
}


      @media (max-width: 768px) {
  .image-text-container {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .image-text-container img {
    width: 20rem;
  }

  .text-content {
   font-size: 0.95rem; 
    line-height: 1.5;
    text-align: center;
  }
}
      
     
@media (max-width: 64rem) { 
  .image-text-container {
    padding: 2rem; 
    gap: 2rem;     
  }

  .image-text-container img {
    width: 25rem; 
  }

  .text-content {
    font-size: 1rem; 
    line-height: 1.5;
  }
}
      
    main{
      background-image: url("bg.jpeg");
      width: 1400px;
      height:250px;
      padding: 20px;
    }
    .tagline{
      font-size: 40px;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      color: white ;
      margin-left: 50px;
    }
     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;
  }

}


    .about {
      min-height: 31rem;
      max-width: 90.625rem; /* 1450px ÷ 16 */
      background-image: url("bg_vision.jpg");
      background-size: cover;
      display: flex;
      flex-direction: row;      /* Make this default */
      flex-wrap: nowrap; 
      align-items: center;
      justify-content: center;
      gap: 2.5rem; 
      padding: 2rem; 
    }
  

    h2{
        text-align: center;
        /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
         font-family: 'Segoe UI', sans-serif;
        font-weight: 700;
        font-size:  1.875rem;
        word-spacing: 0.3125rem;
    }

    .about p{
        font-family: 'Segoe UI', sans-serif;
        font-weight: 400;
        word-spacing: 0.3125rem;
        line-height: 1.4;
        font-size: 1rem;
        text-align: justify; 
        
    }
  
    .mission{
         min-height:18.75rem;
        max-width: 34.375rem;
        background-color:white;
        padding: 1.5625rem;
    
        
         opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;


  }
  .mission.visible {
  opacity: 1;
  transform: translateY(0px);
}

    
.vision{
        min-height: 18.75rem;
        max-width: 34.375rem;
        margin-bottom: 0;
        background-color:white;
        padding: 1.5625rem;
        opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
    }

    .vision.visible {
  opacity: 1;
  transform: translateY(0px);
}
    
   @media (max-width: 480px) {
  .about {
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    margin: 2rem 1rem;
    gap: 1.5rem;
    min-height: auto; /* Allow height to expand naturally */
  }

  .mission,
  .vision {
    width: 100%;
    height: auto;
    padding: 1.25rem;
    text-align: center;
    box-sizing: border-box;
  }

  h2 {
    font-size: 1.5rem;         /* 24px */
    word-spacing: 0.2rem;
  }

  .about p {
    font-size: 0.95rem;
    word-spacing: 0.2rem;
    line-height: 1.5;
    text-align: justify;
  }
}
@media (max-width: 1024px) {
  .about {
    flex-direction: row;
    flex-wrap: nowrap;  /* Prevents them from wrapping vertically */
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
    margin: 2rem auto;
    min-height: auto;
  }

  .mission,
  .vision {
    width: 45%;          /* Smaller than 50% to prevent overflow */
    height: auto;
    padding: 1.25rem;
    box-sizing: border-box;
  }

  h2 {
    font-size: 1.625rem;
    word-spacing: 0.25rem;
  }

  .about p {
    font-size: 0.95rem;
    word-spacing: 0.25rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    padding: 1.5rem;
    margin: 2rem 1rem;
    gap: 2rem;
    height: auto;
  }

  .mission,
  .vision {
    width: 100%;
    max-width:32rem;
    height: auto;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    text-align: center;
  }
  h2 {
    font-size: 1.5rem;
    word-spacing: 0.2rem; 
  }

  .about p {
    font-size: 0.95rem;
    line-height: 1.3;
     word-spacing: 0.2rem;
  }
}

  
.values{
    min-height:28.125rem;
    max-width: 90.625rem;
    background: linear-gradient(135deg, #7babd8, #5c94cf, #2d5e8c);
    background-size: cover; /* or 'contain', or specific size like '100% 100%' */
    background-repeat: no-repeat;
    background-position: center;
    padding: 2rem;               /* Add internal spacing */
    margin: 2rem auto;  ;
    opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease-in-out;
  


  }
  .values.visible {
  opacity: 1;
  transform: translateY(0px);
} 

    @keyframes value {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  } 
}
.icon i{
    font-size: 50px;
    text-align: center;
    display: block;
    margin-top: 30px;
    padding-top: 20px;
  
}

.info1 h4 {
  font-size: 2.1875rem; /* 35px ÷ 16 */
  color: #f0f0f0;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 300;
  word-spacing: 0.3125rem; /* 5px ÷ 16 */
  text-align: center;
  margin-bottom: 1.5rem; /* Added for spacing from p */
}
.info1 p {
  font-size: 1.25rem; /* 20px ÷ 16 */
  color: #f0f0f0d5;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 300; /* Changed from 50 to valid value */
  word-spacing: 0.3125rem;
  margin: 1.25rem; /* 20px ÷ 16 */
  line-height: 1.26;
  text-align: justify; 
  
}
/* media queries */
@media (max-width: 480px) {
  .values {
    min-height: auto;             /* Let content dictate height */
    padding: 1.5rem;
    margin: 1.5rem 1rem;
    background-position: center;
  }

  .info1 h4 {
    font-size: 1.5rem;            /* 24px */
    word-spacing: 0.2rem;
    margin-bottom: 1rem;
  }

  .info1 p {
    font-size: 1rem;              /* 16px */
    word-spacing: 0.2rem;
    margin: 1rem;
    line-height: 1.26;
    text-align: left;            
  }
}
@media (max-width: 768px) {
  .values {
    min-height: auto;            
    padding: 1.75rem;
    margin: 1.75rem 1rem;
    background-position: center;
    background-size: cover;
  }

  .info1 h4 {
    font-size: 1.75rem;          
    word-spacing: 0.25rem;
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .info1 p {
    font-size: 1.1rem;           
    word-spacing: 0.25rem;
    line-height: 1.26;
    margin: 1rem;
    text-align: justify;
  }
}

.team_box {
  width: 100%;
  background-color: #f4f6f8;
  padding: 60px 30px;
}


.team_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}
.team-box{
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
  transition-delay: 0.5s;

  }
  .team-box.visible {
  opacity: 1;
  transform: translateY(0px);
} 

.team {
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  flex: 1 1 500px;
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  font-family: 'Segoe UI', sans-serif;
}

.title2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #005baa;
  border-left: 5px solid #005baa;
  padding-left: 10px;

 opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;


  }
  .title2.visible {
  opacity: 1;
  transform: translateY(0px);
} 
    footer {
    background-color: #051d40;
    color: white;
    padding: 40px 60px;
    word-spacing: 2px;
    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%;
  
  } 
    .header1{
      display: flex; /* Establishes a flex container */
      justify-content: space-between; /* Distributes space between items */
      align-items: center; /* Aligns items vertically in the center */
      background-color: #f0f0f0;
  
    }
    
    /* #003366 */
    
    .social-links {
      display: flex;
      gap: 0px; /* Controls space between icons */
      justify-content: center;
      align-items: center;
      padding: 0;
      margin: 0;
    }
    
    .social-links li a {
      font-size: 16px; /* Adjust icon size */
      color: white; /* or your preferred color */
    }
    .social-links li a:hover {
      font-size: 16px; /* Adjust icon size */
      color: #2b3745 ; /* or your preferred color */
    }
  
  
    .heading-row {
      display: flex;
      justify-content: space-between;
      align-items: flex/start;  /* top-aligned */
      width: 100%;
      max-width: 1200px;
      /* margin: 0 auto;            centered container */
      padding: 40px 20px 0;      /* space above carousel */
      box-sizing: border-box;
      gap: 20px;                 /* gap between columns */
      margin-left: 70px;
    }
    
    /* Remove default heading spacing */
    .headings h6,
    .headings h4 {
      margin: 0;
    }
    
    /* Style headings */
    .headings h6 {
      font-size: 20px;
      margin-bottom: 8px;
      font-family:'Lato', sans-serif;
      font-weight: lighter;
      color: rgba(73, 72, 72, 0.823);
      
    }
    
    .headings h4 {
      font-size: 40px;
      margin: 0;
      font-family:'Lato', sans-serif;
      color: white;
      font-weight: 580;
    }
    
    .heading-row h4:before {
      position: absolute;
      content: '';
      left: 0px;
      bottom: 0px;
      width: 120px;
      height: 2px;
      background-color: #0089d0;
  }
    /* Style paragraph text */
    .text {
      flex: 1;                   /* fills remaining space */
      margin: 0;
      text-align: left;
      font-size: 17px;
      line-height: 1.5;
      margin-left: 120px;
      font-family:'Lato', sans-serif;
      font-weight: lighter;
      color: rgba(255, 255, 255, 0.749);
    }
    
    h5{
      color: white;
      font-size: 20px;
      text-align: left;
    }

    .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;
    
  }

  .main1.visible .tagline {
  opacity: 1;
  transform: translateY(0);
}

.main1 {
  background-image: url("./images/banner.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);
}

* {
    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;
  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;
  }
  
  /* 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;
    }
  }