    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1800px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 220px;  
    height: auto;
    
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.2rem;
    align-items: center;
    margin-left: 300px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #1a73e8;
}

.whatsapp-btn {
    background: green;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.whatsapp-icon {
  font-size: 20px;
}

.whatsapp-btn:hover {
    background: green;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 244, 78, 0.3);
}

.contact-page {
  max-width: 1000px;
  margin: 90px auto;
  padding: 20px;
}

.contact-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

/* Left Section */
.form-section {
  flex: 1 1 60%;
  background: #f7f7f7;
  padding: 30px;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  
}

.form-section h2 {
  margin-bottom: 10px;
  color: #020202;
}

.contact-line {
  width: 40%;
  height: 2px;
  background-color: #e9e9e9;
  margin-bottom: 30px;
  border-radius: 5px;
}

.required-note {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

.form-section label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.form-section input,
.form-section textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.captcha-placeholder {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.submit-btn {
  background-color: #0077b6;
  color: white;
  padding: 12px 25px;
  margin-top: 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #005f87;
}

/* Right Section */
.info-section {
  flex: 1 1 35%;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  min-width: 400px;
}

.info-section a {
  text-decoration: none;
  color:  #005eff; 
  font-weight: 500;
}

.info-section a:hover {
  color: #005ccc; 
}

.office {
  margin-bottom: 25px;
}

.office-title {
  background-color: #005ccc;
  color: white;
  font-weight: bold;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.map-box iframe {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  border: none;
  margin-bottom: 10px;
}

.contact-email {
  margin-top: 30px;
}

.email-btn {
  display: inline-block;
  background: #e0b200;
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}


.qr-section {
  text-align: center;
  margin-bottom: 30px;
}

.or-text {
  font-weight: bold;
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
  position: relative;
}

.or-text::before,
.or-text::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: #ccc;
}

.or-text::before {
  left: 0;
}

.or-text::after {
  right: 0;
}

.qr-image {
  width: 130px;
  height: 130px;
  margin-top: 20px;
  transition: transform 0.3s ease;
}


.qr-label {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}



@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .form-section, .info-section {
    flex: 1 1 100%;
  }
}

.floating-email-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    right: 95%;
    color: rgb(254, 254, 254);
     background-color: rgba(0, 0, 0, 0.522);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.floating-email-icon:hover {
    transform: scale(1.1);
}

.floating-email-icon img {
    width: 60%;
    height: 60%;
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 95%;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
    transition: transform 0.9s ease;
}

.whatsapp-float:hover {
    transform: scale(1.2);
    background-color: #1ebe5d;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgb(246, 246, 246);
    }

}

.footer {
    background: #fff;
    padding: 60px 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 110px;
    line-height: 1.8em;
    margin-right: 100px;        
    padding: 0 10px;   
    width: 100%;
}

.footer-column {
  min-width: 20px;

}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;

}

.footer-text {
  font-size: 16spx;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-icons i {
  font-size: 20px;
  margin-right: 15px;
  color: #357ae8;
  transition: color 0.3s;
}

.social-icons i:nth-child(2) {
  color: #e4405f;
}
.social-icons i:nth-child(3) {
  color: #1da1f2;
}
.social-icons i:nth-child(4) {
  color: #21759b;
}

.social-icons i:hover {
  opacity: 0.7;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-column p {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.5;
}

.Iicon {
  color: #4285f4;
  margin-right: 10px;
}

.footer-links {
  display: grid;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.footer-links a {
  text-decoration: none;
  color: inherit; 
  transition: color 0.1s ease;
}


.footer-links li {
  margin-bottom: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-links li:hover {
  color: #1a73e8;
}

.footer-hours {
  text-align: center;
  margin-top: 40px;
}

.footer-hours h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.footer-hours h3::after {
  content: '';
  display: block;
  height: 2px;
  width: 50px;
  background-color: #1a73e8;
  margin: 8px auto 0;
}





