/* ===== Reset & Global Styles ===== */

 .invest{
      background-color: black;
      color: gold;
      font-size: 18px;
      font-weight: 700;
      font-size: bold;
      text-align: center;
      padding-top: 7px;
      padding-bottom: 7px;
      padding-left: 7px;
      padding-right: 7px;
      margin-top: 10px;
      border-radius: 10px;
    }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
  background-color: #f8f9fa;
  color: #333;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===== Container ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.container h1{
  color: #f8d90f;
  padding-top: 20px;
}
.container p{
  color: black;
}

/* ===== Navbar ===== */
.navbar {
  background-color: #0a0a23;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f8d90f;
  width: 200px;
}
.nav-links a {
  margin-left: 20px;
  color: #fff;
  font-weight: 500;
  p
}
.nav-links a:hover,
.nav-links a.active {
  color: #f8d90f;
}
.nav-toggle {
  font-size: 1.8rem;
  color: #fff;
  display: none;
  cursor: pointer;
}

/* ===== Hero & Section Titles ===== */
section h1, section h2 {
  text-align: center;
  margin-bottom: 1rem;
}
section p {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

/* ===== Section Styles ===== */
.real-estate-section {
  background: url('images/homebg.jpeg') center/cover no-repeat;
  height: 90vh;
  color: #fff;
  display: flex;
  align-items: center;
}
.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 3rem 1rem;
  padding-top: 30px;
  margin-top: 200px;
}
.metals-section {
  background: linear-gradient(to right, #d4af37, #fffbe6);
  padding: 4rem 1rem;
}
.bitcoin-section {
  background: linear-gradient(to right, #f7931a, #ffe7c4);
  padding: 4rem 1rem;
}
.plans-section {
  padding: 3rem 1rem;
  background-color: #fff;
}

/* ===== Plan Cards ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.plan-card {
  background: #f1f1f1;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border: 3px inset #f8d90f;
}
.plan-card h3 {
  margin-bottom: 0.5rem;
  color: #0a0a23;
}
.plan-card p {
  color: #444;
}

/* ===== Video Section ===== */
.video-section {
  background: #0a0a23;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
.video-section video {
  width: 100%;
  max-width: 800px;
  margin-top: 1.5rem;
  border-radius: 10px;
}

/* ===== Testimonials ===== */

 .testimonials {
  background: #f0f8ff;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: #012a4a;
  margin-bottom: 2rem;
}

.slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.slide {
  display: none;
  font-size: 1.1rem;
  color: #03396c;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  display: block;
}

.slide p {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.slide h4 {
  font-weight: bold;
  color: #0077b6;
}



.test


.testimonials {
  background: #f2faff;
  padding: 5rem 2rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #012a4a;
}

.testimonial-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.15);
  transition: all 0.6s ease;
  opacity: 0;
  transform: scale(0.95);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  position: relative;
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #0077b6;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  color: #03396c;
  margin-bottom: 1rem;
}

.stars {
  font-size: 1.2rem;
  color: #ffc300;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.testimonial-card h4 {
  margin: 0;
  font-weight: bold;
  color: #0077b6;
  font-size: 1.1rem;
}

.testimonial-card span {
  font-size: 0.95rem;
  color: #555;
}


.testimonials-section {
  background: #fff;
  padding: 4rem 1rem;
}
.testimonial {
  margin: 2rem auto;
  text-align: center;
  max-width: 700px;
  font-style: italic;
}
.testimonial span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #0a0a23;
}

/* ===== Hero Section ===== */
.hero-section {
  background: #0a0a23;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}
.hero-section .btn {
  background-color: #f8d90f;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  margin-top: 1.5rem;
  display: inline-block;
  color: #000;
  font-weight: 600;
  transition: background 0.3s;
}
.hero-section .btn:hover {
  background-color: #e1c508;
}

/* ===== Hotlinks ===== */
.hotlinks-section {
  background: #e9ecef;
  padding: 3rem 1rem;
}
.hotlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.hotlinks a {
  background-color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #0a0a23;
  transition: 0.3s;
}
.hotlinks a:hover {
  background-color: #f8d90f;
  color: #000;
}

/* ===== Legal Section ===== */
.legal-section {
  background-color:lightgoldenrodyellow;
  padding: 3rem 1rem;
  border-top: 1px solid #ccc;
  color: whitesmoke;
}
.legal-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.legal-logos img {
  width: 100px;
  height: 70px;
  margin-right: 1rem;
  margin-top: 30px;
}
.legal-text {
  flex: 1;
}

.legal-text p{
  color: black;
}
.legal-text h3 {
  margin-bottom: 0.5rem;
  color: #0a0a23;
}
.legal-logos p{
  color: black;
}
/* ===== Footer ===== */
.footer {
  background-color: #0a0a23;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}
.footer-links {
  margin-top: 0.8rem;
}
.footer-links a {
  color: #f8d90f;
  margin: 0 0.5rem;
  font-weight: 500;
}
.footer-links a:hover {
  text-decoration: underline;
}
/* ===== MY ADDITIONAL ===== */
.guide{
  background-color: transparent;
  border-radius: 5px gray;
  padding-top: 9px;
  padding-left:  4px; ;
  padding-right: 4px;
  padding-bottom: 9px;
  color: #f8d90f;
}
.sec-icon{
  height: 240px;
}


/* ===== additional css for contact form ===== */
/* Contact Page Enhancements */
.contact-hero {
  background: url('images/contact-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 6rem 1rem;
  text-align: center;
}

.contact-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.contact-box {
  flex: 1 1 45%;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.contact-box h2 {
  margin-bottom: 1.5rem;
  color: #222;
}

.contact-box p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #444;
}

.styled-form .form-group {
  margin-bottom: 1.5rem;
}

.styled-form input,
.styled-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fefefe;
}

.styled-form input:focus,
.styled-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.btn-primary {
  background: #007bff;
  color: #fff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #0056b3;
}

.socials img {
  width: 28px;
  height: 28px;
  margin-right: 40px;
  transition: transform 0.2s ease;
  display: inline;
}

.socials img:hover {
  transform: scale(1.1);
}

/* addtional css for home Page */
.btnhouse{
margin-top: 30px;
}
.btn2{
  background-color: #f8d90f;
  color: black;
  position: absolute;
  padding-top: 3px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 6px;
  text-align: center;
  margin-left: 100px;
  border-radius: 10px;
  border: 2px solid black;
}
.btn1{
  background-color: #f8d90f;
  color: black;
  position: absolute;
  padding-top: 3px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 6px;
  text-align: center;
  margin-left: 20px;
  border-radius: 10px;
  border: 2px solid black;

}
.btn1:hover{
  background-color: black;
  color: gold;
  border: 2px solid gold;
}
.btn2:hover{
  background-color: black;
  color: gold;
  border: 2px solid gold;
}


.serve-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}
.who-section{
  background: linear-gradient(to right, #d4af37, #fffbe6);
  padding-top: 30px;
  padding-bottom: 30px;
}
.guide-pad{
  text-align: start;
  font-family: 'playfair Display', serif;
  font-size: 30px;
}
.serveh3 {
  text-align: center;
}
.who-we-serve{
  padding-bottom: 20px;
  padding-top: 20px;

}
.prefim{
  background: url(images/prefimestate.jpeg);
  height: 50vh;
}
.core{
  text-align: center;
}
.arrow{
  color: whitesmoke;
}
.btn{
  border: 1px inset #f8d90f;
  border-radius: 3px;
}
.precious{
  color: white;
}
/* PRINCIPLES SECTION */
.principles-section {
  background-color: #f4f8fb;
  padding: 3rem 1rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.principle-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

.principle-card:hover {
  transform: translateY(-5px);
}

.principle-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.principle-card h3 {
  margin: 1rem 0 0.5rem;
  color: #0c1e2c;
}

.principle-card p {
  padding: 0 1rem 1.5rem;
  font-size: 0.95rem;
  color: #555;
}
.line{
  border: 1px solid whitesmoke;
  padding: 2px;
}
.started{
  border: 6px solid #f8d90f;
}


/* FAQ css */
/* FAQ Section */
.faq-section {
  padding: 4rem 1rem;
  background: url(images/prefimestate.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 3rem 1rem;
}
.overlayfaq{
    background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 3rem 1rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #003366;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  border: 1px inset #f8d90f;
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ccc;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #fff;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.3s;
  border: 1px inset #f8d90f;
}

.faq-question:hover {
  background-color: #eef2f6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #fff;
  padding: 0 1rem;
}

.faq-answer p {
  padding: 1rem 0;
  margin: 0;
  color: #444;
}

/* When open */
.faq-item.active .faq-answer {
  max-height: 300px;
}



/* guide css */



/* Responsive Contact Page */
@media (max-width: 768px) {
  .contact-flex {
    flex-direction: column;
  }

  .contact-box {
    width: 100%;
  }
}


/* ===== Responsive Navbar ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #0a0a23;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding-top: 10px;
  }
  .nav-links.show-nav {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}








new   


/* ================== Responsive Styles ================== */

/* Small devices (phones, 480px and below) */
@media (max-width: 480px) {
  
  /* Navbar adjustments */
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    display: none;
  }

  .nav-links.show-nav {
    display: flex;
  }

  .nav-toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
  }

  /* Hero Section */
  .hero-section h1 {
    font-size: 24px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .hero-section .btn {
    padding: 10px 20px;
  }

  /* Plans Section */
  .plans-grid {
    grid-template-columns: 1fr;
  }

  /* Legal Content */
  .legal-content {
    flex-direction: column;
  }

  .legal-logos img {
    width: 100%;
    max-width: 250px;
  }
  .legal-text p{
    flex-direction: column;
  }

  /* Serve Section */
  .serve-content {
    flex-direction: column;
  }

  .serve-image {
    width: 100%;
    max-width: 100%;
  }

  /* Video */
  .video-section video {
    width: 100%;
  }

  /* Testimonials */
  .testimonial p {
    font-size: 16px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sec-icon{
    max-height: 300px;
    min-height: ;
  }
}

/* Tablets (480px to 768px) */
@media (max-width: 768px) {

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    display: none;
  }

  .nav-links.show-nav {
    display: flex;
  }

  .nav-toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .legal-content {
    flex-direction: column;
  }

  .serve-content {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Small Laptops (768px to 1024px) */
@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-logos img {
    width: 80%;
  }
}
