:root {
  --primary-dark: #0a0a0a;
  --accent-gold: #d4af37;
  --gold-light: #f4e4a6;
  --text-light: #ffffff;
  --text-muted: #cccccc;
}
* {
  box-sizing: border-box;
}
html{
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif !important;
  background-color: var(--primary-dark);
  color: var(--text-light);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  
  color: var(--accent-gold);
  
}



/* Navbar */
.header-logo{
  
  height: 50px;
  width: auto;
}

.footer-logo{
  height: 50px;
  width: auto;

}

.navbar-custom {
  background-color: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--accent-gold);
}
.navbar-brand {
  font-size: 20px;
  font-weight: bold;
  color: var(--accent-gold) !important;
}
.nav-link {
  color: var(--gold-light) !important;
  /* margin-left: 1rem; */
  font-weight: bold !important;
 
  
}
.navbar-nav .nav-link.active {
  color: var(--accent-gold) !important; 
  font-weight: 600;
  
}

.nav-link:hover {
  color: var(--accent-gold) !important;
  
  
}
.navbar-toggler {
  
  background: linear-gradient(45deg, var(--accent-gold), var(--gold-light))!important ;
    
}



.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                url('images/home_img.avif') center/cover no-repeat;
    min-height: 100vh;
    padding: 3rem 0;
    color: white;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 60px; 

  background: linear-gradient(-45deg, #000, #222, #444, #000);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: justify;
}

.btn-gold {
    background: linear-gradient(45deg, var(--accent-gold), var(--gold-light));
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--primary-dark);
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px var(--accent-gold);
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 4 / 4.5; 
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 90%;
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.4s ease;
    animation: floatTilted 4s ease-in-out infinite;
}

.hero-img-left {
    transform: rotate(8deg) scale(0.95);
    z-index: 2;
}

.live-rate-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

.rate-item {
    flex: 1;
}
 /* @keyframes floatTilted {
    0% {
        transform: rotate(8deg) translateY(0px) scale(0.95);
    }
    50% {
        transform: rotate(8deg) translateY(-12px) scale(0.95);
    }
    100% {
        transform: rotate(8deg) translateY(0px) scale(0.95);
    }
} */


@media (max-width: 768px) {
    .live-rate-bar {
        position: relative; 
        bottom: auto; 
        padding: 1rem 0; 
    }
}




/* about */
.about-text {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid gold;
}

.highlight-card {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid gold;
}

