body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* Header styles */
/* header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #bfe4f5;
  z-index: 1000;
  padding: 10px 0; /* Decreased padding to reduce the height 
  transition: background-color 0.5s ease;
} 

/* Navbar */
/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

nav {
  position: fixed;
  z-index: 1000;
  background: rgb(191, 228, 245);
  height: 80px;
  width: 100%;
  
}

label.logo {
  color: white;
  font-size: 25px;
  line-height: 80px;
  padding: 0 100px;
  font-weight: bold;
}

a .logo{
  text-decoration: none;
  background-color: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

a img {
    display: inline-block;
}

nav ul {
  float: right;
  margin-right: 20px;
  margin-top: -50px;
}

nav ul li {
  display: inline-block;
 
  margin: 0 5px;
}

nav ul li a {
  color: rgb(0, 0, 0);
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  font-family:sans-serif;
  font-weight: 600;
}

.navlink a.active,
.navlink a:hover {
  background: #1f9cc9;
  transition: .5s;
}

.checkbtn {
  font-size: 22px;
  color: rgb(0, 0, 0);
  float: right;
  line-height: 80px;
  margin-right: 30px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

@media (max-width: 1050px) {
  label.logo {
    padding-left: 30px;
  }

  nav ul li a {
    font-size: 16px;
  }
}

/* Responsive media query code for small screen */
@media (max-width: 890px) {
  .checkbtn {
    display: block;
  }

  label.logo {
    font-size: 50px;
  }

  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    top: 130px;
    left: -100%;
    text-align: center;
    transition: all .5s;
    z-index: 1;
    margin: -74px;
    
  }

  nav ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }

  nav ul li a {
    font-size: 20px;
    color: #fff;
  }

  a:hover,
  a.active {
    background: none;
    color: #0f76a3;
  }

  #check:checked~ul {
    left: 0;
  }
}

.logo img {
  height: 80px; 
  width: 230px;
  text-decoration: none;
  background-color: transparent;
}

.logo img :hover{

  background-color: transparent; /* Remove hover background */
    outline: none; /* Remove focus outline */
}



/* Hero Section */
.hero {
  position: relative;
  color: white;
  padding: 50px 20px;
  height: 480px;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  max-width: 400px;
  margin-right: 20px;
}

.responsive-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  position: fixed; /* Fix image on the screen */
  left: 0;
  top: 0;
  height: 100%; /* Make the image fill the viewport */
  object-fit: cover;
  z-index: -1; /* Send image behind the content */
  opacity: 0.6;
}

/* Text content styling */
.intro {
  margin-right: 204px;
  flex: auto;
  color: #09131f;
  font-size: 2.5rem;
  font-family: "Rammetto One", sans-serif;
  font-weight: 400;
  padding: 127px;
  text-align: center;
}

/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
  .hero-content {
      flex-direction: column; /* Stack content vertically */
      align-items: center;
  }

  .nav{
    width: 500px;
    border: 2px solid red;
  }

  .hero-image {
      position: static; /* Remove the fixed position for mobile */
      width: 100%; /* Make image full-width on mobile */
      margin-bottom: 20px; /* Add space below image */
  }

  .responsive-image {
      height: 500px; /* Adjust height for mobile */
      object-fit: contain; /* Ensure the image fits without cropping */
      opacity: 0.8; /* Slightly higher opacity on mobile */
      width: 565px;
  }

  .section{
    height:calc(69vh - 80px);
  }

  .intro {
      text-align: center; /* Center text on mobile */
      font-size: 1.8rem; /* Smaller font size */
      padding: 10px; /* Reduced padding */
  }
}

/* Typewriter Animation */
.typewriter {
  overflow: hidden;
  border-right: 2px solid;
  animation: typing 4s steps(30, end), blink-caret 0.75s step-end infinite;
}

/* Keyframes for typing effect */
@keyframes typing {
  from {
      width: 0;
  }
  to {
      width: 100%;
  }
}

/* Keyframes for blinking cursor */
@keyframes blink-caret {
  50% {
      border-color: transparent;
  }
}



