@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #9b21e6;
    padding: 2% 8%;
    position: relative;
}

.navbar-logo {
    margin-right: auto;
    padding: 0;
}
.navbar-logo-img {
    max-height: 40px; /* Adjust the size of the logo */
    width: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    
    
}

.navbar-container {
    display: flex;
    align-items: center;
    margin-left: 20%;
}

.navbar-item {
    margin: 0 1.5%;
    
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7); /* Less white when not hovered */
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-item:hover {
    color: #ffffff; /* Fully white on hover */
}

.outline-button {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 2% 5%;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    margin-right: 2%;
    margin-left: 1%;
}

.outline-button:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    border-color: #ff69b4;
}

.content-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
    background: linear-gradient(45deg, #9b21e6 20%, #ff8e42);
    padding-bottom: 10%;
}

.content-container {
    display: flex;
    align-items: center;
    width: 80%;  /* Adjust this value as needed */
    margin-right: 10%;
}

.content-image {
    width: 27%;  /* Adjust to a suitable size */
    max-width: 40%;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 5%; /* Space between image and text */
    margin-left: 15%;
}

.content-text {
    width: 60%;  /* Adjust to balance text with image */
    color: #fff;
}

.content-text h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3.2rem;
    margin-bottom: 5%;
    text-align: left;
    margin-right: 1%; 
    margin-top: -15%;
}

.content-text h2::after {
    content: '';
    display: block;
    width: 25%;
    border-bottom: 3px solid #ffffff; /* Line color */
    margin-top: 5%;
    margin-bottom: 5%;
}

.content-text p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana;
    font-size: 1.1rem;
    margin-bottom: 10%;
    margin-right: 5%;
}

