/* Import Inter font */
@import url('//fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

html {
    scroll-behavior: smooth;
}

/* Global Styles */
body {
    font-family: Inter, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

/* Header */
header {
    background-color: #002b45;
    color: white;
    padding: 15px 0;
}

.container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

h1 {
    margin-right: 60px; /* Increased gap by 20px */
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-link h1 {
  margin-left: 10px;
}

.logo {
  height: 120px;
  width: auto;
  margin-right: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Add a dropdown container */
nav ul li.dropdown {
    position: relative;
}

/* Style the 'More' button */
nav ul li .dropbtn {
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
}

/* Style the arrow */
nav ul li .dropbtn .arrow {
    margin-left: 5px;
    font-size: 12px;
}

/* Hide the dropdown content by default */
nav ul li .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 160px;
    border: 1px solid #ddd;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Style the dropdown links */
nav ul li .dropdown-content a {
    color: #023047;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change the color of links on hover */
nav ul li .dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown content when hovering over the dropdown */
nav ul li:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px;
    background-image: url("dotecwgxg/image/upload/v1742655054/Website/20250309_165504000_iOS_wfwtvp.jpg");
}

.hero-content {
    max-width: 500px;
    margin-left: 16%;
}

.hero-content p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    margin-right: 80px;
}

.hero h1 {
    font-size: 70px;
    color: #ffffff;
    font-weight: 600;
    line-height: 88px;
}

.hero .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fb8500;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.hero .btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.hero .btn span:after {
    content: '\279C';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.hero .btn:hover span {
    padding-right: 25px;
}

.hero .btn:hover span:after { 
    opacity: 1;
    right: 0;
}

.hero .btn:hover {
    box-shadow: 0px 4px 12px rgba(2, 48, 71, 0.3);
  }


/* Trusted Logos */
.logos-text {
    color: #262626;
    font-size: 10px;
    font-weight: 600;
    line-height: 21px;
    text-align: center;
    letter-spacing: -0.1px;
}

.trusted-logos {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    padding: 12.5px;
    background-color: #ffffff;
    box-shadow: 0px 4px 32px rgba(51, 51, 51, 0.1);
    border-radius: 16px;
}

.logos-container img {
    width: 125px;
    margin: 10px;
    border-radius: 50%;
}

/* Features Section */
.features {
    position: relative;
    display: flex;
    width: 80%;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0px 4px 32px rgba(51, 51, 51, 0.1);
    margin: 0 auto;
    gap: 20px;
    margin-top: 200px;
    height: 350px;
}

.feature-card {
    margin-bottom: 50px;
    margin-left: 50px;
}

/* Styling for h2 */
.feature-card h2 {
    color: #030303;
    font-size: 48px;
    font-weight: 600;
    max-width: 600px; /* Limits width */
}

/* Styling for p */
.feature-card p {
    color: #4f4f4f;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    max-width: 500px; /* Keeps width aligned with h2 */
}

.feature-images {
    display: flex;
    gap: 10px; /* Controls space between images */
    position: static;
    right: -50px; /* Adjusts position relative to container */
    top: -60px; /* Moves images up, overlapping the container */
}

.feature-images img {
    width: 140px;
    height: 300px;
    object-fit: cover;
    object-position: left center;
    border-radius: 12px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.12);
}

.feature-images img:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
  }  

/* Feature Text and Image for the first section */
.feature-text-image1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
}

.feature-text-image1 img {
    width: 670px;
    height: 520px;
    margin-top: 100px;
    border-radius: 8px;
    object-position: left center;
    object-fit: cover;
}

.feature-text1 {
    width: 45%;
    margin-top: 50px;
    margin-left: 50px;
}

.feature-text1 h2 {
    color: #999;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 17px;
    margin-bottom: -30px;
}

.feature-text1 h3 {
    color: #030303;
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
}

.feature-text1 p {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

/* Feature Text and Image for the second section */
.feature-text-image2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
}

.feature-text-image2 img {
    width: 670px;
    height: 520px;
    margin-top: 80px;
    border-radius: 8px;
    object-position: left center;
    object-fit: cover;
}

.feature-text2 {
    width: 45%;
    margin-top: 50px;
    margin-right: 50px;
}

.feature-text2 h2 {
    color: #999;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 17px;
    margin-bottom: -30px;
}

.feature-text2 h3 {
    color: #030303;
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
}

.feature-text2 p {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.reverse {
    flex-direction: row-reverse;
}

/* Feature Text and Image for the third section */
.feature-text-image3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
}

.feature-image3 {
    display: flex;
    gap: 20px;
}

.feature-text-image3 img {
    width: 240px;
    height: 520px;
    margin-top: 80px;
    border-radius: 8px;
    object-position: center;
    object-fit: cover;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.12);
}

