*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Orbitron-SemiBold';
    src: url('fonts/Orbitron-SemiBold.woff2') format('woff2'),
        url('fonts/Orbitron-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron-Medium';
    src: url('fonts/Orbitron-Medium.woff2') format('woff2'),
        url('fonts/Orbitron-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Light.woff2') format('woff2'),
        url('fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Migratory';
    src: url('fonts/Migratory.woff2') format('woff2'),
        url('fonts/Migratory.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body{
    background-color: #000;
}

h1, h2, h3, h4{
    font-family: 'Orbitron-SemiBold';   
}

h5, h6{
    font-family: 'Orbitron-Medium';
}

a, li{
    font-family: 'Orbitron-Medium';
    text-decoration: none;
}

p{
    font-family: 'Poppins';
}

:root{
    --primary-color: #ffa466;
}


.top-navbar{
    position: relative;
    width: 100%; 
}

.top-navbar-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.top-navbar-left{
    display: flex;
    align-items: center;
    gap: 40px;
}

.top-navbar-left a{
    color: #fff;
    font-size: 16px;
}

.top-navbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-navbar-right a{
    color: #000;
    font-size: 16px;
    background-color: var(--primary-color);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.top-navbar-right a:hover{
    background-color: #ffb88c;
    transition: all 0.3s ease-in-out;
    transform: scale(1.1) rotate(4deg);
}

.main-navbar{
    position: sticky;
    width: 100%;
    background-color: #1a1a1a;
    padding: 14px 0;
    top: 0;
    z-index: 999;
}

.main-navbar-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-mean ul{
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;

}

.navbar-mean ul li{
    list-style: none;
    position: relative;
}

.navbar-mean ul li a{
    color: #fff;
    font-size: 16px;
    padding: 8px 12px;
    transition: all 0.3s ease-in-out;
}

.navbar-mean ul li a.active {
    color: var(--primary-color);
}

.navbar-mean ul li .dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e1e1e;
    padding: 10px 0;
    width: 180px;
    border-radius: 5px;
    display: none;    /* Hide initially */
    flex-direction: column;
    gap: 0;
    z-index: 999;
}

.navbar-mean ul li .dropdown-menu li a{
    padding: 10px 15px;
    color: #fff;
    display: block;
    white-space: nowrap;
}

.navbar-mean ul li .dropdown-menu li a:hover{
    background: #333;
    color: var(--primary-color);
}


.navbar-mean ul li:hover .dropdown-menu{
    display: flex;
}

.navbar-btn a{
    color: #fff;
    padding: 10px 24px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
}

.navbar-btn a:hover{
    background-color: var(--primary-color);
    color: #000;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
}


/* Offcanvas menu styling */
.mobile-nav {
  list-style: none;
  padding-left: 0;
}

.mobile-nav li a {
  display: block;
  padding: 12px 10px;
  color: #000;
  font-size: 18px;
}

/* hero-landing-section-start */
.hero-landing-sec{
    background-image: url('images/hero-landing-bg.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 600px;
    position: relative;
}

.hero-landing-content{
    padding-top: 160px;
}

.hero-landing-text{
    display: flex;
    gap: 80px;
}

.hero-landing-dot-text{
    position: relative;
}

.hero-landing-dot-text h5{
    color: #fff;
    font-size: 20px;
    line-height: 24px;
}

.hero-landing-dot-text h5 span{
    margin-left: 15px;
}

.hero-landing-doted{
    content: '';
    position: absolute;
    bottom: 15px;
    left: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.hero-landing-left-content {
    padding-left: 100px;
}

.hero-landing-left-content h1{
    color: #fff;
    font-size: 76px;
    line-height: 56px;
    margin-top: 20px;
    margin-left: 50px;
    position: relative;
}

.hero-landing-left-content h1 span{
    font-family: 'Migratory';
    color: var(--primary-color);
    font-size: 140px;
    position: absolute;
    top: 56px;
    left: -156px;
}

.hero-landing-right-content{
    background-color: #1a1a1a;
    padding: 25px 20px;
    border-radius: 10px;
    position: absolute;
    /* padding-top: 47px; */
    width: 490px;
    top: 38px;
    right: 120px;
}

.hero-landing-right-content h3{
    color: #fff;
    font-size: 30px;
    margin-bottom: 15px;
}

.hero-landing-right-content h3 span{
    color: var(--primary-color);
}

.hero-landing-right-content p{
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
}

.hero-landing-right-content .form-label{
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
}

.hero-landing-right-content .form-btn{
    color: #fff;
    padding: 10px 24px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
    width: 100%;
    background-color: transparent;
    font-family: 'Orbitron-Medium' !important;
}

.hero-landing-right-content .form-btn:hover{
    background-color: var(--primary-color);
    color: #000;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
}

/* landing-about-section-start */
.padd-sec{
    padding: 60px 0;
}

section.about-sec {
    margin-bottom: 60px;
}

.about-text h5{
    font-size: 20px;
    color: #fff;
}

.about-left{
    position: relative;
}

/* --- First Image Wrapper --- */
.about-left-img{
    width: 80%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease-in-out;
}

.about-left-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease-in-out;
}

.about-left-img:hover img{
    transform: scale(1.08) rotate(4deg);
    filter: brightness(1.1);

}

.subtitle{
    font-size: 22px;
    color: #fff;
}

.title{
    font-size: 38px;
    color: #fff;
}

.title span{
    color: var(--primary-color);
}

/* --- Second Image --- */
.about-second-img{
    position: absolute;
    bottom: -50px;
    right: 0px;
    border-radius: 15px;
    border: 5px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.4s ease-in-out;
}

.about-second-img img{
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease-in-out;
}

.about-second-img:hover img{
    transform: scale(1.08) rotate(4deg);
    filter: brightness(1.1);
}

.about-right{
    width: 90%;
    margin-left: auto;
}

.about-right p{
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
}

.about-right-paragraph{
    margin-top: 20px;
}

.about-btn{
    margin-top: 30px;
    margin-bottom: 20px;
}

.about-btn a{
    color: #fff;
    padding: 10px 24px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
}

.about-btn a:hover{
    background-color: var(--primary-color);
    color: #000;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);

}

/* service-landing-section-start */
.service-landing-sec{
    background-color: #1a1a1a;
}

.service-landing-top-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-landing-top-btn a{
    color: #fff;
    padding: 10px 24px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
}

.service-landing-top-btn a:hover{
    background-color: var(--primary-color);
    color: #000;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
}

.service-landing-box{
    padding: 25px 20px;
    background-color: #000;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    min-height: 450px;
    height: 100%;
}

.service-landing-box:hover{
    background-color: #111;
    transform: translateY(-10px);
}

.service-landing-img{
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s ease-in-out;
}

.service-landing-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease-in-out;
}

.service-landing-box:hover .service-landing-img img{
    transform: scale(1.08) rotate(4deg);
}

.service-landing-box h4{
    color: #fff;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 24px;
    transition: all 0.4s ease;
}

.service-landing-box p{
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    transition: all 0.4s ease;
}

/* why-choose-us-section */
.why-choose-sec{
    position: relative;
}

.why-choose-new-box{
    padding: 60px;
    border-radius: 10px;
    margin: 60px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.6), rgba(255, 164, 102, 0.25));
    backdrop-filter: blur(12px);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
}

