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

body {
    font-family: Arial, sans-serif;
    color: white;
    background-color: #000000;
}
.navbar {
  background-color: #000000;
  padding: 20px 0px;
  position: relative; /* ✅ allows hamburger to position absolutely inside navbar */
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative; /* ✅ required to keep hamburger positioned relative */
  width: 100%;
}


/* Logo */

.logo-text {
  text-decoration:none;
  color:intent;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 15px; /* space between logo and text */
}

.nav-logo {
    width: 100px; /* slightly smaller logo for better spacing */
    height: auto;
}

.brand-name {
    font-size: 2.5em;
    font-weight: bold;
    color: #ffffff;
}
/* --- Desktop Navbar --- */
.nav-links {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 1em;
    padding: 6px 8px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #005bb5;
}

/* --- Hamburger Icon --- */
.hamburger {
  all: unset;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 50%;
  position: absolute;
  top: 25px;
  right: 20px;  /* ✅ fixes it to top-right of navbar always */
  z-index: 1001;
  transform: translateY(-50%); /* ✅ vertically center inside nav */
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 3px 0; /* ✅ Adds spacing between lines */
}

/* ✨ Hover effect */
.hamburger:hover span {
  background-color: #d4af37; /* gold */
}


/* Hamburger Animation (X) */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Styles --- */
@media only screen and (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }

.nav-links {
  max-height: 0;
  overflow: hidden;
  flex-direction: column;
  transition: max-height 0.4s ease-in-out;
}

.nav-links.active {
  max-height: 400px;
}

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #333;
  }

  .nav-links li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .hamburger {
    display: flex;
  }
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}



/* Hero Section */
.hero-section {
    background-image: url('images/Background.jpg'); /* Your banner image */
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}
.hero-content h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px #5f5f5f; /* golden shadow */
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px #6f6f6ffe; /* golden shadow */
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-buttons a {
    text-decoration: none;
    font-size: 1.1em;
    padding: 12px 25px;
    border-radius: 999px;
    font-weight: bold;
    transition: all 0.3s ease;
}
/* Responsive */
@media only screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 1.2em;
    }
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .nav-logo {
        width: 40px;
    }
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    background-color: #000000;
    text-align: center;
}

