/* ====================Global Styles==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ====================Intro Section Styles==================== */
.intro_section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.intro_section .row {
    display: flex;
    align-items: center;
    margin: 0 -15px;
}

.intro_section .col-lg-6 {
    padding: 0 15px;
}

.intro_section .section_img {
    text-align: center;
    position: relative;
}

.intro_section .section_img img {
    max-width: 100%;
    width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 97, 184, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.intro_section .section_img img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 97, 184, 0.25);
}

.intro_section .section_text {
    padding-left: 40px;
}

.intro_section .section_title_1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro_section .section_title_1 span {
    color: #0061b8;
    position: relative;
    display: inline-block;
}

.intro_section .section_title_1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(129, 222, 118, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.intro_section .section_p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: left;
    max-width: 100%;
}

/* ====================Banner Image==================== */
.banner .section_img img {
    max-width: 100%;
    width: 550px;
    /* Increase size */
    height: auto;
    margin-left: 50px;
    /* Thoda kam margin */
}

/* ====================Why Schedule Section==================== */
.what_is_ai .card_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0 20px;
}

.what_is_ai .card_1 {
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.what_is_ai .card_1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 97, 184, 0.15);
}

.what_is_ai .img_div_1 {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what_is_ai .img_div_1 img {
    max-width: 100%;
    height: auto;
}

.what_is_ai .card_1 h6 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.what_is_ai .card_1 p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.what_is_ai .section_p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ====================How It Works Section==================== */
.how_it_works {
    padding: 60px 0;
}

.how_it_works .row {
    margin-bottom: 40px;
    align-items: center;
}

.how_it_works .section_img img {
    max-width: 100%;
    width: 450px;
    height: auto;
    border-radius: 15px;
}

.how_it_work_card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.count_1_div {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.count_1 {
    width: 50px;
    height: 50px;
    background: var(--light_green);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.count_1_div h4 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.how_it_work_card p {
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
    margin: 0;
}

/* ====================CRM Advantages Section==================== */
.features {
    padding: 60px 0;
}

.features .card_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.features .card_1 {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.features .card_1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 97, 184, 0.15);
}

.features .img_div_1 {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.features .img_div_1 img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.features .card_1 h6 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    width: 100%;
}

.features .card_1 p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    width: 100%;
}

/* ====================Responsive Styles==================== */
@media only screen and (max-width: 992px) {
    .features .card_container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Fix for centering on tablet */
    .features .card_1 {
        padding: 25px 15px;
    }
}

@media only screen and (max-width: 768px) {
    .features .card_container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .features .card_1 {
        max-width: 350px;
        margin: 0 auto;
        width: 100%;
        padding: 25px 20px;
    }
    
    /* Force center alignment for mobile */
    .features .img_div_1 {
        margin: 0 auto 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .features .img_div_1 img {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 480px) {
    .features .card_1 {
        max-width: 300px;
        padding: 20px 15px;
    }
    
    .features .img_div_1 {
        width: 60px;
        height: 60px;
    }
}

/* Additional fix for very small screens */
@media only screen and (max-width: 360px) {
    .features .card_1 {
        max-width: 260px;
        padding: 15px 10px;
    }
    
    .features .img_div_1 {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
}

/* ====================Responsive Styles==================== */
@media only screen and (max-width: 1200px) {
    .intro_section .section_title_1 {
        font-size: 32px;
    }

    .intro_section .section_img img {
        width: 450px;
    }

    .banner .section_img img {
        width: 350px;
        margin-left: 50px;
    }
}

@media only screen and (max-width: 992px) {
    .intro_section {
        padding: 60px 0;
    }

    .intro_section .section_text {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }

    .intro_section .section_p {
        text-align: center;
    }

    .intro_section .section_img img {
        width: 400px;
    }

    .banner .section_img img {
        width: 300px;
        margin-left: 0;
    }

    .what_is_ai .card_container,
    .features .card_container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .how_it_works .section_img {
        text-align: center;
        margin-bottom: 30px;
    }

    .how_it_works .section_img img {
        width: 350px;
    }
}

@media only screen and (max-width: 768px) {
    .intro_section {
        padding: 40px 0;
    }

    .intro_section .section_title_1 {
        font-size: 28px;
    }

    .intro_section .section_img img {
        width: 300px;
    }

    .banner .section_img img {
        width: 250px;
        height: auto;
        margin: 20px auto 0;
        display: block;
    }

    .banner .banner_div {
        text-align: center;
    }

    .banner .section_text {
        margin-bottom: 30px;
    }

    .what_is_ai .card_container,
    .features .card_container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .what_is_ai .card_1,
    .features .card_1 {
        max-width: 350px;
        margin: 0 auto;
    }

    .how_it_works .row {
        margin-bottom: 30px;
    }

    .how_it_works .section_img img {
        width: 280px;
    }

    .count_1_div {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .count_1_div h4 {
        font-size: 20px;
    }

    .how_it_work_card {
        text-align: center;
    }
}

@media only screen and (max-width: 480px) {
    .intro_section .section_img img {
        width: 250px;
    }

    .banner .section_img img {
        width: 200px;
    }

    .what_is_ai .card_1,
    .features .card_1 {
        max-width: 300px;
        padding: 20px 15px;
    }

    .count_1 {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* ====================Section Title==================== */
.section_title_1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.section_title_1 span {
    color: #0061b8;
}

.section_title_2 {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.green_line_center::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--light_green);
    margin: 15px auto;
}

/* ====================Button Styles==================== */
.btn_div {
    display: inline-block;
    padding: 12px 30px;
    background: var(--light_green);
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn_div:hover {
    background: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ====================Design Elements==================== */
.p_relative {
    position: relative;
}

.design {
    position: absolute;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.design_1 {
    top: 20px;
    left: 20px;
    width: 100px;
}

.design_2 {
    bottom: 20px;
    right: 20px;
    width: 80px;
}

.design_3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    opacity: 0.1;
}

