
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    height: auto !important;
    overflow-y: scroll !important;

}




a {
    text-decoration: none; /* Removes the underline */
}





/* Scrolling NavBar
/* Navbar with light background (on scroll) -White background on scroll  
.navbar-scrolled {
  background-color: white !important; 
  
}

.navbar-scrolled .nav-link {
  color: black !important; 
}*/

/* After scrolling 
.navbar-scrolled .logo-white {
  display: none;
}
.navbar-scrolled .logo-dark {
  display: inline-block;
}

*/







/* Footer Styling */
.footer {
    background-color: #333; /* Dark background for the footer */
    color: rgb(255, 255, 255); /* White text color */
    text-align: center; /* Center the text */
    padding: 20px 0; /* Padding for top and bottom */
    font-size: 14px; /* Font size for the footer text */
}

.footer a {
    color: #ffffff; /* Orange color for the link */
    text-decoration: none; /* Remove underline */
}

.footer a:hover {
    text-decoration: underline; /* Underline the link on hover */
}












/* Hero Section */
.hero-section {
    background-image: url("/static/images/main-images/hero-img.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    font-family: 'Didact Gothic', sans-serif;
    padding: 0 0;
    height: 700px;
    display: flex;
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content */
    text-align: center; /* Center text inside the section */
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    bottom: 0;
      height: 700px;
    background: rgba(0, 0, 0, 0.642); /* Adjust opacity here */
    z-index: 1;
}

.hero-section > * {
    z-index: 2;
}


.hero-section h1 {
    font-size: 60px;
    font-weight: bold;
}

.hero-section p {
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 1.2rem;
}












/* Styling for the crypto section */
.crypto-section {
    background-color: #ffffff; /* Dark blue background */
    color: #42488D; /* White text color */
    padding: 20px 20px 20px 20px;
    text-align: center;
    margin-top: 20px; /* Space from other sections */
    margin-bottom: 20px; /* Space between title and paragraph */
}

.crypto-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px; /* Space between title and paragraph */
    letter-spacing: 1px; /* Slight spacing between letters */
}

.crypto-description {
    font-size: 18px;
    margin-bottom: 30px; /* Space between paragraph and button */
    color: #42488D; /* Lighter text color */
}

.crypto-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #A6CE39; /* Orange button color */
    border: 1px solid #A6CE39;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none; /* Remove underline */
    border-radius: 15px; /* Rounded corners for the button */
    transition: background-color 0.3s ease;
}

.crypto-button:hover {
    background-color: #42488D; /* Darker orange on hover */
    border: 1px solid #000000;
}

/*


.btn-group{
  background-color: #2ABBAF; 
  border: 1px solid #2ABBAF;
  color: white !important;
  font-size: 18px;
  font-weight: bold;
}

.btn-group:hover {
  background-color: #C85491; 
  border: 1px solid #C85491;
color: white !important;
  font-size: 18px;
  font-weight: bold;
}
*/








/* Team Section */
.chairman-message {
margin-bottom: 50px;
    background-color: #fff;
    text-align: left;
}

/* .chairman-message .container {
    max-width: 1200px;
    margin: 0 auto;
} */

.chairman-message h2 {
    font-size: 28px;
    /* margin-bottom: 20px; */
    color: #42488D;

}

.chairman-message p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    /* margin-bottom: 40px; */
    /* text-align: justify;
    text-align-last: justify; */
}
  /* 
.chairman-message .row {
  display: flex;
    justify-content: space-between; 
    align-items: center;
}*/

.chairman-message .col-lg-6 {
    flex: 1;
    padding: 0 20px;
}

.chairman-message img {
    width: 50%;
    height: auto;
    /* aspect-ratio: 9 / 16; Ensure image maintains a 9:16 ratio */
    object-fit: cover; /* Ensures the image covers the div without distorting */
     margin-left: 20%;
}



.chairman-message h3 {
    padding: 60px 0 0 0;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px; /* Space between title and paragraph */
    letter-spacing: 1px; /* Slight spacing between letters */
    color: #42488D; /* White text color */
    text-align: center;
}

