/* 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;
  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 */
  transition: 0.5s;
}

.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;
  transition: 0.5s;

}
.info-list .icon {
  color: #051d40;
  font-size: 18px;
  
}

/* 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: 130%;
  background-color: #2b3745;
  padding: 0;
  right: -1.8rem;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li a {
  color: white;
  font-family:'Lato', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  padding: 10px 15px;
  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: #051d40;
  color: white;
}

/* Hamburger menu */
.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive Styles */


  .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: #051d40;
    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;
    }

    .logo{
      display:flex;
      align-items: center;
      width:3000px;
      height: 40px;
      gap: 8px;
      position: relative;
      left: 110px;
    }
    .logo a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .logo img{
      height:50px;
      width: 80px;
    }

    
    .image-text-container {
      display: flex;
      flex-wrap: wrap; /* Makes it responsive */
      align-items: center;
      justify-content: center;
      gap: 40px; /* More spacing between image and text */
      max-width: 1200px;
      margin: 50px auto;
      background: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      opacity: 0;
      transition: opacity 1.5s ease-out;
    }

    .image-text-container.visible{
      opacity: 1;
    }


    
    .image-text-container img {
      width: 500px;  /* smaller image width */
      height: auto;
      max-width: 100%;
      border-radius: 8px;
      flex-shrink: 0;
    }
    .text-content h3{
      color: black;
      margin-top: -0.5rem;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
      padding-bottom: 0.5rem;
    }

    .text-content {
      flex: 1;
      font-size: 18px;
      line-height: 1.6;
    }

    .text-content h3::before,
.text-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 2px;
  left: 50%;
  
}

.text-content h3::before {
  width: 120px;
  background-color: #5c94cf; /* blue line */
  transform: translateX(-80%);
  
}

.text-content h3::after {
  width: 40px;
  background-color:#051d40 ; /* white line */
  transform: translateX(-250%);
}
  
  @keyframes left1 {
from {
  opacity: 0;
  transform: translateX(-700px);
}
to {
  opacity: 1;
  transform: translateX(0px);
}
}
  /* .tagline{
    margin-left: 5rem;
    margin-top: 3rem;
    font-size: 35px;
    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;
    
  }
  .tagline1{
    margin-left: 5rem;
    margin-top: 1rem;
    word-spacing: 8px;
    font-size: 35px;
    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;
    /* text-align: center; */
  
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: 31%;
  left: 20%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  color: white;
}

.overlay-text .tagline {
   margin-left: 5rem;
    margin-top: 3rem;
    font-size: 35px;
    /* 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: 35px;
    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: 30px;
    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: 30px;
    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: 26px;
    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: 26px;
    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: 24px;
    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: 22px;
    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: 28px;
    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: 24px;
    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: 22px;
    margin-left: 3rem;
  }
  .overlay-text .tagline1 {
    font-size: 22px;
    margin-left: 3rem;
  }

}



  
  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%;
  
  } 
  
  .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;
  opacity: 0;
}

/* Right-to-left animation for h6 */
@keyframes serve {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Left-to-right animation for h4 */
@keyframes product {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Only apply animation after scroll */
.headings.visible h6 {
  animation: serve 0.5s ease forwards;
}

.headings.visible h4 {
  animation: product 0.5s ease forwards;
}
  
  /* 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-family:'Lato', sans-serif;
    font-weight: 580;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    font-size: 2rem;
    color: white;
  }
  .headings h4::before,
.headings h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 2px;
  left: 50%;
  
}

.headings h4::before {
  width: 120px;
  background-color: #051d40; /* blue line */
  transform: translateX(-70%);
  
}

.headings h4::after {
  width: 40px;
  background-color: #ffffff; /* white line */
  transform: translateX(-220%);
}

  @keyframes text1 {
from {
  opacity: 0;
  transform: translateY(0);
}
to {
  opacity: 1;
  transform: translateY(0);
} 
}
 

  /* 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);
    animation: text1 1.5s linear 0s 1 alternate both;
    
  }

  h5{
    color: white;
    font-size: 20px;
    text-align: left;
    margin-top: 30px;
  }
  .scroll-wrapper {
    background-color: #5c94cf;;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 2100px;
    margin: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;  /* uniform vertical spacing between h6, h4, and .text */
  }
  
  .products{
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* background-color: #4e94d1bd; */
    color: white;
    padding: 100px 30px;
    font-family: sans-serif;
    margin-top: 0px;
    padding-top: 0;
    justify-content: center;
    position: relative;
    gap: 0px;
    margin-top: 40px;
    
   
  }
  
  .btn .btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 200;
    overflow: hidden;
    border-radius: 0px;
    letter-spacing: 1px;
    background-color: #051d40;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    margin-top: 10px;
  }
  .btn a:hover{
    background-color: rgb(27, 93, 169) ;
    transition: 0.3s;
    color: white;
  }
  .li p{
    color:white;
    margin: auto;
    text-align:left;
  }
  /* @keyframes text-cont {
from {
  opacity: 0;
  transform: translateY(50px);
}
to {
  opacity: 1;
  transform: translateX(0px);
} */

  .text-container{
    display: block;
    width: 100%;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 1s ease-out;
  }
  
  .text-container.visible {
    opacity: 1;
  animation: text-cont 1s ease forwards;
}
  .text-container p{
    font-weight: 100;
  }

  .product-scroll-container {
    overflow: hidden;
    width: 100%;
  }
  
  .images {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding: 0;
    margin: 0;
    justify-content: left;
  }
  
  .images li {
    list-style: none;
    flex: 0 0 33.33%; /* Show 3 items per view */
    box-sizing:border-box;
    padding: 0 10px;
  }
  
  .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;
  }
  
  .scroll-btn {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    color: #051d40;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: background-color 0.3s, transform 0.2s;
    position: absolute;
    transform: translateY(-50%);
    z-index: 2;
    top: 30%;
  }
  
  .scroll-btn.left {
    left: 10px;
    
  }
  
  .scroll-btn.right {
    right: 10px;
  }
  
  .scroll-btn:hover {
    background-color: #051d40;
    color: whitesmoke;
    transform: scale(1.1);
  }
  
  /* Container */
