.navbar {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 3;
}
.navbar-nav .nav-link {
    color: #fff;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: #f4c542;
}
.dropdown-menu {
    display: none;
    background-color: black;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.dropdown-menu .dropdown-item{
    color: #fff;
}
.dropdown-menu .dropdown-item {
	color: #d3caca;
	font-size: 11px;
}

 
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.navbar-nav .nav-item {
	margin: 0 15px;
	font-weight: 600;
	font-size: 16px;
}


/* Main Section */
.main-content {
  text-align: center;
  padding: 3rem 1rem;
}

.subtitle {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #555;
}

.highlight-gold {
  color: #c2a83e;
  font-weight: bold;
}

.main-heading {

  font-weight: 600;
  font-size: 120px;
  text-transform: uppercase;
  font-family: 'Gambetta', serif;
  letter-spacing: -3px;
  transition: 700ms ease;
  font-variation-settings: "wght" 311;
  margin-bottom: 0.8rem;
  color: PaleGoldenRod;
  outline: none;
  text-align: center;
}
.main-heading:hover{
    font-variation-settings: "wght" 582; 
  letter-spacing: 1px;
}

.main-heading .highlight-dark {
  color: #444;
  font-weight: 700;
}

/* Call to Action Button */
.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  border: 2px solid #444;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cta-button:hover {
  background-color: #444;
  color: #fff;
}

.cta-button small {
  font-weight: normal;
  display: block;
  font-size: 0.75rem;
  color: #777;
}

/* Tagline */
.tagline {
  margin-top: 2rem;
  font-size: 2.6rem;
  color: #444;
}

.icon-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}
.icon-card i {
    font-size: 40px;
    color: #f4c542;
}
.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer {
    background-color: #222;
    color: white;
    padding: 40px 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
}
.footer a {
    color: #f4c542;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}
.footer a:hover {
    color: #fff;
    transform: translateX(5px);
}
.footer h5 {
    border-bottom: 2px solid #f4c542;
    display: inline-block;
    padding-bottom: 5px;
}
.footer ul li {
    display: flex;
    align-items: center;
    color: #fff;
    flex-direction: row;
}
.footer ul li i {
    margin-right: 20px;
    color: #666666;
}

#footer .social {
	text-align: center;
	margin-top: 10px;
}
#footer .social ul li {
	list-style: none;
	display: inline-block;
	margin: 5px 0 5px 5px
}
 .social_ul  {
display: flex;
flex-direction: row;
}
#footer .social ul li a i {
	width: 40px;
	transition-duration: .5s;
	-webkit-transition-duration: .5s
}
#footer .social ul li a i:hover {
	background-color: #c78343;
}


.bd-placeholder-img.bd-placeholder-img-lg.featurette-image
{
    max-width: 100%;
    height: auto;
}

.lead{
    font-size: 16px;
}

/* counter */

.counter {
	padding: 0;
	margin: 0;
	display: contents;
}
  
  .flexi {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .flexi div {

    padding: 20px 0;
    margin: 15px 32px;
    text-align: center;
    border-radius: 106px;
    color: #fff;
    box-shadow: none;
  }
  
  /*  */


.camera_wrap.overlay {

    background-size: cover; /* Ensures the image covers the entire element */
    background-position: center; /* Optional: keeps the image centered */
  }


.overlay {
    position: absolute; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff; /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
  }

  .contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f8f9fa;
}
.contact-box {
    display: flex;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 90vw;
    width: 100%;
}
.contact-info {
    background: #d9af3a;
    color: white;
    padding: 30px;
    width: 40%;
}
.contact-info h2 {
    margin-bottom: 20px;
}
.contact-info p {
    font-size: 14px;
    line-height: 1.6;
}
.contact-info .info-item {
    display: flex;
    align-items: center;
    margin: 40px 0;
}
.contact-info .info-item i {
    margin-right: 10px;
    font-size: 18px;
}
.contact-form {
    padding: 30px;
    width: 60%;
}
.contact-form input, .contact-form textarea {
    border: none;
    border-bottom: 2px solid #ccc;
    background: transparent;
    padding: 10px;
    width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-bottom: 2px solid #d9af3a;
}
.contact-form button {
    
     background-color: #000;
    color: #fff;
}
.contact-form button:hover {
 background: #d9af3a;
    border: none;
}

.contact-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 40px;
}
.icon-box {
    border: 2px solid #fbc02d;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}
.icon-box i {
    color: #fbc02d;
    font-size: 32px;
}
.icon-box-2 i {
    color: #000;
    font-size: 26px;
}
.contact-content {
    flex-grow: 1;
    padding: 0 20px;
}
.contact-btn {
    background: #fbc02d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
}
.contact-btn:hover {
    background: #e6a500;
}

  
h4{
margin: 5px 0;
text-align: center;
}
.col-bg{
    background-color: #f8f9fa;
    padding-top: 150px;
    margin-top: 30px;
}

/* Hero */

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Img/bg/pexels-curtis-adams-1694007-4030050.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  
  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
  }
  
  .hero-text button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 10px 25px;
    color: black;
    background-color: #ddd;
    text-align: center;
    cursor: pointer;
  }
  
  .hero-text button:hover {
    background-color: #555;
    color: white;
  }

.about-image-column{
position: relative;
}

.about-image-column .bg-image {
max-height:100vh;
width: 100%;
object-fit: cover;
min-height: 600px;


}
.about-text-column{
padding: 0 4% 0 4%;
}
.about-text{
    text-justify: center;
}

.invisible {
min-height: 650px; 
color:#fff;
}
@media(max-width:580px){
    .camera_caption{
        display: none!important;
    }
    .main-heading {
        font-size: 40px;
        
    }
    .invisible {
min-height: 150px;
}
}