* {
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;  /* Hides horizontal scroll */
}
/* ========== main container ======== */
.main {
    color: #444;
    font-size: 18px;
    /* background-color: #E6F7FB; */
}

/* =========== section ====== */
.section {
    min-height: 100vh;
    padding: 20px 70px;
}
/* ======= pre intro ========= */
.pre-intro .line-break {
    margin-top: 60px;
    width: 100%;
    border-bottom: 3px solid #007A92; /* slightly darker shade */
}
.pre-intro h1 {
    text-align: center;
    background-color: #fff;
    width: 60%;
    transform: translate(30%, -80%);
    color: #0097B2; /* primary color */
    font-weight: 900;
}
.pre-intro-text {
    padding: 0 200px;
    text-align: start;
    font-weight: 600;
}
.pre-intro-row{
    margin: 50px auto;
}

.pre-intro-sub-para {
    padding: 60px 60px;
}
.pre-intro-sub-para h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #007A92;
    font-size: 25px;
    font-weight: 900;
}

/* ====== Pre-Service section ======= */
.pre-service {
    background-color: #005F76; /* darker shade of #0097B2 */
    color: #fff;
    text-align: center;
}
.btn-pre-service {
    font-size: 18px;
    width: 200px;
    padding: 15px 20px;
    margin-bottom: 40px;
    background-color: #0097B2;
    color: white;
    border: none;
    cursor: pointer;
}
.pre-service .pre-service-heading {
    text-align: start;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 70px;
    position: relative;
}
.pre-service .pre-service-heading::after {
    content: '';
    height: 5px;
    width: 45px;
    background-color: #E6F7FB;
    position: absolute;
    top: 100%;
    left: 15px;
    margin-top: 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.pre-service .pre-service-heading:hover {
    font-weight: bolder;
}

.btn-pre-service-explore{
    text-align: start;
}


/* ====== collaborate section ======= */
.collaborate-img{
    text-align: center;
}
.collaborate-img img{
    width: 500px;
    height: 400px;
    margin-bottom: 40px;
}

.collaborate-text{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
    flex-direction: column;
    margin-bottom: 100px;
}
.collaborate-text h3{
    margin-top: 20px;
    margin-bottom: 20px;
    color: #007A92;
    font-size: 25px;
    font-weight: 900;
}
.collaborate-cards{
    text-align: center;
    gap: 15px;
}
.collaborate-card{
    width: 400px;
    padding: 20px 10px;
    transition: all .3s ease-in;
    cursor: pointer;
    border-radius: 15px !important;
    /* border: 2px solid #0097B2; */
}
.collaborate-card:hover{
    box-shadow: 0px 10px 25px  rgba(0, 0, 0 , 0.3);
    border-radius: 10px;
}
.collaborate-card i{
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 30px;
    color: #0097B2;
    cursor: pointer;
    transition: all .3s ease-in;
}
.collaborate-card:hover i{
    transform: scale(1.5);
}
.collaborate-card h3{
    /* font-size: 20px; */
    font-weight: 700;
    margin-bottom: 20px;
    color: #007A92;

}
/* .collaborate-company{
    margin-top: 50px;
    margin-bottom: 10px;
    text-align: center;
}
.collaborate-company h3{
    margin-top: 20px;
    margin-bottom: 20px;
    color: #1A0F49;
    font-size: 25px;
    font-weight: 900;
} */




/* =========== Founder Section ============ */
.founders {
    padding-top: 30px;
    margin-top: 100px;
    background-color: #005F76;
    color: #fff;
    text-align: center;
    margin-bottom: 2px;
}
.founders h1 {
    color: #fff;
    font-weight: 900;
}

.founders-img{
    text-align: center;
}
.founder-img img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
 }
 .founders-text{
    padding: 10px 80px;
}

.founders-text p {
    color: #E6F7FB;
    font-size: 16px;
}

.founders-text span {
    color: #E6F7FB;
    font-weight: 800;
}

.founders-text .company{
    font-size: 15px;
}

.quote .fa-quote-left {
    color: #E6F7FB;
    font-size: 100px;
    opacity: .8;
}





/* ======== Media queries ===== */
@media screen and (max-width:1115px) {
    .pre-intro-image{
        width: 50%;
    }
   .pre-intro-sub-para{
     padding: 60px 20px;
   }
   .collaborate-cards{
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 10px;
   }
}
@media screen and (max-width:1015px) {
    .pre-intro-img{
        text-align: center;
    }
    .pre-intro-text{
        padding: 0 100px;
    }
    .pre-intro h1{
        width:70%;
        transform: translate(20% , -80%);
        font-size: 25px;
    }
    .collaborate-cards{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 10px;
    }
}
@media screen and (max-width:835px) {
    .pre-intro h1{
        font-size: 30px;
    }
    .pre-intro-text{
        padding: 0 50px;
    }
    .hero-text h3{
        font-size: 20px;
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .section{
        padding: 20px 10px;
    }
    .pre-intro-sub-para{
        padding: 0;
    }
    .collaborate-cards{
        margin: auto 10px;
    }
    .founders-text{
        padding: 10px;
    }
}
@media (max-width: 560px) {
    .pre-intro-img img{
        width: 80%;
    }
    .collaborate-cards{
        margin: auto 50px!important;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 3fr));
        gap: 10px;
    }
    .collaborate-img img{
        width: 400px;
        height: 300px;
        margin-bottom: 40px;
    }
    
}

@media (max-width: 480px) {
    .main {
        font-size: 15px;
    }
 
    .pre-intro-text{
        padding: 20px 10px;
    }
    .pre-intro-text p{
        font-size: 16px;
    }
    .pre-intro h1{
        transform: translate(10% , -70%);
        width: 80%;
        font-size: 1.5rem;
    }
    .collaborate-img img{
        width: 300px;
        height: 300px;
        margin-bottom: 40px;
    }
    .collaborate-cards{
        margin: auto 5px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 5px;
    }

}