@import url('styles-dropdown.css');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: 18px;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.header-top {
  background-color: #294295;
  padding: 15px 0;
  width: 100%;
  height: 142px;
}
.header-top .container{
  max-width: 1440px;
}
.spans {
  display: flex;
}
.contact-info {
  display: flex;
  gap: 40px;
  align-items: center;
  padding-left: 0;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-icon {
  width: 22px;
  height: 22px;
  margin-right: 10px !important;
}
.contact-details {
  display: flex;
  flex-direction: column;
}
.contact-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.contact-value {
  font-size: 18px;
  color: #FFFFFF;
  letter-spacing: 0.9px;
}
.contact-icon-link {
  display: contents;
}
.navbar {
  background: #FFFFFF;
  box-shadow: 0px 6px 12px rgba(183, 183, 183, 0.35);
  padding: 15px 0;
  border-radius: 22.69px;
  max-width: 1440px;
  width: 100%;
  height: 100px;
  margin-top: -50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
	width: 68px;
	height: auto;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 70px;
  align-items: center;
}
.nav-dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-link {
  text-decoration: none;
  font-size: 19px;
  color: #000000;
  font-weight: 300;
  transition: color 0.3s ease;
}
.nav-link.active {
  color: #4CC7DD;
  font-weight: 500;
}
.nav-link:hover {
  color: #4CC7DD;
}
.dropdown-arrow {
  width: 15px;
  height: 8px;
}
.cta-button {
  position: relative;
}
.mobile-contact-btn {
  display: none;
}
.btn-contact {
  background: #A89C8C;
  border: none;
  border-radius: 71px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #FFFFFF;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
}
.btn-contact:hover {
  transform: translateY(-2px);
}
.btn-contact img {
  width: 39px;
  height: 39px;
}
.section-header {
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.services-grid-section .section-header{
  align-items: center;
  text-align: center;
}
.section-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #26C7E4;
  text-transform: uppercase;
  letter-spacing: 1.68px;
  display: block;
  margin-bottom: 28px;
}
.section-title {
  font-size: 58px;
  color: #000000;
  line-height: 73px;
  margin-bottom: 38px;
  text-align: left;
}
.btn-primary {
  background: #A89C8C;
  border: none;
  border-radius: 71px;
  padding: 13px 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #FFFFFF;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.page-hero {
  background: linear-gradient(135deg, #294295 0%, #4CC7DD 100%);
  padding: 120px 0 80px;
  text-align: center;
  color: white;
  margin-top: -60px;
}
.page-hero h1 {
  font-size: 72px;
  font-weight: 400;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 24px;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}
.footer {
  background: #f8fcfd;
  padding: 50px 0 25px;
  border-top: 1px solid rgba(76, 199, 221, 0.1);
}
.footer-logo {
  text-align: center;
  margin-bottom: 50px;
}
.footer-logo img {
  width: 160px;
  height: auto;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 40px;
  margin-bottom: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.footer-column h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
.footer-column h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: #4CC7DD;
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 7px;
}
.footer-column ul li a {
  text-decoration: none;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
  transition: all 0.3s ease;
  font-size: 16px;
  display: inline-block;
}
.footer-column ul li a:hover {
  color: #4CC7DD;
  transform: translateX(5px);
}
.footer-map img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.footer-map img:hover {
  transform: translateY(-5px);
}
.footer-map iframe{
  width: 100%;
  display: block;
  height: 300px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 1400px;
  margin: 0 auto;
}
.footer-copyright p {
  font-size: 16px;
  color: #777;
  line-height: 1.5;
}
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a {
  width: 45px;
  height: 45px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  color: #294295;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.footer-social a:hover {
  background: #294295;
  color: #fff;
  border-color: #294295;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(41, 66, 149, 0.2);
}
.footer-social i {
  font-size: 20px;
  margin-top: -10px;
   width: 20px;
  height: 20px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer-links a {
  text-decoration: none;
  font-size: 16px;
  color: #777;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #294295;
}
.footer-links span {
  display: none;
}
@media(max-width: 1000px) {
  .navbar {
    margin-top: 0px !important;
    border: none !important;
    width: 100% !important;
  }
  .hero-content {
    margin-top: 100px;
  }
  .hero-sub {
    display: none;
  }
  .section-header {
    padding: 20px;
  }
  .section-title {
    font-size: 45px;
    
  }
}
@media (max-width: 1200px) {
  .footer-content {
    padding: 0 60px;
    gap: 50px;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    padding: 13px 60px;
  }
}
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 48px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 30px;
    gap: 40px;
  }
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-social,
  .footer-links {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 20px 30px;
  }
}
@media (max-width: 1000px) {

  .header-top {
    display: none !important;
  }
  .navbar {
    width: 100% !important;
    margin-top: 0px !important;
    min-height: 90px !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 0 !important;
  }
  .nav-menu {
    gap: 0 !important;
  }
  .page-hero {
    margin-top: 0 !important;
    padding-top: 140px !important;
  }
}
@media (max-width: 768px) {

  .container {
    padding: 0 20px;
  }
  .contact-info {
    padding-left: 20px !important;
  }
  .navbar {
    width: 100% !important;
    border-radius: 0 !important;
    margin-top: 0 !important;
    padding: 0 15px !important;
  }
  .logo {
    margin-left: -15px;
  }
  .nav-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .nav-menu {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px !important;
  }
  .cta-button {
    order: 2;
  }
  .page-hero h1 {
    font-size: 48px !important;
  }
}
@media (max-width: 480px) {
 
  .page-hero h1 {
    font-size: 32px !important;
  }
  .page-hero p {
    font-size: 18px !important;
    padding: 0 20px;
  }
}
.image-404 img{
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;

}
.image-404{
  margin-bottom: 50px;
}
.page-404 .container{
  max-width: 1440px;
  width: 100%;
  margin:  0 auto;
  text-align: center;
  }
.page-404{
  padding: 100px 0;
}
.page-404 .btn {
	width: 300px;
	text-align: center;
	margin: 0 auto;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 100px) {
.page-404 {
  padding: 50px 0;
}
}