/* FONTS */
@import url(../css/clash-display.css);

/* VARIABLES */
:root {
    --c-dark: #212529;
    --c-brand: #4e57d4;
    --c-brand-light: #6970dd;
    --c-brand-rgb: 78, 87, 212;
    --c-body: #222;
    --font-base: 'Noto Sans Ethiopic', 'Poppins', sans-serif;
    --box-shadow: 0px 15px 25px rgba(0,0,0,0.08);
    --transition: all 0.5s ease;
}

/* RESET & HELPERS */
body {
    font-family: var(--font-base);
    line-height: 1.6;
    color: var(--c-body);
}

h1, h2, h3,h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 600;
    color: var(--c-dark);
}

a {
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand-light);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

/* IMAGE ZOOM */
.image-zoom {
    position: relative;
    /* overflow: hidden; */
}

.image-zoom-wrapper {
    overflow: hidden;
    position: relative;
}

.image-zoom-wrapper img{
     transition: var(--transition);
}

.image-zoom:hover .image-zoom-wrapper img {
    transform: scale(1.1);
}

/* Top header bar  */

.top-header {
    position: relative;
    height: 35px;
    background: linear-gradient(to right, #ff7e00, #e60000) !important;
}

.top-header .top-header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-header .top-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-header .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 35px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-header .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-header .text i {
    font-size: 14px;
    color: #ffffff;
    margin-right: 5px;
}

.top-header .text h2 {
    color: #eeeeee;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}

.top-header .text p {
    color: #eeeeee;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 0 5px;
}

.top-header .social {
    display: flex;
    height: 35px;
    font-size: 0;
    justify-content: flex-end;
}

.top-header .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 100%;
    font-size: 16px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-header .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-header .social a:hover {
    color: #092a49;
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-header {
        padding: 0 60px;
    }
}



/* NAVBAR */
.navbar {
    box-shadow: var(--box-shadow);
    background: linear-gradient(to right, #0796fe, #092a49)!important;
    /* background-color: #0796fe; */
    z-index: 9;
    transition: background-color 0s ease; /* Smooth transition */
}

/* When navbar becomes sticky */
.navbar.sticky-top.stuck {
    background: #092a49 !important;
    box-shadow: 0 5px 9px rgba(0, 0, 0, .3);
}

.navbar-nav .nav-link {
    padding: 8px 15px;
    margin-right: 1.5rem;
    font-size: 14px;
    /* letter-spacing: 1px; */
    text-transform: uppercase;
    color: white;
    
}

.navbar-nav .nav-link.active {
    color: #ffd139;
}
.navbar .container .navbar-brand h5{ 
     color: rgb(255, 213, 76) ;
     text-transform: uppercase;
}
.navbar-toggler-icon{
    color: white;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.8); /* Optional: white border */
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
/* BTN */
.btn {
    padding: 8px 26px;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 6px;
  }
  
  .btn-brand {
    background-color: yellow;
    border-color: orange;
    color: #000000;
    transition: background-color 0.3s ease, transform 0.2s;
  }
  
  .btn-brand:hover {
    background-color: orange;
    border-color: yellow;
    color: #fff;
    transform: scale(1.02);
  }
  


/*  Image Slider */
.hero-slider .owl-prev,
.hero-slider .owl-next{
    background-color: rgba(255, 255, 255, 0.4) !important;
    width: 60px !important;
    height: 60px !important;
    display: block;
    display: grid;
    place-items: center;
    color: rgb(255, 255, 255) !important;
    line-height: 0;
    border-radius: 100px !important;
    position: absolute;
    top: 50%;
    font-weight: 600 !important;
    font-size: 18px !important;
    transition: all 0.4s ease;
    margin-top: -30px !important;
}

.owl-prev {
    left: 0;
}
.owl-next {
    right: 0;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
    background: linear-gradient(to right , orange,red) !important; 
}

.owl-dot.active span{
    background-color: var(--c-brand) !important;
}


 /* slide */
 .slide {
     min-height: 90vh;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     margin-top: -20px;
}
.slide .container h1{
    font-weight: bolder;
}
.slide .container .slide-text h6{
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid orange; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em; /* Adjust as needed */
    animation: 
      typing 2.5s steps(40, end),
      blink-caret .75s step-end none;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
 @media (max-width: 768px) {
  .slide .container .slide-text h6 {
    white-space: normal;
    overflow: visible;
    border-right: none; /* Optional: Hide cursor if wrapping */
    word-wrap: break-word;
	  animation:none;
  }
} 

  


.slidemain {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../assets/images/logo1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.slide1 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../assets/images/img1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide2 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../assets/image-slider/img2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide3 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../assets/image-slider/img3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide4 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../assets/images/img-music-program.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide5 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../assets/image-slider/Gondar-fasiledes.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide .display-3 {
    text-transform: uppercase;
    color: #fff;
}





/* HERO */

#hero {
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.507), rgba(var(--c-brand-rgb), 0.438)), url(../images/hero-1.jpg);
    background-position: center;
    background-size: cover;
}

/* Video Wrapper */
.video {
    position: relative;
    overflow: hidden;
    background-size: cover;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.video h1 {
    color: orange;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.video .lead {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}
  
  .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .video-overlay {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 100px 20px;
    background-color: rgba(0, 0, 0, 0.5); /* optional overlay */
  }
/* SECTION TITLE */
.section-title {
	margin-top: -90px;
    margin-bottom: 60px;
}

.line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, orange,red);
    margin: 16px auto 24px auto;
}

.section-title p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


/* ICONBOX */
.iconbox {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--c-brand-rgb), 0.1);
    color: var(--c-brand);
    font-size: 34px;
    flex: none;
}

