/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Header Logo */
.logo img {
    height: 80px; /* Adjust the height as needed */
    width: auto; /* Maintain aspect ratio */
}

/* Footer Logo */
.footer-logo img {
    height: 50px; /* Adjust the height as needed */
    width: auto; /* Maintain aspect ratio */
}
/* Top Header Navigation Bar */
.top-nav {
    background-color: #2c3e50;
    color: #fff;
    padding: 5px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.primary-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.primary-nav-links {
    list-style: none;
    display: flex;
}

.primary-nav-links li {
    margin-left: 20px;
}

.primary-nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px; /* Adjust padding for smaller screens */
    font-size: 0.9rem; /* Adjust font size for smaller screens */
    display: block;
    transition: background-color 0.3s ease;
}

.primary-nav-links a:hover {
    background-color: #FFD700;
    color: #000;
    border-radius: 5px;
}

/* Side Navigation Menu (Keep it as is if already working) */
.side-nav {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    background-color: #2c3e50;
    border-radius: 8px 0 0 8px;
    padding: 5px 0;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

.side-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-nav-links li {
    margin: 10px 0;
}

.side-nav-links a {
    color: #fff;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, width 0.3s ease;
    border-radius: 8px 0 0 8px;
    width: 50px;
    overflow: hidden;
    justify-content: center;
}

.side-nav-links a i {
    margin-right: 0;
    font-size: 1.5rem;
}

.side-nav-links a:hover {
    background-color: #2980b9;
    width: 150px;
}

.side-nav-links a span {
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: 10px;
}

.side-nav-links a:hover span {
    opacity: 1;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 10001;
    display: none; /* Hide hamburger menu by default */
}

.hamburger-menu span {
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Transform Hamburger Menu into X */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Sidebar */
.mobile-menu-sidebar {
    position: fixed;
    top: 80px;
    left: 0;
    width: 275px;
    height: auto;
    background-color: #2c3e50;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding-top: 0;
    display: none; /* Hide mobile menu by default */
}

.mobile-menu-sidebar.active {
    transform: translateY(0); /* Slide down when active */
}

.mobile-nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid #34495e;
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: left;
    transition: background-color 0.3s ease;
}

.mobile-nav-links a:hover {
    background-color: #1abc9c;
}
/* Responsive Styles */
@media (max-width: 768px) {
    header {
        justify-content: space-between;
    }
    
    .hamburger-menu {
        display: flex; /* Show hamburger menu on mobile */
        position: absolute;
        right: 20px;
        top: 38px;
    }

    .primary-nav-links {
        display: none; /* Hide desktop nav links on mobile */
    }

    .mobile-menu-sidebar {
        display: block; /* Ensure mobile menu is ready to be shown */
    }
}

/* Side Navigation Menu */
.side-nav {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    background-color: #2c3e50;
    border-radius: 8px 0 0 8px;
    padding: 5px 0;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

.side-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-nav-links li {
    margin: 10px 0;
}

.side-nav-links a {
    color: #fff;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, width 0.3s ease;
    border-radius: 8px 0 0 8px;
    width: 50px;
    overflow: hidden;
    justify-content: center;
}

.side-nav-links a i {
    margin-right: 0;
    font-size: 1.5rem;
}

.side-nav-links a:hover {
    background-color: #2980b9;
    width: 150px;
}

.side-nav-links a span {
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: 10px;
}

.side-nav-links a:hover span {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .primary-nav-links {
        display: none; /* Hide desktop nav links on mobile */
    }

    .hamburger-menu {
        display: flex; /* Show hamburger menu on mobile */
    }

    .mobile-menu-sidebar {
        display: block; /* Show mobile menu on mobile */
    }

    .action-buttons {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
    }

    .action-buttons a {
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }
}

/* Media Query for Small Desktop Screens (769px - 919px) */
@media (min-width: 769px) and (max-width: 919px) {
    .top-nav {
        padding: 10px 15px; /* Reduce padding for smaller screens */
    }

    .logo img {
        height: 70px; /* Further reduce logo size */
    }

    .primary-nav-links a {
        padding: 15px 10px; /* Reduce padding */
        font-size: 0.85rem; /* Slightly reduce font size */
    }

    .action-buttons a {
        padding: 6px 10px; /* Adjust padding for action buttons */
        font-size: 0.85rem; /* Adjust font size for action buttons */
    }

    .primary-nav-links {
        justify-content: flex-end;
    }
}
/* Action Buttons Below Nav Bar */
.action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#2c3e50;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 100px; /* Adjust based on the height of the primary navigation */
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.action-buttons a {
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.action-buttons .btn-agent {
    background-color: #3498db;
}

.action-buttons .btn-agent:hover {
    background-color: #2980b9;
}

.action-buttons .btn-model {
    background-color: #e74c3c;
}

.action-buttons .btn-model:hover {
    background-color: #c0392b;
}

/* Adjust the Homepage Side Navigation Menu */
.side-nav {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    background-color: #2c3e50;
    border-radius: 8px 0 0 8px;
    padding: 5px 0;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

.side-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-nav-links li {
    margin: 10px 0;
}

.side-nav-links a {
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px; /* Increased padding to make room for icons */
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, width 0.3s ease;
    border-radius: 8px 0 0 8px;
    width: 50px;
    overflow: hidden;
    justify-content: left; /* Center the icons */
}

.side-nav-links a i {
    margin-right: 0; /* No margin for icons */
    font-size: 1.5rem; /* Ensure icon size is clear */
}

.side-nav-links a:hover {
    background-color: #FFD700;
    color: #000;
    width: 150px;
}

.side-nav-links a span {
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: 10px;
}

.side-nav-links a:hover span {
    opacity: 1;
}

/* Hide Side Nav on Smaller Screens */
@media (max-width: 768px) {
    .side-nav {
        display: none;
    }

    .primary-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-nav-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-nav-links li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px; /* Ensure space between action buttons and nav links */
    }

    .action-buttons a {
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }
}


/* Hero Section Styles */
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Model Registration Hero Section */
#hero-model {
    position: relative;
    min-height: 100vh; /* Ensure full height coverage on all devices */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('/images/4.png') no-repeat center center/cover;
    color: #fff;
    padding: 20px;
    overflow: hidden; /* Prevent content overflow */
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text clarity */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding-top: 84px; /* Adjust padding to ensure visibility of content */
    padding-bottom: 60px; /* Prevent overlap with following sections */
}

.hero-text {
    text-align: center;
    width: 100%;
    font-family: 'Arial', sans-serif;
    position: relative;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.hero-text h2 {
    font-size: 1.5rem;
    color: #000;
    background-color: #FFD700;
    border-radius: 20px;
}


h1 .highlight {
    color: #020202;
    display: inline-block;
    position: relative;
    background-color: #FFD700;
    border-radius: 10px;
    padding: 0 10px;
    white-space: nowrap;
    opacity: 0;
    animation: slideInOut 4s ease-in-out infinite;
}

@keyframes slideInOut {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    20% {
        opacity: 1;
        transform: translateX(0);
    }
    80% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }
}

p .highlight {
    color: #FFD700; /* Highlighted text color */
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: #FFD700;
    color: #000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e0c200;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid #fff;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    flex: 1 1 calc(16.66% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.7); /* Transparent background for icons */
    padding: 20px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.feature-item img {
    width: 50px;
    height: auto;
    margin-bottom: 15px;
}
.feature-item:hover img {
    width: 50px;
    height: auto;
    margin-bottom: 15px;
    filter: invert();
}

.feature-item p {
    font-size: 1rem;
    color: #FFD700;
}
.feature-item:hover p {
    font-size: 1rem;
    color: #000;
}


.feature-item:hover {
    transform: translateY(-10px);
    background-color: #FFD700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .feature-item {
        flex: 1 1 calc(50% - 20px);
    }

    .content {
        padding-top: 60px; /* Reduce padding for smaller screens */
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 0.9rem;
    }

    .feature-item {
        flex: 1 1 100%;
    }

    .content {
        padding-top: 50px;
        padding-bottom: 30px;
    }
}

/* About us Home page section */
#about-us {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1e1e1e, #333); /* Gradient background */
    color: #fff;
}

.about-content {
    max-width: 50%;
    padding-right: 20px;
    animation: fadeInLeft 1s ease-in-out;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    padding-left: 10px;
    color: #000;
    background-color: #FFD700;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.about-content h2 i {
    margin-right: 10px;
    font-size: 2.8rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ddd;
}

.about-content .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFD700;
    color: #000;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.about-content .cta-button:hover {
    background-color: #e0c200;
    transform: scale(1.05);
}

