@font-face {
    font-family: 'MyFont';  /* Custom font name */
    src: url('asset/fonts/swiss.ttf') format('truetype');  /* Path to .ttf file */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MyFont2';  /* Custom font name */
    src: url('asset/fonts/ArgentumSans-Regular.otf') format('opentype');  /* Path to .ttf file */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MyFont3';  /* Custom font name */
    src: url('asset/fonts/ArgentumSans-ExtraLight.otf') format('opentype');  /* Path to .ttf file */
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    
}

.navBar {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.logo-img {
    height: 100px;
    padding-left: 40px;
    padding-top: 20px;
}

.nav-container{
    padding-top: 10px;
    padding-right: 150px;
    z-index: 1000;
    position: relative;
    top: 10px;
    right: 0;
    text-align: right;
    align-items: end;
}

.navbar{
    justify-content: right;
    padding-right: 0.25rem;
} 
.navbar-nav{
    display: flex;
    gap: 10px;
    font-family: 'MyFont2',sans-serif;
}

.navbar-nav .nav-link{
    color: black;
    font-size: 1rem;
    padding-right: 0.25rem;
}

.navbar-nav .nav-link:hover{
    color: #e1820e; 
}
.navbar-nav .nav-link.active {
    color: #e1820e;  
    background-color: transparent;  
    font-weight: bold; 
}
.navbar-toggler{
    color: transparent;
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
}
.navbar-light .navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.contact-main{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-container{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
}

.item{
    width: 40%;
}

.contact-form {
    background-color: #ffcb05;
    padding: 40px;
    width: 80%;
    text-align: center;
    border-radius: 16px;
    font-family: 'MyFont2',sans-serif;
}
.contact-form h1 {
    font-size: 24px;
    color: #000;
    margin: 0;
}
.contact-form p {
    font-size: 14px;
    color: #333;
}
.contact-form label {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    display: block;
    margin-top: 20px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #4B0082;
    background-color: #ffcb05;
    padding: 8px 0;
    font-size: 16px;
    color: #000;
    outline: none;
}
.contact-form textarea {
    height: 80px;
}
.contact-form button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #4B0082;
    color: #FFD700;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}
.contact-form button:hover {
    background-color: #333;
}
.location {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    font-family: 'MyFont2', sans-serif;
}

.location h3 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.location h6 {
    margin: 5px 0;
    font-size: 1.2rem;
    text-align: center;
}

.location h6.address-details {
    font-size: 1rem;
    color: #555;
}

.centered-text {
    display: block; 
    text-align: center;
}

#map {
    width: 100%;
    height: 300px;  
    background-color: #ccc;  
}


@media (max-width: 768px) {
    .location h6.address {
        font-size: 0.9rem;
        white-space: normal; 
        text-align: left;
    }

    .location-text {
        font-size: 0.9rem;
    }

    #map {
        height: 200px;
    }
}


#map {
    height: 800px;
    width: 80%;
}

.container, .container-fluid, .container-lg, .container-md, .container-xl, .container-xxl{
    max-width: 100%;
 }


 .footer {
     background-color: #000000; 
     color: #ffffff; 
     font-family: 'MyFont2',sans-serif;
     line-height: 1;
 
}
.logo-img-footer{
     width: 150px;
}
   
.footer-bottom {
     background-color: rgba(0, 0, 0, 0.2); /* Optional slight transparency for bottom section */
     color: #b3b3b3;
     font-size: 16px;
     font-family: 'MyFont3',sans-serif;
}
   
.footer a {
     color: #ffffff;
     font-size: 14px;
     font-family: "MyFont3",sans-serif;
     letter-spacing:1px;
}
   
   .footer a:hover {
     color: #ffa500; /* Highlight color on hover */
}
   
   .footer hr {
     background-color: #ffa500; /* Divider line color */
}
 
.footerp{
     font-size: 14px;
     font-family: "MyFont3",sans-serif;
     letter-spacing:1px;
     line-height: 1.3;
}
.text-uppercase{
     font-size: 16px;
     letter-spacing:1px;
}
.footerSub{
     font-size: 16px;
     font-family: 'MyFont3',sans-serif;
     letter-spacing:1px;
}
.footer-icons i {
     color: white;
     font-size: 18px;
     transition: all 0.3s ease;
}
   
.footer-icons i:hover {
     color: #ffa500; 
     transform: scale(1.1); 
}
@media (max-width: 543px) {
    .image5,.image4,.image3,.image2,.image1{
        width: 200px;
        height: auto;
        display: flex;
    }  
}

@media (max-width: 991px) {
    .nav-container{
        display: flex;
        align-items: flex-end;
        padding-top: 10px;
        padding-right: 20px;
    }
    .logo-img {
        height: 90px;
        padding-left: 20px;
        padding-top: 25px;
    }
    
}
@media (max-width: 684px) {
    .nav-container{
        display: flex;
        align-items: flex-end;
        padding-top: 10px;
        padding-right: 20px;
    }
    .logo-img {
        height: 80px;
        padding-left: 20px;
        padding-top: 25px;
    }
    
}

@media(max-width: 597px){
    .main-heading img{
        height: 50px;
    }
}
@media(max-width: 480px){
    .location p{
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 1.1rem;
    
    }
}
