* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Navbar */
.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
}

/* Top bar layout */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    height: 70px;
}

/* Company text */
.company-name p {
    font-weight: bold;
    font-size: 14px;
    text-align: right;
    line-height: 1.3;
}

/* Nav links */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 10px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 13px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

/* Menu icon */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.hero {
    min-height: 120vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('images/slider-image1.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    padding: 0 60px;
}

/* Default for desktop & large screens */
.hand-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30vw;
    max-width: 420px;
    height: auto;
    z-index: 100; 
}

.hero-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 60px 40px 80px; /* extra left padding to clear hand image */
    text-align: center;
    max-width: 850px;
    position: relative;
    z-index: 2; /* above the hand image */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 2px;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 10px 0 30px;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    flex: 1;
    max-width: 180px;
    height: 2px;
    background: #000;
}

.hero-divider span {
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

.hero p {
    font-size: 18px;
    line-height: 1.5;
    color: black;
    font-family: 'Source Serif Pro', serif;
    text-align: justify;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 24px;
    color: rgb(104, 103, 103);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@media (min-width: 1600px) {
    .hand-img {
        width: 28.1vw;
        max-width: 600px;
        height: 400px;
    }
    .hero-content {
        max-width: 950px;
        padding-left: 100px; /* adjust space for hand image */
    }
}



/* Tablet & smaller desktop */
@media (max-width: 1440px) and (min-width: 769px) {
    .hand-img {
        width: 40vw;
        max-width: 330px;
        height: 300px;
    }
    .hero-content {
        padding-left: 70px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .hand-img {
        position: relative;
        width: 70%;
        max-width: 300px;
        margin-bottom: 20px;
    }
    .hero-content {
        padding: 20px;
        max-width: 100%;
    }

    .contact-info{
      text-align: justify;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 352px;
    padding: 20px;
    }

   .logo{
        margin-top: 30px;
   }

    .menu-toggle {
        display: block;
    }

    .company-name {
        display: none;
    }

    .logo img {
        height: 55px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        background: #fff;
        width: 200px;
        padding: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links.show {
        display: flex;
    }

    
     .green-printing {
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        height: auto; /* or a fixed height if you want */
        min-height: 250px; /* adjust based on image */
    }
}


.video-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: url('images/video-thumbnail.webp');
    background-position: center top;
        background-size: cover;
    background-repeat: no-repeat;
        /* margin-top: 90px; */
}

/* Keep your existing .video-section */

/* Dark overlay (improve visibility) */
.video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Ensure content above overlay */
.video-content {
    position: relative;
    z-index: 2;
}

.play-text{
    font-size: 13px;
}


/* ===============================
   PLAY BUTTON (UPGRADED)
================================ */
.play-button {
    width: 100px;
    height: 100px; 
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* Icon */
.play-button i {
    font-size: 55px;
    color: #897123;
    margin-left: 5px;
    transition: 0.3s;
}

/* Hover effect */
.play-button:hover {
    background: #000;
    transform: scale(1.15);
}

.play-button:hover i {
    color: #fff;
}


/* ===============================
   PULSE ANIMATION (IMPORTANT)
================================ */
.play-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

#cname{
    text-decoration: none;
    color: white;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}
/* ===============================
   TOOLTIP TEXT (VERY IMPORTANT)
================================ */
.play-button::after {
    content: "Tour of Busyman Offset Printers";
    position: absolute;
    bottom: -40px;
    font-size: 14px;
    color: #fff;
    opacity: 0;
    transition: 0.3s;
    white-space: nowrap;
}

.play-button:hover::after {
    opacity: 1;
}


/* ===============================
   SECTION HOVER HINT
================================ */
.video-section:hover::after {
    content: "Watch Our Corporate Video";
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    opacity: 0.8;
    z-index: 2;
}


.services {
    background: #f8f9fa;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-top: 60px;
    font-weight: 400;
    text-align: center;
    color: #333;
  
    letter-spacing: 2px;
}

.service-icon {
    width: 78px;
    height: 70px;
  object-fit: cover;
}

#icon1{
  background: url('images/icon-graphic-design.png'); 
  background-repeat: no-repeat;
  background-position: 0 -489px;
}

#icon2{
  background: url('images/icon-pre-printing.png');  
  background-repeat: no-repeat;
  background-position: 0 -488px;
}

#icon3{
  background: url('images/icon-offset-printing.png') ;
  background-repeat: no-repeat;
  background-position: 0 -485px;
}

#icon4{
  background: url('images/icon-digital-printing.png') ; 
  background-repeat: no-repeat;
  background-position: 0 -490px;
}

