body {
    background : #0a0a0a;
    color      : #fff;
    font-family: Arial;
}

/* HEADER */

.navbar {
    background: #000;
    padding   : 20px 0;
}

.navbar-brand img {
    height: 45px;
}

.nav-link {
    color      : #fff !important;
    margin-left: 25px;
    font-weight: 500;
    position   : relative;
}

.nav-link:hover {
    color: #f4b400 !important;
}

.nav-link::after {
    content   : "";
    width     : 0%;
    height    : 2px;
    background: #f4b400;
    position  : absolute;
    bottom    : -6px;
    left      : 0;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}



/* HERO */


.hero-left {
    background     : #111;
    display        : flex;
    align-items    : center;
    justify-content: center;
    padding        : 100px 40px;
}

.hero-title {
    font-size              : 55px;
    font-weight            : 600;
    color                  : #f5a623;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke    : 1px;
}

.hero-title span {
    font-weight: 700;
}

.hero-img img {
    height    : 600px;
    object-fit: cover;
    width     : 100%;
}


/* SERVICES */

.services {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 40px;
    font-weight  : 500;
    color        : #fff;
    font-size    : 35px;
}

.section-title span {
    font-weight            : 700;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke    : 1px;
    color                  : #f5a623;
}

.service-card {
    background   : #1e1e1e;
    padding      : 10px;
    transition   : 0.4s;
    position     : relative;
    overflow     : hidden;
    border-radius: 15px;
}

.service-card img {
    width        : 100%;
    margin-bottom: 15px;
    border-radius: 15px;
}

.service-card h4 {
    font-weight: 600;
    font-size  : 19px;
}

.service-card a {
    color          : #ffb400;
    text-decoration: none;
    font-size      : 14px;
    text-align     : center;
}

.service-card:hover a {
    color: #fff;
}

/* Hover */