.content-text button {
    background: linear-gradient(90deg, #9b21e6 20%, #ff8e42);
    color: white;
    padding: 2.5% 30%;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid #ffffff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.small-buttons button {
    background-color: #732FCE;
    border: 1px solid #ffffff;
    padding: 1% 4%;
    font-size: 0.7rem;
    border-radius: 4px;
    margin-right: 2%;
    margin-left: 2%;
    cursor: pointer;
}

.small-buttons button:hover {
    background-color: #ff69b4;
    color: white;
}

.bullet-section {
    background-color: #ffffff; /* Light grey background */
    padding: 5% 2%;
    border-radius: 10px;
    margin: 0;
    text-align: center;
}

.bullet-section h2 {
    font-family: 'Arial', sans-serif;
    font-size: 3rem;
    color: #333;
    text-align: left;
    margin-left: 15%;
    margin-bottom: 5%; /* Space below the heading */
    line-height: 1.2; /* Ensures no line breaks unless necessary */
    /*white-space: nowrap;  Prevents heading from breaking into a second line */
    position: relative; /* Required for ::after to position correctly */
}

.bullet-section h2::after {
    content: '';
    display: block;
    width: 10%; /* Adjust width of the divider */
    height: 3px;
    background-color: #CB2BEC; /* Divider color */
    margin-left: 0%; /* Centers the divider and adds spacing */
    margin-top: 2%;
}

.bullet-section ol {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0%;
    text-align: left;
    margin-top: -2%;
}

.bullet-section ol li {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5%;
    padding-left: 5%;
    margin-left: 10%;
    position: relative;
}

.bullet-section ul li::before {
    content: '•';
    color: #5361FE; /* Primary color */
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.bullet-section button {
    background: linear-gradient(95deg, #9b21e6 20%, #ff8e42); /* Primary color */
    color: #fff;
    display: flex;
    align-self: left;
    margin-left: 15%;
    margin-top: 5%;
    font-weight: bold;
    padding: 1% 2%;
    font-size: 1rem;
    border: rgb(53, 51, 50);
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.bullet-section button:hover {
    background-color: #CB2BEC; /* Secondary color */
}
.features-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px; /* Space between items */
    background: linear-gradient(135deg, #CB2BEC, #5361FE); /* Matching gradient */
    padding: 130px 10%;
    color: #fff;
    text-align: left; /* Align text left */
}

.feature {
    display: flex;
    align-items: flex-start; /* Align content to the top */
    gap: 15px; /* Space between number and text content */
}

.feature-number {
    font-family: 'poppins';
    font-size: 3rem; /* Large number size */
    font-weight: bold;
    color: #ffffff;
    opacity: 0.9;
    margin-top: -3%;
}

.feature-content {
    display: block;
}

.feature-content h3 {
    font-family: 'Poppins', sans-serif; /* Font-family */
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    margin-bottom: 5px; /* Add space between heading and paragraph */
}

.feature-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */

.agency-rules {
    text-align: center;
    background-color: #f9f9f9; /* Light background */
    padding: 80px 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.agency-rules::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, #ff00ff30, transparent);
    z-index: -1;
}

.agency-rules::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 10%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at center, #b236ff30, transparent);
    border-radius: 50%;
    z-index: -1;
}

.agency-rules h2 {
    text-align: left;
    margin-left: 10%;
    font-size: 2.9rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.agency-rules h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #d936ff;
    margin: 10px 0 0;
}

.agency-rules ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    text-align: left;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 5%;
}

.agency-rules ul li {
    margin: 10px 0;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
    margin-left: 10%;
}

.agency-rules ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: #d936ff;
}

.agency-rules button {
    display: flex;
    text-align: left;
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(45deg, #5361fe, #cb2bec);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    margin-left: 10%;
    
}

.agency-rules button:hover {
    background: linear-gradient(45deg, #cb2bec, #5361fe);
    transform: scale(1.05);
}

.poppo-live-section {
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 6%;
    padding: 50px 10%; /* Adjust spacing around the section */
    background-color: #ffffff; /* Light background color */
    font-family: 'Poppins', sans-serif;
}

.text-content {
     /* Allows content to adjust proportionally */
    text-align: center;
    padding-right: 20px; /* Space between text and image */
}

.text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    margin-top: -15%;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-top: 0;
    word-wrap: break-word;
}

.image-content {
    flex: 1; /* Allows content to adjust proportionally */
    text-align: center;
}

.image-content img {
    max-width: 100%;
    max-height: 450px;
    height: auto;
    border-radius: 20px; /* Rounded corners for the image */
    background: transparent;
    margin-right: -10%;
}

.passion-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%; /* Adjust spacing around the section */
    background-color: #ffffff; /* Light background color */
    font-family: 'Poppins', sans-serif;
}

.passion-content {
    flex: 1; /* Allows content to adjust proportionally */
    text-align: center;
    padding-left: 20px; /* Space between text and image */
}

.passion-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.passion-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-top: 0;
    text-align: center;
}

.passion-image {
    flex: 1; /* Allows content to adjust proportionally */
    text-align: center;
}