#icon5{
  background: url('images/icon-post-printing.png') ;
  background-repeat: no-repeat;
  background-position: 0 -515px;
}

.service-icon:hover {
  animation: playIcon 1s steps(9) infinite;
}

@keyframes playIcon {
  from { background-position-y: 0; }
  to { background-position-y: -630px; } 
}


.services-grid{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    margin-bottom: 150px;
    gap: 70px;
}

.service-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.service-item h3{
    font-family: 'Times New Roman', Times, serif;
    font-weight: 100;
    font-size: 14px;
}

.services-description {
    text-align: justify;
    max-width: 800px;
    margin: -70px auto;
    margin-bottom: 39px;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Green Printing Section */
.green-printing {
  background: url('images/sustanable.webp') no-repeat center center/cover;
  height: 600px;
  background-attachment: fixed;
}

/* Dark transparent overlay to dim the background image */
 .overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.content {
  max-width: 800px;
}

.content p{
    text-align: justify;
}

.overlay h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 550;
    font-family: 'Playfair Display';
}

.overlay p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.overlay a {
  color: black;
  text-decoration: underline;
  font-size: 18px;
}


.listitem li{
  text-align: justify;
  line-height: 1.5;
  margin-bottom: 10px;
}

.products-divider {
    width: 200px;
    height: 3px;
    background: #d4af37;
    margin: -50px auto 105px;
    position: relative;
}

.products-divider::before,
.products-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    transform: translateY(-50%);
}

.products-divider::before {
    left: -20px;
}

.products-divider::after {
    right: -20px;
}

.grid{
    width: 100vw;
    display: grid;
    grid-template-columns: 33vw 33vw 33vw;
    
}

.items{
    position: relative;
    overflow: hidden;
    height: 50vh;
    width: 100%
}

.items img{
height: 100%;
width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.overlay-text {
   position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    text-align: center;
    font-family: math;
    z-index: 2;
    pointer-events: none;
}

.items::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    transition: background 0.3s ease;
    z-index: 1;
}

.items:hover img {
    transform: scale(1.03); 
}

.items:hover::before {
    background: rgba(0, 0, 0, 0.2); 
}
.blognews-divider {
    width: 260px;
    height: 3px;
    background: #d4af37;
    margin: -50px auto 105px;
    position: relative;
}

.blognews-divider::before,
.blognews-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    transform: translateY(-50%);
}

.blognews-divider::before {
    left: -20px;
}

