* {
  padding: 0px;
}

body {
  background-color: gray;
}

/* Default styles for desktop or large screens */
.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: navy;
}

.phone,
.links,
.email {
  margin: 10px;
  color: white;
}

.links a {
  margin: 0 10px;
  text-decoration: none;
}

.links {
  flex: 2;
  display: flex;
  justify-content: center;
  gap: 40px; /* Adjust the space between menu links */
}

a {
  text-decoration: none;
  color: white;
  font-size: 22px; /* Adjust text size of the menu links */
}

a:hover {
  color: black; /* Change color on hover */
}

.links a.active {
  color: #ff7f50; /* Change to your desired color */
}

/* Media query for screens smaller than 768px (mobile devices) */
@media screen and (max-width: 768px) {
  .menu {
    display: block; /* Stack elements vertically */
    text-align: center;
  }

  .phone,
  .links,
  .email {
    display: block;
    margin: 10px 0;
  }

  .links {
    flex-direction: column; /* Stack links vertically on mobile */
    gap: 10px; /* Adjust gap between links for mobile */
  }

  .links a {
    display: block;
    margin: 5px 0;
  }
}

.cmpName {
  /*background-color: gray;*/
  color: white;
  font-size: 36px;
  text-align: center; /* Horizontally centers the text */
  display: flex;
  justify-content: center; /* Centers content horizontally in the div */
  align-items: center; /* Centers content vertically in the div */
  height: 6vh; /* This makes the div fill the entire viewport vertically */
  /*overflow: hidden; /* Hide overflowing text */
  white-space: nowrap; /* Prevent text from wrapping */

  /* Scroll text animation */
  animation: scrollText 10s linear infinite;
  animation-delay: 1s; /* This delays the scrolling for 3 seconds */
}

@keyframes scrollText {
  0% {
    transform: translateX(0%); /* Start outside the right of the viewport */
  }

  100% {
    transform: translateX(-50%); /* End outside the left of the viewport */
  }
}

/* Media Query for screens smaller than 768px (e.g., tablets and phones) */
@media (max-width: 768px) {
  .cmpName {
    font-size: 24px; /* Decrease font size */
    height: 8vh; /* Increase height for better spacing */
  }
}

/* Media Query for screens smaller than 480px (e.g., phones) */
@media (max-width: 480px) {
  .cmpName {
    font-size: 18px; /* Further decrease font size */
    height: 10vh; /* Increase height further for small screens */
    flex-direction: column; /* Stack content vertically if needed */
  }
}

/* SERVICE HEADER START FROM HERE */
.serviceHeader {
  background-color: white;
  color: navy;
  font-size: 36px;
  text-align: center; /* Horizontally centers the text */
  display: flex;
  justify-content: center; /* Centers content horizontally in the div */
  align-items: center; /* Centers content vertically in the div */
  height: 6vh; /* This makes the div fill the entire viewport vertically */
  overflow: hidden; /* Hide overflowing text */
  white-space: nowrap; /* Prevent text from wrapping */
  border-radius: 40px;
}

/* Media Query for screens smaller than 768px (e.g., tablets and phones) */
@media (max-width: 768px) {
  .serviceHeader {
    font-size: 24px; /* Decrease font size */
    height: 6vh; /* Increase height for better spacing */
  }
}

/* Media Query for screens smaller than 480px (e.g., phones) */
@media (max-width: 480px) {
  .serviceHeader {
    font-size: 18px; /* Further decrease font size */
    height: 4vh; /* Increase height further for small screens */
    flex-direction: column; /* Stack content vertically if needed */
  }
}
/* END SERVICE HEADER HERE */

/* SERVICES CONTAINER START FROM HERE */
.servicesContainer {
  background-color: #145DA0;/*#0000DC;/*navy;*/
  /*position: relative;*/
  margin-top: 0px;
  align-items: center;
  justify-content: center;
  height: 50vh;
  display: flex;
  padding: 10px;
  margin: 10px;
  flex-wrap: wrap; /* Allows images to wrap to the next line */
  overflow: hidden; /* Ensure no overflow happens */
  border-radius: 10px;
}

.serviceName {
  margin: 10px;
  color: white;
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to next line */
  gap: 40px; /* Adjust the space between names */
  justify-content: center;
}

.serviceName span {
  flex: 1 1 calc(25% - 40px); /* Each name takes up 25% of the row */
  font-size: 30px; /* Adjust the font size */
  text-align: center;
}

/* Media query for tablets (768px and below) */
@media (max-width: 768px) {
  .serviceName span {
    flex: 1 1 calc(50% - 40px); /* Adjust to 50% width for better readability */
    font-size: 24px; /* Reduce font size */
  }
}

/* Media query for mobile (480px and below) */
@media (max-width: 480px) {
  .servicesContainer {
    height: auto; /* Adjust height for smaller screens */
    gap: 20px; /* Increase gap */
  }

  .serviceName span {
    flex: 1 1 100%; /* Stack each name to take up full width */
    font-size: 20px; /* Further reduce font size for small screens */
  }
}