.about-image {
    max-width: 45%;
    animation: fadeInRight 1s ease-in-out;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styling */
@media (max-width: 1024px) {
    #about-us {
        flex-direction: column;
        text-align: center;
    }

    .about-content, .about-image {
        max-width: 100%;
        padding: 0;
    }

    .about-content {
        padding-bottom: 30px;
    }

    .about-content h2 {
        justify-content: center;
    }

    .about-image img {
        margin: 0 auto;
    }
}

/* Product Overview Section */
#product-overview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    background: linear-gradient(135deg, #282828, #444); /* Gradient background */
    color: #fff;
}

.product-content {
    max-width: 50%;
    padding-right: 20px;
    animation: fadeInUp 1s ease-in-out; /* Different animation direction */
}

.product-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    padding-left: 10px;
    color: #000;
    background-color: #FFD700;
    border-radius: 20px;
}

.product-content h2:hover {
    color: #1ebe57;
}


.product-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ddd;
}

.stats-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.stats-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: color 0.3s, transform 0.3s;
}

.stats-list li i {
    margin-right: 10px;
    color: #FFD700; /* Gold color for icons */
}

.stats-list li:hover {
    color: #FFD700;
    transform: translateX(10px);
}

.product-image {
    max-width: 45%;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styling */
@media (max-width: 1024px) {
    #product-overview {
        flex-direction: column;
        text-align: center;
    }

    .product-content, .product-image {
        max-width: 100%;
        padding: 0;
    }

    .product-content {
        padding-bottom: 30px;
    }

    .stats-list {
        text-align: left;
    }

    .product-image img {
        margin: 0 auto;
    }
}
/* How to Join and Start Earning Section */
#how-to-join {
    padding: 100px 20px;
    background: #181818;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-to-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.how-to-container h2 {
    font-size: 3.5rem;
    color: #000;
    background-color: #FFD700;
    border-radius: 20px;
    margin-bottom: 50px;
    animation: fadeInDown 1s ease;
    position: relative;
    z-index: 3;
}

