:root{
    --green: #1ec6b6;
    --light-grey: #f7f7f7;
   --dark: #000000;
    --trans: all 0.3s ease-in-out;
    
}

html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
}


.navbar{
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    padding: 1rem 0;
    z-index: 10000;
}
.navbar .container{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.site-brand{
    color: #fff;
    font-size: 2.4rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    opacity: 0.95;
}
.site-brand span{
    font-weight: 300;
}
#navbar-show-btn{
    background: transparent;
    color: #fff;
    font-size: 2rem;
    opacity: 0.9;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    border: none;
}
#navbar-show-btn:hover{
    opacity: 1;
}

/* navbar side menu */
#navbar-collapse{
    background: var(--dark) ;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    padding: 2rem;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    display: none;
}
.navbar-collapse-rmw{
    /* js related */
    -webkit-transform: translateX(0)!important;
        -ms-transform: translateX(0)!important;
            transform: translateX(0)!important;
            display: block !important;
}
#navbar-close-btn{
    background: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 0.2rem;
    font-size: 2rem;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    position: absolute;
    right: 1rem;
    top: 2rem;
    border: none;
}
#navbar-close-btn:hover{
    background-color: #fff;
    color:  linear-gradient(150px, #000000, #1ec6b6);;
}
.navbar-nav{
    margin-top: 5rem;
}
.nav-item{
    margin: 1.6rem 0;
}
.nav-links {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center-align the text */
    gap: 20px; /* Adds spacing between links */
    margin-top: 50px; /* Pushes links down */
}

.nav-links a {
    display: block;
    text-align: center;
    width: 100%;
    font-size: 18px; /* Adjusts font size */
    color: white; /* Makes text visible */
}

.nav-link:hover{
    opacity: 0.8;
}
/* Header Section */
header {
    min-height: 100vh;
    padding-top: 1rem;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url(../main-bg.jpg) center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

header::before {
    content: "";
    position: absolute;
    background-color: var(--green);
    height: 4px;
    top: 0;
    left: 0;
    width: 100%;
}

.header-title h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    animation: bounce-in-top 1.1s both;
}

.header-title p {
    margin: 3rem auto; 
    max-width: 700px;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.7;
   
}

.header-form {
    background: rgba(0, 0, 0, 0.5);
    padding: rem;
    border-radius: 0.5rem;
}

.header-form .btn {
    margin-top: 1rem;
    padding: 1rem 3rem; /* Increased size */
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem; /* Larger text */
    background: linear-gradient(135deg, #ffd700, #ffae00);
    color: #000;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header-form .btn:hover {
    background: linear-gradient(135deg, #ffae00, #ff8c00);
    transform: scale(1.1); /* Subtle zoom effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}




@-webkit-keyframes bounce-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes bounce-in-top {
    0% {
        -webkit-transform: translateY(-500px);
        transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        -webkit-transform: translateY(-65px);
        transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    72% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    81% {
        -webkit-transform: translateY(-28px);
        transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    95% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}


/* change background on scroll */
.navbar-cng {
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(48, 48, 48, 0.2);
    box-shadow: 0px 4px 5px 0px rgba(48, 48, 48, 0.2);
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

.navbar-cng .site-brand {
    color: var(--dark);
}

.navbar-cng .site-brand span {
    color: var(--green);
}

.navbar-cng #navbar-show-btn {
    color: var(--green);
}

/* Featured Row Styling */
.featured-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100;
    padding: 2rem;
}

.featured-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    width: 600px;
    height: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.5s ease;
}

.featured-item:hover img {
    transform: scale(1.05);
}

.featured-item-content {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    color: #fff;
    padding: 1rem;
    text-align: left;
    transition: transform 0.3s ease;
    transform: translateY(100%);
    font-size: 1rem;
}

.featured-item:hover .featured-item-content {
    transform: translateY(0);
}

.featured-item-content span {
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #f7931a, #ff9900);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 4px 15px rgba(247, 147, 26, 0.5);
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out, top 0.4s ease-in-out, left 0.4s ease-in-out;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 0%;
    height: 0%;
}

.btn:hover {
    background: #ff7b00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0px 6px 20px rgba(247, 147, 26, 0.8);
}


/* Crypto Icon Placeholder */
.featured-item-content span::before {
    content: "₿"; /* Placeholder for crypto icon */
    font-size: 1.8rem;
    color: #ffd700;
}

.featured-item-content .text ul {
    list-style: none;
    padding-left: 0;
}

.featured-item-content .text li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .featured-row {
        flex-direction: column;
        align-items: center;
    }

    .featured-item {
        width: 90%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .featured-item-content {
        padding: 0.8rem;
    }

    .featured-item-content span {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .featured-item {
        width: 100%;
    }

    .featured-item-content {
        font-size: 0.9rem;
    }
}


/* services */

/* General Styling */
#services {
    background: #121212; /* Dark background for contrast */
    padding: 60px 0;
    text-align: center;
}

#services .title-wrap {
    margin-bottom: 40px;
}

