 /* Global Font Styles */
body {
      font-family: "Geologica", sans-serif;

}

h1, h2, h3, h4, h5, h6, .call-btn {
      font-family: "Geologica", sans-serif;
    }
.header {
  background: #ffffff;
  padding: 12px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1310px;
  margin: 0 auto;
}

/* Logo */
.logo-img {
 width: 250px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #0072ce;
}

/* Call Now Button */
.call-btn {
  background: #0072ce;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.call-btn:hover {
  background: #005fa3;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  margin-left: 20px;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .menu-open .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}



.banner {
  position: relative;
  background: url('../images/logo/banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;  
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {

  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
}

.banner-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  justify-content: flex-start;
}

.banner-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.banner-form input,
.banner-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

.banner-form textarea {
  height: 100px;
  resize: none;
}

.banner-form button {
  width: 100%;
  background: #0072ce;
  color: #fff;
  padding: 12px;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.banner-form button:hover {
  background: #005fa3;
}


.call-now-btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #0072ce;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.call-now-btn:hover {
  background-color: #005fa3;
}

@media (max-width: 768px) {
  .banner-container {
    justify-content: center;
  }

  .banner-form {
    width: 100%;
  }
}
.marquee-section {
  background-color: #0072ce;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.marquee-container {
  display: inline-block;
  min-width: 100%;
  animation: scroll-left 15s linear infinite;
}

.marquee-text {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  padding-left: 100%;
  padding-top: 9px;
}

.marquee-text strong {
  color: #ffe600;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 768px) {
  .marquee-text {
    font-size: 16px;
  }
}


.about-us-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  padding: 50px 20px;
}

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

.about-image {
  flex: 1;
  padding: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.about-content {
  flex: 1;
  padding: 20px;
/*  max-width: 500px;*/
  margin-left: 20px;
}

.about-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #2c3e50;
}

.about-content h2 span {
  color: #0072ce;
}

.about-content p {
  font-size: 18px;
  color: #7f8c8d;
  line-height: 1.6;
  margin-top: 20px;
}

.about-features {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.feature {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.feature i {
  font-size: 40px;
  color: #0072ce;
}

.feature h3 {
  font-size: 22px;
  margin-top: 15px;
  color: #2c3e50;
}

.feature p {
  font-size: 16px;
  color: #7f8c8d;
  margin-top: 10px;
}

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

@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    margin-bottom: 20px;
  }

  .about-content {
    margin-left: 0;
  }

  .about-features {
    flex-direction: column;
  }

  .feature {
    margin-bottom: 20px;
  }
}


.services-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #2c3e50;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.service-item h3 {
  font-size: 18px;
  margin: 15px 0;
  color: #222;
}

.btn-service {
  display: inline-block;
  padding: 8px 18px;
  background-color: #0073e6;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn-service:hover {
  background-color: #005bb5;
}


.cta-section {
  background: linear-gradient(135deg, #0072ce, #005fa3);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.cta-container {
  max-width: 1000px;
  margin: auto;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-btn {
  background: #ffffff;
  color: #0072ce;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: #f0f0f0;
  color: #005fa3;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}


/* About Us Full Width */
.about-full {
  background: #f8f9fb;
  padding: 60px 20px;
}

.about-text-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about-text-container p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}

/* Milestones */
.milestones {
  background: #f8f9fb;
  padding: 10px 20px 50px;
}

.milestone-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.milestone-box h3 {
  font-size: 2.2rem;
  color: #0072ce;
  margin-bottom: 10px;
}

.milestone-box p {
  font-size: 1rem;
  color: #444;
}


.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0072ce;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  background: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #eef6fc;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  padding: 0 15px;
}

.faq-answer p {
  margin: 10px 0 15px;
  font-size: 0.95rem;
  color: #555;
}

/* Active state (toggle JS adds 'active') */
.faq-item.active .faq-answer {
  max-height: 200px;
}


.site-footer {
  background: #1c1c1c;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}

.footer-logo img {
  width: 200px;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #0072ce;
}

.footer-disclaimer {
  margin: 20px 0;
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 30px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #0072ce;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logo img {
    width: 160px;
  }
}


.fixed-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0072ce;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 9999;
  transition: background 0.3s ease;
}

.fixed-call-btn:hover {
  background-color: #005fa3;
}

/* Responsive padding for smaller screens */
@media (max-width: 480px) {
  .fixed-call-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}


.contact-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.contact-form h2,
.contact-info h3 {
  margin-bottom: 20px;
  color: #0072ce;
}

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

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
}

.contact-form button {
  padding: 12px;
  background-color: #0072ce;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #005fa3;
}

.contact-info p {
  margin: 10px 0;
  font-size: 15px;
  color: #444;
}

.contact-info a {
  color: #0072ce;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.map-embed iframe {
  margin-top: 20px;
  border-radius: 8px;
}


.privacy-policy {
  padding: 60px 20px;
  background-color: #fff;
  color: #333;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-container h2 {
  font-size: 32px;
  color: #0072ce;
  margin-bottom: 20px;
}

.privacy-container h3 {
  font-size: 22px;
  color: #333;
  margin-top: 30px;
  margin-bottom: 10px;
}

.privacy-container p, 
.privacy-container ul {
  font-size: 16px;
  line-height: 1.6;
}

.privacy-container ul {
  padding-left: 20px;
  list-style: disc;
}

.last-updated {
  font-style: italic;
  color: #777;
}

.terms-conditions {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-container h2 {
  font-size: 32px;
  color: #0072ce;
  margin-bottom: 20px;
}

.terms-container h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #333;
}

.terms-container p,
.terms-container ul {
  font-size: 16px;
  line-height: 1.6;
}

.terms-container ul {
  list-style: disc;
  padding-left: 20px;
}

.last-updated {
  font-style: italic;
  color: #777;
}

