body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px;
}

.hero-section{
    width: 100%;
}
.carousel {
    position: relative;
    width: 100%;
    height: 90vh; 
    overflow: hidden;
}
.header{
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px); 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    z-index: 10;
}
.logo img{
    height: 50px;
}
.nav-menu{
    margin-right: 20px; 
}
.nav-menu ul{
    list-style: none;
    padding: 0;
    margin:0;
    display: flex;
    flex-wrap: wrap;
}
.nav-menu li{
    margin-left: 20px; 
}
.nav-menu a{
    text-decoration: none;
    color: white;
    background: rgba(0, 123, 255, 0.7);
    padding: 10px;
    border-radius: 5px;
}
.nav-menu a:hover{
    background: rgba(255, 255, 255, 0.7);
    color: black;
}
.carousel-inner {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}
.carousel-item {
    min-width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.hero{
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: white;
    z-index: 10;
}
.hero-title{
    font-size: 3em;
    margin: 0;
}
.hero-subtitle{
    font-size: 1.5em;
    margin: 0;
}
button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Example of responsive button styling */ 
@media screen and (max-width: 900px) { 
    button { 
        width: 100%; /* Full width on small screens */ 
        padding: 15px; 
        font-size: 1.2em; 
    } 
}

.container, .about-us-text, .service {
    diplay: flex;
    flex-direction: column;
    align-items: center;
}


.clearfix::after{
    content:"";
    display: table;
    clear: both;
}


.prev {
    left: 10px;
}
.next {
    right: 10px;
}
.carousel-indicators{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.indicator{
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}
.indicator.active{
    background-color: rgba(255, 255, 255, 1)
}

.about-us{
    width: 100%;
    padding: 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
}
.about-us-content{
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}
.about-us-image{
    width: 100%;
    height: auto;
    margin-right: 20px;
}
.about-us-text{
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
	margin-bottom: 35px;
}
.about-us h1{
    font-size: 3em;
    margin-bottom: 10px;
}
.about-us p{
    font-size: 1.5em;
    color: #333;
    text-align: justify;
}
.read-more{
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items:center;
}
.read-more:hover{
    background-color: #0056b3;
}


.service-section{
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}
.service-section h1{
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}
.service-photos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}
.service-photos img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3 ease;
}

.service-photos .item{
    transition: .5s;
    filter: brightness(0.9);
}

.service-photos .item:hover{
    filter: brightness(1);
    transform: translateZ(200px);
}

.service-photos .item:hover + *{
    filter: brightness(0.6);
    transform: translateZ(150px) rotateY(40deg);
}

.service-photos .item:hover + * + *{
    filter: brightness(0.4);
    transform: translateZ(70px) rotateY(20deg);
}

.service-photos .item:hover + * + * + *{
    filter: brightness(0.2);
    transform: translateZ(30px) rotateY(10deg);
}

.service-photos .item:has(+ *:hover) {
    filter: brightness(0.6);
    transform: translateZ(150px) rotateY(-40deg);
}

.service-photos .item:has(+ * + *:hover) {
    filter: brightness(0.4);
    transform: translateZ(70px) rotateY(-20deg);
}

.service-photos .item:has(+ * + * + *:hover) {
    filter: brightness(0.2);
    transform: translateZ(30px) rotateY(-10deg);
}

.news-photo{
    margin: 20px auto;
    width: 80%;
}

.news-photo h1{
    font-size: 3.5em;
    color: #807b7d;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
    
}

.news-photo h2{
    font-size: 2em;
    color: #807b7d;
    text-align: center;
}