#services .sm-title {
    display: block;
    font-size: 1.2rem;
    color: #f2a900;
    margin-bottom: 10px;
}

#services .lg-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}

/* Services Row */
.services-row {
    display: flex;
   
    justify-content: left;
    gap: 25px; /* Spacing between cards */
}

/* Individual Service Card */
.services-item {
    background: rgba(255, 255, 255, 0.05); /* Subtle transparency */
    padding: 20px;
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.services-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.2);
}

/* Video Thumbnail */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    cursor: pointer;
    margin: auto;
}

.video-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: opacity 0.3s ease-in-out;
}

.video-wrapper:hover img {
    opacity: 0.8;
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.video-wrapper:hover .play-button {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Heading & Text */
.services-item h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin: 1rem 0;
    min-height: 50px;
}

.services-item p.text {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    min-height: 80px; /* Keeps height uniform */
}

/* YouTube Button */
.btn {
    display: inline-block;
    padding: 12px 20px;
    background: #f2a900;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
    width: 100%;
    max-width: 220px;
    text-align: center;
    margin-top: 10px;
    text-decoration: none;
}

.btn:hover {
    background: #ffcc00;
    transform: scale(1.05);
}

/* 🔧 Fully Responsive Adjustments */
@media (max-width: 992px) {
    .services-row {
        flex-direction: column;
        align-items: center;
    }

    .services-item {
        width: 90%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .services-item {
        width: 100%;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .services-item .btn {
        width: 100%;
    }

    .video-wrapper {
        max-width: 100%;
    }

    .services-item h3 {
        font-size: 1.6rem;
    }

    .services-item p.text {
        font-size: 0.9rem;
        min-height: auto; /* Adjusts dynamically */
    }
}



/* testimonials 
#testimonials {
    background-color: var(--light-grey);
}

.test-item {
    border: 2px solid var(--light-grey);
    padding: 2rem 1rem;
    position: relative;
    background-color: #fff;
    border-radius: 0.2rem;
    margin: 2rem 0 14rem 0;
}

.test-item::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
}

.test-item-info {
    position: absolute;
    top: 110%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
}

.test-item-info img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin: 1rem;
}

.test-item-info h3 {
    font-size: 1rem;
}*/

/* video */
.video-m{
    height: 500px;
    
    position: relative;
}
.video-m video{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}


/*CSS for Enhanced_footer*/

footer {
    background-color: black;
    color: #ece2e2;
    text-align: center;
    position: relative;
    padding: 2rem 0;
}

footer::before {
    content: "";
    position: absolute;
    background-color: var(--green);
    height: 4px;
    top: 0;
    left: 0;
    width: 100%;
}

.enhanced-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: start;
    text-align: left;
}

.footer-logo {
    width: 150px;
}

.footer-item ul {
    list-style: none;
    padding: 0;
}

.footer-item ul li {
    margin-bottom: 0.8rem;
}

.footer-item a {
    color: #e0e0e0;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-item a:hover {
    color: var(--green);
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-disclaimer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
}

.footer-disclaimer strong {
    display: block; /* Ensures DISCLAIMER appears on a separate line */
    font-weight: bold;
    margin-bottom: 10px; /* Adds space between DISCLAIMER and the text */
    
}

.footer-disclaimer p {
    margin: 0;
    max-width: 800px;
}

.optinx-link {
    color: white;
    text-decoration: none;
}

.optinx-link:hover {
    color: #ddd; /* Optional hover effect */
}

/* Global Reset */

  /* Default styles (applies to all screen sizes) */
.menu {
    display: none; /* Hide sidebar by default */
}

/* Mobile View - Sidebar Menu */
@media (max-width: 768px) {
    .menu {
        display: block;
        position: fixed;
        right: 0;
        top: 0;
        width: 250px;
        height: 100%;
        background-color: #17a2b8;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    .menu.open {
        transform: translateX(0);
    }
    .menu ul {
        padding: 20px;
        list-style: none;
    }
    .menu ul li {
        padding: 10px 0;
    }
    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 24px;
        cursor: pointer;
    }
}

/* Desktop View - Horizontal Menu */
@media (min-width: 769px) {
    .menu {
        display: flex;
        position: static;
        background: none;
        width: auto;
        height: auto;
        box-shadow: none;
        transform: none;
    }
    .menu ul {
        display: flex;
        gap: 20px;
    }
    .hamburger {
        display: none;
    }
}

 
  
  /* Navigation */

  
  
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
  }
  
  /* Responsive Navbar */
  @media (max-width: 768px) {
    nav {
      flex-direction: column;
      align-items: center;
    }
  
    nav ul {
      flex-direction: column;
    }
  
    nav ul li {
      margin: 10px 0;
    }
  }
  
  /* Responsive Grid Layout */
  .main-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
  }
  
  .card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  
  /* Ensuring Full Responsiveness */
 
  