.blognews-divider::after {
    right: -20px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  padding: 0 50px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.blog-images{  
  display: flex;
  flex-direction: column;
      margin-bottom: -79px;
  gap: 10px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.blog-images h2{
    font-family:  'Montserrat', sans-serif;
    font-weight: bold;
    text-align: left;
    text-transform: uppercase;
    font-size: 22px;
}

.blog-images img{
height: 75%;
width: 100%;

}

.blog-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.blog-content .date {
  font-size: 14px;
  font-style: italic;
  color: #666;
}
.blog-content .read-more {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

/* All News Button */
.all-news-wrapper {
   display: flex; 
   justify-content: center;
   align-items: center;
   width: 200px;
   margin: auto 437px;
}
.all-news-btn {
    display: flex;
  padding: 10px 25px;
  border: 1px solid #000;
  background: none;
  font-size: 14px;
  cursor: pointer;
  border-radius: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}
.all-news-btn:hover {
  background: #000;
  color: #fff;
}

.subscribe-divider{
    width: 310px;
    height: 3px;
    background: #d4af37;
    margin: -50px auto 105px;
    position: relative;
}
.subscribe-divider::before,
.subscribe-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    transform: translateY(-50%);
}

.subscribe-divider::before {
    left: -20px;
}

.subscribe-divider::after {
    right: -20px;
}

.email-signup {
  text-align: center;
  padding: 50px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.email-signup p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.signup-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.signup-form input[type="email"] {
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px;
  font-size: 1rem;
  width: 250px;
  outline: none;
  color: #333;
}

.signup-form input::placeholder {
  color: #aaa;
}

.signup-form button {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #000;
  transition: transform 0.2s ease;
}

.signup-form button:hover {
  transform: translateX(3px);
}

/* Visit Section */
.visit-section {
  background: url('images/wall-logo-copy.webp') no-repeat center center/cover;
  height: 65vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  
}

.visit-section .overlay{
    display: flex;
    flex-direction: column;
    color: white;
    justify-content: center;
    align-items: center;
}

.visit-section .overlay p{
        font-size: 24px;
    line-height: 1.6;
    font-weight: 550;
}

.overlay {
  padding: 1.5rem;
  text-align: center;
}

.overlay h2 {
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.overlay p {
    font-size: 16px;
    line-height: 1.6;
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 2px solid white;
  color: white !important;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: rgba(35, 32, 32, 0.881);
  color: #fff;
  filter: brightness(1.5); /* Brighter on hover */
  transition: all 0.1s ease-in;
}
/* Responsive Design */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Footer Styles */
.footer {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 40px 0 25px 0;
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left Side - Menu Columns */
.footer-menus {
    display: flex;
    flex: 1;
    gap: 30px;
}

.footer-column {
    flex: 1;
}

@media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
    }

    .footer-form {
        width: 100%;
    }

    .footer-contact {
        width: 100%;
    }
}

.footer-heading {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
   font-family: system-ui;
}

.footer-links a:hover {
    color: #cccccc;
}

.additional-links {
    margin-top: 40px;
}

.additional-links .footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
}

.additional-links .footer-links li a{
    font-size: 18px;
}

hr{
    height: 18px;
    width: 2px;
    background-color: white;
}


/* Right Side - Contact Information */
.footer-contact {
    flex: 0 0 350px;
    text-align: justify;
}

.contact-info {
    margin-bottom: 25px;
}

.company-name {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: uppercase;
    line-height:0.7;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: justify;
}

.cname{
    font-size: 23px;
    text-transform: uppercase;
}

.address {
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.4;
    text-align: left;
}

.contact-details {
    font-size: 20px;
}

.add{
    display: flex;
    justify-content: center;
    /* align-items: center; */
    gap: 12px;
}

.contact-details span {
    display: block;
    margin-bottom: 4px;
}

.contact-info i{
    font-size: 20px;
}

/* Bottom Footer */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333333;
    padding-top: 20px;
    font-size: 14px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-left p {
    margin: 0;
        font-family: system-ui;
}

.privacy-link {
    color: #ffffff;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.follow-text {
    margin-right: 10px;
    font-size: 14px;
}

.social-icon {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    color: white;
}

.social-icon i{
    font-size: 23px;
}

.social-icon:hover {
    opacity: 0.7;
}

/* Help Button */
.help-btn {
    background-color: #ff9500;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}

.help-btn:hover {
    background-color: #e6850e;
}


/* Base: Mobile First (≤ 767px) */
@media (max-width: 767px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 16px;
    background-color: white;
  }

  /* .top-bar {
    padding: 0 16px;
    justify-content: space-between;
  } */

  .logo img {
    height: 80px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none; /* Hidden by default on mobile */
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 12px 0;
    background: #fff;
  }

  .nav-links a {
    font-size: 14px;
    padding: 8px 16px;
    text-align: left;
  }

  /* Show nav-links when active */
  .nav-links.active {
    display: flex;
  }
}

/* Tablet (768px–1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-links {
        display: none; /* hidden by default */
        flex-direction: column;
        align-items: center;
        background: #fff;
        padding: 15px 0;
    }

    .nav-links.show {
        display: flex; /* shown when toggle is clicked */
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }
}

/* Small Laptops (1024px–1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .nav-links {
    gap: 80px;
  }

  .logo img {
    height: 80px;
  }
}

/* Large Screens (1280px and up) */
@media (min-width: 1280px) {
  .nav-links {
    gap: 120px;
  }
}


/* Mobile First (≤767px) */
@media (max-width: 767px) {

  /* Video Section */
  .video-section {
    height: auto;
    padding: 60px 20px;
    background-position: center;
  }

  .video-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .play-button {
    width: 70px;
    height: 70px;
  }

  .play-button i {
    font-size: 40px;
    margin-left: 3px;
  }
}

/* Tablet (768px–1023px) */
@media (min-width: 768px) and (max-width: 1023px) {

  .video-content h2 {
    font-size: 36px;
  }

  .play-button {
    width: 80px;
    height: 80px;
  }

  .play-button i {
    font-size: 50px;
  }
}

/* Small Laptop (1024px–1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {

  .video-content h2 {
    font-size: 42px;
  }
}

/* Large Screens (≥1280px) */
@media (min-width: 1280px) {
  /* Keep original styles */
}