.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    max-width: 900px;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.step-icon {
    flex: 0 0 80px;
    margin-right: 20px;
    font-size: 3rem;
    color: #FFD700;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 50%;
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.step:hover .step-icon {
    transform: rotate(360deg);
    background: #FFD700;
    color: #000;
}

.step-content {
    flex: 1;
    text-align: left;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.4s ease;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #FFD700;
    position: relative;
}

.step-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ddd;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: blur(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1;
}

.step:hover::before {
    opacity: 0.5;
    transform: scale(1.05);
}

.step:nth-child(1)::before {
    background-image: url('/images/1.png'); /* Image for Step 1 */
}

.step:nth-child(2)::before {
    background-image: url('/images/1.png'); /* Image for Step 2 */
}

.step:nth-child(3)::before {
    background-image: url('/images/1.png'); /* Image for Step 3 */
}

.step:nth-child(4)::before {
    background-image: url('/images/1.png'); /* Image for Step 4 */
}

.step:nth-child(5)::before {
    background-image: url('/images/1.png'); /* Image for Step 5 */
}

/* Decorative Background Elements */
#how-to-join::before, #how-to-join::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #444444 10%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

#how-to-join::before {
    top: -150px;
    left: -150px;
    animation: pulse 6s infinite;
}

#how-to-join::after {
    bottom: -150px;
    right: -150px;
    animation: pulse 6s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Fade-In Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .step {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .step-icon {
        margin: 0 auto 20px;
    }

    .step-content {
        text-align: center;
        padding: 15px;
    }

    .step::before {
        filter: blur(5px);
    }
}