/* ### Course Page ### */
header.header-sm {
    min-height: 60vh;
}

#access-benefits {
    padding: 4rem 0;
    background-color: #f9fafb;
    text-align: center;
}

#access-benefits .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

#access-benefits h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.perk-item {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    transform-style: preserve-3d;
}

.perk-item:hover {
    transform: rotateY(10deg) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.perk-item .icon {
    font-size: 2rem;
    color: #6c63ff;
    margin-bottom: 1rem;
}

.perk-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.perk-item p {
    font-size: 0.95rem;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .perks-grid {
        grid-template-columns: 1fr;
    }
}

#video-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

#video-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.video-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    perspective: 1000px;
}

.video-category {
    flex: 1;
    min-width: 350px;
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    transform-style: preserve-3d;
}

.video-category:hover {
    transform: rotateX(10deg) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.video-category h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.video-category p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.video-category ul {
    list-style: none;
    padding: 0;
}

.video-category li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.video-category li:hover {
    transform: translateX(10px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-grid {
        flex-direction: column;
    }
}

/* Mastery Button Styling */
.btn-container {
    text-align: center;
    margin-top: 50px;
}

.join-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #ff9800;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease-in-out, transform 0.2s ease;
}

.join-btn:hover {
    background: #e68900;
    transform: translateY(-3px) scale(1.05);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-item {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 20px 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question.active {
    color: #007BFF;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
    padding: 0 10px 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container h2 {
        font-size: 1.5rem;
    }
    .faq-question {
        font-size: 1rem;
    }
}


/* ### Exchange PAGE ### */
/* Exchange */
#exchange {
    background-color: var(--light-grey);
    padding: 4rem 0;
}

.exchange-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.exchange-item {
    background-color: #fff;
    padding: 1.5rem;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.exchange-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.exchange-item img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.exchange-item:hover img {
    transform: scale(1.1) rotate(3deg);
}

.exchange-item .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--green);
    color: #000000;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.exchange-item .btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .exchange-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .exchange-row {
        grid-template-columns: 1fr;
    }
}


 /* Main Box Styling */
 .benefits-box {
    background: var(--dark);
    color: #ffffff;
    padding: 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    position: relative;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}

/* Hover Effect */
.benefits-box:hover {
    border-color: #ffcc00;
    box-shadow: 0px 10px 25px rgba(255, 204, 0, 0.5);
    transform: scale(1.02);
}

.lg-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffcc00;
    text-transform: uppercase;
}

