
:root {
  --brand-re: rgb(37, 150, 190); 
}

.header { 
  background-color: var(--brand-re); 
  color: white; 
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 30px; 
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-group {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
}
.logo img {
    height: 80px;
    width: auto;
    display: block;
    margin: -30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.header-socials {
  display: flex;
  gap: 20px;
}

.header-socials a {
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.header-socials a:hover {
  transform: translateY(-2px);
}

.mobile-nav-socials {
  display: none; 
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}


@media (max-width: 900px) {
  .header-socials {
    display: none; 
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--brand-re);
    display: none; 
    flex-direction: column;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
.logo img {
    height: 60px;
    margin: -25px;
  }
  .nav.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 0;
  }

  .nav-links li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-nav-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 25px;
    margin-top: 10px;
  }

  .mobile-nav-socials a {
    color: white;
    font-size: 22px;
  }
}


.main-footer {
  background-color: #121212;
  color: #e0e0e0;
  padding: 80px 0 0 0;
  font-family: 'Poppins', sans-serif;
  border-top: 4px solid var(--brand-re);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--brand-re);
}

.footer-col p {
  line-height: 1.8;
  font-size: 14px;
  color: #aaa;
}

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.re-title {
  color: var(--brand-re) !important;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #888;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-col ul li a:hover {
  color: var(--brand-re);
  padding-left: 5px;
}

.social-icons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--brand-re);
  transform: translateY(-3px);
}

.footer-bottom {
  background: #0a0a0a;
  padding: 25px 0;
  border-top: 1px solid #222;
}

.bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.dev-credit span {
  color: var(--brand-re);
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .footer-top { grid-template-columns: 1fr 1fr; text-align: center; }
  .about, .social-icons {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .about { grid-column: span 1; }
  .bottom-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


.contact-us { 
  padding: 80px 20px; 
  background-color: #f4f9fc; 
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr; 
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.contact-info-sidebar h2 {
  font-size: 32px;
  color: var(--brand-re);
  margin-bottom: 15px;
}

.info-details {
  margin: 30px 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 17px;
  color: #444;
}

.info-item i {
  color: var(--brand-re);
  font-size: 20px;
  width: 25px;
}

.contact-socials {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.contact-socials a {
  width: 45px;
  height: 45px;
  background: var(--brand-re);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.contact-socials a:hover {
  background: #333;
  transform: translateY(-3px);
}

.contact-form-wrapper h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.contact-form input, .contact-form select {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
}

.contact-form button.btn {
  padding: 15px 30px;
  border: 2px solid var(--brand-re);
  background-color: var(--brand-re);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.contact-form button.btn:hover { 
  background-color: transparent; 
  color: var(--brand-re); 
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info-sidebar, .contact-form-wrapper {
    text-align: center;
  }
  
  .info-item {
    justify-content: center;
  }
  
  .contact-socials {
    justify-content: center;
  }
}


#google_translate_element, 
.skiptranslate, 
.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
}

#goog-gt-tt {
    display: none !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

body {
    top: 0 !important;
    position: static !important;
}

.lang-dropdown-floating {
    position: fixed;
    top: 60px; 
    right: 20px;
    z-index: 9999;
    cursor: pointer;
}

.selected-lang {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    color: black;
}

.lang-list {
    position: absolute;
    top: 45px; 
    right: 0;
    background: white;
    border-radius: 12px;
    list-style: none;
    padding: 10px 0;
    width: 160px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
    overflow: visible; 
}

.lang-dropdown-floating:hover .lang-list {
    display: block;
}

.lang-list li {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    transition: 0.2s;
}

.lang-list li:hover {
    background: #f5f5f5;
}

.lang-list img, .selected-lang img {
    width: 24px;
    border-radius: 2px;
}