@media (max-width: 768px) {
    .how-to-container h2 {
        font-size: 2.5rem;
    }

    .step-content h3 {
        font-size: 1.8rem;
    }

    .step-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .how-to-container h2 {
        font-size: 2rem;
    }

    .step-content h3 {
        font-size: 1.6rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .step {
        margin-bottom: 30px;
    }

    .step::before {
        display: none;
    }
}

/* Earning Apps Section */
/* Redesigned Earning Apps Section */
#earning-apps {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a, #111);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.earning-apps-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.earning-apps-container h2 {
    font-size: 3.5rem;
    color: #000;
    background-color: #FFD700;
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 3;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.category {
    background: #222;
    padding: 20px;
    border-radius: 15px;
    text-align: left;
    flex: 1 1 calc(50% - 30px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.category-image {
    flex: 0 0 100px;
    margin-right: 20px;
    position: relative;
}

.category-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.category:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 2;
}

.category-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #FFD700;
}

.category-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ddd;
}

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

    .category {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .earning-apps-container h2 {
        font-size: 2.5rem;
    }

    .category-content h3 {
        font-size: 1.8rem;
    }

    .category-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .earning-apps-container h2 {
        font-size: 2rem;
    }

    .category-content h3 {
        font-size: 1.6rem;
    }

    .category-content p {
        font-size: 0.9rem;
    }
}

/* Homepage Services Section */
#homepage-services {
    padding: 100px 20px;
    background: linear-gradient(135deg, #141E30, #243B55);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.homepage-services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.homepage-services-container h2 {
    font-size: 3.5rem;
    color: #000;
    background-color: #FFD700;
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 3;
}

.homepage-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.homepage-service {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 40px;
    border-radius: 15px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    text-decoration: none; /* Ensure no underline on links */
    color: inherit; /* Inherit text color */
}

.homepage-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.homepage-service-icon {
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.homepage-service-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #FFD700;
    transition: color 0.3s ease;
}

.homepage-service-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ddd;
    transition: color 0.3s ease;
}

.homepage-service::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    transition: transform 0.4s ease;
    z-index: 1;
}

.homepage-service:hover::before {
    transform: scale(1.5);
}

.homepage-service::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    transition: transform 0.4s ease;
    z-index: 1;
}

.homepage-service:hover::after {
    transform: scale(1.5);
}

@media (max-width: 768px) {
    .homepage-services-container h2 {
        font-size: 2.8rem;
    }

    .homepage-service-content h3 {
        font-size: 2rem;
    }

    .homepage-service-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .homepage-services-container h2 {
        font-size: 2.2rem;
    }

    .homepage-service-content h3 {
        font-size: 1.8rem;
    }

    .homepage-service-content p {
        font-size: 1rem;
    }
}


/* Partner Apps Section */
#partner-apps {
    padding: 60px 20px;
    background: #f7f7f7;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-apps-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

#partner-apps h2 {
    font-size: 2.5rem;
    color: #000;
    background-color: #FFD700;
    border-radius: 20px;
    margin-bottom: 20px;
}

#partner-apps p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Logo Marquee */
.logo-marquee {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.logo-track {
    display: inline-block;
    animation: scroll-logos 20s linear infinite;
}

.logo-track img {
    height: 300px;
    margin: 0 20px;
    display: inline-block;
    vertical-align: middle;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-30%);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    #partner-apps h2 {
        font-size: 2rem;
    }

    #partner-apps p {
        font-size: 1rem;
    }

    .logo-track img {
        height: 80px;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    #partner-apps h2 {
        font-size: 1.8rem;
    }

    #partner-apps p {
        font-size: 0.9rem;
    }

    .logo-track img {
        height: 120px;
        margin: 0 10px;
    }
}

/* Overview Section for Agency and Model */
#overview {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 20px;
    background: #ffffff;
    color: #fff;
}

.overview-section {
    position: relative;
    flex: 1 1 calc(50% - 20px);
    margin: 10px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.overview-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
}

.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(8px);
    text-align: center;
}

.icon img {
    width: 70px;
    height: auto;
    margin-bottom: 20px;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.text-content:hover h2 {
    color: #000;
    background-color: #FFD700;
    border-radius: 20px;
}
.text-content:hover p {
    color: #FFD700;
}
.text-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}


.cta-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: #c8ad00;
    color: #000;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #FFD700;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.6);
}

.agency-bg {
    background-image: url('/images/4.png');
}

.model-bg {
    background-image: url('/images/3.png');
}

