body{
    background-color: #ffffff !important;
}

html{
    scroll-behavior: smooth;
}

h2{
    color: rgb(35, 196, 35);
    text-align: center;
    font-size: 20px;
}

h1{
    color: skyblue;
    font-size: 30px;
    text-align: center;
}

p{
    font-family: raleway;
    letter-spacing: 1px;
    line-height: 25px;
    color:rgb(149, 147, 147);
    text-align: center;
    padding: 0 100px;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'playfair display';
}

.divider{
    border: none;
    height: 3px;
    background-color: lightgreen;
    width: 90%;
}


.main-head {
    display:flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 141, 222, 0.7), rgba(144, 238, 144, 0.7));
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    font-family: 'playfair display';
}

header img {
    height: 7em;
    display: inline-flex;
}

.actions{
    display: flex;
    align-items: center;
    gap:15px;
}

.act{ 
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: 
        transform 0.4s ease,
        color 0.4s ease;
}

.act::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: skyblue;
    transition: width 0.3s ease;
}

.act:hover {
    transform: scale(1.08);
    color:#66b3ff
}

.act:hover::after{
    width: 100%;
}

.btn{
    background-color:skyblue;
    color:white;

    padding: 12px 25px;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    margin-right:10px;
    display: inline-block;
    font-size: 20px;

/*smooth button transition*/
    transition: 
        transform 0.4s ease,
        background-color 0.4s ease,
        box-shadow 0.4s ease;
}

.btn:hover{
    background-color: lightgreen ;
    transform: scale(1.1);
}

.top{
   position: relative;
   height: 100vh;
   overflow: hidden;
}

.bg-video{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.top-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.About{
    padding: 0 50px;
}


.aim ul{
    list-style:none;
    font-family: raleway;
    letter-spacing: 1px;
    line-height: 25px;
    color:rgb(149, 147, 147);
    text-align: center;
    padding: 0 100px;
}


#services{
    scroll-margin-top: 100px;
}

.services{
    padding: 30px 10px;
    text-align: center;
}

.services h1{
    font-size: 32px;
    margin-bottom: 40px;
    color: skyblue;
}

.services2{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:30px;
    margin:auto;
}

#image{
    background: #FFF;
    border: 1px solid #eee;
    padding:25px;
    border-radius: 8px;
    text-align: center;
    transition: 0.5s ease;
}

.services2 img{
    width:100%;
    height:180px;
    object-fit: cover;
    margin-bottom: 15px;
}

#image:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

#image h4{
    color: rgb(147, 144, 144);
    font-size: 18px;
    margin-bottom: 10px;
}

.whyUs ul{
    list-style:upper-roman;
    list-style-position: inside;
    font-family: raleway;
    letter-spacing: 1px;
    line-height: 25px;
    color:rgb(149, 147, 147);
    text-align: center;
    padding: 0 100px;
}

.temp {
    background-color: lightblue;
    color: white;
    padding: 60px 80px;
}

.temp-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.temp-left h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color:white;
}

.temp-left p {
    font-size: 16px;
    opacity: 0.9;
    color: white;
}

.temp-button{
    flex: 1;
    text-align: center;
}

.temp-btn{
    background-color:#00c6ff;
    color:white;

    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 20px;

/*smooth button transition*/
    transition: 
        transform 0.4s ease,
        background-color 0.4s ease,
        box-shadow 0.4s ease;
}

.temp-btn:hover{
    background-color: lightgreen ;
    transform: scale(1.1);
}

.footer {
    background:#2ebded;
    color: white;
   margin-right: 0;
    font-family: Arial, sans-serif;
    line-height: 40px;
    letter-spacing: 1px;
    text-align: center;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.footer-box h3 {
    font-size: 22px;
    position: relative;
    text-align: center;
    display: inline-block;
    color: lightgreen;
    border-bottom: 2px solid lightgreen;
    padding-bottom: 3px;
}


.footer-box p {
    font-size: 14px;
    margin: 8px 0px;
    line-height: 1.6;
    color: white;
}

.footer-logo img {
    width: 200px;
    padding: 0;
    margin: 0;
}

.footer-logo p{
    padding-right: 0;
}

.socialMedia {
    margin-top: 10px;
    text-align: center;
}

.socialMedia img {
    width: 22px;
    margin: 0 8px;
    transition: 0.3s;
    cursor: pointer;
}

.socialMedia img:hover {
    transform: scale(1.2);
}

/* BOTTOM BAR */
footer {
    text-align: center;
    padding: 15px;
    font-size: 13px;
    background-color: rgb(29, 54, 104);
}

.footer-bottom a {
    color: white;
    text-decoration: underline;
}


@media (max-width:768px){
    .services2{
        grid-template-columns: repeat(2,1fr);
    }

    .footer-container{
        grid-template-columns: repeat(1,1fr);
    }



}