@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap');
/* DEFAULTS */
nav,header,footer {
    display: block;
}
body {
    line-height: 1;
    margin:0;
       font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

}
.row{
    display:flex;
    width:100%;

}
.row::after{
    display:block;
    clear:both;
    content:"";
}
*{
    box-sizing:border-box;
    margin: 0;
    padding: 0;
}
[class*="col-"]
{
    border: none;
    padding: 15px;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center; /* aligns vertically */
    justify-content: space-between;
    height: 50px; /* Set a fixed smaller height */
     padding: 0px 10px; /* optional spacing */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
     z-index: 1000; /* keep it on top of everything else */
     background-color: rgba(51, 51, 51, 0.8);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px); /* Safari support */
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
nav {
    width: 100%;
    margin:0;
    height: 40px;
    
}
ul.nav_links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0 10px;
}

ul.nav_links li {
list-style: none;
margin-left: 10px;
}

ul.nav_links li a {
    font-size: 15px;
    text-decoration: none;
    padding: 12px 12px;
  
    color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    height: 100%;
}
ul.nav_links li a:hover {
    background-color: transparent; /* no background on hover */
    color: #ffffff; /* brighter white */
}
.logo {
    cursor: pointer;
    margin-left: 10px;
    height: 65px;
    width: auto;
    border-radius: 5px;
   
}
ul.nav_links li.dropdownIcon {
    display: none;
}
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.6); 
}

.close-btn {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

/*################## PRODUCT ##########################*/
.banner {
    color: black;
    text-align: center;
    padding: 200px 20px;
    margin-bottom: 10px;
}
.banner.full-banner.banner2
{
    font-size: 30px;

}

/* Full width banners */
.full-banner {
    width: 100%;
}

/* Example background colors (customize as needed) */
.banner1 {
    background: url("images/banner1.svg") no-repeat center center / cover;
    height: 75vh; /* full screen height */
   
}

.banner3 {
    background: linear-gradient(to bottom, #a8d5a2 0%, #cceacc 60%, #f0fff0 100%);
    height: 75vh;
    padding-top: 90px; /* Creates space above header */
    position: relative;
}
.banner3 h2 {
    font-size: 40px;
    margin-bottom: 70px;
    text-align: center;
}
.testimonial-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
    height: 400px;
}
.slides-container {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
    padding: 0;
    margin: 0;

}
.slide {
    flex: 0 0 33.3333%; /* Show 3 slides per view */
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
}
.slide img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}

/* Container for bottom-left arrow buttons */
.arrow-controls {
    position: absolute;
    bottom: 20px;
    right: 80px;
    display: flex;
    gap: 20px;
    z-index: 3;
}

/* Style for small circular arrows */
.circle-arrow {
    background-color: #eee;
    color: #333;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.circle-arrow:hover {
    background-color: #ccc;
}

/* Split banner layout */
.split-banner {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0px 10px;
    flex-wrap: wrap;
    background-color: #fff;
}

/* Half of a split banner */
.split {
    flex: 1 1 45%;
    height: 500px;         /* set a fixed height */
    min-width: 250px;      /* optional minimum width */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    padding: 20px;

}

