html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #000000;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-contact a:first-child {
    background: gold;
    padding: 6px 12px;
    border-radius: 5px;
}
.header-contact a:nth-child(2) {
     background: gold;
    padding: 6px 12px;
    border-radius: 5px;   
}
.logo { 
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 145px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* nav ul li a:hover {
    color: gold;
} */

/* SLIDER */
.slider {
    position: relative;
    height: 82vh;
    height: calc(100vh - 120px);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    opacity: 0;
    transition: 1s;
}

.slide::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 40%;
    left: 10%;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
}

.slide-content h1 {
    font-size: 45px;
    color: #fff;
    margin: 0;
}

.btn {
    padding: 12px 25px;
    background: gold;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

/* SECTION */
section {
    padding: 10px 40px;
    /* max-width: 1100px; */
    margin: auto;
}

h2 {
    text-align: center;
    color: gold;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

.card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
    color: #fff;
}

.card:hover {
    transform: translateY(-5px);
}

/* CONTACT */
.contact {
    text-align: center;
    line-height: 1.8;
}

/* FORM */
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

form button {
    background: gold;
    border: none;
    padding: 10px 20px;
}

/* MAP */
iframe {
    width: 100%;
    height: 300px;
    border: 0;
    margin-top: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #fff;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding: 15px;
    border-radius: 50%;
}
/* MOBILE RESPONSIVE */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}
.header-contact {
    display: flex;
    gap: 15px;
    font-size: 14px;
}

.header-contact a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* .header-contact a:hover {
    color: gold;
} */
.header-top {
    display: flex;
    align-items: center;
    gap: 50px;
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    color: #fff;
    border: 1px solid rgba(255,215,0,0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: gold;
}

.service-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: gold;
}

.service-card p {
    font-size: 14px;
    color: #ccc;
}
.about-section {
    color: #fff;
    padding: 80px 20px;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    /* max-width: 1100px; */
    margin: auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #000;
    margin-bottom: 10px;
    text-align: left;
}
.about-text p {
    color: #000;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-points {
    margin-top: 20px;
}
#services h2 {
    color: #fff;
}
.about-points div {
    margin-bottom: 8px;
    color: #000;
}

/* IMAGE */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}
nav ul li a.active {
    color: #a94529;
    font-weight: 600;
}
.contact-section {
    background: #111;
    color: #fff;
    padding: 80px 20px;
}

.contact-section h2 {
    text-align: center;
    color: gold;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* LEFT */
.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: gold;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #ccc;
    line-height: 1.6;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

/* RIGHT */
.contact-form {
    flex: 1;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
}

.contact-form h3 {
    color: gold;
    margin-bottom: 15px;
}

.contact-form input, .contact-form textarea {
    width: 96%;
    padding: 2.5% 2%;
    margin-bottom: 12px;
    border: none;
    border-radius: 0;
    outline: none;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: gold;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover {
    background: #e6c200;
}

/* MAP */
.map {
    margin-top: 40px;
}

.map iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}
.service-card {
    background: linear-gradient(145deg,#1a1a1a,#111);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
}
.slide-content p {
    color: #fff;
}
/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.floating-whatsapp a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
  font-size: 1.5rem;
}
.clients-section {
    background: #fff;
    padding: 70px 20px;
    text-align: center;
}

.clients-section h2 {
    color: #000;
    margin-bottom: 10px;
}

.clients-sub {
    color: #666;
    margin-bottom: 40px;
}

/* SLIDER */
.clients-slider {
    position: relative;
    margin: auto;
    overflow: hidden;
    padding: 15px;
    padding: 10px 40px;;
}
.clients-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.clients-track img {
    width: 230px;
    height: auto;
    opacity: 1;
    transition: 0.3s;
}

.clients-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* BUTTONS */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.slide-btn:hover {
    background: #e6c200;
}
.main-footer{
background:#111;
color:#fff;
padding:60px 20px 0;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:40px;
max-width:1300px;
margin:auto;
}

.footer-box h3{
color:gold;
margin-bottom:18px;
font-size:22px;
}

.footer-box p{
color:#ccc;
line-height:1.8;
font-size:15px;
margin-bottom:10px;
}

.footer-box ul{
padding:0;
margin:0;
list-style:none;
}

.footer-box ul li{
margin-bottom:12px;
}

.footer-box ul li a,
.footer-box a{
color:#ccc;
text-decoration:none;
transition:0.3s;
}

.footer-box a:hover{
color:gold;
padding-left:5px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.footer-social a{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
background:#222;
border-radius:50%;
font-size:16px;
}

.footer-social a:hover{
background:gold;
color:#000;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.08);
margin-top:40px;
padding:20px;
text-align:center;
color:#aaa;
font-size:14px;
}
/* PREMIUM SERVICES SECTION */
.services-premium {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 38px;
    color: #fff;
    margin-bottom: 10px;
}

.section-sub {
    color: #aaa;
    margin-bottom: 50px;
    font-size: 16px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.service-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-box.sltd {
    transform: translateY(-12px) scale(1.02);
    border-color: gold;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}
.service-box.sltd::before {
    width: 100%;
}
/* HOVER EFFECT */
.service-box:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: gold;
    box-shadow: 0 15px 40px rgba(255,215,0,0.15);
}

/* ICON */
.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, gold, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 20px;
    font-size: 28px;
    color: #000;
}

/* TEXT */
.service-box h3 {
    color: #fff;
    margin-bottom: 10px;
}

.service-box p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* GLOW BORDER ANIMATION */
.service-box::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(120deg, transparent, rgba(255,215,0,0.3), transparent);
    transition: 0.5s;
}

