* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    color: #fff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f0a 25%, #2d1a0f 50%, #1a0f0a 75%, #0a0a0a 100%);
    scroll-behavior: smooth;
    zoom: 1; /* Ensure default zoom level */
    transform-origin: top left;
}

.montserrat-text{
    font-family:'Montserrat';
    font-weight:300;
}
/* === video-galler === */

.video-gallery {
  padding: 30px;
  text-align: center;
}

/* Responsive Video Gallery */
.video-loop {
    overflow: hidden;
    white-space: nowrap;
    margin: 30px 0;
    position: relative;
    height: 40vh;
}

.video-track {
    display: flex;
    height: 38vh;
    padding: 4px;
    position: absolute;
    width: 300%;
    justify-content: center;
    gap: 20px;
    animation: scroll-left 40s linear infinite;
}

.video-item {
    position: relative;
    width: clamp(280px, 80vw, 600px);
    height: 38vh;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #FFA500;
    box-shadow: 0 8px 16px rgba(255, 165, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .video-loop {
        height: 30vh;
    }
    
    .video-track {
        height: 28vh;
    }
    
    .video-item {
        height: 28vh;
        width: clamp(220px, 70vw, 400px);
    }
}

@media (max-width: 480px) {
    .video-loop {
        height: 25vh;
    }
    
    .video-track {
        height: 23vh;
    }
    
    .video-item {
        height: 23vh;
        width: clamp(180px, 60vw, 300px);
    }
    
    .play-button {
        font-size: 36px;
    }
}
.video-loop.reverse .video-track {
  animation: scroll-right 40s linear infinite;
}

.video-item {
  position: relative;
  width: 600px;
  height: 38vh;
  border-radius: 15px;
  overflow: hidden;
  border: 4px solid #FFA500;
  box-shadow: 0 8px 16px rgba(255, 165, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
}
.video-item video {
  width: 100%;
  height: 100%;
  object-fit: fill; /* This is the key property */
  display: block;
}

/* Thumbnail styling */
.video-item .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Make thumbnails fill the container too */
}

.video-item img {
  width: 100%;
  height: 38vh;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width:600px){
      .video-loop.reverse{
    display:none;
  }
}


.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  font-size: 48px;
  color: #FFA500;
  z-index: 10;
  cursor: pointer;
}
@media(min-width:600px){
    .play-button:hover{
         color:#888;
    }
}
/* ===== pop up message ======== */
.alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

.alert-box {
    background-color: #1a1a1a;
    padding: clamp(20px, 3vw, 40px);
    border-radius: 12px;
    max-width: min(600px, 90%);
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    animation: fadeIn 0.3s ease-out;
}

.alert-box h2 {
    margin-top: 0;
    color: #ffffff;
    font-size: clamp(22px, 2.5vw, 32px); /* Responsive font scaling */
    margin-bottom: clamp(10px, 1.5vw, 20px);
    font-weight: 600;
    line-height: 1.3;
}

.alert-box p {
    margin-bottom: clamp(20px, 2.5vw, 30px);
    color: #cccccc;
    line-height: 1.6;
    font-size: clamp(16px, 1.8vw, 20px); /* Responsive font scaling */
}

.alert-box .close-btn {
    background-color: #6e45e2;
    color: white;
    border: none;
    padding: clamp(10px, 1.5vw, 15px) clamp(20px, 3vw, 30px);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: clamp(16px, 1.8vw, 20px); /* Responsive font scaling */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Larger screens adjustments (min-width: 1200px) */
@media screen and (min-width: 1200px) {
    .alert-box {
        max-width: 700px;
        padding: 50px;
    }
    
    .alert-box h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .alert-box p {
        font-size: 22px;
        margin-bottom: 35px;
    }
    
    .alert-box .close-btn {
        font-size: 20px;
        padding: 15px 35px;
    }
}

/* Animation for smooth appearance */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ====== our work heading ==== */ 
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans Adlam', sans-serif;
    font-weight: 600;
    color: #FFA500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align:center;
}
h1{
   font-size:4rem; 
}
/* ================= Header ================= */

.header {
    display: flex;
    align-items: center;
    padding: 15px 75px;
    width: 100%;
    top: 0;
    z-index: 999;
    overflow: hidden;
}
.logo {
    height: 60px;
    width: 100px;
    border-radius: 50%;
    padding-right: 35px;
    transform: scale(2.4);
    margin-top:-20px;
   
}


#menu-icon {
    font-size: 28px;
    color: #FFD700;
    cursor: pointer;
    display: none;
    /* Hidden on large screens */
}


/* Navbar for large screens */

.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    animation: slideright 1s ease forwards;
    animation-iteration-count: 1;
}

@keyframes slideright {
    from {
        transform: translateX(100px);
    }
    to {
        transform: translateX(0px);
    }
}