/* END SERVICES CONTAINER HERE */

/*SUPPORT HEADER START FROM HERE */
.supportHeader {
  background-color: white;
  color: #0000DC;/*navy;*/
  font-size: 36px;
  text-align: center; /* Horizontally centers the text */
  display: flex;
  justify-content: center; /* Centers content horizontally in the div */
  align-items: center; /* Centers content vertically in the div */
  height: 6vh; /* This makes the div fill the entire viewport vertically */
  overflow: hidden; /* Hide overflowing text */
  white-space: nowrap; /* Prevent text from wrapping */
  border-radius: 40px;
}

/* Media Query for screens smaller than 768px (e.g., tablets and phones) */
@media (max-width: 768px) {
  .supportHeader {
    font-size: 24px; /* Decrease font size */
    height: 6vh; /* Increase height for better spacing */
  }
}

/* Media Query for screens smaller than 480px (e.g., phones) */
@media (max-width: 480px) {
  .supportHeader {
    font-size: 18px; /* Further decrease font size */
    height: 4vh; /* Increase height further for small screens */
    flex-direction: column; /* Stack content vertically if needed */
  }
}
/* END SUPPORT HEADER HERE */

/*SUPPORT CONTAINER START HERE */
.supportContainer {
  background-color: #0000DC;/*navy;*/
  /*position: relative;*/
  margin-top: 0px;
  align-items: center;
  justify-content: center;
  height: 50vh;
  display: flex;
  padding: 10px;
  margin: 10px;
  flex-wrap: wrap; /* Allows images to wrap to the next line */
  overflow: hidden; /* Ensure no overflow happens */
  border-radius: 10px;
}

.supportName {
  margin: 10px;
  color: white;
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to next line */
  gap: 40px; /* Adjust the space between names */
  justify-content: center;
}

.supportName span {
  flex: 1 1 calc(25% - 40px); /* Each name takes up 25% of the row */
  font-size: 30px; /* Adjust the font size */
  text-align: center;
}

/* Media query for tablets (768px and below) */
@media (max-width: 768px) {
  .supportName span {
    flex: 1 1 calc(50% - 40px); /* Adjust to 50% width for better readability */
    font-size: 24px; /* Reduce font size */
  }
}

/* Media query for mobile (480px and below) */
@media (max-width: 480px) {
  .supportContainer {
    height: auto; /* Adjust height for smaller screens */
    gap: 20px; /* Increase gap */
  }

  .supportName span {
    flex: 1 1 100%; /* Stack each name to take up full width */
    font-size: 20px; /* Further reduce font size for small screens */
  }
}
/* END SUPPORT CONTAINER HERE */

/*VIDEO HEADER START FROM HERE */
.videoHeader {
  background-color: white;
  color: #0000DC;/*navy;*/
  font-size: 36px;
  text-align: center; /* Horizontally centers the text */
  display: flex;
  justify-content: center; /* Centers content horizontally in the div */
  align-items: center; /* Centers content vertically in the div */
  height: 6vh; /* This makes the div fill the entire viewport vertically */
  overflow: hidden; /* Hide overflowing text */
  white-space: nowrap; /* Prevent text from wrapping */
  border-radius: 40px;
}

/* Media Query for screens smaller than 768px (e.g., tablets and phones) */
@media (max-width: 768px) {
  .videoHeader {
    font-size: 24px; /* Decrease font size */
    height: 6vh; /* Increase height for better spacing */
  }
}

/* Media Query for screens smaller than 480px (e.g., phones) */
@media (max-width: 480px) {
  .videoHeader {
    font-size: 18px; /* Further decrease font size */
    height: 4vh; /* Increase height further for small screens */
    flex-direction: column; /* Stack content vertically if needed */
  }
}
/* END VIDEO HEADER HERE */

.backvideo{
	
	right:0;
	bottom:0;
	z-index:-1;
	width:100%
}
@media(min-aspect-ratio:16/9){
.backvideo{
	width:100%;
	height:auto;
}}
@media(max-aspect-ratio:16/9){
.backvideo{
	width:auto;
	height:100%;
}}

@media (max-width: 480px) {
  .backvideo {
    margin-left:0px;
	width:100%;
	height:auto;
	object:cover-fit;
  }
}

/* DESIGN AND DEVELOPED START FROM HERE */
.designDevloped {
  background-color: navy;
  color: white;
  font-size: 16px;
  text-align: center;
  height: 5vh;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  border-radius: 40px;
}

@media (max-width: 600px) {
  .designDevloped {
    font-size: 12px; /* Adjust font size for smaller screens */
    height: 4vh; /* Adjust height for smaller screens */
  }
}
/* END DESIGN AND DEVELOPED HERE */