.services-section h2 {
    font-size: 3em;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.services-section .divider {
    width: 60px;
    height: 2px;
    background-color: #d4af37;
    margin: 0 auto 30px auto;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.service-card {
    background-color: #000000;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 30px 20px;
    width: 340px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-card ul li {
    margin-bottom: 10px;
    color: #eeeeee;
    font-size: 1em;
    position: relative;
    padding-left: 20px;
}

.service-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 0.9em;
}

.service-card button {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #d4af37;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card button:hover {
    background-color: #d4af37;
    color: #000;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .service-card {
        width: 90%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .service-card {
        width: 45%;
    }
}

.about-section {
    background-color: #000000;
    color: #e0e0e0;
    padding: 60px 20px;
}

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

.about-container h2 {
    font-size: 3em;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.about-container .divider {
    width: 60px;
    height: 2px;
    background-color: #d4af37;
    margin: 0 auto 30px auto;
}

.about-container p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cccccc;
}

/* ✅ Responsive styles */
@media only screen and (max-width: 768px) {
    .about-container h2 {
        font-size: 2.2em;
    }

    .about-container p {
        font-size: 1em;
        text-align: justify;
    }
}

@media only screen and (max-width: 480px) {
    .about-container h2 {
        font-size: 1.8em;
    }

    .about-container p {
        font-size: 0.95em;
    }

    .about-section {
        padding: 40px 15px;
    }
}
.contact-section {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-container h2 {
    font-size: 3em;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.contact-container .divider {
    width: 60px;
    height: 2px;
    background-color: #d4af37;
    margin: 0 auto 30px;
}

.contact-container p {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #444444;
    background-color: #000000;
    color: #ffffff;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #d4af37;
    color: #000000;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Responsive */
@media only screen and (max-width: 768px) {
    .contact-container h2 {
        font-size: 2.2em;
    }

    .contact-container p {
        font-size: 1em;
    }
}
.footer-section {
  background-color: #000000;
  color: #fff;
  padding: 20px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* Allows the sections to wrap on smaller screens */
  max-width: 1100px; /* Ensures it doesn't get too wide */
  margin: 0 auto 30px; /* Centers the footer and gives margin at the bottom */
  padding-top: 40px; /* Adds some space above the sections */
  gap: 40px; /* Adds a gap between the left and right sections */
}


.footer-left h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.footer-left p,
.footer-right li,
.footer-right h4 {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-right h4 {
    color: #d4af37;
    font-size: 1.2em;
    margin-bottom: 15px;
}

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

.footer-right li {
    font-size: 1em;
    line-height: 1.6;
}

.footer-right .closed {
    color: #ff4f4f;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.95em;
    color: #aaa;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
}
html {
  scroll-behavior: smooth;
}
/* Updated style for better spacing */
.footer-left, .footer-right {
    flex: 1 1 300px; /* Allows both sections to take up equal space and adjust */
    margin-bottom: 20px; /* Adds space between the sections */
}


.footer-left h3 {
  color: #F1C40F;
  margin-bottom: 10px;
}

.footer-left a {
  color: #F1C40F;
}

.footer-right h4 {
  color: #F1C40F;
}

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

.footer-right .closed {
  color: red;
}

/* Partners Section */
.partners-section {
  text-align: center;
  margin-top: 10px;
}

.partners-section h2 {
  color: #F1C40F;
  margin-bottom: 15px;
}

.partners-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.partner-logo img {
  max-width: 150px; /* Makes logos smaller */
  height: auto;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 14px;
  color: #bbb;
}
/* Mobile View */
@media only screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack the footer sections vertically on small screens */
        align-items: center; /* Center align the content */
        text-align: center; /* Align text to the center */
    }

    .footer-left, .footer-right {
        width: 100%; /* Each section takes up full width */
        margin-bottom: 20px; /* Adds space between stacked sections */
    }
}
.owner-section {
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.owner-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.owner-image img {
    max-width: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
    background-color: #111;
    padding: 8px;
}

.owner-details {
    flex: 1;
    text-align: left;
    padding: 0 10px;
}

.owner-details h3 {
    font-size: 2.2em;
    color: #d4af37;
    margin-bottom: 10px;
}

.owner-details .title {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 8px;
}

.owner-details .subtitle {
    font-size: 1.1em;
    color: #aaa;
    margin-bottom: 18px;
}

.owner-divider {
    width: 50px;
    height: 3px;
    background-color: #d4af37;
    margin: 20px 0;
}

.owner-details .highlight {
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .owner-container {
        flex-direction: column;
        text-align: center;
    }

    .owner-details {
        text-align: center;
    }

    .owner-details h3 {
        font-size: 1.8em;
    }
}
.analytics-section {
  background-color: #0b0b0b;
  color: #fff;
  padding: 70px 20px;
}

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

.analytics-header {
  text-align: center;
  margin-bottom: 50px;
}

.analytics-header h2 {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 10px;
}

.analytics-header .highlight {
  color: #d4af37;
}

.analytics-header p {
  color: #aaa;
  font-size: 1.1em;
  max-width: 700px;
  margin: auto;
}
.analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.analytics-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.live-chart-section {
  margin-top: 0; /* was 40px */
}
.stats-boxes {
  margin-bottom: 10px;
}


.analytics-features {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-card {
  display: flex;
  gap: 20px;
  background-color: #111;
  padding: 20px;
  border-left: 4px solid #d4af37;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.feature-card .icon {
  font-size: 2em;
  color: #d4af37;
}

.feature-card h3 {
  margin-bottom: 5px;
  color: #fff;
}

.feature-card p {
  color: #ccc;
  font-size: 0.95em;
  margin-bottom: 6px;
}

.tag {
  font-size: 0.75em;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: bold;
  display: inline-block;
}

.tag.orange {
  background-color: #ffac56;
  color: #000;
}

.tag.gold {
  background-color: #d4af37;
  color: #000;
}

.tag.grey {
  background-color: #666;
  color: #fff;
}

.analytics-stats {
  flex: 1;
  min-width: 300px;
}

.analytics-stats h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #d4af37;
}

.stats-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.stat {
  background-color: #000;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.stat strong {
  font-size: 1.8em;
  display: block;
}

.stat span {
  font-size: 0.95em;
  color: #bbb;
  margin-top: 5px;
}

/* Stat Color Variants */
.stat.green strong { color: #4caf50; }
.stat.blue strong { color: #2196f3; }
.stat.violet strong { color: #9c27b0; }
.stat.orange strong { color: #ff9800; }

/* Scroll animation */
[data-fade] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

[data-fade].active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media only screen and (max-width: 768px) {
  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .analytics-header h2 {
    font-size: 2em;
  }
}
.live-chart-section {
  margin-top: 40px;
  background-color: #111;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.chart-title {
  color: #d4af37;
  font-size: 1.6em;
  margin-bottom: 20px;
  text-align: left;
}

.tradingview-widget-container {
  width: 100%;
  overflow: hidden;
}

.tradingview-widget-container__widget {
  height: 400px;
}

@media screen and (max-width: 768px) {
  .tradingview-widget-container__widget {
    height: 300px;
  }
}
#niftyChart {
  width: 100%;
  height: 350px;
  background: #111;
  border-radius: 10px;
  padding: 10px;
}

.chart-note {
  font-size: 0.9em;
  text-align: center;
  margin-top: 10px;
  color: #aaa;
}

.chart-note a {
  color: #d4af37;
  text-decoration: underline;
}
/* testimoial  */

.testimonials-horizontal {
 background: #000000;
  padding: 80px 30px;
  text-align: center;
}

.testimonials-horizontal h2 {
  color: gold;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.horizontal-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
  padding: 30px 0 20px; /* extra top padding so glow is visible */
  overflow: visible;    /* let the glow show outside the container */
}

.h-card {
  background: #000000;
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 18px;
  padding: 30px 20px 25px;
  width: 280px;
  flex: 0 0 auto;
  box-shadow: 0 0 20px rgba(255,215,0,0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.h-card:hover {
  transform: scale(1.05); /* Smooth zoom */
  border: 1px solid #00aaff;
  box-shadow:
    0 0 15px rgba(0, 123, 255, 0.8),
    0 0 30px rgba(0, 123, 255, 0.4);
}


.h-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 20px rgba(0,123,255,0.3);
  margin-bottom: 15px;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast; /* improve clarity */
  image-rendering: crisp-edges;
}


.h-card h3 {
  color: gold;
  font-size: 1.3rem;
}

.location {
  color: #0099ff;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.feedback {
  font-style: italic;
  font-size: 0.95rem;
  color: #ccc;
}
@media (max-width: 768px) {
  .horizontal-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
  }

  .h-card {
    width: 90%;       /* Make card full width */
    max-width: 320px; /* Prevent cards from being too wide */
  }
  /* photo gallery */
}
.photo-gallery {
  background-color: #000000;
  padding: 60px 20px;
  text-align: center;
}

.photo-gallery h2 {
  font-size: 2.5rem;
  color: gold;
  margin-bottom: 40px;
}

.gallery-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.gallery-grid img {
  height: 250px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.2);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
}