/* Different sides of banners */
.split.left {
    background-image: url('images/money.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
 
}
.split.right h2 {
    margin-bottom: 15px; /* or 20px, adjust as you like */
}
.split.right {
    background: linear-gradient(to bottom, #f5f5f5, #ffffff);
    cursor: pointer;
    display: flex; /* NEW */
    flex-direction: column; /* NEW */
    align-items: center; /* NEW */
    justify-content: center; /* NEW */
}
.split.right p {
    font-weight: normal;
        font-size: 25px; 
}
.LoginModal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 400px; /* Normal width for modal */
    height: auto; /* Let it adjust based on content */
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* This centers the modal */
    
}
.modal input,
.modal textarea,
.modal select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
.trade-button {
    background-color: #007BFF; /* Bootstrap-style blue */
    color: white;
    padding: 12px 24px;
    font-size: 45px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px; /* 👈 This adds space below the button */
}
.trade-button:hover {
    background-color: #0056b3; /* Darker shade of blue on hover */
}
.modal button[type="submit"]
{
    width: 100%;
    padding: 12px 0;
    font-size: 18px;
    font-weight: bold;
    background-color: #0071e3; /* Apple-like blue */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.modal button[type="submit"]:hover {
    background-color: #005bb5;
    transform: scale(1.02);
}
.footer-bar {
    background-color: #2e2e2e;
    color: white;
    padding: 15px 20px 5px 20px; /* top right bottom left */
    text-align: center;
    margin-top: 15px;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 550px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-column h3 {
    margin-bottom: 5px;
    font-size: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin: 8px 0;
}

.footer-content a {
    color: white;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}
/*################## ABOUT ##########################*/
.about-page
    {
        padding-top: 30px;
    }
.about-page .navbar {
    background-color: #f5f5f5;
}
.about-page .nav_links li a {
    color: #333; /* Darker text for white background */
}
.about-page .nav_links li a:hover {
    color: #000; /* Keep it black on hover */
    background-color: transparent; /* No hover background */
}
.containerAbout {
    text-align: center; /* Pushes the entire container to the right */
    background-color: #fefefe;
}
article p {
    max-width: 600px;
    margin: 30px auto;  /* This centers the block horizontally */
    line-height: 1.3;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    font-size: 18px;
    text-align: center; /* This centers the text inside the box */
}
.header1 {
    margin-top: 80px; 
    font-size: 48px;
}

div.aboutIcon  img{
    display: block;
    margin: 50px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto
}
.icon-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.icon-link img {
    width: 50px; /* adjust this size */
    height: 50px; /* keep square or remove for auto height */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.icon-link img:hover {
    transform: scale(1.1);
}

/*################## Contact ##########################*/
.ContactHeader {
    margin-top: 100px; /* adjust this value to move it further down */
    text-align: center; /* optional: centers the heading */
    font-size: 36px; 
}
.containerContact {
    max-width: 900px;
    width: 90%;
    margin: 90px auto;
    padding: 20px;
}
.containerContact form {
    padding: 0 20px;
    width: 100%;
}
.containerContact input, 
.containerContact textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    resize: vertical;
}
.submit-row {
    text-align: center;
    margin-top: 20px;
    padding: 0px
}

.submit-row button {
    padding: 12px 24px;
    font-size: 16px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
   
}

.submit-row button:hover {
    background-color: #444;
}

/*################## MOBILE ##########################*/
@media screen and (max-width: 680px)
{
    .about-page .nav_links.responsive {
        background-color: #f5f5f5; /* match light background */
    }

    .about-page .nav_links.responsive li a {
        color: #333 !important; /* force visible text on light background */
    }

    .row {
        flex-direction: column;
        text-align: center;
        
    }
    ul.nav_links li {
        display : none;
    }
    ul.nav_links li.dropdownIcon {
        display: block;
    position: absolute;
   
    }

    nav {
        width: 100%;
        height: auto; /* let it grow with content */
        flex-direction: column;
        align-items: flex-start;
        height: auto; /* allow it to grow */
        position: relative;
        width: 100%;
        height: auto; /* let it grow with content */
      }
   
    ul.nav_links {
        flex-direction: row;
    background-color: #333; /* your original grey */
    }
   
    ul.nav_links.responsive li.dropdownIcon {
        position: absolute;
        top: 0;
        right: 0;
    }

    ul.nav_links.responsive {
        flex-direction: column;
        background-color: #333; /* solid grey, not transparent */
        width: 100%;
        position: relative;
        padding: 0;
        margin: 0;
        border-radius: 5px;
    }
    ul.nav_links.responsive li {
        display: block;
        text-align: left;
        padding: 12px 16px; /* <- add some breathing room */
    }
    .navbar.responsive .logo {
        display: none;
      }
    
    div.aboutIcon img{
        width: 100%;
   
        height: auto;
        margin:  0;
        display: block;
    }
    article p {
        width: 90%;
        padding: 0px; 
    }

    .header1 {
        width: 90%;
    text-align: center;
    margin: 20px auto 0 auto;;
    }

    .containerAbout {
        padding-left: 0px; /* Pushes the entire container to the right */
        
    }
    .containerContact form {
        padding: 20px;
        width: 100%;
    }
    .containerContact {
        width: 100%;
        padding: 0;
        margin: 100px auto 0 auto;
    }
    .content-container {
        flex-direction: column;
        padding: 10px;
    }
    .submit-row {
        padding: 20px
    }
    .about-page
    {
        padding-top: 70px;
    }
    .testimonial-slider {
        width: 100%;
        margin-top: 30px; /* Pull slider up */
    }
    
    .slides-container {
        flex-wrap: nowrap;
    }
    
    .slide {
        flex: 0 0 100%; /* Show 1 slide at a time */
        padding: 10px;
    }
    .slide img {
    max-width: 90%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    object-fit: contain;
  }
    .navbar {
        height: auto;
    }
.footer-content {
    display: flex;
    justify-content: center;
    gap: 100px;
}
.banner2 {
   
    height: 55vh; /* Match banner1 height */  
}
  .banner2 h2 {
    font-size: 30px;
}
  .banner3 h2 {
    margin-top: 30px;
    font-size: 30px;
    margin-bottom: 30px;
}
.banner3 {
   position: relative;
    padding-top: 10px;
    min-height: 65vh; /* allow it to grow beyond 65vh if needed */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; 
}
.split {
    flex: 1 1 45%;
    height: 400px;         /* set a fixed height */


}
}
@media screen and (min-width: 680px) and (max-width: 1024px) {
  .slide {
    flex: 0 0 50%; /* 2 slides per view */
  }
  .footer-content {
   
    gap: 150px;
}
.banner3 {
   
    height: 55vh; /* Match banner1 height */
  
}
.macbook-images img:not(:last-child) {
    margin-bottom: -785px;
}
}