.service-box:hover::before {
    width: 100%;
}
body .services-premium h2 {
    color: #fff;
}
.clients-section .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

#services .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

#services .service-card .icon {
    font-size: 70px;
    margin-bottom: 10px;
}
.about-client .services-grid {
    grid-template-columns: 1fr 1fr;
}

.services-grid .service-card {
    background: #252f66;
}



@media(max-width:768px){
.footer-container{
grid-template-columns:1fr;
gap:30px;
}
}
/* ANIMATION */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Tablet & Mobile */
@media (max-width: 768px) {

    nav {
        padding: 10px 20px;
        background: #fff;
    }

    .logo img {
        width: 120px;
    }

    nav ul {
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .slider {
        height: 50vh;
    }

    .slide-content {
        top: 35%;
        left: 5%;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    section {
        padding: 40px 15px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 15px;
    }
      .header-contact {
        display: none; /* hide on small screens */
    }

    nav {
        justify-content: space-between;
        border-top: 2px solid #bb6955;
    }
        .about-container {
        flex-direction: column;
    }
      .contact-container {
        flex-direction: column;
    }
    .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}
.about-section {
    color: #fff;
    padding: 15px 20px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 2%;
    margin-bottom: 12px;
    border: none;
    border-radius: 0;
    height: 45px;
    border: 0;
    outline: 0;
}
.contact-form textarea {
    width: 100%;
    padding: 2%;
    margin-bottom: 12px;
    border: none;
    border-radius: 0;
    height: 90px;
    border: 0;
    outline: 0;
}
.contact-form {
    flex: 1;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-size: cover;
    opacity: 0;
    transition: 1s;
    background-position: right;
    height: 100%;
}
.slide::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 20%);
}
.btn {
    padding: 12px 25px;
    background: gold;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}
section {
        padding: 15px 15px;
    }
     .floating-whatsapp {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
      .clients-track {
        gap: 30px;
    }

    .clients-track img {
        width: 330px;
    }
    .service-card .icon {
    font-size: 50px;
    margin-bottom: 0;
}
#services .services-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
}
.service h2 {
    color: #000000 !important;
}
.service-card {
    padding: 10px;
}
.service-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
    margin-top: 0;
    font-size: 16px;
    line-height: 24px;
}
.clients-section .services-grid {
    grid-template-columns: 1fr;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}
#services h2 {
        color: #000000;
        font-size: 28px;
        font-family: 'Montserrat', sans-serif;
    }
.services-premium {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 25px 20px;
    text-align: center;
}
    .section-title{
        color: #000000;
        font-size: 28px;
        font-family: 'Montserrat', sans-serif;
    }
}
.contact-section {
    background: #92311d;
    color: #fff;
    padding: 25px 20px;
}
.contact-section h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 15px;
}
.contact-info p {
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.6;
}
.contact-info p {
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.6;
}
.service-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
}
/* PAGE BANNER */
.page-banner {
    position: relative;
    background: url('../images/about-image.jpg') no-repeat center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
section.page-banner.services-banner {
    background: url('../images/service-banner-image.jpg') no-repeat center/cover;
}
section#client-id {
    background: url('../images/clients-banner-image.jpg') no-repeat center/cover;
}
/* DARK OVERLAY */
.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
}

/* CONTENT */
.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
}

.banner-content p {
    font-size: 16px;
    color: #ddd;
}
.gallery-coming{
    text-align:center;
    padding:80px 20px;
    border:2px dashed #ddd;
    border-radius:15px;
    background:#fafafa;
    max-width:700px;
    margin:40px auto;
}

.gallery-coming i{
    font-size:60px;
    color:gold;
    margin-bottom:20px;
}

.gallery-coming h3{
    font-size:26px;
    margin-bottom:10px;
}

.gallery-coming p{
    color:#666;
    font-size:15px;
    line-height:1.6;
}
/* PREMIUM DUTIES SECTION */
.duties-premium {
    background: linear-gradient(135deg, #0a0a0a, #141414);
    padding: 90px 20px;
    text-align: center;
}

.section-title {
    font-size: 38px;
    color: #fff;
    margin-bottom: 10px;
}

.section-sub {
    color: #aaa;
    margin-bottom: 50px;
}

/* GRID */
.duties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.duty-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 18px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* ICON */
.duty-card .icon {
    width: 65px;
    height: 65px;
    margin: auto;
    margin-bottom: 20px;
    background: linear-gradient(135deg, gold, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.duty-card .icon i {
    color: #000;
    font-size: 26px;
}

/* TEXT */
.duty-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.duty-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* HOVER EFFECT */
.duty-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: gold;
    box-shadow: 0 20px 50px rgba(255,215,0,0.2);
}

/* GLOW ANIMATION */
.duty-card::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(120deg, transparent, rgba(255,215,0,0.3), transparent);
    transition: 0.5s;
}

.duty-card:hover::before {
    width: 100%;
}
.duty-card.sltd {
    transform: translateY(-12px) scale(1.03);
    border-color: gold;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}
.duty-card.sltd::before {
   width: 100%;
}

@media(max-width:768px){

#services h2 {
        color: #000000;
        font-size: 28px;
        font-family: 'Montserrat', sans-serif;
    }
.services-premium {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 25px 20px;
    text-align: center;
}
    .section-title{
        color: #fff;
        font-size: 28px;
        font-family: 'Montserrat', sans-serif;
    }
    .duties-premium {
    background: linear-gradient(135deg, #0a0a0a, #141414);
    padding: 25px 20px;
    text-align: center;
}
}
@media(max-width:400px){
.slider {
        height: 60vh;
    }

}