.floating {
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.about-section {
 
  background-color:rgb(15, 14, 14);
  color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height:100vh;
}
.about-img {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 400px; 
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ===== Certification Section ===== */
.certification-section {
    background: #000; /* match your dark theme */
    padding: 60px 20px;
    text-align: center;
}

.cert-title {
    color: #d4af37; /* gold color */
    font-size: 32px;
    margin-bottom: 40px;
}

/* Container */
.cert-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* responsive */
}

/* Card */
.cert-card {
    width: 180px;
    text-align: center;
}

/* Image */
.cert-card img {
    width: 150px;
    height: 150px;
    object-fit: contain; /* keeps logo proper */
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #d4af37;
    transition: 0.3s;
}

/* Hover Effect */
.cert-card img:hover {
    transform: scale(1.1);
}

/* Text */
.cert-card p {
    margin-top: 15px;
    color: #fff;
    font-size: 14px;
}

/* Our Partner Logo slider  */

.logo-slider {
  overflow: hidden;
  background: #000;
  padding: 40px 0;
}

.slider {
  overflow: hidden;
  white-space: nowrap;
}

.slide-track {
  display: flex;
  width: calc(250px * 10); /* adjust based on number of logos */
  
}

.slide-track img {
  /* width: 150px; */
  margin: 0 20px;
 
  width: 120px;        /* same width & height */
  height: 120px;
  border-radius: 20px;  /* makes it circle */
  object-fit: cover;   /* keeps image properly fitted */
  background: white;   /* optional (for logos) */
  padding: 5px;       /* space inside circle */
}


/* Row 1: Right ➝ Left */
.row1 .slide-track {
  animation: scroll-left 20s linear infinite;
}

/* Row 2: Left ➝ Right */
.row2 .slide-track {
  animation: scroll-right 20s linear infinite;
}

.slider {
  margin: 20px 0;   /* adds space above & below each row */
}

.slide-track img {
  height: 60px;
  width: 120px;
  object-fit: contain;
}

.slider:hover .slide-track {
  animation-play-state: paused;
}

/* Animations */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* End of logo slider */


.about-text p {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
 
}
.text-light-gold{
  color: var(--accent-gold) ;
}
@media (min-width: 992px) {
  .about-img {
    width: 80%;
    max-height: 500px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .about-img {
    width: 100%;
    max-height: 550px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  
}




/* download */
.download-section {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
              url('images/ring.jpg') center/cover no-repeat;
  color: #fff;
  min-height : 60vh;
}

.download-section h2 {
  font-size: 2.5rem;
}

.download-section p {
  font-size: 1.1rem;
  text-align: justify;
}

.btn-gold {
  background: linear-gradient(45deg, var(--accent-gold), var(--gold-light));
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  color: var(--primary-dark);
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px var(--accent-gold);
}
/* features */
.features{
  min-height:100vh;
}

.feature-card {
  border-radius: 12px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px)! important;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3)!important;
}

.text-gold {
  color: #d4af37;
}

.border-gold {
  border: 1px solid #d4af37;
}


/* contact */

.contact-section {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/contact .jpg') center/cover no-repeat;
  position: relative;
  color: #fff;
  min-height: 100vh; 
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-form {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid var(--accent-gold);
}

.contact-form input,
.contact-form textarea {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid var(--gold-light);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted) ;
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: var(--accent-gold);
  box-shadow: none;
}
/* #contactForm button {
  display: block;
  margin: 0 auto;
  width:20%;
} */

.toast {
  position: fixed;
  top: 80px;
  left: 20px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
  color: white;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 9999;
}
.toast.success { background: #28a745; }
.toast.error { background:var(--gold-light) }
.toast.show { opacity: 1; }
/* services */
.services-section {
  background-color: black;
  min-height:100vh;
  background-color: #181818;
}

.service-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--accent-gold) !important;
  border-radius: 20px !important;
  padding: 20px !important;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1) !important;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease !important;
  overflow: hidden;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 217, 0, 0.39), transparent 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: 0;
}

.service-card:hover::before {
  transform: scale(1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.35), 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: #ffd700;
}

.service-card .card-body {
  position: relative;
  z-index: 1;
}

.service-title {
  font-size: 1.2rem !important;
  color: var(--accent-gold) !important;
}

.service-text {
  font-size: 0.95rem;
  line-height: 1.6;
}
.service-img {
  
  width:100%;
  
  
  border-radius: 20px;
}
.border-gold {
  border-color: var(--accent-gold) !important;
}

/* cta */
.subscribe-section{
  background-color: #111;
  min-height:60vh
}
.btn-gold {
  background-color: var(--accent-gold);
  color: black;
  font-weight: bold;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: #e6c200;
  color: white;
}

.subscribe-form .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  
}

.subscribe-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form{
  max-width: 500px;
}
.subscribe-form input:focus,
.subscribe-form textarea:focus {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: var(--accent-gold);
  box-shadow: none;
}

/* testimonial */
.testimonials{
    min-height: 100vh;
    text-align: center;
}
.text-gold {
  color: var(--accent-gold);
}

.test-card {
  width: 100%;
  max-width: 400px;
  height: 100%;
  min-height: 430px; 
  margin: auto;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius:30px !important;
}