@media (max-width: 1024px) {
    .overview-section {
        flex: 1 1 100%;
    }

    .content-wrapper {
        padding: 20px;
    }

    .text-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 15px;
    }

    .icon img {
        width: 60px;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }

    .text-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .text-content h2 {
        font-size: 1.5rem;
    }

    .text-content p {
        font-size: 0.9rem;
    }
}



/* Testimonial Section */
#testimonials {
    padding: 40px 20px;
    background: #f9f9f9;
    text-align: center;
    overflow: hidden; /* Hide the overflow */
}

.testimonial-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000;
    background-color: #FFD700;
    border-radius: 20px;
}

/* Enable horizontal scrolling */
.testimonial-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory; /* Ensures snapping to cards when swiped */
}

.testimonial-card {
    background: #243B55;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto; /* Prevent the card from shrinking */
    width: 200px;
    margin: 0 auto;
    overflow: hidden;
    transition: transform 0.3s ease;
    scroll-snap-align: start; /* Ensures the card aligns when swiped */
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.user-photo img {
    width: 180px;
    height: 250px;
    border-bottom: 2px solid #FFD700;
}

.user-video video {
    width: 200px;
    height: 350px;
    border-bottom: 2px solid #FFD700;
}

.testimonial-content {
    padding: 10px;
}

.testimonial-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #FFD700;
}

.testimonial-content .profession {
    font-size: 1rem;
    color: #f87070;
    margin-bottom: 0;
}

.testimonial-content .message {
    font-size: 0.8rem;
    color: #fafafa;
}

/* For larger screens */
@media (max-width: 1024px) {
    .testimonial-card {
        width: 200px;
    }
}

/* For smaller screens */
@media (max-width: 768px) {
    .testimonial-card {
        width: 180px;
    }
}
/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    background-color: #FFD700;
    border-radius: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    background-color: #333;
    color: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #FFD700;
    color: #000;
}

.faq-answer {
    padding: 15px;
    display: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
}

.faq-answer p {
    margin: 0;
    color: #333;
}


/* Get in Touch Section */
#get-in-touch {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #fff;
    text-align: center;
}

#get-in-touch h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000;
    background-color: #FFD700;
    border-radius: 20px;
}

#get-in-touch p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.798);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.enquiry-label {
    color: #FFD700 !important;
}
.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%204%205%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M2%205l2-2H0l2%202z%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 10px 10px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: #ffd90066;
    outline: none;
}

.form-group label {
    font-size: 1rem;
    color: #dddddd;
    display: block;
    margin-bottom: 5px;
}

.submit-button {
    padding: 15px 30px;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    background-color: #e0c200;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    #get-in-touch h2 {
        font-size: 2.5rem;
    }

    #get-in-touch p {
        font-size: 1rem;
    }

    .submit-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}




/* Footer Section */
#footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    text-align: left;
    position: relative;
}

#footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-column {
    flex: 1 1 calc(25% - 20px);
    min-width: 200px;
}

.footer-column h3,
.footer-column h4 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column ul {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #FFD700;
}

