/* Introduction Section */
.intro {
    padding: 50px 0;
}

.intro-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 500px;
}

.intro-left, .intro-right {
    flex: 1;
    position: relative;
    padding: 20px;
}

.intro-left{
    background-color: var(--primary-color);
    border-radius: 0 20px 20px 0;
    color: white;
}

.intro-svg img {
    width: 100%;
    height: 100%;
}

.intro-text {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.intro-text h1 {
    font-size: 2.5rem;
}

.intro-text p {
    margin-top: 20px;
    font-size: 1rem;
}

.primary-rect {
    position: absolute;
    width: 65%;
    height: 60%;
    top: 40%;
    left: 12%;
    background-color: var(--primary-color);
    border-radius: 10px;
    z-index: 1;
}

.secndary-rect {
    position: absolute;
    width: 65%;
    height: 60%;
    top: 0%;
    right: 15%;
    background-color: var(--accent-color);
    border-radius: 10px;
    z-index: 2;
}

.intro-team-image {
    position: relative;
    width: 70%;
    left: 15%;
    border-radius: 10px;
    z-index: 3;
}

.intro-dot-pattern {
    position: absolute;
    width: 15%;
    bottom: -10%;
    left: 5%;
    z-index: 4;
}

/* Services Section */
.services {
    background: var(--primary-color);
    color: var(--background-color);
    padding: 50px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-header h2 {
    color: var(--background-color);
    font-size: 2rem;
}

.services-header p {
    font-size: 1.2rem;
}

.services-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-left, .services-right {
    position: relative;
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.services-background-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    animation: floatingCircles 20s infinite;
}


.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.circle1 {
    width: 100px;
    height: 100px;
    background-color: #485EFF; /* Light blue */
}

.circle2 {
    width: 70px;
    height: 70px;
    background-color: #193BEC; /* Medium blue */
}

.circle3 {
    width: 150px;
    height: 150px;
    background-color: #0200A5; /* Darker blue */
}


.service-boxes {
    position: relative;
    z-index: 1;
}

.service-box {
    width: 250px;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.service-box i{
    width: 45px;
    font-size: 45px;
}
.service-box h3 {
    margin-top: 0;
    color: var(--background-color);
}

.service-box p {
    width: 100%;
    margin: 0px;
}

.services-right img {
    width: 80%;
}

.services-right p {
    width: 100%;
    margin: 0px;
    font-size: 1rem;
    text-align: left;
}

/* Features Section */
.features {
    padding: 50px 0;
    background-color: var(--background-color);
    color: var(--primary-color);
}

.features h2 {
    text-align: left;
    padding-left: 10%;
    font-size: 2rem;
}

.features-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.features-left {
    position: relative;
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.features-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.features-gold-bg {
    position: absolute;
    width: 60%;
    height: 60%;
    top: 0;
    left: 0;
    background-color: var(--accent-color);
    border-radius: 10px;
    z-index: 1;
}

.features-image {
    position: relative;
    width: 70%;
    border-radius: 10px;
    z-index: 2;
}

.features-right {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin: 0px 0px 20px 0px;
}

.feature-icon {
    width: 35px;
    margin-right: 20px;
}

.feature-text {
    font-size: 1rem;
}

.feature-text h3 {
    margin: 0;
    font-size: 1.5rem;
}

/* Banner Section */
.banner {
    width: 80%;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 40px;
    position: relative;
    border-radius: 10px;
    margin: 50px auto;
    text-align: left;
}

.banner-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.banner h2 {
    font-size: 2rem;
}

.banner p {
    margin: 20px 0;
    font-size: 1.2rem;
}

.banner-dot-pattern {
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 15%;
    z-index: 0;
}


/* Media Queries */
@media (max-width: 768px) {

    .intro-content{
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: 600px;
    }

    .primary-rect {
        width: 60%;
        height: 55%;
        top: 40%;
        left: 15%;
    }
    
    .intro-team-image {
        width: 70%;
        left: 0%;
    }
    
    .intro-dot-pattern {
        width: 15%;
        bottom: -10%;
        left: 8%;
    }
    
    .features-content{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }


    .features-left {
        text-align: center;
    }

    .features-gold-bg {
        top: 0%;
        left: 10%;
    }

    .features-svg {
        width:80%;
    }

    .features-image {
        margin: auto;
    }
    .banner-dot-pattern {
        bottom: -30%;
        right:0%;
        width: 20%;
    }   
}