/********** Template CSS **********/
 body{
    background-color: black !important;
 }


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/

/* Reduce carousel image height */
.reduced-carousel .reduced-img {
    height: 700px; /* Adjust as needed */
    object-fit: cover;
}

/* Smaller caption text */
.small-caption {
    font-size: 4.5rem; /* Reduce title text size */
    font-weight: 600;
}

/* Smaller "Explore" button */
.btn-sm {
    font-size: 0.9rem;
    padding: 8px 15px;
}

/* Navbar active link style */
.navbar-nav .nav-link.active {
    color: #ce9233 !important;
    font-weight: bold;
    border-bottom: 2px solid #b57815;
}

/* Hover effect (optional) */
.navbar-nav .nav-link:hover {
    color: #ce9233 !important;
}
.bg-new{

    background-color: #aa6e0e;
}
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
   padding: 20px 0;
    color: var(--bs-dark);
    font-size: 14px !important;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
  
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }
    
    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** About ***/
.about-img {
    position: relative;
    overflow: visible; 
        padding-left: 45px; /* ensures pseudo-element is not clipped */
}

/* Animated square border */
.about-img::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 300px; /* square */
    top: 0;
    left: 0 !important;
    border: 5px solid #ce9233; /* use your color directly or var(--bs-primary) */
    background: transparent;
    z-index: -1; /* above the background but under text if needed */
    animation: animateUpDown 3s ease-in-out infinite;

}

/* Smooth up/down animation */

@keyframes animateUpDown { 
    0% { 
        top: -25px;
    }
    50% { 
        top: -45px;
    }
    100% { 
        top: -25px;
    } 
}

.aboutus-page {
  position: relative;
  background-image: url(../images/features-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
  
}

.aboutus-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.aboutus-page p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.aboutus-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}

.service-card {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 300px !important;
   border: #ce9233 5px solid !important;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-img {
    transform: scale(1.1) rotate(3deg);
}

/* Caption overlay at bottom of image */
.card-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color:#ce9233 !important;
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
    z-index: 2;
    
}

.lead{
    color: white;
    font-size: 15px !important;
    text-align: justify;
}

/* in your CSS file */
.img-bordered {
    border: 5px solid #ce9233 !important;
   
}
/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url('/images/features-bg.jpg') left center no-repeat;
    background-size: cover;
}


.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: white;
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
     background-color: #ce9233;
}



.service .service-inner .btn-light:hover{
    background-color: #ffffff !important;
}
.service .service-inner .btn-light{
    background-color: #ce9233 !important;
}
.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: white !important;
}

.service .service-item:hover a {
    padding-left: 45px !important;
}




.gallery-container {
padding: 40px 0;
margin-top: 100px;
}


.gallery-title {
text-align: center;
font-weight: 700;
margin-bottom: 50px;
font-size: 32px;
letter-spacing: 1px;
text-transform: uppercase;
color: white;

}


/* Masonry Grid */
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
grid-auto-flow: dense;
gap: 15px;
}


.portrait {
grid-row: span 2;
}


.gallery-grid img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 8px;
cursor: pointer;
transition: transform .3s ease;
}


.gallery-grid img:hover {
transform: scale(1.03);
}


/* Lightbox */
.lightbox-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.8);
display: none;
align-items: center;
justify-content: center;
z-index: 9999;
}


.lightbox-img {
max-width: 90%;
max-height: 80%;
border-radius: 10px;
}


.lightbox-nav {
position: absolute;
top: 50%;
}

/*** Appoinment ***/
.appoinment {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url('/images/app-bg.jpg') left center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Appoinment ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}


.footer{

    background-color: black !important;
}
.footer p{ 
    color: white;
}

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: white;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: white;
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: white;
}

.copyright a:hover {
    color: var(--bs-primary);
}


.Contact-page {
  position: relative;
  background-image: url(../images/app-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
  
}
.Contact-page  h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.Contact-page  p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.Contact-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}


.photos-page{
 position: relative;
  background-image: url(../images/photo-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.photos-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.photos-page  p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.photos-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}



.Cake-page{
 position: relative;
  background-image: url(../images/cake-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.Cake-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.Cake-page  p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.Cake-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}





.dj-page{
 position: relative;
  background-image: url(../images/dj-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.dj-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.dj-page  p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.dj-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}




.vid-page{
 position: relative;
  background-image: url(../images/vid-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.vid-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.vid-page  p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.vid-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}



.caterers-page{
 position: relative;
  background-image: url(../images/caterers-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.caterers-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.caterers-page  p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.caterers-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}



.mehandi-page{
 position: relative;
  background-image: url(../images/mehandi-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.mehandi-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.mehandi-page  p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.mehandi-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}


.makeup-page{
 position: relative;
  background-image: url(../images/makeup-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.makeup-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.makeup-page  p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.makeup-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}

.eventplanning-page{
 position: relative;
  background-image: url(../images/eventplanning-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.eventplanning-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.eventplanning-page  p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.eventplanning-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}


.decoration-page{
 position: relative;
  background-image: url(../images/decoration-bg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.decoration-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.decoration-page  p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.decoration-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}


.modelshoot-page{
 position: relative;
  background-image: url(../images/modelshoot-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.modelshoot-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.modelshoot-page  p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.modelshoot-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}


.drone-page{
 position: relative;
  background-image: url(../images/drone-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.drone-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.drone-page  p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.drone-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}



.videography-page{
 position: relative;
  background-image: url(../images/videography-bg.jpeg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.videography-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.videography-page  p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.videography-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}


.gold-btn {
    background: linear-gradient(135deg, #d4a44a, #b8862b);
    color: #fff !important;
    border: none;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.gold-btn:hover {
    background: linear-gradient(135deg, #e6b85c, #c99734);
    color: #fff;
    box-shadow: 0 4px 12px rgba(206,146,51,0.6);
}



.videos-page{
 position: relative;
  background-image: url(../images/videos-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.videos-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.videos-page  p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.videos-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}


.about-us-page{
 position: relative;
  background-image: url(../images/about-bg.jpeg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.about-us-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.about-us-page p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.about-us-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}

.album-page{
 position: relative;
  background-image: url(../images/album-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.album-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.album-page p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.album-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}

.services-page{
 position: relative;
  background-image: url(../images/services-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.services-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.services-page p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.services-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}


.booking-page{
 position: relative;
  background-image: url(../images/booking-bg.jpg);
  background-repeat: no-repeat;
 background-size: cover;
  background-position:  top;

  text-align: center;
  color: #fff;
  padding: 40px;
  height: 600px;
  z-index: 1;
  overflow: hidden;
}
.booking-page h1 {
   text-transform: uppercase;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 300px;
    letter-spacing: 0.5ch;
}
.booking-page p {
    font-size: 14px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}
.booking-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: -1;
}

