/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Header */
.ovg-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 40px;
  background-color: #ffffffa1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.ovg-logo img {
  height: 100px;
  width: auto;
}

.ovg-contact-btn {
  background-color: #264C8F;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.ovg-contact-btn:hover {
  background-color: transparent;
  border: 1px solid #264C8F;
  color: #264C8F;
}

/* Fullscreen Section */
.ovg-fullscreen-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  background-image: url('images/financial.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.ovg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.171);
  z-index: 0;
}

/* Text inside fullscreen section */
.ovg-heading,
.ovg-paragraph {
  position: relative;
  z-index: 2;
}

.ovg-heading {
  font-size: 4rem;
  margin-bottom: 10px;
  color: #fff;
}

.ovg-paragraph {
  font-size: 20px;
  line-height: 1.4em;
  max-width: 600px;
  color: #fff;
}

/* Footer */
.ovg-footer {
  width: 100%;
  padding: 15px 0;
  background-color: #ffffffa1;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #2c2c2c;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .ovg-heading {
    font-size: 3rem;
  }

  .ovg-paragraph {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .ovg-logo img {
    height: 80px;
  }

  .ovg-contact-btn {
    font-size: 0.95rem;
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .ovg-header {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
  }

  .ovg-logo {
    margin-bottom: 10px;
  }

  .ovg-contact-btn {
    align-self: center;
    margin-top: 0;
  }

  .ovg-heading {
    font-size: 2.2rem;
  }

  .ovg-paragraph {
    font-size: 1rem;
  }

  .ovg-logo img {
    height: 60px;
  }
  .ovg-contact-heading {
    font-size: 2.2rem;
}
}

@media (max-width: 480px) {
  .ovg-heading {
    font-size: 1.8rem;
  }

  .ovg-paragraph {
    font-size: 0.95rem;
  }

  .ovg-contact-btn {
    font-size: 0.85rem;
    padding: 6px 14px;
  }

  .ovg-logo img {
    height: 80px;
  }
  .ovg-contact-heading {
    font-size: 1.8rem !important;
  
}
}






/* contact us */
/* Contact Section */
.ovg-contact-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  background-image: url('images/financial.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.ovg-contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.171);
  z-index: 0;
}

.ovg-contact-heading,
.ovg-contact-phone,
.ovg-contact-email {
  position: relative;
  z-index: 2;
  color: #fff;
}

.ovg-contact-heading {
  font-size: 4rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.ovg-contact-phone,
.ovg-contact-email {
  font-size: 1.2rem;
  margin: 5px 0;
}
.ovg-contact-phone a,
.ovg-contact-email a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s;
  text-decoration: none;
}

.ovg-contact-phone a:hover,
.ovg-contact-email a:hover {
  color: #ddd;
}

