
/* Global Styles */

@import url('https://fonts.googleapis.com/css2?family=Cookie&display=swap') ;
@import url("https://fonts.googleapis.com/css2?family=Cookie&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap") ;
@import url("https://fonts.googleapis.com/css2?family=Cookie&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap") ;
@import url("https://fonts.googleapis.com/css2?family=Cookie&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Tektur:wght@400..900&display=swap") ;
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cookie&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Tektur:wght@400..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap") ;
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cookie&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Teko:wght@300..700&family=Tektur:wght@400..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap") ;
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cookie&family=Lobster&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Teko:wght@300..700&family=Tektur:wght@400..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap") ;
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cookie&family=Lobster&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Rochester&family=Teko:wght@300..700&family=Tektur:wght@400..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap") ;
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cookie&family=Lobster&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Rochester&family=Teko:wght@300..700&family=Tektur:wght@400..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap") ;



*{ 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #000000;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: rgba(0, 0, 0, 0.867);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header.hidden {
  top: -100px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-glitter-wrapper {
    position: relative;
    width: 12vw;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
  }
  
  /* Gold glitter background */
  .glitter-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('goldglitterbg.jpg'); /* Replace with any gold glitter image or GIF */
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 0;
  }
  
  /* Logo sits above glitter */
  .logo-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
  }

  .image-fill-text1 {
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    background-image: url("champagne.jpg");
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
  }

  
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4CAF50;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 1px solid #333;
    color: #ffffff;
}

.btn-primary {
    background-color: #4CAF50;
    color: rgb(255, 255, 255);
    border: 1px solid #4CAF50;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* About Section */
.about-section {
    text-align: center;
    padding: 60px ;
}

.about-section h1 {
    color: white;
    font-size: 42px;
    margin-top: 10px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
    font-family: 'Montserrat';
}

.about-section p {
    color: white;
    max-width: 1200px;
    margin: 0 auto 40px;
    margin-top: -30px;
    font-size: 24px;
    animation: fadeIn 1.5s ease;
    font-family: 'Ubuntu', sans-serif;
}

.about-image {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    animation: fadeInUp 1s ease, float 4s ease-in-out infinite;
}


/* Mission Section */
.mission-section {
    text-align: center;
    margin-top: -40px;
    padding: 40px 0;
    background-color: #0000002f;
}

.mission-section h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
    font-family: 'Montserrat';
}

.mission-section p {
    color: white;
    max-width: 800px;
    margin: 0 auto;
    font-size: 24px;
    animation: fadeIn 1.5s ease;
    font-family: 'ubuntu', sans-serif;
}

/* Journey Section */
.journey-section {
    padding: 60px 0;
    margin-top: -50px;
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #0000004d;
}

.journey-content {
    flex: 1;
    animation: fadeInLeft 1.5s ease;
}

.journey-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.journey-image {
    flex: 1;
    text-align: center;
    animation: fadeInRight 1.5s ease, bounce 5s ease-in-out infinite;
}

.journey-image img {
    max-width: 80%;
    border-radius: 8px;
    /* width: 1500px; */
}

/* Footer */
footer.foot {
    background-color:#5a5959d5;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    padding: 40px 40px 20px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-top {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #faf9f5;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ffd700;
  }
  
  .payment-methods {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .payment-methods p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #cccccc;
  }
  
  .payment-methods img {
    width: 50px;
    margin: 5px 10px;
    vertical-align: middle;
  }
  
  hr {
    border: none;
    border-top: 1px solid #444;
    margin: 30px 0;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #e3e1e1;
  }
  

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animation for Team Section */
.team-grid .team-member:nth-child(1) { animation-delay: 0.1s; }
.team-grid .team-member:nth-child(2) { animation-delay: 0.3s; }
.team-grid .team-member:nth-child(3) { animation-delay: 0.5s; }
.team-grid .team-member:nth-child(4) { animation-delay: 0.7s; }
.team-grid .team-member:nth-child(5) { animation-delay: 0.9s; }
.team-grid .team-member:nth-child(6) { animation-delay: 1.1s; }
.team-grid .team-member:nth-child(7) { animation-delay: 1.3s; }
.team-grid .team-member:nth-child(8) { animation-delay: 1.5s; }

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .journey-section, .join-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .join-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
/* Footer */
footer.foot {
    background-color:#5a5959;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    padding: 40px 40px 20px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-top {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #faf9f5;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ffd700;
  }
  
  .payment-methods {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .payment-methods p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #cccccc;
  }
  
  .payment-methods img {
    width: 50px;
    margin: 5px 10px;
    vertical-align: middle;
  }
  
  hr {
    border: none;
    border-top: 1px solid #444;
    margin: 30px 0;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #e3e1e1;
  }
  
      
      
      
      
}

/* Watermark background image for about section -Top */

.about-section {
    position: relative;
    padding: 4rem 2rem;
    background-color: #fff;
    overflow: hidden;
    z-index: 1;
  }
  
  .container {
    position: relative;
    z-index: 2; /* Make sure text stays above the image */
    color: #222;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Watermark Image */
  .watermark-container {
    position: absolute;
    top: 0%;
    left: 46%;
    transform: translate(-50%, -50%);
    opacity: 0.09;
    z-index: 0;
    pointer-events: none;
    width: 80%;
    max-width: 700px;
  }
  
  .watermark-container img.watermark {
    width: 100%;
    height: auto;
    display: block;
  }
  /* Watermark background image for about section -Bottom */

.about-section {
    position: relative;
    padding: 4rem 2rem;
    background-color: #fff;
    overflow: hidden;
    z-index: 1;
  }
  
  .container {
    position: relative;
    z-index: 2; /* Make sure text stays above the image */
    color: #222;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Watermark Image */
  .watermark-container1 {
    position: absolute;
    top: 60%;
    left: 10%;
    transform: translate(-50%, -50%);
    opacity: 0.09;
    z-index: 0;
    pointer-events: none;
    width: 80%;
    max-width: 700px;
  }
  
  .watermark-container img.watermark {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* CEO image */
  .about-image {
    text-align: center;
    margin-top: 2rem;
  }
  
  .about-image img {
    margin-top: -20px;
    width: 250px;     /* You can change this to fit your layout */
    height: auto;     /* Maintains aspect ratio */
    border-radius: 14px;  /* Optional: rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Optional: soft shadow */
  }
  
  .about-image h2 {
    margin-top: 0rem;
    font-size: 1.5rem;
    color: #333;
    font-family: 'montserrat';
  }
  
  /* Get Started Button functions */

  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #0056b3;
  }
  