/* SERVICE */

#services {
    padding: 80px 0;
    position: relative;
}

#projects-slider {
    width: 100%;
    height: 50vh; /* Half of viewport height */
    margin-top: 40px;
}

#projects-slider .owl-stage-outer {
    height: 100%;
    padding: 20px 0; /* Add some vertical space */
}

#projects-slider .owl-stage {
    display: flex;
    align-items: center;
    height: 100%;
}

#projects-slider .project {
    position: relative;
    height: 80%;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Current centered item */
#projects-slider .owl-item.center .project {
    height: 100%;
    transform: scale(1.1);
    z-index: 2;
}

/* Adjacent items (prev and next) */
#projects-slider .owl-item:not(.center) .project {
    opacity: 0.8;
    transform: scale(0.9);
}

/* Items further away */
#projects-slider .owl-item:not(.center):not(.active) .project {
    opacity: 0.6;
    transform: scale(0.8);
}

#projects-slider .project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#projects-slider .project .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#projects-slider .project:hover .overlay {
    opacity: 1;
}

#projects-slider .project .content {
    position: absolute;
    bottom: 15%;
    left: 25%;
    transition: bottom 0.3s ease;
    z-index: 3;
}
#projects-slider .project .content h2,#projects-slider .project .content h6{
    background-color: rgba(20, 19, 19, 0.6);
    color: rgb(255, 183, 50);
    text-align: center;
    padding: 5px 20px;
}

#projects-slider .project:hover .content {
    color: white;
}

#projects-slider .project .content h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

#projects-slider .project .content h6 {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Navigation arrows */
#projects-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 3;
}

#projects-slider .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8) !important;
    color: #d81c1c !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    transition: all 0.3s ease;
}

#projects-slider .owl-nav button:hover {
    background: white !important;
}

/* Dots navigation */
#projects-slider .owl-dots {
    margin-top: 20px;
    text-align: center;
}

#projects-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: orange;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#projects-slider .owl-dots .owl-dot.active span {
    background: var(--c-brand);
    transform: scale(1.2);
}
/* Header Text Styles for Projects Section */


