*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
html,body{
    width:100%;
    height:100;

}

 h1{
    
    
    font-size: 60px !important;
    font-weight: bolder;
    text-align: center;
    justify-content: center;
    text-decoration:none;
    color: white !important;
    
 }
 h2{
    font-size: 30px !important;
    font-weight: bolder;
    text-align: center;
    justify-content: center;
    text-decoration:none;
    color: white !important;
 }

.center-text{
    width:100%;
    height:100%;
    margin:0;
    padding:0;
    font-size: large;
    color: rgb(28, 23, 104) !important;
    font-weight: bolder;
    text-align: center;
    justify-content: center;
    text-decoration:none;
    text-overflow: clip;
   top:50% !important;
   
    
    
}

p{
    font-family: Arial, Helvetica, sans-serif;
}
.sec-3{
    font-size: small !important;
}

img{
    height: 400px;
    width: 100%;
}
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    border-radius: 5px;
}
.gallery-item {
    position: relative;
    cursor: pointer;
}
.gallery-item:hover .overlay {
    opacity: 1;
}

.image-card {
    position: relative;
    overflow: hidden;
}
.image-card img {
    width: 100%;
    height: auto;
    display: block;
}
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    font-size: 1rem;
}

.bg-img-1{
    background-image: url('images/activity.jpg');
}
.bg-img-2{
    background-image: url('images/amazing.jpg');
}
.bg-img-3{
    background-image: url('images/ang.jpg');
}
.carousel-image{
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.about-title {
    color: #ff5a3c;
    font-weight: bold;
}
.name {
    font-style: italic;
    font-size: 24px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    
}
.social-item {
    display: inline-block;
    align-items: center;
    gap: 10px;
}
.social-item i {
    font-size: 20px;
    color: #333;
}
.social-title {
    font-weight: bold;
    color: #ff5a3c;
    border-bottom: 2px solid #ff5a3c;
    display: inline-block;
    margin-bottom: 10px;
}

.social-item:hover{
    border-radius: 4px;
    background-color: #ff5a3c;
}

.contact-section {
    margin-top: 50px;
}
.contact-title {
    font-size: 24px;
    font-weight: bold;
    color: #ff5a3c;
    margin-bottom: 10px;
}
.contact-subtitle {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.contact-subtitle::after {
    content: "";
    flex-grow: 1;
    height: 2px;
    background-color: #ddd;
    margin-left: 10px;
}
.form-control {
    border-radius: 5px;
    padding: 10px;
}
.btn-submit {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    width: 100%;
}
.btn-submit:hover {
    background-color: #222;
}

.contact-section {
    padding: 50px 0;
}
.contact-header {
    text-align: center;
    margin-bottom: 30px;
}
.contact-header h2 {
    color: #ff5733;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 50px auto;
}
.btn-custom {
    background-color: #ff5733;
    color: white;
    border-radius: 5px;
}
.btn-custom:hover {
    background-color: #e64a19;
}