.service-card:hover {
    transform : translateY(-10px);
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


/* why_choose_box */



.why_choose_box ul {
    list-style-type: none;
    padding-left   : 0;
}

.why_choose_box ul li {
    position     : relative;
    padding-left : 20px;
    margin-bottom: 4px;
    color        : #fff;
    line-height  : 24px;
    font-size    : 16px;
    margin-top   : 10px;
}

.why_choose_box ul li::before {
    content    : "\f192";
    font-family: "FontAwesome";
    color      : #ffb400;
    position   : absolute;
    left       : 0;
    top        : 0;
    font-size  : 15px;
}


.why_choose_img_box img {
    width        : 100%;
    border-radius: 15px;
}

.work_process_box {
    background   : #1e1e1e;
    padding      : 10px;
    transition   : 0.4s;
    position     : relative;
    overflow     : hidden;
    border-radius: 15px;
    border       : 1px dotted #f5a623;
    cursor       : pointer;
}

.work_process_box:hover {
    transform : translateY(-10px);
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.work_process_box h5 {
    color: #f5a623;
}

.work_process_box p {
    font-size: 15px;
}

/* EXPERIENCE */

.experience {
    padding: 80px 0;
}

.exp-number {
    font-size  : 160px;
    color      : #222;
    font-weight: 800;
    position   : absolute;
    z-index    : -1;
}



/* TITLE */

.page-title {
    font-size  : 60px;
    font-weight: 700;
    margin     : 60px 0;
}

/* PORTFOLIO */

.project-card {
    position     : relative;
    overflow     : hidden;
    border-radius: 5px;
}

.project-card img {
    width     : 100%;
    transition: 0.5s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position  : absolute;
    bottom    : 0;
    left      : 0;
    width     : 100%;
    padding   : 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.project-overlay h4 a {
    margin         : 0;
    font-weight    : 600;
    color          : #fff;
    text-decoration: none;
}

.project-overlay h4 a:hover {
    color: #f4b400;
}


.team-section {
    padding : 100px 0;
    position: relative;
}

.big-number {
    position   : absolute;
    font-size  : 260px;
    font-weight: 800;
    color      : rgba(255, 255, 255, 0.08);
    left       : 50%;
    transform  : translateX(-50%);
    top        : 20px;
    z-index    : 0;
}

.team-content {
    position: relative;
    z-index : 2;
}

.team-title {
    font-size  : 70px;
    font-weight: 700;
    line-height: 1.1;
}

.team-title span {
    color        : #f5a623;
    border-bottom: 2px solid #f5a623;
}

.sub-text {
    font-size  : 22px;
    font-weight: 500;
}

.highlight {
    color: #f5a623;
}

.description {
    font-size  : 20px;
    line-height: 1.8;
    color      : #cfcfcf;
}

.small-text {
    margin-top : 25px;
    color      : #b5b5b5;
    line-height: 1.7;
}

@media(max-width:768px) {

    .big-number {
        font-size: 140px;
    }

    .team-title {
        font-size: 40px;
    }

    .breadcrumb-title {
        padding: 15px !important;
    }

    .info-item {
        margin-bottom: 35px !important;
    }

}

/* FOOTER */

.footer {
    background: #eee;
    color     : #333;
    padding   : 60px 0;
    margin-top: 80px;
}

.footer a {
    color          : #333;
    text-decoration: none;
}

.footer a:hover {
    color: #f4b400;
}

.footer_content_box h6 {
    color      : #f4b400;
    font-weight: 600;
}

.breadcrumb-title {
    padding: 50px;
}

.banner-title {
    box-shadow: rgb(255 255 255 / 35%) 0px 11px 15px;

}

.breadcrumb-item a {
    color: #f5a623;
}

/* contact start */
.contact-container {
    background   : #121212;
    padding      : 40px;
    border-radius: 8px;
    border       : 1px solid #f5a623;
    /* Gold Border */
    box-shadow   : 0 10px 30px rgba(0, 0, 0, 0.5);


}

.contact-form h2 {
    color         : #f5a623;
    text-align    : center;
    margin-bottom : 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.input-group {
    margin-bottom: 20px;
}

input,
textarea {
    width        : 100%;
    padding      : 12px;
    background   : #1a1a1a;
    border       : 1px solid #333;
    border-radius: 4px;
    color        : #fff;
    outline      : none;
    transition   : border-color 0.3s ease;
}

/* The Gold Focus Effect */
input:focus,
textarea:focus {
    border-color: #f5a623;
    box-shadow  : 0 0 5px rgba(212, 175, 55, 0.5);
}

.submit-btn {
    width           : 100%;
    padding         : 15px;
    background-color: #f5a623;
    border          : none;
    border-radius   : 4px;
    color           : #000;
    font-weight     : bold;
    text-transform  : uppercase;
    cursor          : pointer;
    transition      : transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform : translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.contact-details h2 {
    color: #f5a623;

    margin-bottom : 65px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-details {
    margin-top: 34px;
}

.info-item {
    display    : flex;
    align-items: center;

    margin-bottom: 60px;
    color        : #ffffff;
    font-size    : 22px;
}

.info-item i {
    color       : #f5a623;
    font-size   : 1.2rem;
    margin-right: 15px;
    width       : 25px;
    text-align  : center;
}

.info-item span a {
    font-weight    : 300;
    letter-spacing : 0.5px;
    color          : #fff;
    text-decoration: none;
}

.info-item span a:hover {
    font-weight    : 300;
    letter-spacing : 0.5px;
    color          : #f5a623;
    text-decoration: none;
}

/* contact end */

/* portfolio hover start */
.all-click{
    text-decoration: none;
}
.equip-card {
    background   : #fff;
    padding      : 45px;
    /* width     :340px; */
    border-radius: 20px;
    position     : relative;
    transition   : 0.3s;
    box-shadow: rgb(245 174 48) 1px 1px 7px 1px, rgb(245 166 35) 0px 0px 6px 1px;
}

.equip-card h3 {
    margin   : 0;
    font-size: 24px;
    color:  #f5a623;
}

.equip-card p {
    color      : #555;
    margin-top : 10px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Arrow button */

.arrow-btn {
    width          : 40px;
    height         : 40px;
    border-radius  : 50%;
    border         : 2px solid  #f5a623;
    display        : flex;
    align-items    : center;
    justify-content: center;
    color          :  #f5a623;
    font-size      : 18px;
    position       : absolute;
    bottom         : 5px;
    left           : 30px;
    cursor         : pointer;
    transition     : 0.3s;
}

/* Icon */

.card-icon {
    width   : 110px;
    position: absolute;
    bottom  : 10px;
    right   : 15px;
}

/* Hover Effects */

.equip-card:hover {
    transform : translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.equip-card:hover .arrow-btn {
    background:  #f5a623;
    color     : white;
}



.menu-port {
    margin-top: 10px !important;
}

@media (min-width: 992px) {
    .custom-hover-dropdown:hover>.dropdown-menu {
        display   : block;
        margin-top: 0;
    }


    .dropdown-menu {
        display  : none;
        animation: fadeIn 0.3s ease;

    }


}

@keyframes fadeIn {
    from {
        opacity  : 0;
        transform: translateY(10px);
    }

    to {
        opacity  : 1;
        transform: translateY(0);
    }
}

/* portfolio hover end */

.image-shoot img {
    margin-top: 80px;
}

/* rental equipment start */



.card-camera-rent {
    width        : 100%;
    border       : 1px solid #f5a623;
    border-radius: 12px;
    overflow     : hidden;
    box-shadow   : 0 10px 25px rgba(0, 0, 0, 0.6);
    transition   : .3s;
    margin-bottom: 50px;
}

.card-camera-rent:hover {
    transform : translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.gear-img {
    background: #fff;
    padding   : 20px;
    text-align: center;
}

.gear-img img {
    width    : 100%;
    max-width: 220px;
}

.gear-content {
    padding: 18px;
}

.gear-content h3 {
    color        : #fff;
    font-size    : 20px;
    margin-bottom: 20px;
    text-align   : center;
}

.gear-buttons {
    display    : flex;
    align-items: center;
    gap        : 80px;
}

.enquiry-btn {
    background   : #f5a623;
    color        : #000000;
    border       : none;
    padding      : 10px 18px;
    border-radius: 6px;
    cursor       : pointer;
    transition   : .3s;
}

.enquiry-btn:hover {
    background-color: #000;
    border          : 1px solid #f5a623;
    color           : #fff;
}

.whatsapp-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
    transition: .3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* enquiry form start */

/* Enquiry Button */



/* Popup Background */

.popup{
display:none;
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
justify-content:center;
align-items:center;
}

/* Popup Box */

.popup-content{
background:#000;
color:white;
padding:40px;
width:350px;
border-radius:8px;
position:relative;
border:2px solid #f5a623;
}

/* Close Button */

.close-btn{
position:absolute;
top:10px;
right:15px;
font-size:25px;
cursor:pointer;
color:#f5a623;
}

/* Form Inputs */

.popup-content input,
.popup-content textarea{
width:100%;
padding:10px;
margin:10px 0;
border:1px solid #f5a623;
background:black;
color:white;
}

/* Submit Button */

.submit-btn{
width:100%;
padding:12px;
background:#f5a623;
color:black;
border:none;
font-size:16px;
cursor:pointer;
}

/* enquiry form end */