.footer-column ul li i {
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: #ddd;
    align-items: center;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-columns {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-column h3,
    .footer-column h4 {
        font-size: 1.3rem;
    }

    .footer-column ul li a {
        font-size: 0.9rem;
    }

    .footer-column ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .footer-column h3,
    .footer-column h4 {
        font-size: 1.2rem;
    }

    .footer-column ul li a {
        font-size: 0.8rem;
    }

    .footer-column ul li {
        font-size: 0.8rem;
    }

    .social-icons a {
        font-size: 1rem;
    }
}
/* WhatsApp Chat Button */
.whatsapp-chat {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.whatsapp-chat a {
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.whatsapp-chat a i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.whatsapp-chat a:hover {
    background-color: #1ebe57;
}

/* Floating WhatsApp Button (Optional) */
.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    padding: 15px;
    border-radius: 30px;
    text-align: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.whatsapp-floating a {
    background-color: #25D366;
    color: #fff;
    padding: 5px 5px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.whatsapp-floating a i {
    margin-right: 10px;
    font-size: 2rem;
}
.whatsapp-floating:hover {
    background-color: #1ebe57;
}
/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    .whatsapp-floating {
        bottom: 15px;
        right: 15px;
        padding: 10px;
        border-radius: 25px;
    }

    .whatsapp-floating a {
        font-size: 1rem;
        padding: 10px;
        justify-content: center;
    }

    .whatsapp-floating a i {
        font-size: 1.5rem;
        margin-right: 0;
    }

    .whatsapp-floating a span {
        display: none; /* Hide the text on mobile devices */
    }
}

@media (max-width: 480px) {
    .whatsapp-floating {
        bottom: 10px;
        right: 10px;
        padding: 0px;
        border-radius: 30px;
    }

    .whatsapp-floating a i {
        font-size: 2rem;
    }
    .whatsapp-floating a span {
        display: none; /* Hide the text on mobile devices */
}
}

/* ---------------------------------------------------------------- 
            START ABOUT US PAGE
   ----------------------------------------------------------------
*/
.about-hero {
    background-color: #243B55; /* Dark blue background to match the website theme */
    color: #ffffff; /* White text for contrast */
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    background-image: url('/images/about-hero-bg.jpg'); /* Background image for visual appeal */
    background-size: cover;
    background-position: center;
    opacity: 0.3; /* Slight transparency for overlay effect */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700; /* Gold color for the heading */
}

.about-hero-content h1 i {
    margin-right: 15px;
    font-size: 4rem;
    color: #FFD700; /* Gold color for the icon */
}

.about-hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f0f0f0; /* Light grey for readability */
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 15px;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content h1 i {
        font-size: 3rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
}

/* Who we are Section for about us page */
/* Who We Are Section */
.who-we-are-section {
    padding: 80px 20px;
    background-color: #243B55; /* Light background for a clean look */
    text-align: left; /* Align text to the left for a professional layout */
}

.who-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

.who-content {
    flex: 1;
    max-width: 600px;
    padding: 20px;
}

.who-heading {
    font-size: 2.8rem;
    color: #FFD700;
    border-bottom: 3px solid #FFD700; /* Gold underline for emphasis */
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.who-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    border-radius: 2px;
}

.who-paragraph {
    font-size: 1.2rem;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 20px;
}

.who-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
    margin: 20px;
}

.who-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-image img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* Deeper shadow on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .who-container {
        flex-direction: column;
        text-align: center;
    }

    .who-content {
        max-width: 100%;
        padding: 20px 0;
    }

    .who-image {
        max-width: 100%;
        margin: 20px 0;
    }

    .who-heading {
        font-size: 2.4rem;
    }

    .who-paragraph {
        font-size: 1.1rem;
    }
}



/* Our Mission Section */
/* Mission Statement Section */
.tl-mission-section {
    padding: 50px 20px;
    background: #243B55; /* Light grey background for a clean look */
    text-align: center;

}

.tl-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tl-mission-box {
    background: #ffffff; /* White background for the box */
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition effects */
}

.tl-mission-box:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Deeper shadow on hover */
}

.tl-mission-heading {
    font-size: 2.8rem;
    color: #333333; /* Dark grey for the heading */
    border-bottom: 3px solid #243B55; /* Gold underline for emphasis */
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.tl-mission-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 80px;
    height: 3px;
    border-radius: 3px;
}

.tl-mission-paragraph {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .tl-mission-box {
        padding: 40px;
    }

    .tl-mission-heading {
        font-size: 2.2rem;
    }

    .tl-mission-paragraph {
        font-size: 1.1rem;
    }
}



/* What We Do Section */
.what-we-do-section {
    padding: 80px 20px;
    background-color: #243B55; /* Dark blue background */
    color: #ffffff; /* White text for contrast */
    text-align: center;
}

.what-we-do-section h2 {
    font-size: 2.8rem;
    color: #FFD700; /* Gold color for the heading */
    border-bottom: 3px solid #FFD700; /* Gold underline for emphasis */
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.service-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff; /* White background for service items */
    color: #243B55; /* Dark text for contrast */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.service-item i {
    font-size: 3rem;
    color: #FFD700; /* Gold color for the icons */
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.8rem;
    color: #333333; /* Dark grey for service titles */
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    font-size: 1.1rem;
    color: #666666; /* Medium grey for the paragraph text */
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        margin-bottom: 20px;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 20px;
    background-color: #f7f7f7; /* Light grey background for contrast */
    color: #243B55; /* Dark text color to match the theme */
    text-align: center;
}