.site-footer{
    background-color: #263A47;
    background-color: rgba(38, 58, 71, 0.9);
    color: white;
    padding: 10px 0;
}
.container2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 10px;
}
.footer-about,
.footer-links,
.footer-contact{
    flex: 0.2;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-contact{
	padding-left: 10px;
	margin-top: 20px;
}

.footer-links{
	padding-left: 10px;
	margin-top: 20px;
}

.footer-links ul{
    list-style: none;
    padding: 0;
}
.footer-about ul {
    list-style: none;
    padding: 0;
    color: #d9d9d9;
}

.footer-links ul li a{
    color: #d9d9d9;
    text-decoration: none;
}
.footer-contact{
    flex: 0.1;
    /*padding-left: 200px;*/
}

.footer-contact h1{
    font-size: 2rem;
}

.footer-links h1{
    font-size: 2rem;
}

.footer-about{
    flex: 0.1;
    
    padding-top: 35px;
}

.footer-links{
    flex: 0.1;
    padding-top: 0.5px;
}
h3 {
    margin-top: 0;
    color: #d9d9d9;
}

.submit{
    /*margin-top: 1785px;*/
    /*margin-left: 182px;*/
    padding: 15px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    /*bottom: 22px;*/
    left: 5%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submit:hover{
    background-color: #000;
}

.copyright-section{
    background-color: #333;
    color: #d9d9d9;
    text-align: center;
    padding: 5px 505.5px;
}

.copyright-symbol{
    font-size: 15px;
    display: inline-block;
}

.current-year{
    font-weight: bold;
}

.socials-container{
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-left: 18px;
}
.socials-container a {
    background-color: white;
    padding: 1em;
    border-radius: 30%;
    height: 64px;
    width: 64px;
    box-sizing: border-box;
    flex-shrink: 0;
    diplay: grid;
    place-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.socials-container a svg{
    height: 32px;
}

.socials-container a::before{
    content: attr(data-social);
    position: absolute;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 100px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-30px) rotate(25deg);
    opacity: 0;
    transition: 200ms cubic-bezier(.42,0,.44,1.68);
    
}

.socials-container a:hover{
    background-color: var(--accent-color);
    fill: white;
}

.socials-container a:hover svg{
    fill: white;
}

.socials-container a::after{
    content: '';
    position: absolute;
    height: 0;
    width: 0;   
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--accent-color);
    transform: translateY(0px) rotate(25deg);
    opacity: 0;
    transition: 200ms cubic-bezier(.42,0,.44,1.68);
}

.socials-container a:hover::before{
    transform: translateY(-65px) rotate(0);
    opacity: 1;
}

.social-container a:hover::after{
    transform: translateY(-42px) rotate(0);
    opacity: 1;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins';
}

.container{
    min-height: 100vh;
    width: 100%;
    background-color: #191a2b;
}

.service-wrapper{
    padding: 5% 8%;
}

.service{
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1{
    color: #fff;
    font-size: 4.5rem;
    letter-spacing: 4px;
    -webkit-background-clip: text;
    position: relative;
}

h1 span{
    position: absolute;
    top: 100%;
    left: 10%;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #199cd8;
    animation: anim 5s linear infinite;
}

@keyframes anim{
    95%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        left: 90%;
    }
}

.cards{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 80px;
}

.card{
    height: 350px;
    width: 370px;
    background-color: #1c2335;
    padding: 3% 8%;
    border: 0.2px solid rgba(114, 226, 174, 0.2);
    border-radius: 8px;
    transition: .6s;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card:after {
    content: "";
    position: absolute;
    top: 150%;
    left: -200px;
    width: 120%;
    transform: rotate(50deg);
    background-color: #fff;
    height: 18px;
    filter: blur(30px);
    opacity: 0.5;
    transition: 1s;
}

.card:hover:after{
    width: 225%;
    top: -100%;
    
}

.card i{
    color: #199cd8;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 4.8rem;
}

.card h2{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.card p{
    text-align: center;
    width: 100%;
    margin: 12px 0;
    color: rgba(255, 255, 255,  0.6);
}

.card:hover{
    background-color: transparent;
    transform: translateY(-8px);
    border-color: cyan;
}

.card:hover i{
    color: cyan;
}

@media screen and (max-width:1200px) {
    .cards{
        grid-template-columns: repeat(2,1fr);
    }
}

@media screen and (max-width:900px) {
    .cards{
        grid-template-columns: repeat(1,1fr);
    }
    h1{
        font-size: 3.5rem;
    }
}