.feature-image3 img:nth-child(2) {
    transform: translateY(-10px);
}

.feature-text3 {
    width: 40%;
    margin-top: 50px;
    margin-left: 50px;
}

.feature-text3 h2 {
    color: #999;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 17px;
    margin-bottom: -30px;
}

.feature-text3 h3 {
    color: #030303;
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
}

.feature-text3 p {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}


/* Join community container */
.join-community {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 16px;
    width: 80%;
    margin: 0 auto;
    margin-top: 200px;
    box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.1);
}

/* Flex layout for two columns */
.join-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* Left column */
.join-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.phone-images {
    display: flex;
    position: relative;
    top: -120px;
}

.phone-images img {
    width: 500px;
    height: 378px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.join-left h2 {
    color:#030303;
    font-size: 48px;
    font-weight: 600;
    line-height: 62px;
    margin: 0;
}

.join-left p {
    font-size: 18px;
    color: #4f4f4f;
    line-height: 26px;
    letter-spacing: -0.1px;
    width: 75%;
}

.store-buttons {
    display: flex;
    gap: 40px;
    margin-top: 10px;
}

.store-buttons img {
    width: 188px;
    height: 69px;
    border-radius: 8px;
    background-image: url(https://www.nuzones.co.uk/image.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.store-btn {
    display: inline-block;
    width: 188px;
    height: 69px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .store-btn:hover {
    transform: scale(1.05);
  }
  
  .store-btn.ios {
    background-image: url('dotecwgxg/image/upload/v1742659994/Website/ios_download_img_hgi2tp.png');
  }
  
  .store-btn.android {
    background-image: url('dotecwgxg/image/upload/v1742660140/Website/android_download_1_dykiww.png');
  }
  

/* Right column */
.join-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-divider {
    height: 2px;
    background-color: #d9d9d9;
    border-radius: 2px;
    width: 100%;
}

.step-block h3 {
    color:#030303;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 42px;
}

.step-block p {
    font-size: 18px;
    color: #4f4f4f;
    line-height: 26px;
    letter-spacing: -0.1px;
    width: 75%;
}

.join-right hr {
    border: none;
    border-top: 1px solid #ddd;
}



/* Testimonials */
.testimonials {
    text-align: center;
    padding: 60px;
    margin-top: 150px;
    margin-bottom: 100px;
}

.testimonials h2 {
    color: #030303;
    font-size: 48px;
    font-weight: 600;
    line-height: 62px;
    text-align: center;
}

.testimonials p {
    color: #4f4f4f;
    font-size: 20px;
    font-family: "Inter";
    line-height: 26px;
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.testimonial {
    background-color: white;
    padding: 20px;
    border-radius: 16px;
    width: 340px;
    height: 280px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    color: #4f4f4f;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 26px;
    text-align: center;
    width: 80%;
    margin: 25px auto;
}

.testimonial .stars {
    font-size: 40px;
    color: #fb8500;
    fill: #fb8500;
    margin: 10px 0;
    text-align: center;
}

.testimonial h4 {
    color: #030303;
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
    text-align: center;
}

.testimonial-grid .testimonial:nth-child(2) {
    transform: translateY(-10px);
}




/* Footer */
footer {
    background-color: #002b45;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    align-items: flex-start;
}

.footer-info {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.footer-info h1 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
}

.footer-info p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

.footer-links,
.footer-social {
    flex: 1 1 100%;
    margin-top: 20px;
}

.footer-links ul,
.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-social ul li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.footer-links ul li a,
.footer-social ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-links ul li a:hover,
.footer-social ul li a:hover {
    text-decoration: underline;
}



/* ==================================== */
/* RESPONSIVE STYLES FOR SMALLER SCREENS */
/* ==================================== */

@media (min-width: 1400px) {
    .features {
      flex-direction: row;
      height: 350px; /* Optional: keep height constraint */
    }
  
    .feature-images {
      position: absolute;
      right: -50px;
      top: -60px;
      margin-top: 0; /* Remove spacing added in mobile */
    }
  
    .feature-images img {
      width: 200px;
      height: 400px;
    }
  }

  @media (max-width: 1399px) {
    .features {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }
  
    .feature-card {
      margin: 0 auto;
      text-align: center;
    }
  }

  @media (min-width: 1024px) and (max-width: 1399px) {
    .features {
      flex-direction: column;
      align-items: center;
      height: auto;
    }
  
    .feature-images {
      position: static;
      margin-top: 30px;
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .feature-card {
      margin: 0 auto;
      text-align: center;
    }
  
    .feature-images img {
      width: 140px;
      height: 300px;
    }
  }
  
  

@media (max-width: 1024px) {
    
    .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        padding-left: 0;
    }
    
    .hero {
      flex-direction: column;
      padding: 40px 20px;
      text-align: center;
    }
  
    .hero-content {
      max-width: 100%;
      width: 100%;
      text-align: center;
      margin: 0 auto;
      padding-right: 20px;
      padding-left: 20px;
    }

    .hero-image {
        width: 100%;
        margin-left: 0;  /* Add some left margin to the image to create space from text */
    }
  
    .hero-image img {
      width: 100%;
      height: auto;
    }
  
    .features {
      flex-direction: column;
      text-align: center;
      height: auto;
      gap: 30px;
      padding: 40px 20px;
      margin-top: 100px;
    }

    .feature-card {
        width: 100%; /* make the text container take full width */
        text-align: center; /* center-align the text */
        margin: 0 auto; /* center-align the text container */
    }
  
    .feature-images {
      position: static;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .feature-images img {
      width: 140px;
      height: 300px;
    }
  
    .feature-text-image1,
    .feature-text-image2,
    .feature-text-image3 {
      flex-direction: column;
      padding: 40px 20px;
      text-align: center;
    }
  
    .feature-text1,
    .feature-text2,
    .feature-text3 {
      width: 100%;
      margin-top: 30px;
      margin-left: 0;
      margin-right: 0;
    }
  
    .feature-image1 img,
    .feature-image2 img,
    .feature-image3 img {
      width: 60%;
      height: auto;
      margin-top: 30px;
      margin-left: auto;
      margin-right: auto;

    }
  
    .feature-image3 {
      flex-direction: column;
    }
  
    .join-wrapper {
      flex-direction: column;
      gap: 40px;
    }
  
    .join-left p,
    .step-block p {
      width: 100%;
    }
  
    .phone-images {
      top: 0;
      justify-content: center;
    }
  
    .phone-images img {
      width: 100%;
      height: auto;
    }
  
    .store-buttons {
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .testimonials {
      padding: 40px 20px;
    }
  
    .testimonial-grid {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
  
    .testimonial {
      width: 90%;
    }
  
    .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        padding-left: 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links,
    .footer-social {
        margin-top: 20px;
    }
  }
  
  @media (max-width: 600px) {
    .hero h1 {
      font-size: 42px;
      line-height: 1.2;
      margin-left: 0;
      margin-right: 0;
    }

    .hero-content p {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-content {
        margin: 0 auto;     /* Ensures the content is centered */
        padding: 0;         /* No extra padding */
    }

    .join-left h2 {
        font-size: 32px;
        line-height: 1.3;
        margin-top: 20px;
    }

    .feature-card h2,
    .testimonials h2 {
      font-size: 32px;
      line-height: 1.3;
    }
  
    .feature-card p,
    .feature-text1 p,
    .feature-text2 p,
    .feature-text3 p,
    .join-left p,
    .step-block p,
    .testimonials p {
      font-size: 16px;
      line-height: 1.5;
    }

    .feature-text1,
    .feature-text2,
    .feature-text3 {
        margin-left: 0;
        margin-right: 0;
    }
  
    .logos-container img {
      width: 80px;
    }
  
    .feature-images img {
      width: 110px;
      height: 260px;
    }
  
    .store-buttons img {
      width: 160px;
      height: auto;
    }

    .testimonials {
        margin-top: 80px;
    }
  
    .testimonial {
      height: auto;
      padding: 30px 20px;
    }
  
    .testimonial p {
      font-size: 16px;
      width: 100%;
    }
  
    .testimonial .stars {
      font-size: 30px;
    }

    .join-community {
        margin-top: 50px;
    }
  }

  @media (max-width: 900px) {
    .feature-text-image1 img,
    .feature-text-image2 img {
      width: 60%;
      height: auto;
      margin-top: 20px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .feature-text1,
    .feature-text2 {
      margin-left: 0;
      margin-right: 0;
      text-align: center;
    }
  }
  

  @media (max-width: 768px) {


    .hero-content {
        margin: 0 auto;     /* Ensures the content is centered */
        padding: 0;         /* No extra padding */
    }

    /* Horizontal scroll for feature-image3 */
    .feature-image3 {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 10px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
  
    .feature-image3 img {
      flex: 0 0 auto;
      width: 200px;
      height: auto;
      scroll-snap-align: center;
    }
  
    /* Keep the text nicely stacked under the scroll section */
    .feature-text-image3 {
      flex-direction: column;
      text-align: center;
    }
  
    .feature-text3 {
      width: 100%;
      padding-top: 20px;
    }

    .feature-text1,
    .feature-text2,
    .feature-text3 {
        margin-left: 0;
        margin-right: 0;
    }

  }

  @media (min-width: 1024px) {
    .contact-image,
    .contact-form {
        flex: 1;
        max-width: 50%;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        width: 412px;
    }

    .footer-info,
    .footer-links,
    .footer-social {
        flex: 1;
        margin-top: 0;
    }
}