.why-choose-us-section h2 {
    font-size: 2.8rem;
    color: #243B55; /* Dark heading color */
    border-bottom: 3px solid #243B55; /* Gold underline for emphasis */
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.reason-item {
    background-color: #ffffff; /* White background for reason items */
    color: #243B55; /* Dark text color */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.reason-item i {
    font-size: 3rem;
    color: #FFD700; /* Gold color for the icons */
    margin-bottom: 20px;
}

.reason-item h3 {
    font-size: 1.8rem;
    color: #243B55; /* Dark color for the reason titles */
    margin-bottom: 15px;
    font-weight: 600;
}

.reason-item p {
    font-size: 1.1rem;
    color: #666666; /* Medium grey for the paragraph text */
    line-height: 1.6;
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

/* Join Us Section */
.join-us-section {
    padding: 80px 20px;
    background-color: #243B55; /* Dark background to match the website theme */
    color: #ffffff; /* White text for contrast */
    text-align: center;
}

.join-us-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

.join-us-content {
    flex: 1;
    max-width: 600px;
    padding: 20px;
    text-align: left; /* Align text to the left for a professional layout */
}

.join-us-content h2 {
    font-size: 2.8rem;
    color: #FFD700; /* Gold color for the heading */
    border-bottom: 3px solid #FFD700; /* Gold underline for emphasis */
    margin-bottom: 20px;
    font-weight: 700;
}

.join-us-content p {
    font-size: 1.2rem;
    color: #f0f0f0; /* Light grey text for readability */
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary {
    background-color: #FFD700; /* Gold background for the primary button */
    color: #243B55; /* Dark text color */
}

.btn-primary:hover {
    background-color: #FFCC00; /* Lighter gold on hover */
    transform: translateY(-3px); /* Slight lift on hover */
}

.btn-secondary {
    background-color: #ffffff; /* White background for the secondary button */
    color: #243B55; /* Dark text color */
}

.btn-secondary:hover {
    background-color: #f0f0f0; /* Light grey on hover */
    transform: translateY(-3px); /* Slight lift on hover */
}

.join-us-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
    margin: 20px;
}

.join-us-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-us-image img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* Deeper shadow on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .join-us-container {
        flex-direction: column;
        text-align: center;
    }

    .join-us-content {
        max-width: 100%;
        text-align: center; /* Center text on smaller screens */
    }

    .join-us-image {
        max-width: 100%;
        margin: 20px 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
/* ---------------------------------------------------------------- 
            END OF ABOUT US PAGE

            START SERVICES PAGE
   ----------------------------------------------------------------
*/
/* Hero Section */
.hero-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #243B55, #141E30);
    color: #fff;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

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

.btn-cta {
    background-color: #FFD700;
    color:#141E30;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
    background-color: #e0c200;
    color:#000;
    transform: translateY(-5px);
}

/* Services Section */
.new-services-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #243B55, #141E30);
    color: #fff;
    text-align: center;
    position: relative;
}

.new-services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.new-services-container h2 {
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
    font-weight: 700;
    text-transform: uppercase;
}

.new-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
}

.new-service-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.new-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.service-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.new-service-item h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #FFD700;
    transition: color 0.3s ease;
}

.new-service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
    transition: color 0.3s ease;
}
/* Link Styling */
a {
    color: #FFD700; /* Gold color for the text */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Make the text bold */
    position: relative; /* Positioning for pseudo-elements */
    transition: color 0.3s ease, transform 0.3s ease;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Slightly below the text */
    width: 100%;
    height: 3px;
    background-color: #FFD700; /* Matching the text color */
    transform: scaleX(0); /* Start with no underline */
    transform-origin: right;
    transition: transform 0.3s ease;
}

a:hover::after {
    transform: scaleX(1); /* Full underline on hover */
    transform-origin: left;
}