.chairman-message .position {
    font-size: 20px;
    color: #777;
    /* margin-bottom: 20px; */
}

.chairman-message .description {
    font-size: 16px;
    color: #42488D;
    line-height: 1.6;
}




















.counter-section {
    display: flex;
    flex-direction: column; /* Stack title and counters vertically */
    align-items: center; /* Center the title and counters horizontally */
    justify-content: center; /* Center content vertically */
    font-family: Arial, sans-serif;
    text-align: center; /* Center the text inside each counter column */
    background-image: url('/static/images/main-images/counter-img.png'); /* Add the background image */
    background-size: cover; /* Ensure the image covers the section */
    background-position: center; /* Center the image */
    height: 300px; /* Set the height to 600px */
}


.counter-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px; /* Increased space between title and counter */
    color: #fff; /* Adjust color to contrast against background */
}

.counter-columns {
    display: flex; /* Keep the counters in a horizontal row */
    justify-content: space-around; /* Evenly distribute the columns */
    width: 70%; /* Ensure the columns take full width */
}

.counter-column {
    text-align: center;
    flex: 1; /* Make each column take equal space */
}

.number {
    font-size: 40px;
    color: #ffffff;
}

.text {
    font-size: 16px;
    color: #ffffff;
}





















/* Container for the section */
.our-services {
    padding: 50px 0;
    background-color: #f8f8f8;
    text-align: center;
    padding-left: 50px; /* Add margin on the left */
    padding-right: 50px; /* Add margin on the right */
}

/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px; /* Space between title and paragraph */
    letter-spacing: 1px; /* Slight spacing between letters */
    color: #42488D; /* White text color */
}

/* Wrapper for the rows */
.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

 .our-services .numbers {
    font-size: 18px;
    margin-bottom: 5px;
  text-align: left; 
}

/* Each row of services */
.services-row {
    display: flex;
    justify-content: center;
    gap: 0px;
}

/* Individual service items */
.service-item {
    position: relative;
    width: 30%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}



/* Overlay that appears on hover */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    justify-content: left;
    align-items: center;
    transition: opacity 0.3s ease;
}

.service-item:hover .overlay {
    opacity: 1;
}

/* "SEE MORE" link as small text */
.see-more {
    color: white;
    font-size: 14px; /* Smaller text size */
    font-weight: normal;
    text-decoration: none;
    padding: 5px 10px;
    background-color: transparent;
    border-radius: 5px;
    opacity: 0;
    left: 10px;
    transition: opacity 0.3s ease;
    position: absolute;
    bottom: 10px; /* Place it below the service title */
}

.service-item:hover .see-more {
    opacity: 1;
}

/* Title for each service */
.service-title {
    position: absolute;
    bottom: 40px;
    left: 20px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    z-index: 10;
}












/* Styling for the exclusive resources section */
.exclusive-resources {
    background:  #000000;
    color: #42488D; /* Text color */
    text-align: center; /* Center the content */
    padding: 50px 20px; /* Add padding around the section */
    margin: 0px 0; /* Add margin to separate from other sections */
}

.exclusive-title {
    text-align: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.exclusive-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #A6CE39; /* Orange button color */
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners for the button */
    transition: background-color 0.3s ease;
}

.exclusive-button:hover {
    background-color: #C85491; /* Darker orange on hoverrrrr */
}






.contact-section {
  background-image: url('/static/images/main-images/counter-img.png'); 
  background-size: cover;
  background-position: center;
  height: 400px;
  margin-top: 50px;
  padding: 50px;
  text-align: center;
  
}

.contact-container {
  display: flex;
  justify-content: space-between; /* Center the contact items horizontally */
  align-items: center; /* Center the contact items vertically */
  max-width: 70%; /* Allow the container to take full width */
  margin: 0 auto;
  padding: 50px;
  text-align: center;
}

.contact-item {
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center-align the icon and text */
  margin: 0 20px; /* Add space between items */
}

.contact-item i {
  font-size: 30px;
  margin-bottom: 10px; /* Space between the icon and text */
}

