@import url('https://fonts.googleapis.com/css2?family=Lily+Script+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Licorice&family=Lily+Script+One&display=swap');
/* fonts  */
@font-face {
    font-family:"Raleway-regular";
    src:url(../fonts/Raleway-Regular.ttf)
}
@font-face {
    font-family:"Raleway-medium";
    src:url(../fonts/Raleway-Medium.ttf)
}
@font-face {
    font-family:"Raleway-bold";
    src:url(../fonts/Raleway-Bold.ttf)
}
@font-face {
    font-family:"Raleway-extrabold";
    src:url(../fonts/Raleway-ExtraBold.ttf)
}
@font-face {
    font-family:"Raleway-semibold";
    src:url(../fonts/Raleway-SemiBold.ttf)
}
@font-face {
    font-family:"Raleway-black";
    src:url(../fonts/Raleway-Black.ttf)
    
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{

    -webkit-font-smoothing:antialiased;
    font-family: "Raleway-regular";
}

.partners-controller {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* Partner Program Section */
.partner-program {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-program-content {
    flex: 1;
}

.partner-program-image {
    flex: 1;
    text-align: center;
}

.partner-program-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-program h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.partner-program p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 40px auto;
    max-width: 1200px;
}

.get-started-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff5200;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.get-started-btn:hover {
    background-color: #2667cc;
    transform: translateY(-2px);
}

.stats-container {
    display: flex;
    gap: 30px;
}

.stat-item {
    font-size: 24px;
    font-weight: 700;
    color: #3a86ff;
}

/* Agency Partners Section */
/* Agency Partners Section */
.partners-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.partners-header {
    margin-bottom: 40px;
}

.partners-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.partners-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); /* Adjusted for larger grid items */
    gap: 30px;
    margin-bottom: 40px;
}

.partner-card {
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;  /* Reduced padding to make sure the image fits better */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px; /* Increased size */
    width: 180px; /* Increased size */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
    overflow: hidden; /* Ensures image is clipped to fit within the circle */
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    width: 100%;  /* Makes the image fill the container */
    height: 100%; /* Ensures the image covers the entire circle */
    object-fit: cover; /* Ensures the image fits well inside the container */
    border-radius: 50%; /* Keeps the image inside the circle */
}


.buttons-container {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 0 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid #007bff;
    color: #007bff;
}

.btn-outline:hover {
    background-color: #007bff;  
    color: white;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    /* border: 2px solid #007bff; */
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

/* Responsive Design */
@media screen and (max-width: 768px) {

    .partner-program {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .partner-program-content h1 {
        font-size: 28px;
    }

    .partner-program-content p {
        font-size: 16px;
    }

    .get-started-btn {
        padding: 10px 24px;
        font-size: 16px;
    }

    .partners-title {
        font-size: 26px;
    }

    .partners-description {
        font-size: 16px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 20px;
    }

    .partner-card {
        width: 140px;
        height: 140px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 10px;
    }

    .buttons-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {

    .partner-program-content h1 {
        font-size: 22px;
    }

    .partner-program-content p {
        font-size: 15px;
    }

    .partners-description {
        font-size: 14px;
    }

    .partner-card {
        width: 120px;
        height: 120px;
    }

    .btn {
        width: 90%;
        text-align: center;
    }
}