.auto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Layout grid */
.row.clearfix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}

/* Card styling */
.services-block {
  background-color: #f5f7fa;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.services-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.inner-box {
  text-align: center;
  padding: 30px 20px 50px;
  position: relative;
}

/* Circular image */
.icon-box img {
  width: 17rem;
  height: 17rem;
  border-radius: 50%; /* circle */
  object-fit: cover;
  border: 2px solid #fff;
  background-color: #fff;
}

/* Title */
.inner-box h3 {
  margin: 25px 0 20px;
  font-size: 20px;
  color: #222;
  font-family:'Lato', sans-serif;
  font-weight: 200;
  
}

.title{
  text-align: center;
  font-family:'Lato', sans-serif;
  color: #5e5d5dde;
  font-size: 18px;
  font-weight: 200;
  margin-top: 50px;
  
}

.services-section h2{
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 600;
  margin-top: 12px;

}

.sec-title .title,
.sec-title h2 {
  opacity: 0;
  transition: opacity 2s ease-out;
}

.sec-title.visible .title,
.sec-title.visible h2 {
  opacity: 1;
}

.sec-title.centered {
  text-align: center;
  position: relative;
}

.sec-title.centered h2 {
  margin-top: 5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.sec-title.centered h2::before,
.sec-title.centered h2::after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
}

.sec-title.centered h2::before {
  width: 120px;
  background-color: #051d40; /* black line */
  left: 50%;
  transform: translateX(-50%);
}

.sec-title.centered h2::after {
  width: 40px;
  background-color: #5c94cf; /* blue line */
  left: 50%;
  transform: translateX(-150%);
}

/* Arrow button */
.arrow {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #5c94cf;
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.arrow:hover{
  color: white;
}

/* Hover effect (optional) */
.services-block:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.arrow:hover {
  background: #051d40;
}

/* LAPTOP VIEW */

@media (min-width:1024px){
  .dropdown-menu{
    width:10rem;
  }
  .nav-links{
    margin-bottom: 1rem;
    height: 1rem;
}
.services-section h2{
  font-size: 45px;
}

.main{
  width:89.1rem;
}
.text {
  text-align: left;
  font-size: 17px;
  line-height: 1.5;
  margin-left: 7.5rem;
}

}

/* TABLET VIEW */

@media (max-width: 1023px) {
  .images li {
    flex: 0 0 50%;
  }
  .text p{
    text-align: left;
    font-size: 17px;
    line-height: 1.5;
    margin-left: -2rem;
    width: 25rem;
  }
  .tagline{
    font-size: 35px;
  }
}



/* MOBILE VIEW */

@media (max-width: 767px) {
  .logo1{
    display: none;
  }
  .logo2{
    width: 100%;
  }
  .social-links{
    display: none;
  }
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
    margin-right: 0;
    
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
  }
  .tagline{
    font-size: 25px;
  }

  .services-section h2{
    font-size: 32px;
  }  
  .images li {
    flex: 0 0 100%;
  }
  .text p{
    text-align: left;
    font-size: 17px;
    line-height: 1.5;
    margin-left: -22rem;
    margin-top: 8rem;
    width: 18rem;
  }

}