.animated-text {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.5s forwards;
}

.highlight {
    font-size: 20px;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 0px 0px 10px rgba(255, 204, 0, 0.6);
    animation: pulse 1.5s infinite;
}

.animated-text.highlight {
    font-size: 20px;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 0px 0px 10px rgba(255, 204, 0, 0.6);
    animation: pulse 1.5s infinite;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    background: rgba(255, 204, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.animated-text.highlight:hover {
    background: rgba(255, 204, 0, 0.2);
    transform: scale(1.05);
    text-shadow: 0px 0px 15px rgba(255, 204, 0, 0.9);
}

 /* Hover Effect - Floating Effect */
 .benefits-box:hover {
    border-color: #ffcc00;
    box-shadow: 0px 10px 25px rgba(255, 204, 0, 0.5);
    transform: translateY(-8px);
 }
/* Animation: Pulse Effect */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}



/* ### Exchange End ### */




/* ### ABOUT PAGE ### */
/* about */
.about-right {
    text-align: left;
    color: #333;
}

.about-right .text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.about-right h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #222;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-list li {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.about-list li::before {
    content: "✔️";
    margin-right: 10px;
    color: #28a745;
    font-size: 1.4rem;
}

.about .container ,.title-wrap .lg-title{
    color: #000;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-row {
        flex-direction: column;
        text-align: center;
    }

    .about-right {
        margin-top: 2rem;
    }

    .about-right h2 {
        font-size: 1.8rem;
    }

    .about-list li {
        justify-content: center;
    }
}

/* Facts Section Styling */
#facts {
     background: linear-gradient(300deg, #000000, #1ec6b6);
    color: white;
    text-align: center;
    padding: 50px 20px;
    overflow: hidden;
}

/* Title Styling */
.title-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.sm-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #facc15;
    font-weight: 600;
}

/* Facts Container */
.facts-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: auto;
}

/* Individual Fact Box */
.facts-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Icons */
.facts-item span {
    font-size: 50px;
    margin-bottom: 10px;
    color: #facc15;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Number and Text */
.facts-info strong {
    font-size: 1.8rem;
    font-weight: bold;
}

.facts-info p {
    font-size: 1rem;
    text-transform: uppercase;
}

/* 3D Hover Animation */
.facts-item:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 10px 30px rgba(5, 5, 5, 0.5);
}

.facts-item:hover span {
    transform: rotateY(360deg);
    color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .facts-container {
        gap: 20px;
    }

    .facts-item {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .facts-container {
        flex-direction: column;
        align-items: center;
    }

    .facts-item {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .facts-item {
        width: 90%;
        height: 200px;
    }
}



/* ### CONTACT PAGE ### */
/* Contact Section Styling */
#contact {
    background: linear-gradient(300deg, #000000, #1ec6b6);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

/* Title Styling */
.title-wrap {
    margin-bottom: 40px;
}

.sm-title {
    font-size: 1.2rem;
    color: #ffcc00;
    font-weight: bold;
}

.lg-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

/* Contact Row */
.contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
}

/* Left Section - Contact Form */
.contact-left {
    flex: 1;
    max-width: 400px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* 3D Hover Effect */
.contact-form:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgb(255, 255, 255);
}

/* Input Fields */
.input-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.911);
    color: rgb(15, 11, 11);
    outline: none;
    transition: box-shadow 0.3s ease-in-out;
}

/* Input Focus Effect */
.form-control:focus {
    box-shadow: 0 0 10px rgba(100, 85, 85, 0.7);
}

/* Submit Button */
.btn- {
    background: #000000;
    color: rgb(255, 255, 255);
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.btn-:hover {
    transform: translateY(-3px);
}

/* Right Section - Contact Details */
.contact-right {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(66, 48, 48, 0);
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.contact-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.986);
}

/* Contact Icons */
.contact-icon {
    font-size: 2rem;
    color: #ffffff;
    transition: transform 0.3s ease-in-out;
}

.contact-item:hover .contact-icon {
    transform: rotateY(360deg);
}

/* Contact Links */
.contact-item a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.contact-item a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 20px;
    }
}