/*welcomesection*/
/* Intro Section */
/* Intro Section */
.intro-section {
  background: linear-gradient(135deg, #1e6496, #53a7ea); /* Gradient background */
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.intro-box {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  text-align: justify; /* Justified text in the box */
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-in-out forwards;
}

/* Title Styles */
.intro-title {
  font-size: 2.8rem;
  color: #1e6496;
  margin-bottom: 20px;
  font-weight: 700;
  opacity: 0;
  animation: titleFade 2s ease-in-out forwards;
  text-align: center; /* Centered title */
}

/* Paragraph Text Styles */
.intro-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #000000;
  opacity: 0;
  animation: textFade 3s ease-in-out forwards;
  text-align: justify; /* Justified paragraph text */
}

/* Hover Effect */
.intro-box:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s, box-shadow 0.4s;
}

/* Animations */
@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes titleFade {
  0% {
      opacity: 0;
      transform: translateY(-20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes textFade {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .intro-box {
      padding: 20px;
  }

  .intro-title {
      font-size: 2.2rem;
  }

  .intro-text {
      font-size: 1rem;
  }
}

h3 {
  font-size: 2.5em; /* Larger font size for emphasis */
  font-weight: 700; /* Bold font weight */
  text-align: center; /* Center the heading */
  color: #000000; /* Dark blue-gray color for modern look */
  position: relative;
  margin-bottom: 30px; /* Add some space below the heading */
  text-transform: uppercase; /* Make the text uppercase for a modern touch */
  letter-spacing: 2px; /* Slightly space out the letters */
  padding: 20px;;
}

/* Add an underline effect using ::after pseudo-element */
h3::after {
  content: '';
  position: absolute;
  width: 80px; /* Width of the underline */
  height: 4px; /* Thickness of the underline */
  background-color: #3498db; /* Underline color (light blue for contrast) */
  left: 50%;
  transform: translateX(-50%); /* Center the underline */
  bottom: -10px; /* Position the underline just below the heading */
  border-radius: 2px; /* Slightly rounded edges for a modern look */
}

/* Optional: Add a hover effect */
h3:hover::after {
  width: 120px; /* Increase underline width on hover */
  transition: width 0.3s ease; /* Smooth transition */
}



/* product */
/* Products */
.container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px auto;
  padding: 30px;
  background-color: white;
}

.container .card {
  width: 30%;
  margin-bottom: 30px;
  cursor: pointer;
  transition: transform 0.7s;
}

.container .card .face {
  width: 100%;
  height: 200px;
  transition: 0.7s;
}

.container .card .face.face1 {
  border: 1px solid rgb(43, 148, 228);
  position: relative;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(100px);
  background-color: #ffeded;
}

.container .card:hover .face.face1 {
  background: #ffffff;
  transform: translateY(0);
}

.container .card .face.face1 .content {
  text-align: center;
  transition: 0.5s;
}

.container .card:hover .face.face1 .content {
  opacity: 1;
}

.container .card .face.face1 .content img {
  max-width: 250px;
  border-radius: 20%;
}

.container .card .face.face1 .content h3,
.container .card .face.face1 .content h4 {
  margin: 10px 0 0;
  color: #000000;
  font-size: 1em;
}

.container .card .face.face2 {
  position: relative;
  background: #38b2eb;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(68, 193, 255, 0.8);
  transform: translateY(-100px);
}

.container .card:hover .face.face2 {
  transform: translateY(0);
}

.container .card .face.face2 .content p {
  margin: 0;
  padding: 0;
  color: #fff;
}

.container .card .face.face2 .content a {
  margin: 15px 0 0;
  display: inline-block;
  text-decoration: none;
  font-weight: 900;
  color: #333;
  padding: 5px;
  border: 1px solid #333;
}

.container .card .face.face2 .content a:hover {
  background: #333;
  color: #fff;
}

/* Media Queries for Responsive Layout */

/* For tablets (between 768px and 1024px) */
@media (max-width: 1024px) {
  .container .card {
      width: 45%;  /* Two cards per row */
      margin-bottom: 30px;
  }
}

/* For mobile devices (less than 768px) */
@media (max-width: 768px) {
  .container .card {
      width: 100%;  /* One card per row */
      margin-bottom: 30px;
  }

  .container {
      justify-content: center;  /* Center the cards on small screens */
  }
}

/* Service and Map Layout */
.service-map-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px;
  background-color: #f5f5f5;
}

/* Left Side Services */
.services-cards {
  flex: 1;
  text-align: left;
  
  padding: 40px;
}

/* Service Grid: 2 Services per Row */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

/* Increase Icon Size */
.service-card i {
  font-size: 4em;
  color: #3498db;
  margin-bottom: 10px;
}

.service-card h4 {
  font-size: 1em;
  margin-bottom: 10px;
}

/* Right Side Map */
.map-container {
  flex: 1;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading Style */
.map-container h4 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.map-container p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

/* Media Queries for Responsive Layout */
@media (max-width: 1024px) {
  .service-map-section {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-cards,
  .map-container {
    
    margin-bottom: 20px;
   
  }
}





/* footer */



* {
  margin: 0;
  padding: 0;
}
a {
  color: #fff;
  text-decoration: none;
}
.pg-footer {
  font-family: 'Roboto', sans-serif;
}


.footer {
    background-color: rgb(37 55 63);
    color: #fff;
}
.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}
.footer-wave-path {
    fill: #fffff2;
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;
}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #fff;
}

.footer-content-column ul li a {
  color: #08aed9;
  text-decoration: none;
}





.footer-logo-link {
    display: inline-block;
}

.footer-logo {
  width: 150px; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */

}

a .footer-logo :hover{
  text-decoration: none;
}


.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 30px;
    padding-left: 0;
}
.footer-menu-list li {
    margin-top: 5px;
}

