* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, san-seriff;
}

img {
    width: 85px;
    margin: 20px;

}


h2 {
    text-align: center;
    color: rgb(0, 255, 195);
}

p {
    font-weight: 300;
}

.logo {
    width: 80px;
}

nav {

    background-color: #fff;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

.heading {

    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;

}

.heading h1 {

    font-size: 50px;
    color: #000;
    margin-bottom: 25px;
    position: relative;
}

.heading h1::after {

    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #4caf50;
}

.heading p {
    color: #666;
    font-size: 18px;
    margin-bottom: 35px;
}

.hero {

    background-color: #262626;
    overflow: hidden;

}

.cta-button {

    display: inline-block;
    background-color: #3e8e41;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;

}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 65px auto;
}

.hero-content {
    flex: 1;
    width: 100px;
    margin: 0px 25px;
    animation: fadeInUp 2s ease;

}

.hero-content p {

    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #666;
}

.hero-content .cta-button:hover {

    background-color: #4caf50;
    transform: scale(1.1);
}

.hero-image {
    flex: 1;
    width: 600px;
    margin: auto;
    animation: fadeInRight 2s ease;
}

img {

    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media screen and (max-width:768px) {
    .heading h1 {
        font-size: 45px;
        margin-top: 30px;

    }

    .hero {
        margin: 0px;
    }

    .container {
        width: 100%;
        flex-direction: column;
        margin: 0px;
        padding: 0px 40px;
    }

    .hero-content {
        width: 100%;
        margin: 35px 0px;
    }

    .hero-content h2 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 18px;
        margin-bottom: 20px;

    }

    .hero-content .cta-button {
        font-size: 16px;
        padding: 8px 16px;
    }

    .hero-image {
        width: 100%;


    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 0;
        transform: translateY(0px);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

/*------Navbar section-----*/

nav {

    background-color: #fff;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul {

    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {


    height: 50px;
}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #000;
}

nav a:hover {
    background-color: #f0f0f0;

}

.logo {
    margin-right: auto;
    font-weight: bold;

}

.logo img {
    width: 115px;
    margin-top: 25px;

}



.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.menu-button {

    display: none;
}

@media(max-width: 800px) {

    .hideOnMobile {
        display: none;
    }

    .menu-button {
        display: block;
    }
}

.about-content {
    flex: 1;

}

.about-content h2 {
    font-size: 23px;
    margin-bottom: 15px;


}


.about-content p {
    font-size: 18px;
    line-height: 1.5;
}

.about-content .read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4caf50;
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: 0.3s ease;
}

.about-content .read-more:hover {

    background-color: #3e8e41;

}


a {
    text-decoration: none;
    transition: .5s;
    color: #f0f0f0;
}


ul,
li {

    list-style-type: none;

}

.about,
.contact {
    width: 40%;
}

.link {
    width: 20%;

}





@media(max-width: 400px) {

    .sidebar {
        width: 100%;
    }
}


a {
    text-decoration: none;
    transition: .5s;
    color: #f0f0f0;
}


ul,
li {

    list-style-type: none;

}




/*-----media queries-----*/
@media screen and (max-width: 768px) {

    .heading {

        padding: 0px 20px;
    }

    .heading h1 {

        font-size: 45px;
        margin-bottom: 20px;
    }

    .heading p {
        font-size: 17px;
        margin-bottom: 0px;
    }

    .container {
        padding: 0px;
    }

    .about {
        padding: 20px;
        flex-direction: column;
    }

    .about-image {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .about-content p {
        padding: 0px;
        font-size: 16px;
    }

    .about-content .read-more {
        font-size: 16px;
    }

}

footer {
    width: 100%;
    position: absolute;
    margin-bottom: -0;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 11px;
    line-height: 20px;

}

.logo {
    width: 80px;
    margin-bottom: 45px;
}


.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;

}

.col {
    flex-basis: 25%;
    padding: 28px;
}

.col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.email-id {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

.info-916purps {
    margin-bottom: 35px;
}

form {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;

}

form .far {
    font-size: 15px;
    margin-right: 10px;
}

form input {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

.social-icons li {
    text-decoration: none;
    display: inline;
}


.social-icons .fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;

}

.col:nth-child(2),
.col:nth-child(3) {
    flex-basis: 15%;
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;


}

.copyright {
    text-align: center;
}

links ul,
li {

    padding: 15px 0;
}

.underline {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;


}

img {
    width: 85px;
}


@keyframes moving {
    0% {
        left: -20px;
    }

    100% {
        left: 100%;
    }

}

@media (max-width:768px) {
    footer {
        bottom: unset;
    }

    .col {
        flex-basis: 100%;
    }

    .col:nth-child(2),
    .col:nth-child(3) {
        flex-basis: 100%;
    }
}

nav ul {

    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {


    height: 50px;
}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #000;
}

nav a:hover {
    background-color: #f0f0f0;

}

.logo {
    margin-right: auto;
    font-weight: bold;

}

.logo img {
    width: 115px;
    margin-top: 25px;

}



.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.menu-button {

    display: none;
}

@media(max-width: 800px) {

    .hideOnMobile {
        display: none;
    }

    .menu-button {
        display: block;
    }
}

footer {
    width: 100%;
    position: absolute;
    margin-bottom: -0;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 11px;
    line-height: 20px;

}

.logo {
    width: 80px;
    margin-bottom: 45px;
}


.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;

}

.col {
    flex-basis: 25%;
    padding: 28px;
}

.col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.email-id {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

.info-916purps {
    margin-bottom: 35px;
}

form {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;

}

form .far {
    font-size: 15px;
    margin-right: 10px;
}

form input {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

.social-icons li {
    text-decoration: none;
    display: inline;
}


.social-icons .fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;

}

.col:nth-child(2),
.col:nth-child(3) {
    flex-basis: 15%;
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;


}

.copyright {
    text-align: center;
}

links ul,
li {

    padding: 15px 0;
}

.underline {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;


}


@keyframes moving {
    0% {
        left: -20px;
    }

    100% {
        left: 100%;
    }

}

@media (max-width:768px) {
    footer {
        bottom: unset;
    }

    .col {
        flex-basis: 100%;
    }

    .col:nth-child(2),
    .col:nth-child(3) {
        flex-basis: 100%;
    }
}

.col {
    flex-basis: 25%;
    padding: 28px;
}

.col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.email-id {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

.info-916purps {
    margin-bottom: 35px;
}

form {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;

}

form .far {
    font-size: 15px;
    margin-right: 10px;
}

form input {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

.social-icons li {
    text-decoration: none;
    display: inline;
}


.social-icons .fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;

}

.col:nth-child(2),
.col:nth-child(3) {
    flex-basis: 15%;
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;


}

.copyright {
    text-align: center;
}

links ul,
li {

    padding: 15px 0;
}

.underline {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;


}


@keyframes moving {
    0% {
        left: -20px;
    }

    100% {
        left: 100%;
    }

}

@media (max-width:768px) {
    footer {
        bottom: unset;
    }

    .col {
        flex-basis: 100%;
    }

    .col:nth-child(2),
    .col:nth-child(3) {
        flex-basis: 100%;
    }
}

.links li {
    text-decoration: none;
    color: #ccc;
}