.test-card img{
    height:140px;
    width:150px;
    border: 2px solid var(--accent-gold);
}
.test-card:hover {
  transform: translateY(-10px);
}
.swiper-pagination-bullet {
  background: linear-gradient(145deg, #d4af37, #ffd700) !important;
  opacity: 0.6;
}
/* phone */
.phone-slider-section {
  background-color: #000;
  position: relative;
  padding-bottom: 60px;
}

.phone-card {
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  padding: 10px;
  
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-card:hover {
  transform: scale(1.05);
}

.phone-card img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 12px;
}

.phoneSwiper .swiper-wrapper {
  transition-timing-function: ease-in-out !important;
}



/* Footer */
.footer {
  background: var(--primary-dark);
  border-top: 3px solid var(--accent-gold);
}

.footer h5 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-size: medium;
}

.footer p {
  color: var(--text-muted) !important;
  font-size: smaller;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: small;
  display: inline-block;
  max-width: 90%;
}

.footer-link:hover {
  color: var(--accent-gold);
}

.footer .social-icons a {
  color: var(--accent-gold);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer .social-icons a:hover {
  color: var(--gold-light);
}

.contact-info-icon {
  color: var(--accent-gold);
  font-size: 1rem;
}

.text-gold {
  color: var(--accent-gold);
}


/* Scrollbar  */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent-gold), var(--gold-light));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--gold-light), var(--accent-gold));
}


* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) #111;
}
@media (max-width: 991.98px) {
  .navbar-custom {
    padding: 8px 16px;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }
}
.text-gold {
  color:var(--accent-gold);
}


@media (max-width: 1024px) and (min-width: 768px) {
  .about-section,
  .features,
  .contact-section,
  .services-section,
  .testimonials {
    min-height: auto !important;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767.98px) {
  .about-section,
  .hero-section,
  .download-section,
  .subscribe-section ,
  .features,
  .contact-section,
  .services-section,
  .testimonials {
    min-height: auto !important;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .download-section,
  .subscribe-section  {
    height: auto !important;
    min-height: auto !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}


/* hero size*/

@media (min-width: 1200px) and  (max-width: 1399.98px){
  .hero-section {
    padding-top: 2rem; 
  }

  .hero-img-wrapper {
    top: 45px;
    text-align: center;
  }

  .hero-img {
    width: 100%;
    max-height: 80%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
}


@media (min-width: 992px) and  (max-width: 1199.98px)  {

  .hero-section {
    padding-top: 2rem; 
  }

  .hero-img-wrapper {
    top: 20px;
    text-align: center;
  }

  .hero-img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
}


@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-img-wrapper {
    top: -55px;
    text-align: center;
  }

  .hero-img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
}




@media (min-width: 360px) and (max-width: 767.98px) {
  .hero-img-wrapper {
    top: -85px;
    text-align: center;
  }

  .hero-img {
    width: 100%;
    height: 70%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
}


@media (width: 1024px) {
  html, body {
    overflow-x: hidden !important;
  }

  .hero-section {
    min-height: auto !important;
    display: block !important;
    padding-top: 0 !important;
    overflow-x: hidden !important;
    overflow-y: hidden; 
  }

  .hero-section .container {
    padding-top: 0 !important;
    margin: 0 auto;
  }

  .hero-section .col-lg-6 {
    padding-top: 0px !important;
    margin-top: 0 !important;
  }

  .hero-img-wrapper {
    top: 70px !important;
    overflow: hidden;
  }

  .hero-img {
    width: 100%;
    height: 75%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  .live-rate-bar {
    margin-top: 0 !important;
    padding-top: 10px;
  }
}
@media (max-width: 1245px) {
  .contact-section h2 {
    margin-bottom: 20px; 
  }
}


/* ===== Privacy Page ===== */


.privacy-card {
  position: relative; /* required for positioning */
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: #f5c542; /* your gold color */
}

.privacy-body {
  margin: 0;
  font-family: sans-serif;
  background: #1f2433;
}

.privacy-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.privacy-card {
  background: #2a2f3f;
  padding: 50px;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  color: #ccc;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.privacy-card h1 {
  text-align: center;
  font-size: 60px;
  color: #fff;
  margin-bottom: 30px;
}

.subtitle {
  font-size: 20px;
  margin-bottom: 20px;
}

.privacy-card p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.privacy-card h3 {
  margin-top: 30px;
  color: #fff;
}

/* End of the Privacy page CSS */