:root{
    --primary-color:#c6e8ff;
    --secondary-color: #F7F7F7;
    --std-color:#0A5B9C;
    --std-color2:#eef7fd;
    --std-padding:0px 30px;
}

        .service-sections {
            width: 100%;
            padding-top: 100px;
            padding-bottom:20px;
            background-color:var(--std-color2);
            background-size: cover;
            background-repeat: no-repeat;
        }

        .service-sec1 {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap:60px;
        }

        .sec1-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .sec1-left h1 {
            font-size: 5rem;
            font-weight: bolder;
            color:var(--std-color)
        }

        .service-sec1-img {
            width: 100%;
            max-width: 800px;
            border-radius: 10px;
            margin-left:50px;
            margin-top:-55px;  
            animation: slideInTop 1s ease-in-out forwards;
        }

        .sec1-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items:flex-start;
            animation: slideInRight 1s ease-in-out forwards;
        }

        .sec1-right h3 {
            font-size:1rem;
            color: var(--std-color);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .sec1-right p {
            font-size:18px;
            color: #555;
            line-height: 1.6;
            text-align: justify;
        }
        /*animations*/
        @keyframes slideInRight {
            from {
                transform: translateX(100px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes slideInTop {
            from {
                transform: translateY(-100px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

/* Responsive Design */
@media (min-width:1700px) and (max-width:2600px){
    .sec1-right p {
        font-size:20px;
    }
}
@media (max-width: 1400px) {
    .sec1-left h1 {
        font-size: 4rem;
    }

    .service-sec1-img {
        max-width: 700px;
    }
}

@media (max-width: 1200px) {
    .sec1-left h1 {
        font-size: 3.5rem;
    }

    .service-sec1-img {
        max-width: 400px;
    }

    .service-sec1 {
        gap: 70px;
    }
    
    .sec1-right p {
        font-size:16px;
        text-align:justify;
    }
}

@media (max-width: 1024px) {
    .service-sec1 {
        flex-direction:row;
        align-items: flex-start;
        text-align: center;
        gap: 30px;
    }

    .sec1-left h1 {
        font-size: 3rem;
    }

    .service-sec1-img {
        max-width: 550px;
        margin-left: 0;
        margin-top: 0;
    }

    .sec1-right {
        align-items: center;
    }

    .sec1-right h3 {
        font-size: 1rem;
        text-align: center;
    }

    .sec1-right p {
        font-size: 16px;
        text-align:justify;
    }
}
@media (max-width: 992px) {
    .service-sec1 {
        flex-direction:column;
        align-items:center;
        text-align: center;
        gap: 30px;
    }
    .sec1-left h1 {
        font-size: 2.5rem;
    }

    .service-sec1-img {
        max-width: 450px;
    }

    .sec1-right h3 {
        font-size: 0.9rem;
    }

    .sec1-right p {
        font-size:14px;
    }
}
@media (max-width: 768px) {
    .service-sec1 {
        flex-direction:column;
        align-items:center;
        text-align: center;
        gap: 30px;
    }
    .sec1-left h1 {
        font-size: 2.5rem;
    }

    .service-sec1-img {
        max-width: 450px;
    }

    .sec1-right h3 {
        font-size: 0.9rem;
    }

    .sec1-right p {
        font-size:14px;
    }
}

@media (max-width: 576px) {
    .sec1-left h1 {
        font-size: 2rem;
    }

    .service-sec1-img {
        max-width: 350px;
    }

    .sec1-right h3 {
        font-size: 0.85rem;
    }

    .sec1-right p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/*servicesec2*/
.service-sec2 {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
}

.service-sec2 .heading-text {
    font-size:30px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

/* Flexbox Grid */
.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card1 {
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color:white;
    border-radius: 20px;
    padding: 20px;
    width: 30%;
    min-width: 320px;
    text-align: center;
    box-shadow: 2px 2px 5px 0px rgba(10, 91, 156, 0.5);
    transition: transform 0.3s ease-in-out;
}

.card1 img {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
}

.service-sec2 .card1 h1 {
    font-size:18px;
    margin-bottom: 10px;
    text-align: left;
    font-weight:600;
}

.card1 p {
    font-size:16px;
    color: #333;
    line-height: 1.5;
    text-align: left;
}
/*animations*/
.top-anime{
    animation: slideInTop 1s ease-in-out forwards;
}
.left-anime{
    animation: slideInLeft 1s ease-in-out forwards;
}
.right-anime{
    animation: slideInRight 1s ease-in-out forwards;
}
@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInTop {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* Responsive Design */
@media (min-width:1700px) and (max-width:2600px){
    .service-sec2 .card1 h1 {
        font-size:20px;
    }
    .card1 p{
        font-size:20px;
    }
    
}
@media (max-width: 1400px) {
    .service-sec2 .heading-text {
        font-size:30px;
    }

    .card1 {
        width: 32%;
    }
}

@media (max-width: 1200px) {
    .service-sec2 .heading-text {
        font-size:30px;
    }

    .card1 {
        width: 45%;
    }
    .service-cards {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .service-sec2 {
        max-width: 100%;
        padding: 0 20px;
    }

    .service-sec2 .heading-text {
        font-size:30px;
    }

    .service-cards {
        gap: 15px;
    }

    .card1 {
        width: 48%;
        padding: 15px;
    }

    .card1 h1 {
        font-size:18px;
    }

    .card1 p {
        font-size: 16px;
    }
}
@media (max-width:992px){
    .service-sec2 .heading-text {
        font-size:20px;
    }

    .service-cards {
        flex-direction:row;
        align-items: center;
        gap:10px;
    }

    .card1 {
        width: 100%;
        min-width: 280px;
    }

    .card1 img {
        width: 100px;
        height: 100px;
    }

    .card1 h1 {
        font-size: 18px;
    }

    .card1 p {
        font-size:16px;
    }
} 

@media (max-width: 768px) {
    .service-sec2 .heading-text {
        font-size: 20px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card1 {
        width: 80%;
        min-width: 280px;
    }

    .card1 img {
        width: 100px;
        height: 100px;
    }

    .card1 h1 {
        font-size:18px;
    }

    .card1 p {
        font-size:16px;
    }
}

@media (max-width: 576px) {
    .service-sec2 {
        padding: 0px;
    }
    .service-sec2 .heading-text {
        font-size: 20px;
    }

    .card1 {
        width: 100%;
    }

    .card1 h1 {
        font-size:18px;
    }

    .card1 p {
        font-size:16px;
        text-align: justify;
    }

    .card1 img {
        width: 90px;
        height: 90px;
    }
}

/*service-sec3*/
.service-sec3 {
    text-align: center;
    padding:15px;
}
.service-sec3 h1{
    font-size:30px;
    font-weight: bold;
    text-align: center;
}

.glasses-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.left-glass,
.right-glass {
    max-width: 150px;
    height: auto;
}

.bubble-flow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top:-100px;
}

.bubbles-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.bubble-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bubble-icon {
    max-width: 130px;
    height: auto;
}

.service-sec3 p {
    font-size:18px;
    text-align: center;
    padding-bottom:70px;
}

.flow-image img {
    max-width: 100%;
}
/*animations of bubbles*/
.bubble-item {
    animation: bounce 2s ease-in-out infinite;
  }
  
  .bubble-item:nth-child(odd) {
    animation-duration: 2s;
  }
  
  .bubble-item:nth-child(even) {
    animation-duration: 2s;
  }
  
  @keyframes bounce {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px); /* Moves the bubble upward */
    }
    100% {
      transform: translateY(0); /* Returns to original position */
    }
  }
  /*responsive*/
  @media (min-width:1700px) and (max-width:2600px){
    .service-sec3{
        padding-bottom:40px;
    }
    .flow-image img{
        max-width: 90%;
    }
    .service-sec3 p {
        font-size:20px;
    }
  }
  @media (max-width: 1400px) {
    .service-sec3{
        padding-bottom:40px;
    }
    .service-sec3 h1 {
        font-size:30px;
    }

    .glasses-section {
        gap: 25px;
    }
    .service-sec3 p {
        font-size:16px;
        padding-bottom:20px;
    }
    .left-glass,
    .right-glass {
        max-width: 150px;
    }

    .bubble-icon {
        max-width: 120px;
    }
}

@media (max-width: 1200px) {
    .service-sec3{
        padding-bottom:40px;
    }
    .service-sec3 h1 {
        font-size:30px;
    }

    .glasses-section {
        gap: 20px;
    }

    .left-glass,
    .right-glass {
        max-width: 160px;
    }

    .bubble-icon {
        max-width: 110px;
    }

    .bubble-flow {
        margin-top: -80px;
    }

    .service-sec3 p {
        font-size:16px;
        padding-bottom:0px;
    }
    .flow-image img{
        width:100%;
    }
}

@media (max-width: 1024px) {
    .service-sec3{
        padding-bottom:40px;
    }
    .glasses-section {
        gap: 15px;
    }

    .left-glass,
    .right-glass {
        max-width: 120px;
    }

    .bubble-icon {
        max-width: 100px;
    }

    .bubble-flow {
        margin-top: -60px;
    }

    .bubbles-row {
        gap: 15px;
    }
    .service-sec3 p {
        font-size:16px;
        padding:0px;
    }
}
@media (max-width: 992px) {
    .service-sec3{
        padding-bottom:50px;
    }
    .service-sec3 h1 {
        font-size:20px;
        padding-bottom:20px;
    }

    .glasses-section {
        flex-direction:row;
        align-items:center;
        padding-bottom:0px;
    }

    .left-glass,
    .right-glass {
        max-width: 80px;
    }

    .bubble-icon {
        max-width: 90px;
    }

    .bubble-flow {
        margin-top: -40px;
    }

    .bubbles-row {
        flex-direction:row;
        gap: 10px;
    }

    .service-sec3 p {
        font-size:14px;
        padding-bottom:50px;
    }
    .flow-image img {
        display:block;
    }
}

@media (max-width: 768px) {
    .service-sec3 h1 {
        font-size:20px;
    }

    .glasses-section {
        flex-direction:row;
        align-items:center;
        padding-bottom:0px;
    }

    .left-glass,
    .right-glass {
        max-width: 80px;
    }

    .bubble-icon {
        max-width: 90px;
    }

    .bubble-flow {
        margin-top: -40px;
    }

    .bubbles-row {
        flex-direction:row;
        gap: 20px;
    }

    .service-sec3 p {
        font-size:14px;
        padding-bottom:0px;
        text-align: justify;
    }
    .flow-image img {
        display:block;
    }
}

@media (max-width: 576px) {
    .glasses-section {
        flex-direction:row;
        align-items:center;
        justify-content:center;
        padding-bottom:0px;
    }
    .service-sec3 h1 {
        font-size:20px;
    }

    .left-glass,
    .right-glass {
        max-width: 50px;
    }

    .bubble-icon {
        max-width: 25px;
    }

    .bubble-flow {
        margin-top: -20px;
    }

    .bubbles-row {
        flex-direction:row;
    }

    .service-sec3 p {
        font-size:14px;
        padding-bottom:0px;
        text-align: justify;
    }
}


