/* Import Google Font */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); */


html{
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fefaff;
}

body {
    /* font-family: "Poppins", sans-serif; */
    font-family: "Gotu", sans-serif;

}

/* Navbar */
.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5% 15px 5%;
    background-color: #fefaff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    height:8vh;
    min-height: 50px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: auto;
    object-fit: contain;
    
}

.text {
    color: #345995;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    color: #345995;
    font-size: 18px;
    text-decoration: none;
    font-family: "JetBrains Mono",monospace;
    transition: 0.3s;
}

.nav-right a:hover {
    color: black;
}

.menu-toggle{
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #363636;
}

@media screen  and (max-width:768px){
    .nav-right{
        display: none;
        flex-direction: column;
        position:absolute;
        top:8vh;
        right: 5%;
        background-color: #fefaff;
        width:200px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        border-radius:5px;
        padding:10px;
        text-align: center;
    }
    .nav-right a{
        display: block;
        padding:5px;
        border-bottom: #363636 1px solid;
        transition: 0.3s;
    }

    .nav-right a:last-child{
        border-bottom: none;
    }
    
    
    .menu-toggle{
        display: block;
    }
    .nav-right.show{
        display: flex;
    }
}

/*Hero Section*/

.hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fefaff;
    padding-top: 5vh;
    margin:2vh;
    padding-bottom: 110px;
}

.heading{
    margin-top: 8vh;
    font-size: 3em;
    color:#345995;
    text-align: center;
}

.tagline{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    max-width:80%;
    padding-top: 10px;
}

.btn {
  margin-top: 100px;
  align-items: center;
  appearance: none;
  background-color: #FCFCFD;
  border-radius: 4px;
  border-width: 0;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
  box-sizing: border-box;
  color: #36395A;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono",monospace;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s,transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow,transform;
  font-size: 18px;
  ;
}

.btn:focus {
  box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.btn:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
  transform: translateY(-2px);
}

.btn:active {
  box-shadow: #D6D6E7 0 3px 7px inset;
  transform: translateY(2px);
}

.section1{
    display: block;
    height:auto;
    width:100%;
    text-align: center;
    padding:90px 5%;
    background-color:#fefaff;
}

.section-heading{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:3em;
    font-weight: bold;
    color: #303636;
    padding-bottom: 50px;
}




/*Expertise Cards*/

.cards1{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:20px;
}

.Expertise-card{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ccceda;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 8px rgba(0,0,0,0.3);
    text-align:center;
    transition: transform 0.3s ease-in-out;
    flex-wrap: wrap;
}

.Expertise-card:hover{
    transform: translateY(-10px);
}

.Expertise-card img{
    width:60px;
    height: 60px;
    margin-bottom: 15px;
    background-color:inherit;
}

.card-title{
    font-size: 1.4em;
    font-weight: bold;
    color:#303636;
    margin-bottom: 10px;
    background-color:inherit
}

.card1-desc{
    font-size: 1em;
    color:#303636;
    background-color:inherit;
}

@media (max-width:1024px){
    .cards1{
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width:768px){
    .cards1{
        grid-template-columns: 1fr;
    }
}





/*Featured Projects

.section2{
    height: auto;
    display: block;
    width:100%;
    text-align: center;
    padding:50px 5%;
    
}

.cards2{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    height: auto;
    gap:30px;
    place-items: center;
    width:100%;
    max-width: 100%;
}

.project-card{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ccceda;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 8px rgba(0,0,0,0.3);
    text-align:center;
    transition: transform 0.3s ease-in-out;
    height:auto;
    width:80%;
    max-width: 250px;
    height:250px;
    margin-bottom: 20px;
    background-clip: border-box;
}

.project-card:hover{
    transform: translateY(-10px);
}

@media (max-width: 1024px) {
    .cards2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cards2 {
        grid-template-columns: 1fr;
    }

    .project-card {
        width: 80%; 
        max-width: 100%;
    }
}
*/




/*Testimonials Section
.section3{
    width:100%;
    padding:50px;
    background-color: #fefaff;
    text-align: center;
}

.test-wrap{
    width:100%;
    display: flex;
    flex-direction: column;
    overflow:hidden;
}

.cards3{
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
    animation: marquee 15s linear infinite;
}

.test-card{
    width:80%;
    min-width: 300px;
    max-width: 500px;
    margin:0 auto;
    padding:80px;
    background-color: #345995;
    color: #fefaff;
    border-radius: 10px ;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    white-space: normal;
    margin-bottom: 2vh;
}

.test-wrap:hover .cards3{
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


@media (max-width: 768px) {
    .cards3 {
        animation: marquee 5s linear infinite;
    }
}
*/

/*Contactus Section*/
.section4{
    background: linear-gradient(to right, #2EBEF3 0%, #3A9AD9 50%, #345995 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom:10vh;
    box-shadow:0px -8px 25px rgba(0,0,0,0.25);
}
.section-title{
    background-color: inherit;
    color:#303636;
    padding-top: 8vh;
    font-size: 2.5em;
    font-weight:bold;
}
.contact-tagline{
    text-align: center;
    background-color: inherit;
    padding-top: 2vh;
    font-family: "JetBrains Mono",monospace;
}
/*.contact-info{
    display: flex;
    align-items: center;
    padding-top: 9vh;
    background-color: inherit;
    font-size: 2.5vh;
    color:#303636;
    gap:10px
}
.number{
    background-color: inherit;
    text-decoration: none;
    color:#303636

}
*/
.email-info{
    display: flex;
    align-items: center;
    padding-top: 8vh;
    background-color: inherit;
    color: #303636;
    gap:10px;
    font-family: "JetBrains Mono",monospace;
    letter-spacing: 2px;
}
.email{
    background-color: inherit;
    text-decoration: none;
    color:#303636
}

.contact-logo{
    background-color: inherit;
    height:25px;
    width:25px;
}
/*Footer*/

.footer{
    background-color: #303636;
    color: #fefaff;
    padding: 5px;
    display: flex;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}




