* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

p {
    margin: 0;
    padding: 0;
}

:root {
    --transition: all 0.3s ease-in-out;
}

button {
    transition: var(--transition);
}

nav.navbar ul li {
    position: relative;
    margin-right: 10px;
}

.navbar-bg {
    background: #000000a6;
    border-radius: 50px;
}

.banner-area {
    position: relative;
    /* top: -80px; */
    z-index: -1;
}

.header-area {
    margin-top: 20px;
}


.header-area {
    margin-top: 20px;
}

.navbar-bg {
    background: #000000a6;
    border-radius: 50px;
    padding-left: 20px;
}

header.header-sticky {
    position: absolute;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

header.header-sticky.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background: #000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

header.header-sticky.sticky .header-area {
    margin-top: 0px;
}

header.header-sticky.sticky .navbar-bg {
    background: #000;
}

nav.navbar ul li a::after {
    position: absolute;
    content: '';
    background: #335DFF;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}



nav.navbar ul li:hover>ul {
    opacity: 1;
    visibility: visible;
}

nav.navbar ul li a {
    color: #fff;
    transition: all 0.3s ease-in-out;
    display: block;
    background: #335dffba;
    padding: 5px 10px;
    border-radius: 5px;
}

.dropdown-toggle {
    white-space: nowrap;
}

nav.navbar ul li:hover>a {
    color: #fff;
}

nav.navbar ul li ul {
    position: absolute;
    background: #000;
    width: 150px;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
}

nav.navbar ul li ul li {
    border-bottom: 1px solid #727272;
}

nav.navbar ul li ul li i {
    color: white;
    padding-right: 10px;
    font-size: 14px;
}

nav.navbar ul li ul li a {
    color: #fff;
    display: block;
    padding: 8px;
    transition: var(--transition);
    padding-left: 10px;
    background: #335dff82;
}

nav.navbar ul li ul li a:hover {
    color: #fff;
}

nav.navbar ul li ul li:last-child {
    border-bottom: 0;
}

nav.navbar ul li ul li ul {
    position: absolute;
    left: 100%;
    top: -10%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

nav.navbar ul li ul li ul li a {
    text-transform: capitalize;
    transition: var(--transition);
}

nav.navbar ul li ul li ul li a:hover {
    color: white;
}

nav.navbar ul li ul li:hover {
    background: #335DFF;
}

nav.navbar ul li ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    top: 0;
}


/* offcanvasmenu */
.offcanvas-body ul li a {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.offcanvas-body ul li {
    padding: 10px;
    background: #335dffd6;
    margin-bottom: 5px;
}

.offcanvas-body ul li:last-child {
    border: 0;
}

hr {
    margin: 0;
    padding: 0;
}

.offcanvas-body ul.submenu li {
    background: #fff;
}

.offcanvas-body ul.submenu li a {
    color: #5477ff;
    padding: 0px 3px;
}

.offcanvas-body .submenu {
    margin-top: 10px;
}

.submenu {
    display: none;
    list-style: none;
}

/* Optional: Add styles for better visibility */
.submenu li a {
    display: block;
    padding: 5px 0;
}

/* Arrow styling */
.toggle-submenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100px;
}

.arrow {
    margin-left: 5px;
    font-size: 14px;
    transition: var(--transition);
}

/* about */
.about-content {
    position: relative;
    padding-left: 25px;
}

.about-content::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    background: #2544ba;
    width: 3px;
    height: 100%;
    border-radius: 50px;
}

.social-media a {
    width: 35px;
    display: inline-block;
    height: 35px;
    transition: var(--transition);
    text-align: center;
    line-height: 35px;
    background: #000;
}

.social-media a:hover {
    border-radius: 100%;
}

.social-media a i {
    color: #fff;
    font-size: 15px;
}

.social-media a:last-child {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.about-content h6 a {
    position: relative;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    padding-bottom: 5px;
    color: blue;
}

.about-content h6 a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgb(0, 0, 0), transparent);
    background-size: 200% 100%;
    animation: borderMove 2s linear infinite;
}

@keyframes borderMove {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}


.name {
    font-size: 40px;
    font-weight: bold;
    background-image: linear-gradient(90deg, black, #ff7300, #ffeb00, #00ff00, #00ffff, #0000ff, #ff00ff, black);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* gallery */
.photo-area h2 {
    position: relative;
}

.photo-area h2::after {
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 3px;
    background: #000;
    content: '';
    left: 0;
    right: 0;
    margin: auto;
    top: 110%;
    border-radius: 10px;
}

.photo-area h2::before {
    position: absolute;
    content: '';
    left: 0;
    top: 125%;
    margin: auto;
    background: #000000ab;
    width: 80px;
    height: 3px;
    right: 0;
    border-radius: 10px;
}

.single-photo {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 2;
}

/*.single-photo::after {*/
/*    position: absolute;*/
/*    content: '';*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: #00000061;*/
/*     z-index: 1; */
/*}*/

.single-photo:hover:after {
    z-index: 3;
}

.single-photo img {
    transition: var(--transition);
}

.single-photo:hover img {
    transform: scale(1.1);
}

.single-photo i {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #fff;
    /*border: 2px solid #fff;*/
    opacity: 0;
    visibility: hidden;
    padding: 10px;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 10px;
}

.single-photo:hover i {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    z-index: 4;
    background: #2544BA;
    color: #fff;
}

/* contact */

.contact-area label {
    margin: 10px 0;
}

.contact-area input {
    border-radius: 0;
    padding: 10px;
}

.contact-area input:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 .25rem rgb(248 249 249 / 25%);
}

.contact-form {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    padding: 30px;
    border-radius: 5px;
    background-color: #fff;
}

/* footer */
footer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #eaf9ff;
}

.single-footer p {
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin-bottom: 10px;
}

.single-footer p:last-child {
    margin-bottom: 0;
}

.single-footer p i {
    position: relative;
    z-index: 2;
}

.single-footer a {
    color: #000;
}

.single-footer a {
    color: #000;
}

.single-footer h4 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.single-footer h4::after {
    position: absolute;
    content: '';
    left: 0;
    width: 100px;
    height: 3px;
    background: #000;
    top: 100%;
    border-radius: 10px;
}

.single-footer h4::before {
    position: absolute;
    content: '';
    background: #02b4fd;
    clip-path: polygon(60% 50%, 0 0, 0 100%);
    right: 0;
    width: 20px;
    height: 15px;
    top: 84%;
    z-index: 2;
    left: 24%;
    animation: moveArrow 3s linear infinite alternate;
}

.offcanvas-body {
    position: relative;
    z-index: 2;
}

.offcanvas-header {
    background: #000000a6;
}

div#offcanvasExample {
    padding: 0;
}

.offcanvas-body::after {
    position: absolute;
    content: '';
    background: url("../images/menu.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
    z-index: -1;
}

@keyframes moveArrow {
    0% {
        left: 0%;
        top: 84%;
    }

    100% {
        left: 24%;
        top: 84%;
    }
}