a:hover {
    color: #e0c200; /* Slightly darker gold on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

a:active {
    color: #FFD700; /* Return to the original color when active */
    transform: translateY(0); /* No lift when active */
}

.new-service-button {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background-color: #FFD700;
    color: #243B55;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.new-service-button:hover {
    background-color: #e0c200;
    transform: translateY(-2px);
}

.new-service-item::before,
.new-service-item::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 1;
}

.new-service-item::before {
    top: -40px;
    right: -40px;
}

.new-service-item::after {
    bottom: -40px;
    left: -40px;
}

.new-service-item:hover::before,
.new-service-item:hover::after {
    transform: scale(1.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .new-services-container h2 {
        font-size: 2.4rem;
    }

    .new-service-item h3 {
        font-size: 1.8rem;
    }

    .new-service-item p {
        font-size: 0.9rem;
    }

    .new-service-button {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .new-services-container h2 {
        font-size: 2rem;
    }

    .new-service-item h3 {
        font-size: 1.6rem;
    }

    .new-service-item p {
        font-size: 0.8rem;
    }

    .new-service-button {
        font-size: 0.7rem;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #141E30, #243B55);
    color: #fff;
    text-align: center;
}

.why-choose-us-section h2 {
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 700;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.reason-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.reason-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.reason-item h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #FFD700;
    transition: color 0.3s ease;
}

.reason-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-us-section h2 {
        font-size: 2.4rem;
    }

    .reason-item h3 {
        font-size: 1.8rem;
    }

    .reason-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us-section h2 {
        font-size: 2rem;
    }

    .reason-item h3 {
        font-size: 1.6rem;
    }

    .reason-item p {
        font-size: 0.8rem;
    }
}

/* Our Process Section Styles */
.process-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.process-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Individual Step */
.step {
    background-color: #fff;
    display: flex;
    align-items: center;
    width: 80%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: left;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Step Icon */
.step-icon {
    background-color: #1e88e5;
    color: white;
    font-size: 2rem;
    padding: 20px;
    border-radius: 50%;
    margin-right: 20px;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Alternating Background Colors for Steps */
.step:nth-child(odd) .step-icon {
    background-color: #ff7043;
}

.step:nth-child(even) .step-icon {
    background-color: #66bb6a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-icon {
        margin-bottom: 15px;

    }
}


/* Case Studies Section */
.case-studies-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.case-studies-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #243B55;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-study-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.case-study-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.case-study-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #243B55;
}

.case-study-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.8rem;
    color: #243B55;
    margin-bottom: 50px;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.testimonial-quote {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-author h3 {
    font-size: 1.4rem;
    color: #243B55;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 1rem;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-section h2 {
        font-size: 2.4rem;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .testimonial-author h3 {
        font-size: 1.2rem;
    }

    .testimonial-author p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section h2 {
        font-size: 2rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonial-author h3 {
        font-size: 1rem;
    }

    .testimonial-author p {
        font-size: 0.8rem;
    }
}


/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: left;
}

.faq-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #243B55;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-size: 1.5rem;
    color: #243B55;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    padding: 10px;
    transition: background-color 0.3s ease;
    border-bottom: 2px solid #243B55;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-answer {
    display: none;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 4px solid #243B55;
    font-size: 1.2rem;
    color: #555;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #243B55, #141E30);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.btn-cta-secondary {
    background-color: #fff;
    color: #243B55;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #e0e0e0;
    transform: translateY(-5px);
}


/* ---------------------------------------------------------------- 
            END OF ABOUT US PAGE

            START BECOME A MODEL PAGE
   ----------------------------------------------------------------
*/

/* General Styles for Become a Model Page */
.become-model-section {
    background-color: #f4f4f9;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.become-model-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.intro-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.form-container {
    background-color: #fff;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1e88e5;
    outline: none;
}

.form-group input[type="file"] {
    padding: 10px;
    border: none;
}

.submit-button {
    background-color: #1e88e5;
    color: white;
    font-size: 1.2rem;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #1565c0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }

    .submit-button {
        font-size: 1rem;
        padding: 10px;
    }
}
.benefits-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.benefit {
    background-color: #f9f9f9;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit i {
    font-size: 3rem;
    color: #1e88e5;
    margin-bottom: 15px;
}

.benefit h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.benefit p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefits-container {
        flex-direction: column;
        align-items: center;
    }
}
