/* css custom variables */
:root {
    --main-color: #00ccff;
    --text-color: #001b66;
    --bg-color: #001b66;
    --outer-shadow: 3px 3px 3px #d0d0d0, -3px -3px 3px #f8f8f8;
    --outer-shadow-0: 0 0 0 #d0d0d0, 0 0 0 #f8f8f8;
    --inner-shadow: inset 3px 3px 3px #d0d0d0, inset -3px -3px 3px #f8f8f8;
    --inner-shadow-0: inset 0 0 0 #d0d0d0, inset 0 0 0 #f8f8f8;
}

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

body {
    font-family: "Roboto", sans-serif;
    background-color: var(--bg-color);
    min-height: 100vh;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}

.button {
    background: none;
    border: 2px solid var(--main-color);
    border-radius: 10%;
    padding: 5px;
    background-color: var(--main-color);
    color: var(--text-color);
}
.title{
    color: var(--text-color);
}

/* Responsive start */
/* small */
@media (min-width: 576px) {
    .container {
        width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        width: 720px;
    }
}

/* Medium */
@media (min-width: 992px) {
    .container {
        width: 960px;
    }
}

/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1140px;
    }
}

/* X-Large */
@media (min-width: 1400px) {
    .container {
        width: 1320px;
    }
}

/* Responsive end */
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.outer-shadow {
    box-shadow: var(--outer-shadow);
}

.inner-shadow {
    box-shadow: var(--inner-shadow);
}

/* to remove outer shadow and make transition when hover */
.hover-in-shadow {
    position: relative;
    z-index: 1;
}

.hover-in-shadow:hover {
    box-shadow: var(--outer-shadow-0);
}

.hover-in-shadow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    z-index: -1;
}

.hover-in-shadow:hover:after {
    box-shadow: var(--inner-shadow);
}

/* effect start */
.effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.effects .bg-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 50vh;
    background-color: var(--bg-color);
    border-radius: 0 0 60px 0;
    z-index: -1;
}

/* effect end */
.home-section {
    position: relative;
    padding: 35px;
}

@media (max-width: 575px) {
    .home-section {
        padding: 25px;
    }
}

.home-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100vh;
    border-radius: 60px 0 0 0;
    background-color: var(--main-color);
    z-index: -1;
}

.home-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 50vh;
    background-color: var(--main-color);
    z-index: -2;
}

@media (max-width: 767px) {
    .home-section::after {
        width: 80%;
        height: 60vh;
    }
}

.home-section .container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 20%);
    padding-left: 80px;
    padding-right: 50px;
    position: relative;
    overflow: hidden;
}

.animation-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.animation-effects .effect1 {
    position: absolute;
    bottom: 10%;
    right: 8%;
    width: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    animation: topDown 3s ease-in-out infinite;
}

@media (max-width: 1200px) {
    .animation-effects .effect1 {
        right: 15px;
    }
}

@media (max-width: 991px) {
    .animation-effects .effect1 {
        right: 50%;
    }
}

@media (max-width: 767px) {
    .animation-effects .effect1 {
        right: 15px;
    }
}

@media (max-width: 575px) {
    .animation-effects .effect1 {
        bottom: 45%;
    }
}

.animation-effects .effect1 div {
    background-color: var(--main-color);
    width: 3.2px;
    height: 3.2px;
    margin: 0 3px 8px;
}

.animation-effects .effect2 {
    position: absolute;
    top: 80%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 3.5px solid var(--main-color);
    border-radius: 50%;
    background: none;
    animation: scaleToggle 3s ease-in-out infinite;
}

@media (max-width: 767px) {
    .animation-effects .effect2 {
        top: 45%;
    }
}

.animation-effects .effect3 {
    position: absolute;
    border-top: 30px solid transparent;
    border-left: 30px solid var(--main-color);
    left: 40%;
    top: 30%;
    animation: spin 15s linear infinite;
}

@media (max-width: 991px) {
    .animation-effects .effect3 {
        top: 20%;
    }
}

@media (max-width: 767px) {
    .animation-effects .effect3 {
        left: 80%;
        top: 10%;
    }
}

.animation-effects .effect3::before {
    content: "";
    position: absolute;
    border-top: 30px solid transparent;
    border-left: 30px solid var(--main-color);
    left: -35px;
    top: -25px;
    opacity: 0.5;
}

.animation-effects .effect4 {
    position: absolute;
    left: 20%;
    width: 180px;
    height: 180px;
    border: 25px solid var(--main-color);
    border-radius: 50%;
    top: -120px;
    animation: leftRight 3s ease-in-out infinite;
}

/* animations start */
@keyframes topDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }
}

@keyframes scaleToggle {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.6);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes leftRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(25px);
    }
}

@media (max-width: 1200px) {
    .home-section .container {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .home-section .container {
        padding: 0 15px;
    }
}

/* header start */
.home-section .container .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 15px;
}

@media (min-width: 991px) {
    .header {
        z-index: 100;
        position: relative;
    }
}

.home-section .logo {
    width: 100px;
}