.passion-image img {
    max-width: 100%;
    max-height: 450px;
    height: auto;
    border-radius: 20px; /* Rounded corners for the image */
    background: transparent;
    margin-right: -10%; /* Adjust spacing to the right */
}
/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    
    /* Navbar */
    .navbar {
        padding: 2% 5%;
        align-items: flex-start;
    }

    .navbar-container {
        margin-left: 0;
        margin-top: 10px;
    }

    .navbar-item {
        margin: 5px 0;
        font-size: 1rem;
    }

    /* Content Section */
    .content-section {
        flex-direction: column;
        padding: 10%;
    }

    .content-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .content-image {
        width: 80%;
        margin: 0;
        margin-bottom: 10px;
    }

    .content-text {
        width: 100%;
        text-align: center;
    }

    .content-text button{
        width: 100%;
        font-size: 0.8rem;
        align-items: center;
    }

    .content-text h2 {
        font-size: 2rem;
        margin-top: 10%;
        text-align: center;
    }

    /* Bullet Section */
    .bullet-section {
        padding: 20px;
    }

    .bullet-section h2 {
        font-size: 2rem;
        margin-left: 0;
    }

    /* Features Section */
    .features-section {
        grid-template-columns: 1fr; /* One column for mobile */
        padding: 50px 5%;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-number {
        font-size: 2rem;
    }

    .feature-content h3 {
        font-size: 1.4rem;
    }

    .feature-content p {
        font-size: 1rem;
    }

    /* Agency Rules Section */
    .agency-rules {
        padding: 50px 10%;
    }

    .agency-rules h2 {
        font-size: 2.2rem;
    }

    /* Poppo Live Section */
    .poppo-live-section,
    .passion-section {
        flex-direction: column;
        padding: 40px 10%;
    }

    .text-content h2, .passion-content h3 {
        font-size: 2rem;
        text-align: center;
    }

    .text-content p, .passion-content p {
        font-size: 0.9rem;
        text-align: center;
    }

    .image-content img {
        max-width: 90%;
        max-height: 350px;
        align-items: center;
    }

    .passion-image img {
        max-width: 90%;
        max-height: 350px;
        align-items: center;
    }

    .passion-image {
        flex: 1; /* Allows content to adjust proportionally */
        text-align: center;
    }
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-column {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .footer-bottom {
        text-align: center;
        font-size: 12px;
    }
    .about-us h2 {
        font-size: 24px;
      }
    
      .about-us p {
        font-size: 14px;
      }
    
      .about-us .about-images {
        flex-direction: column;
      }
    
      .about-us .about-images img,
      .about-us .about-images iframe {
        width: 100%;
        height: auto;
      }
      .navbar-logo-img {
        max-height: 30px; /* Adjust logo size for smaller screens */
    }

}
.about-us {
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    background-color: #fff;
  }
  
  .about-us .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-us h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    color: #000;
  }
  
  .about-us h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, blue, purple);
    display: block;
    margin-top: 5px;
  }
  
  .about-us p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
  }
  
  .about-us .about-images {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  
  .about-us .about-images img {
    width: 60%;
    border-radius: 10px;
  }
  
  .about-us .about-images iframe {
    width: 40%;
    height: 200px;
    border-radius: 10px;
    border: 0;
  }
/* Footer General Styling */
.footer {
    background-color: #ffffff;
    padding: 20px 40px;
    font-family: Arial, sans-serif;
    color: #000;
    font-size: 14px;
    line-height: 1.6;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1 1 calc(25% - 20px);
    min-width: 200px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #007bff;
}

.social-icon, .app-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #555;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

/* Media Queries for Responsiveness */


@media screen and (max-width: 480px) {
    .footer {
        padding: 20px;
    }

    .footer-column h3 {
        font-size: 14px;
    }

    .footer-column ul li {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 10px;
    }
    .about-us {
        padding: 20px 10px;
      }
    
      .about-us h2 {
        font-size: 20px;
      }
    
      .about-us p {
        font-size: 12px;
      }
}

/* Shapes Styling */
.decorative-triangle {
    position: absolute;
    top: 1000px;
    left: 70%; /* Adjust as needed */
    width: 250px; /* Adjust size */
    z-index: 10; /* Behind the content */
    opacity: 10;
}
.decorative-triangle2 {
    position: absolute;
    top: 850px;
    left: 5%; /* Adjust as needed */
    width: 150px; /* Adjust size */
    z-index: 10; /* Behind the content */
    opacity: 10;
}

.decorative-circle {
    position: absolute;
    top: 3500px;
    right: 20%; /* Adjust as needed */
    width: 100px; /* Adjust size */
    opacity: 0.8;
    z-index: 0.1; /* Behind the content */
}
.decorative-circle2 {
    position: absolute;
    top: 1850px;
    right: 18%; /* Adjust as needed */
    width: 150px; /* Adjust size */
    opacity: 0.8;
    z-index: 0.1; /* Behind the content */
}
.decorative-circle3 {
    position: absolute;
    top: 2380px;
    right: 12%; /* Adjust as needed */
    width: 110px; /* Adjust size */
    opacity: 0.8;
    z-index: 1; /* Behind the content */
}