.why-choose-box{
    background-color: #1a1a1a;
    padding: 25px 20px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    flex-direction: column;
}

.why-choose-box:hover{
    background-color: #111;
    transform: translateY(-10px);
}

.why-choose-icon i{
    width: 60px;
    height: 60px;
    border: 1px solid var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    font-weight: 800;
}

.why-choose-box h4{
    color: #fff;
    font-size: 17px;
}

.why-choose-box:hover .why-choose-icon i{
    background-color: var(--primary-color);
    color: #000;
    transform: scale(1.2);
    transition: all 0.4s ease;
}

.why-choose-box p{
    color: #fff;
    font-size: 14px;
    text-align: center;
}

/* testimonial-section */
.testimonial-sec{
    background-color: #1a1a1a;
}

.testimonial-box{
    background-color: #000;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    width: 94%;
    margin: auto;
}

.testimonial-box:hover{
    box-shadow: 0 0 25px rgba(255, 164, 102, 0.25);
}

.testimonail-profile{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.testimonial-img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.testimonial-bioler-plate h6{
    color: #fff;
    font-size: 26px;
}

.testimonial-bioler-plate p{
    color: #ccc;
    font-size: 16px;
}

.testimonial-box p{
    color: #ccc;
    font-size: 16px;
}

.testimonial-stars i{
    color: #fba81a;
    font-size: 20px;
}

/* Portfolio-section */
.portfolio-tab-btns{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.portfolio-tab-btns .tab-btn {
    color: #fff;
    padding: 10px 24px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
}

.portfolio-tab-btns .tab-btn.active,
.portfolio-tab-btns .tab-btn:hover {
    background-color: var(--primary-color);
    color: #000;
}

.portfolio-box{
    background-color: #1a1a1a;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
    height: 100%;
}

.portfolio-img{
    width: 100%;
    height: 250px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s ease-in-out;
}

.portfolio-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: transform 0.4s ease-in-out;
}

.portfolio-btm-text{
    padding: 20px;
}

.portfolio-btm-text h4 a{
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.portfolio-btm-text h4 a:hover{
    color: var(--primary-color);
}

.portfolio-btm-text p{
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

/* Hide Items Animation */
.portfolio-item {
    transition: all 0.4s ease;
}

.portfolio-item.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-btn a{
    color: #fff;
    padding: 10px 24px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
}

.portfolio-btn a:hover{
    background-color: var(--primary-color);
    color: #000;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);  
}

/* faq-section-start */
.faq-sec{
    background-color: #1a1a1a;
    position: relative;
}

.faq-img{
    width: 100%;
    height: 700px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
}

.faq-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease-in-out;
}

.faq-img img:hover{
    transform: scale(1.08) rotate(4deg);
}

.faq-right-box{
    width: 95%;
    margin-left: auto;
}

/*  */
.accordion-button {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
}

.accordion-item {
    border: none !important;
    background: transparent;
}


.accordion-button:not(.collapsed) {
   background-color: #111;
    color: #ffa466;
    border-radius: 10px;
    border: none;
}

.accordion-body {
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    margin: 10px 0;
}

.accordion-button i {
    transition: 0.3s;
}

.accordion-button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.accordion-button::after {
    display: none !important;
}

/* ----------------footer-sec---------------------- */
.footer-sec{
    padding-top: 60px;
}

.footer-logo img{
    width: 150px;
    height: auto;
}

.footer-content h5{
    color: #fff;
    font-size: 18px;
    margin: 30px 0;

}

.quick-links ul{
    margin: 0;
    padding: 0;
}

.quick-links ul li{
    list-style: none;
    padding: 4px 0;
}

.quick-links ul li a{
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.quick-links ul li a:hover{
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.social-box{
    display: flex;
    align-items: center;
    gap: 26px;
}

.social-box a {
    color: #fff;
    font-size: 20px; 
    transition: all 0.3s ease-in-out;
}

.social-box a:hover {
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.footer-btm-text{
    border-top: 1px solid #fff;
    margin-top: 20px;
}

.footer-btm-text p{
    padding: 20px 0;
    margin-bottom: 0;
    color: #fff;
}

.footer-btm-text p a{
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Main Button Style */
.float-btn {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0px 0px 12px rgba(255, 164, 102, 0.5);
    transition: 0.3s ease-in-out;
}

/* Hover Effect */
.float-btn:hover {
    transform: scale(1.15);
    box-shadow: 0px 0px 15px rgba(255, 164, 102, 0.9);
}

/* WhatsApp Special Color */
.whatsapp-btn {
    background-color: #25D366;
    box-shadow: 0px 0px 12px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
}

/* Call Button */
.call-btn {
    background-color: #ff6b00;
    box-shadow: 0px 0px 12px rgba(255, 107, 0, 0.6);
}

.call-btn:hover {
    background-color: #ff7f26;
}

/* Back to Top */
.top-btn {
    background: linear-gradient(145deg, #ffa466, #ff7f26);
    box-shadow: 0px 0px 12px rgba(255, 164, 102, 0.6);
}

/* Background Overlay */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

/* Modal Box */
.modal-content {
    background: #fff;
    margin: auto;
    padding: 25px 30px;
    border-radius: 10px;
    width: 100%;
    position: relative;
    box-shadow: 0px 8px 30px rgba(0,0,0,0.2);
}

/* Close Button */
.close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    font-weight: bold;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.modal-title span{
    color: var(--primary-color);
}

label.form-label {
    color: #000;
}

button.form-btn {
    color: #000;
    padding: 10px 24px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
    width: 100%;
    background-color: transparent;
    font-family: 'Orbitron-Medium' !important;
}

button.form-btn:hover{
    background-color: var(--primary-color);
    color: #000;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
}



/* Responsive Start */
@media only screen and (max-width: 1280px){

    /*  */

}

@media only screen and (max-width: 1200px){


    .navbar-mean ul {
    gap: 0;
}

.hero-landing-left-content {
    display: none;
}

.hero-landing-right-content {
    width: 800px;
    top: 40px;
    right: 15%;
}



}

@media only screen and (max-width: 1025px){
    .hero-landing-right-content {
        right: 12%;
    }
}

@media only screen and (max-width: 992px){

    .hero-landing-right-content {
        right: 0;
        position: relative;
        top: 0;
        width: 100%;
    }

    .hero-landing-content {
    padding-top: 38px;
}

.about-second-img img {
    display: none;
}

.about-second-img {
    display: none;
}

.about-left-img {
    width: 100%;
}

.about-right {
    width: 100%;
}

section.about-sec {
    margin-bottom: 0;
}

.padd-sec {
    padding: 40px 0;
}

.faq-img {
    width: 100%;
    height: 500px;
}

.faq-right-box {
    width: 100%;
}

.title {
    font-size: 32px;
}

}

@media only screen and (max-width: 768px){

    .hero-landing-sec {
    width: 100%;
    height: auto;
}

.hero-landing-content {
        padding: 30px 0;
    }

    .hero-landing-right-content h3 {
    font-size: 26px;
}

.title {
        font-size: 26px;
    }

    .service-landing-top-text {
    align-items: start;
    flex-direction: column;
    gap: 20px;
}

}

@media only screen and (max-width: 576px){

    .portfolio-tab-btns {
    flex-direction: column;
}

.subtitle {
    font-size: 18px;
}

.title {
        font-size: 24px;
    }

    .service-landing-box h4 {
    font-size: 20px;
}

.testimonial-bioler-plate h6 {
    font-size: 20px;
}

.why-choose-new-box{
    padding: 30px;
}

.navbar-logo img {
    width: 110px;
    height: auto;
}

.top-navbar {
    display: none;
}

}

@media only screen and (max-width: 360px){


    .testimonial-box p{
    font-size: 12px;
}

.testimonial-bioler-plate h6 {
    font-size: 16px;
}


}