.home-section .header .nav-bar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-section .header .nav-bar a {
    margin: 0 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

.home-section .header .nav-bar a.active {
    color: var(--main-color);
}

.home-section .header .nav-bar a.register {
    display: block;
    margin: 0 0 0 30px;
    width: 170px;
    height: 45px;
    text-align: center;
    display: grid;
    place-content: center;
    background-color: var(--main-color);
    color: white;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .header {
        height: 60px;
    }

    .home-section .header .nav-bar {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #eff0f4;
        z-index: 1000;
        flex-direction: column;
        border-radius: 15px;
    }

    .links:hover .nav-bar {
        display: flex;
    }

    .home-section .container .nav-bar li {
        display: block;
        margin-bottom: 30px;
        text-align: center;
    }

    .home-section .header .nav-bar a.register {
        margin: 0;
    }

    .home-section .container .header .nav-bar li:not(:last-of-type) a {
        font-size: 25px;
        padding: 5px 30px;
        border-radius: 30px;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
        box-shadow: var(--outer-shadow);
    }

    .home-section .container .header .nav-bar li a.active {
        box-shadow: var(--inner-shadow);
    }

    .home-section .container .header .nav-bar li:not(:first-of-type) a:hover {
        box-shadow: var(--outer-shadow-0);
    }

    .home-section .container .header .nav-bar li:not(:last-of-type) a::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: all 0.3s ease;
        z-index: -1;
        border-radius: 30px;
    }

    .home-section .container .header .nav-bar li:not(:last-of-type) a:hover:after {
        box-shadow: var(--inner-shadow);
    }

    .home-section .nav-bar .close-navBar {
        display: block;
        cursor: pointer;
        width: 40px;
        height: 40px;
        font-size: 25px;
        color: var(--text-color);
        border-radius: 50%;
        position: absolute;
        right: 15px;
        top: 15px;
        transition: all 0.3s ease;
    }

    .home-section .nav-bar .close-navBar::after {
        border-radius: 50%;
    }

    .copy-right {
        position: fixed;
        left: 25%;
        
        font-size: x-small;
        transform: translateY(-50%) rotate(0deg);
        
        color: white;
    }
}

/* header end */
/* landing start */
.landing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: calc(100% - 100px);
    position: relative;
    z-index: 100;
}

@media (max-width: 767px) {
    .landing {
        flex-direction: column;
    }
}

.landing .landing-text,
.landing-img {
    flex-basis: 50%;
}

@media (max-width: 767px) {

    .landing .landing-text,
    .landing-img {
        flex-basis: 100%;
    }
}

.landing .landing-text {
    padding: 15px;
}

.landing .landing-text h1 {
    font-size: 45px;
    font-weight: 300;
    color: #000;
    margin-bottom: 15px;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .landing .landing-text h1 {
        font-size: 35px;
    }
}

.landing .landing-text h1 span {
    display: block;
    font-weight: 500;
}

.landing .landing-text p {
    color: var(--text-color);
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.2px;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .landing .landing-text p {
        font-size: 16px;
    }
}

.landing .landing-text button {
    width: 170px;
    height: 45px;
    text-align: center;
    display: grid;
    place-content: center;
    background-color: var(--main-color);
    border-radius: 5px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    cursor: pointer;
}

.landing .landing-text button a {
    font-size: 14px;
    color: white;
    font-weight: 400;
}

.landing .landing-text button:hover {
    background-color: #656565;
}

.landing .landing-img {
    position: relative;
}

.circle-effect {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background-color: var(--main-color);
    border-radius: 50%;
}

@media (max-width: 575px) {
    .circle-effect {
        width: 280px;
        height: 280px;
    }
}

.landing .landing-img .img {
    width: 100%;
    height: 550px;
}

.landing .landing-img .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
}

@media (max-width: 991px) {
    .landing .landing-img .img img {
        object-fit: cover;
    }
}

.landing .landing-img .left-box {
    position: absolute;
    top: 25%;
    left: 8%;
    width: 170px;
    height: 75px;
    box-shadow: 0px 6px 8px 0px rgb(0 0 0 / 20%);
    background-color: white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.landing .landing-img .left-box .icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #e1fff8;
    color: var(--main-color);
    text-align: center;
    margin-right: 5px;
}

.landing .landing-img .left-box .icon i {
    font-size: 14px;
    line-height: 35px;
}

.landing .landing-img .left-box h3 {
    font-size: 16px;
    color: #000;
    margin: 0;
}

.landing .landing-img .left-box span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 13px;
    text-transform: capitalize;
}

.landing .landing-img .right-box {
    position: absolute;
    bottom: 25%;
    right: 15px;
    width: 170px;
    height: 75px;
    box-shadow: 0px 6px 8px 0px rgb(0 0 0 / 20%);
    background-color: white;
    border-radius: 5px;
    z-index: 100;
    padding: 10px 20px;
}

.landing .landing-img .right-box p i {
    margin-right: 5px;
    color: var(--main-color);
}

.landing .landing-img .right-box p span {
    font-size: 13px;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 5px;
}

@media (max-width: 1200px) {
    .landing .landing-img .left-box {
        left: 0;
    }
}

@media (max-width: 991px) {
    .landing .landing-img .left-box {
        left: -45px;
        top: 20%;
    }
}

@media (max-width: 575px) {
    .landing .landing-img .left-box {
        left: 0;
        top: 36%;
    }
}

.profile-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}