.intro h2, .intro h6{
	justify-content: center;
	align-items: center;
}
.services .intro {
	display: flex;
	flex-direction: column;
    margin: 0 auto 40px;
}
.services .intro h2 {
    text-align: center;
}
.services .intro h6{
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--c-brand);
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.services .intro h1 {
    font-size: 2.5rem;
    color: var(--c-dark);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.services .intro p {
    font-size: 1.1rem;
    color: var(--c-body);
    line-height: 1.6;
    margin-bottom: 0;
}
.services .intro ul{
	list-style-type: circle;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #services .intro h1 {
        font-size: 2rem;
    }
    
    #services .intro p {
        font-size: 1rem;
    }
    
}

@media (max-width: 576px) {
    #services .intro h1 {
        font-size: 1.75rem;
    }
    
    #services .intro h6 {
        font-size: 0.9rem;
    }
}

/* COUNTER */
#counter {
    margin-top: 100px;
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.8), rgba(var(--c-brand-rgb), 0.1)), url(../assets/images/img1.jpg);
    background-position: center;
    background-size: cover;
}

/* PORTFOLIO */
.photo-item .iconbox {
    background-color: var(--c-brand);
    color: white;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.photo-item:hover .iconbox {
    opacity: 1;
    top: 50%;
}

/* REVIEW */
/* .review small {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--c-brand);
}

.review-head {
    position: relative;
}

.review-head::after {
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: -14px;
    background-color: white;
    transform: rotate(45deg);
} */

/* TEAM */

.team-member-content {
    background-color: var(--c-brand);
    position: absolute;
    bottom: -24px;
    left: 50%;
    width: calc(100% - 50px);
    transform: translateX(-50%);
    padding: 24px;
    transition: var(--transition);
    opacity: 0;
}

.team-member:hover .team-member-content {
    opacity: 1;
    bottom: 24px;
}

/* CONTACT */
#contact {
    position: relative;
    z-index: 2;
}

#contact::after {
    content: "";
    width: 100%;
    height: 70%;
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.2), rgba(var(--c-brand-rgb), 0.8)), url(../assets/images/image.png);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height:60px;
    border-radius: 50%;
    background-color: #fff;
    color: rgb(255, 166, 0);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .social-links .social-icon:hover {
    background-color: orange;
    transform: scale(1.1);
    color: #fff;
  }
  
/* Blog / News */

.home-news-section .recentNews{
    background-color: #f9f9f9;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

.home-news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    width: 30%;
    padding: 0;
    margin: 0px;
    transition: all 0.3s ease;
}

.home-news-img-container {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.home-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-news-card:hover .home-news-img {
    transform: scale(1.05);
}

.home-news-card h5 {
    margin: 20px;
    font-size: 1.25rem;
    color: #333;
}


.home-new-content {
    color: #555;
    line-height: 1.7;
    margin: 0 20px 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.4em; /* Approximate height for 2 lines with 1.7 line-height */
}


.home-news-card a {
    display: inline-block;
    margin: 0 20px 20px;
    color: #d64022;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-news-card a:hover {
    color: #b33218;
}

.home-news-read-more-container{
    background-color: white;
}

@media  (max-width: 768px){
	
	.home-news-section .recentNews{
		display:flex;
	    flex-direction: column;
	}
	.home-news-card {
		display: flex;
		flex-direction: column;
		width: 80%;
		margin: 5px 0px;
	}

}

/* No News Message */
.no-news {
    text-align: center;
    padding: 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.no-news i {
    font-size: 3rem;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.no-news h3 {
    color: #7f8c8d;
    margin-bottom: 15px;
}
/* Footer Styles */
.footer-top {
    background-color: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    background-color: #121212;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #ff7e00, #e60000);
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links , .social-icons{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li , .social-icons li{
    margin-bottom: 0.8rem;
}

.footer-links li a , .social-icons li span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover , .social-icons li span:hover{
    color: #ffae00;
    transform: translateX(5px);
}
.social-icons a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.social-icons a i:hover {
    background: linear-gradient(to right, #ff7e00, #e60000);
    transform: translateY(-3px);
}
.social-icons a span{
    margin-left: 5px;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
}

.footer-contact i {
    color: #ff7e00;
    font-size: 1.1rem;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}


.designer{
    color: #e09200;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-title {
        margin-top: 1.5rem;
    }
    
    .footer-line {
        margin-bottom: 1rem;
    }
}


  