.contact-item a {
  color: white;
  text-decoration: none;
}

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

.contact-item p {
  font-size: 16px;
  margin: 5px 0;
}

.contact-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: center;
  /* margin: 0 250px; */
  
}




































.wallet-slider-container {
    background: #42488D;
    padding: 60px 0;
    overflow: hidden;
}

.wallet-slider-title {
    text-align: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.wallet-slider {
    display: flex;
    gap: 30px;
    align-items: center;
    height: 150px;
    width: max-content; /* Allow the content to flow outside of the container */
    animation: slide 20s linear infinite; /* Reduced duration to 10 seconds for faster animation */
}


/* Apply to individual items (wallet icons) to ensure no shrinkage */
.wallet-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 100px 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.wallet-icon:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.wallet-icon::before {
    content: '';
    position: absolute;
    top: 10;
    left: -100%;
    width: 100%;
    /* height: 100%; */
    min-height: 100vh;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.wallet-icon:hover::before {
    left: 100%;
    transition: left 0.5s;
}

.wallet-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}


/* Keyframes for continuous sliding effect */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Moves the content completely out of view */
    }
}



















/* ========================================
   MOBILE RESPONSIVE STYLES
   Add this to the END of your main CSS file
   ======================================== */

/* Tablets and smaller (max-width: 768px) */
@media (max-width: 768px) {
    
    /* Header */
    .header_class {
        top: 10px !important;
        padding: 10px !important;
    }
    
    .header_class img {
        width: 70% !important;
        padding-top: 50px !important;
    }
    
    ul.menu li {
        display: block !important;
        margin-right: 0 !important;
        margin-bottom: 10px !important;
        background-color: #000000 !important;
        padding: 10px !important;
    }
    
    ul.menu {
        background-color: #000000 !important;
        padding: 15px !important;
        margin: 0 !important;
    }
    
    .nav-link {
        padding: 10px !important;
        font-size: 14px !important;
    }
    
    /* Hero Section */
    .hero-section {
        height: 500px !important;
        padding: 20px !important;
    }
    
    .hero-section::before {
        height: 500px !important;
    }
    
    .hero-section h1 {
        font-size: 36px !important;
    }
    
    .hero-section p {
        font-size: 1rem !important;
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }
    
    /* Crypto Section */
    .crypto-section {
        padding: 30px 15px !important;
    }
    
    .crypto-title {
        font-size: 28px !important;
    }
    
    .crypto-description {
        font-size: 16px !important;
    }
    
    .crypto-button {
        padding: 12px 25px !important;
        font-size: 16px !important;
    }
    
    /* Chairman Message */
    .chairman-message h3 {
        font-size: 28px !important;
        padding: 30px 0 0 0 !important;
        margin-bottom: 20px !important;
    }
    
    .chairman-message h2 {
        font-size: 24px !important;
    }
    
    .chairman-message p {
        font-size: 14px !important;
    }
    
    .chairman-message .row {
        display: flex !important;
        flex-direction: column-reverse !important;
    }
    
    .chairman-message .col-lg-6 {
        padding: 0 10px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }
    
    .chairman-message img {
        width: 100% !important;
        margin-left: 0 !important;
    }
    
    /* Meet CEO Section */
    .meet-ceo-section {
        padding: 40px 15px !important;
    }
    
    .meet-ceo-section h2 {
        font-size: 28px !important;
    }
    
    .ceo-container {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .ceo-item {
        width: 90% !important;
        margin-bottom: 30px !important;
    }
    
    .ceo-item img {
        width: 100% !important;
    }
    
    .ceo-info h3 {
        font-size: 20px !important;
    }
    
    .ceo-info p {
        font-size: 16px !important;
    }
    
    /* Counter Section */
    .counter-section {
        margin-top: 0 px !important;
        height: auto !important;
        padding: 40px 20px !important;
    }
    
    .counter-title {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }
    
    .counter-columns {
        flex-direction: column !important;
        width: 100% !important;
        gap: 20px !important;
    }
    
    .number {
        font-size: 32px !important;
    }
    
    .text {
        font-size: 14px !important;
    }
    
    /* Our Services */
    .our-services {
        padding: 30px 15px !important;
    }
    
    .section-title {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }
    
    .services-row {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .service-item {
        width: 90% !important;
        height: 350px !important;
        margin-bottom: 20px !important;
    }
    
    .service-title {
        font-size: 16px !important;
        bottom: 30px !important;
        left: 15px !important;
    }
    
    /* Exclusive Resources */
    .exclusive-resources {
        padding: 40px 15px !important;
    }
    
    .exclusive-title {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }
    
    .exclusive-button {
        padding: 12px 25px !important;
        font-size: 16px !important;
    }
    
    /* Contact Section */
    .contact-section {
        height: auto !important;
        padding: 40px 20px !important;
           margin: 0 !important;
  
    }
    
    .contact-container {
        flex-direction: column !important;
        max-width: 100% !important;
        padding: 20px !important;
    }
    
    .contact-item {
        margin: 15px 0 !important;
    }
    
    .contact-title {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }
    
    /* Wallet Slider */
    .wallet-slider-container {
        padding: 40px 0 !important;
    }
    
    .wallet-slider-title {
        font-size: 28px !important;
        margin-bottom: 30px !important;
        padding: 0 15px !important;
    }
    
    .wallet-icon {
        width: 80px !important;
        height: 80px !important;
    }
    
    .wallet-icon img {
        width: 100px !important;
        height: 100px !important;
    }
}

/* Mobile phones (max-width: 480px) */
@media (max-width: 480px) {

      ul.menu li {

        padding: 0px !important;
    }
    
    /* Header */
    .header_class img {
        width: 90% !important;
    }
    
    /* Hero Section */
    .hero-section {
        height: 400px !important;
    }
    
    .hero-section::before {
        height: 400px !important;
    }
    
    .hero-section h1 {
        font-size: 28px !important;
    }
    
    .hero-section p {
        font-size: 0.9rem !important;
    }
    
    /* Crypto Section */
    .crypto-title {
        font-size: 24px !important;
    }
    
    .crypto-description {
        font-size: 14px !important;
    }
    
    .crypto-button {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
    
    /* Chairman Message */

     .chairman-message {
        margin-bottom: 0px !important;
    }
    


    .chairman-message h3 {
        font-size: 24px !important;
    }
    
    .chairman-message h2 {
        font-size: 20px !important;
    }
    
    .chairman-message img {
        width: 100% !important;
        margin-left: 0 !important;
    }
    
    /* Meet CEO Section */
    .meet-ceo-section h2 {
        font-size: 24px !important;
    }
    
    .ceo-item {
        width: 100% !important;
    }
    
    /* Counter Section */
    .counter-title {
        font-size: 20px !important;
    }
    
    .number {
        font-size: 28px !important;
    }
    
    /* Our Services */
    .section-title {
        font-size: 24px !important;
    }
    
    .service-item {
        width: 100% !important;
        height: 300px !important;
    }
    
    /* Exclusive Resources */
    .exclusive-title {
        font-size: 24px !important;
    }
    
    /* Contact Section */


    .contact-title {
        font-size: 24px !important;
    }
    
    .contact-item i {
        font-size: 24px !important;
    }
    
    .contact-item p {
        font-size: 14px !important;
    }
    
    /* Wallet Slider */
    .wallet-slider-title {
        font-size: 24px !important;
    }
    
    .wallet-icon {
        width: 70px !important;
        height: 70px !important;
    }
    
    .wallet-icon img {
        width: 80px !important;
        height: 80px !important;
    }
    
    /* Footer */
    .footer {
        font-size: 12px !important;
        padding: 15px 10px !important;
    }
}

/* Extra small devices (max-width: 360px) */
@media (max-width: 360px) {
    
    .hero-section h1 {
        font-size: 24px !important;
    }
    
    .crypto-title,
    .section-title,
    .exclusive-title,
    .contact-title,
    .wallet-slider-title {
        font-size: 20px !important;
    }
    
    .service-item {
        height: 250px !important;
    }













}