.footer-call-to-action-description {
    color: #fffff2;
    margin-top: 10px;
    margin-bottom: 20px;
}
.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: #00bef0;
}
.button:last-of-type {
    margin-right: 0;
}
.footer-call-to-action-button {
    background-color: #027b9a;
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}
.footer-call-to-action {
    margin-top: 30px;
}
.footer-call-to-action-title {
    color: #fffff2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}
.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}


.footer-social-links {
  position: fixed; /* Use 'fixed' for viewport positioning */
  bottom: 0;
  right: 0;
  width: 236px;
  height: 54px;
  border: 4px solid red;
}


.footer-social-amoeba-svg {
  height: 54px;
  left: 0;
  display: block;
  position: absolute;
  top: 0;
  width: 236px;
}

.footer-social-amoeba-path {
  fill: #027b9a;
}


.footer-social-link.linkedin {
    height: 26px;
    left: 3px;
    top: 11px;
    width: 26px;
}

.footer-social-link {
    display: block;
    padding: 10px;
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fffff2;
    transition: fill .2s;
}

.footer-social-link.twitter {
    height: 28px;
    left: 62px;
    top: 3px;
    width: 28px;
}

.footer-social-link.youtube {
    height: 24px;
    left: 123px;
    top: 12px;
    width: 24px;
}

.footer-social-link.github {
    height: 34px;
    left: 172px;
    top: 7px;
    width: 34px;
}

.footer-copyright {
   
    color: #fff;
    padding: 15px 30px;
    text-align: center;
    padding: 60px;
}


.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
  color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}







/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }

  .footer-menu {
    margin-top: 30px;
    visibility: visible;
    display: block;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-menu-list {
  overflow: visible;
    list-style: none;
    margin-bottom: 0;
    margin-top: 30px;
    padding-left: 0;
}
.footer-menu-list li {
    margin-top: 5px;
}


}
@media (min-width:480px) and (max-width:599px)  { /* smartphones, Android phones, landscape iPhone */
  .footer-content {
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:600px) and (max-width: 800px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */

}
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */

}
@media (min-width:1281px) { /* hi-res laptops and desktops */

}




@media (min-width: 768px) {
  .footer-content {
      margin-left: auto;
      margin-right: auto;
      max-width: 1230px;
      padding: 40px 15px 450px;
      position: relative;
  }

  .footer-wave-svg {
      height: 50px;
  }

  .footer-content-column {
      width: 24.99%;
  }

  
}
@media (min-width: 568px) {
  /* .footer-content-column {
      width: 49.99%;
  } */
}


.footer-social-icons i {
  font-size: 50px; /* Increased icon size */
  margin-right: 10px; /* Adjust margin for spacing if necessary */
}

.footer-social-icons a {
  display: inline-block;
 
  text-decoration: none;
  color: #333;
}
.footer-social-icons a:hover i {
  color: #49a6a6; /* Hover color for icons */
}


.footer-social-icons{
 
  padding: 20px;
}