/* Mobile First (≤767px) */
@media (max-width: 767px) {
  .services h2 {
    font-size: 26px;
    margin-top: 40px;
  }

  .services-grid {
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
    margin-bottom: 60px;
  }

  .service-item {
    gap: 15px;
  }

  .service-icon {
    width: 60px;
    height: 55px;
    background-size: contain;
    background-position: center;
  }

  .service-item h3 {
    font-size: 13px;
  }

  .services-description {
    margin: 20px auto;
    padding: 0 15px;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
  }
}

/* Tablet (768px–1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .services h2 {
    font-size: 30px;
  }

  .services-grid {
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 100px;
  }

  .service-icon {
    width: 70px;
    height: 65px;
  }

  .service-item h3 {
    font-size: 14px;
  }

  .services-description {
    margin: -50px auto 30px;
    padding: 0 20px;
    font-size: 15px;
  }
}

/* Small Laptop (1024px–1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .services h2 {
    font-size: 34px;
  }

  .services-grid {
    gap: 60px;
  }

  .service-icon {
    width: 75px;
    height: 68px;
  }
}

/* Large Screens (≥1280px) */
@media (min-width: 1280px) {
  /* Keep original styles */

}




@media (max-width: 767px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .overlay-text {
    font-size: 13px;
    padding: 10px;
  }
}

/* @media (min-width: 1540px) and (max-width: 1880px) {
   .hero-content{
    margin-top: 400px;
   }

   .hand-img{
    width: 530px;
   }
} */


/* @media (min-width: 1880px) and (max-width: 1940px) {
    .hero-content{
    margin-top: 450px;
   }

   .hand-img{
    width: 530px;
   }
} */

/* @media (min-width: 1880px) and (max-width: 2300px) {
   .hero-content{
    margin-top: 450px;
    width: auto;
    max-width: 1000px;
   }

   .hero-content p{
    font-size: 24px;
   }

   .hand-img{
    width: 560px;
   }
} */

/* Tablet (768px–1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  

  .overlay-text {
    font-size: 13px;
  }
}

/* Small Laptop (1024px–1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }


}



/* Base desktop styles are already fine from your existing CSS */

/* Tablet (768px–1023px) */
@media (max-width: 1023px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 0 30px;
  }

  .blog-images h2 {
    font-size: 20px;
  }

  .blog-content h3 {
    font-size: 16px;
  }

  .all-news-wrapper {
    margin: 30px auto 0 auto;
    width: auto;
  }


}

/* Mobile (≤767px) */
@media (max-width: 767px) {
  .blog-grid {
           grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 99px;
        margin-bottom: 96px;
  }

  .blog-images h2 {
    font-size: 18px;
    text-align: center;
  }

  .blog-images img {
    height: auto;
  }

  .blog-content h3 {
    font-size: 15px;
    text-align: center;
  }

  .blog-content .date,
  .blog-content .read-more {
    font-size: 13px;
    text-align: center;
  }

  .all-news-wrapper {
    margin: 20px auto 0 auto;
    width: auto;
  }

  .all-news-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* Large Desktop (>1400px) for extra spacing */
@media (min-width: 1400px) {
  .blog-grid {
    gap: 30px;
    padding: 0 80px;
  }
}


/* Tablet (768px–1023px) */
@media (max-width: 1023px) {
  .visit-section {
    height: 50vh;
    background-attachment: scroll; /* prevent fixed background jank on mobile/tablet */
    padding: 20px;
  }

  .visit-section h1 {
    font-size: 28px;
    text-align: center;
  }

  .visit-section p {
    font-size: 16px;
    text-align: center;
    max-width: 90%;
  }

  .footer-content {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-menus {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-column {
    flex: 1 1 200px;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
  .visit-section {
    height: auto;
    padding: 40px 15px;
    text-align: center;
  }

  .visit-section h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .visit-section p {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-content {
           flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
  }

  .footer-menus {
    flex-direction: column;
    gap: 15px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-contact {
    width: 100%;
  }

  .footer-bottom {
          display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        text-align: center;
  }

  .footer-bottom-left p {
    font-size: 13px;
  }

  .social-links {
    justify-content: center;
  }
}


/* ===============================
   FOOTER FORM (RIGHT SIDE)
================================ */

.footer-form {
    flex: 0 0 300px;
}

.footer-form h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Form fields */
.footer-form .form-group {
    margin-bottom: 12px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #aaa;
}

/* Focus effect */
.footer-form input:focus,
.footer-form textarea:focus {
    border-color: #ff9500;
    background: #000;
}

/* Submit button */
.footer-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff5a2c, #ff9500);
    border: none;
    padding: 10px;
    border-radius: 25px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-submit-btn:hover {
    background: linear-gradient(135deg, #e64a1f, #ff7b00);
}