.navbar a {
    font-size: 28px;
    font-weight: bold;
    color: #FFA500;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0 10px;
    overflow-x: hidden;
}

.navbar a:hover {
    color: #FFEE99;
    background-color: #2D3740;
    padding: 5px 10px;
    border-radius: 5px;
}


/* Responsive Styles */

@media (max-width: 768px) {
    .header {
        justify-content: space-between;
        padding: 15px 20px;
    }
    #menu-icon {
        display: block;
        /* Show hamburger */
    }
    .navbar {
        display: none;
    }
    #menu-icon {
        display: block;
    }
    .navbar a {
        color: #FF8C00;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s;
    }
    .navbar a:hover {
        color: #FFEE99;
        background-color: #2D3740;
        padding: 5px 10px;
        border-radius: 5px;
    }
    .navbar.show {
        display: flex;
    }
}

@media (min-width:768px) {
    .logo {
        padding-top: 10px;
    }
}
@media(max-width:600px){
    .logo{
        transform: scale(1.6);
        margin-top:0;
        margin-left:8px;
    }
}
@media (max-width: 768px) {
    
    .navbar {
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: all 0.3s ease;
     
    }
    .navbar.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}
/* Mobile menu styles */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 80px;
        right: 20px;
        background-color: rgba(10, 10, 10, 0.95);
        border: 2px solid #FFD700;
        border-radius: 8px;
        flex-direction: column;
        width: 200px;
        padding: 15px;
        display: none;
        z-index: 1000;
    }
    
    .navbar.show {
        display: flex;
    }
    
    .navbar a {
        padding: 10px;
        text-align: center;
    }
    
    .menu-icon {
        display: block !important;
    }
}


/* =============== Footer ================ */

.site-footer {
     background: linear-gradient(135deg, #0a0a0a 0%, #1a0f0a 25%, #2d1a0f 50%, #1a0f0a 75%, #0a0a0a 100%);
    color: #eee;
    padding: 40px 20px 20px 20px;
    text-align: center;
    position: relative;
}

.site-footer h3 {
    font-family: 'Noto Sans Adlam', sans-serif;
    color: #FF8C00;
    font-size: 44px;
    margin-bottom: 10px;
}

.site-footer p {
    font-size: 24px;
    line-height: 1;
    margin: 0 auto;
    max-width: 600px;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    color: #FF8C00;
    border-top: 1px solid #FF8C00;
    padding-top: 10px;
    position: relative;
}





/* Responsive Adjustments for smaller screens */

@media (max-width: 600px) {
    .site-footer {
        padding: 30px 10px 15px 10px;
    }
    .site-footer h3 {
        font-size: 22px;
    }
    .site-footer p {
        font-size: 14px;
    }
    .footer-bottom {
        padding-top: 12px;
    }
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 15px;
        right: 15px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    /* ABOVE the Back to Top button */
    right: 20px;
    width: 50px;
    height: 50px;
    text-decoration: none;
    background-color: #25D366;
    /* WhatsApp green */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
    margin-right: 20px;
    animation: fadewhatsapplogo 3s ease forwards;
    animation-iteration-count: 1;
}

@keyframes fadewhatsapplogo {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width:1280px) {
    .whatsapp-float {
        margin-right: 0px;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    opacity: 1;
}



@media (max-width: 768px) {
  /* Stack videos vertically */
  .video-track {
    display: block !important;
    height: auto !important;
    white-space: normal !important;
    position: static !important;
    padding: 10px 0;
    width: 100% !important;
    animation: none !important;
  }
  
  .video-loop {
    height: auto !important;
  }
  
  /* Make video items full width with some spacing */
  .video-item {
    width: 90% !important;
    height: auto !important;
    margin: 15px auto !important;
    aspect-ratio: 16/9; /* Maintain aspect ratio */
    opacity: 1 !important;
    transform: none !important;
  }
}
/* For very small screens */
@media (max-width: 480px) {
  .video-item {
    width: 95% !important;
  }
  
  .our-work-heading {
    font-size: 2rem;
  }
  
  
  .site-footer h3 {
    font-size: 28px;
  }
  
  .site-footer p {
    font-size: 16px;
  }
}

/*== about us hidden for mobiles ===*/
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }
}

.schedule-call-btn {
    background-color: black;
    color: white;
    border: 2px solid #FFA500;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.schedule-call-btn:hover {
    background-color: #FFA500;
    color: black;
}

.back-to-top {
    background-color: black;
    color: white;
    border: 2px solid #FFA500;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.back-to-top:hover {
    background-color: #FFA500;
    color: black;
}

.site-footer p {
    font-size: 18px;
}




@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-33.33%); }
  100% { transform: translateX(0); }
}

