<style>

.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #fff;
  
}

.logo-track {
  display: flex;
  width: fit-content;
  gap:100px;
  animation: scroll-left 15s linear infinite;
}

.company-logo {
  flex: 0 0 auto;
  margin: 0 40px;
  
}

.company-logo img {
  height: 60px;
  width: auto;
 /* optional: make logos white */
}

/* Animation keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .logo-marquee {
    padding: 10px 0;
  }

  .logo-track {
    gap: 40px; /* less gap for smaller screens */
    animation: scroll-left 5s linear infinite; /* slow down slightly */
  }

  .company-logo {
    margin: 0 15px;
  }

  .company-logo img {
    height: 40px; /* smaller logos */
  }
}

.stats-section {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.stats-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
}

.stat-box {
  display: flex;
  align-items: center;
  
  padding: 1.5rem;
  
  width: 300px;
  transition: transform 0.3s ease;
  text-align: left;
}



.stat-box img {
  width: 100px;
  height: 100px;
  margin-right: 1rem;
}

.stat-content h3 {
  font-size: 3.5rem;
  color: #000;
  margin: 0;
  font-weight: bold;
}

.stat-content p {
  font-size: 1.1rem;
  color: #333;
  font-weight: bold;
  font-family: "helvetica",sans-serif;
  margin: 0.3rem 0 0;
}

.social-media{
    position: absolute;
    bottom: 40px;
    left: 89%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.social-media a {
    color: green;
    font-size: 85px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: greenyellow; /* Change to your preferred hover color */
}
.imonial-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.testimonial-section h2 {
    font-size: 56px;
    margin-bottom: 40px;
    text-align: center;
    font-family: "Calton", sans-serif;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.testimonial-card {
    width: 300px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: left;
    font-size: 18px;
}
test
.testimonial-card p {
    font-style: italic;
    color: #666;
}

.testimonial-card h4 {
    margin-top: 20px;
    font-weight: bold;
    color: #333;
}

.testimonial-card .client-title {
    font-size: 16px;
    color: #0097b2;
}

.testimonial-card .client-logo {
    width: 80px; /* Adjust logo size */
    height: 80px;
    margin-bottom: 15px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-wrapper {
    overflow: hidden; /* Hide overflowing testimonials */
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}


.work-section {
    padding: 20px;
    text-align: center;
    margin-top:60px;
}
.work-section h2{
    font-size: 46px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0px;
    justify-items:center;
    
    
    
}

.project-card {
    width:100%;
    
    max-width: 690px;
height: 500px;
background: rgb(236, 236, 236);
box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
            rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
            rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;

transition: transform 0.3s ease, box-shadow 0.3s ease;
overflow: hidden;
padding: 0px;
position:relative;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:0px;
    display: block;

}
.project-card .overlay{
    position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
 /* Semi-transparent overlay */
color: white;
font-size: 18px;
font-family: 'Calton', sans-serif;
text-align: center;
pointer-events: none;

}

.project-card .details {
    padding: 10px;
}

.project-card .overlay h3 {
    margin: 0 0 10px;
    font-size: 68px;
    letter-spacing:10px;
}

.project-card .details p {
    font-size: 14px;
    color: #666;
}

.image-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.image-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1500px;
  margin:60px auto;
}

.image-card {
  position: relative;
  width:100%;
    
    max-width: 690px;
height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.1);
}
.t-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.t-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.t-carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1400px;
  height:120%;
  margin: 0 auto;
}

.t-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  width: 100%;
  
  scroll-behavior: smooth;
}

.t-card {
  min-width: calc(33.333% - 13.33px); /* 3 per row */
  background: #fff;
  padding: 30px;
  width: 300px;
  border-radius: 12px;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex-shrink: 0;
  font-size: 18px;
}

.t-card  img{
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 50%;
}

.t-card .t-text {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.t-card .t-author {
  font-size: 1rem;
  color: #555;
}

.t-card .client-title {
    font-size: 16px;
    color: #0097b2;
}
.prev-btn, .next-btn {
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  padding: 0 15px;
  transition: color 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
  color: #0097b2;
}

/* Responsive */
@media (max-width: 992px) {
  .t-card {
    min-width: calc(50% - 10px); /* 2 per row */
  }
}

@media (max-width: 480px) {
  .t-card {
    min-width: 100%; /* 1 per row */
  }
}


/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s ease;
}



.overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.overlay p {
  font-size: 1rem;
  max-width: 80%;
  margin: 0 auto;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}

   
    
    h6{
        font-size:200px;
        font-family:'Calton',sans-serif;
        text-align:center;
       margin:50px;
       text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            
        
        
            
        
    }
    .container {
        font-size: 100px; /* Adjust the size as needed */
        display: flex;
        align-items: center;
    }
    
    .cctv-image {
        background-image: url('path/to/your/cctv-image.png'); /* Replace with your CCTV image path */
        background-size: contain;
        background-repeat: no-repeat;
        width: 80px; /* Adjust width as needed */
        height: 80px; /* Adjust height as needed */
        margin-right: 10px; /* Space between CCTV and text */
    }
    
    .text {
        color: #333;
        font-size:100px; /* Text color */
    }
    
.project-logos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.company-logo {
    width: 300px;
    margin: 20px;
    text-align: center;
}

.company-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.company-logo p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

.button {
    padding: 12px 30px;
    font-size: 18px;
    background-color: #0077c0;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.button:hover {
    background-color:#D0FF71;
    color:black;
}
.completed-projects {
    padding: 50px;
    text-align: center;
    background-color: #F0EAD2;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    background-color: aliceblue;
    justify-items: center;
    margin-bottom: 40px;
    padding:60px 40px;
    border-radius: 5px;
}



.project-logos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
    align-items: center;
}

.company-logo {
    width: 300px;
    margin: 20px;
    text-align: center;
}

.company-logo img {
    max-width: 100%;
    height: auto;
    
    border-radius: 10px;
}

.company-logo p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

.button {
    padding: 12px 30px;
    font-size: 18px;
    background-color:black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    
    margin-top: 20px;
}

.button:hover {
    background-color:#D0FF71;
    color:black;
}
.completed-projects {
    padding: 50px;
    text-align: center;
    background-color: white;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
    margin-bottom: 40px;
}

.stat-item h1 {
    font-size: 46px;
    color: black;
    font-weight: bold;
    font-family: 'roboto', sans-serif;
    margin-bottom: 10px;
}

.stat-item i {
    font-size: 30px;
    color: black;
    margin-bottom: 10px;
    display: block;  /* Make the icon appear below the heading */
}

.stat-item span {
    font-size: 24px;
    color: black;
    font-weight:bold;
}


.project-logos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}
h2{
    font-weight: bold;
    font-size: 30px;
    font-family: 'Calton',sans-serif;
    margin:10px;
}

.company-logo {
    width: 300px;
    margin: 0px;
    text-align: center;
}

.company-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
   
}


.company-logo p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

.button {
    padding: 12px 30px;
    font-size: 18px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.button:hover {
    background-color: #D0FF71;
    color: black;
}

.cctv-services {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.cctv-services h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
  font-family: 'Calton', sans-serif;
}

.services-grid {
      display: flex
;
    width: 100%;
    border-radius: 8px;
    height: auto;
}

.cctv-box {
  
  padding: 2rem;
  
  transition: transform 0.3s ease;
}


.cctv-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.cctv-box h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.cctv-box p {
  font-size: 1rem;
  color: #555;
  font-family: "roboto",sans-serif;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .cctv-services {
    padding: 2rem 1rem;
  }

  .cctv-services h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .services-grid {
    display: grid; /* ✅ switch to grid for easy 2-column layout */
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
  }

  .cctv-box {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
  }

  .cctv-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 0.8rem;
  }

  .cctv-box h3 {
    font-size: 1.2rem;
  }

  .cctv-box p {
    font-size: 0.95rem;
  }
}


    .services-section {
        
        text-align: center;
        background-color:white;
    }
    
    .services-section h2 {
        font-size: 46px;
        font-family: 'Calton', sans-serif;
        color: #333;
        margin-bottom: 100px;
    }
    .service-heading{
        text-align: center;
        margin-top:20px;
    }
    .service-heading h4{
        font-size:70px;
        font-family: 'roboto', sans-serif;
        color:black;


    }
    /* Container for service cards */
.service-cards {
    display: flex;
    margin:80px 0;
    gap: 80px;
    justify-content: center;
    padding: 20px;
    background-color:;
}

/* Uiverse.io card styling */
.cardd {
    width: 390px;
    height: 500px;
    background: rgb(236, 236, 236);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
                rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
                rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    padding: 0px;
    position:relative;
}

/* Image styling inside card */
.cardd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:0px;
}

/* Add hover effect */
.cardd:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 8px, 
                rgba(0, 0, 0, 0.3) 0px 10px 20px -3px, 
                rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

/* Heading styling inside card */
.cardd h4 {
    font-size: 58px;
    font-family: 'Calton', sans-serif;
    color:white;
    text-align: center;
    margin: 10px 0;
    line-height:1.5;
    letter-spacing: 10px;
    
}
.cardd .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
     /* Semi-transparent overlay */
    color: white;
    font-size: 18px;
    font-family: 'Calton', sans-serif;
    text-align: center;
    pointer-events: none; /* Prevent overlay from interfering with hover effects */
}

    .service-heading h4:hover{
        transform:scale(2);

    }
    
    .service-box {
        display: flex;
        width: 100%;
        height: 80vh; /* Full screen height */
    }
    
    .service-image {
        width: 50%;
        height: 100%;
        object-fit: cover; /* Ensures the image scales nicely */
    }
    
    .service-text {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 20px 50px;
        background-color: #f9f9f9; /* Light background color for contrast */
        text-align: left;
    }
    
    .service-text h3 {
        font-size: 48px;
        font-family: 'typo', sans-serif;
        color: black;
        margin-top: -30px;
    }
    
    .service-text p {
        font-size: 24px;
        line-height: 1.6;
        color: black;
        font-family: "robot", sans-serif;
        font-weight:bold;

        margin-bottom: 30px;
    }
    
    .button {
        font-size: 18px;
        padding: 10px 20px;
        background-color: black;
        color: #fff;
        border: none;
        border-radius: 0px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .button:hover {
        background-color: #D0FF71;
        color:black;
    }
    
    
    @media screen and (max-width: 768px) {
        .service-item {
            flex-direction: column;
            text-align: center;
        }
    
        .service-item img {
            width: 100%;
        }
    
        .service-description {
            text-align: center;
        }
    }
    
   
    
    body{
        margin:0;
        padding:0;
        font-family: "Segoe UI", sans-serif;
        overflow-x: hidden;
        
    }
    a {
        text-decoration: none;
        color: inherit; /* This removes the default purple color and inherits the color from the parent */
    }
    /* General styles for the body to remove margin and padding */

/* Container for the background image */
.bg-image {
    position: relative;
    width: 100%;
    height: 80vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
     /* Fallback color */
}
.discount-banner {
    top:0;
    background-color:black;
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: 20px;
    height:40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family:'Calton',sans-serif;
    


    
}
.banner-message {
    display: none;
    animation: fadeInOut 8s infinite;
}
@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    40% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}
.bottom-left-text {
    position: absolute;
    bottom: 80px; /* Distance from the bottom of the image */
    right: 60px;   /* Distance from the left of the image */
    color: black;
    font-family: 'helvetica', sans-serif;
    font-size: 45px;
    font-weight:bold;
     /* Optional: Add a semi-transparent background for readability */
    padding: 10px 15px; /* Add padding for better appearance */
    border-radius: 5px; /* Optional: Add rounded corners */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow for better visibility */
}


/* Image styling */
.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the entire area */
    object-position: center;
    transition: transform 0.3s ease; /* Center the image */
}




    /* Styles for the header */
    .header {
        position: sticky;/* Position it relative to the viewport */
        top: 0px;
        left: 0;
        width: 100%; /* Make it span the full width of the page */
        z-index: 1000; /* Ensure it's above the background image */
        background-color: white; /* Keep it transparent */
        padding: 15px 0;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .header:hover .logo img{
        filter: brightness(1) invert(0);

    }
    .header:hover .logo img:hover{
        filter: brightness(0) invert(0);
    

    }
    .header:hover #navbar a{
        color:black;
    }
    .header:hover .navbar a:hover{
        color:black;
        transform:scale(1.2);
        transition: transform 0.3s ease, color 0.3s ease;
    }
    .header:hover .cta-button{
        background-color:black;
        border: 2px #0077c0;
        color:white;

    }
    .header:hover .cta-button:hover{
        background-color:#D0FF71;
        border: 2px #0077c0;
        color:black;

    }
@font-face {
    font-family: 'itronz';
    src: url('/static/itronz.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'roboto';
    src: url('/static/Roboto-Black.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'lato';
    src: url('/static/Lato-Black.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'typo';
    src: url('/static/typo.otf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'helvetica';
    src: url('/static/Helvetica.otf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gon';
    src: url('/static/Gontserrat-Black.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Bold';
    src: url('/static/bold.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Artines';
    src: url('/static/Arthines.otf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'chico';
    src: url('/static/Chicharito.ttf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Calton';
    src: url('/static/Caltons.otf') format('truetype'); /* TTF format */
    font-weight: normal;
    font-style: normal;
}

.logo{
    display: flex;
        align-items: center; /* Center the image vertically within the navbar */
        height: 100%;
    
}

.logo img {
    max-height: 60px;
    height: 100%;
    width: auto;
    
    margin-left: 100px;
    transform: scale(2);
    cursor:pointer;
    
    
    /* Apply filter to make the image white */
    filter: brightness(1) invert(0);
    
}
.navbar {
    z-index: 100;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}


.navbar li {
    margin-right: 30px;
}

.navbar a {
    display: inline-block;
    color: black;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    
    font-size:25px;
    font-family:'Calton',sans-serif;
}


.cta-button {
    display: inline-block;
    background-color:transparent;
    color:black; /* Customize as needed */
    padding: 10px 24px;
    border: none;
    font-size:17px;
    border-radius: 0px;
    text-align: center;
    cursor: pointer;
    font-weight:bold;
    margin-right:40px;
    border: 3px solid black;
    font-family:'itronz',sans-serif;
    box-shadow: 0 0 20px 5px #black;
}

.cta-button:hover {
    transform:scale(1.1);
    
    
   
    
    

}
.text-overlay {
    position: absolute;
    text-align: center;
    color: #F0EAD2;
    display: block; 
    z-index: 20; /* Ensure it's above the image */
    max-width: 80%;
    margin-left:-750px;
    margin-top:50px;
    
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a subtle shadow to enhance readability */
}

.text-overlay h1 {
    font-size: 60px;
    margin:0;
    
    color:white;
    letter-spacing: 3px;
    font-family: 'Calton', sans-serif;
}

.text-overlay p {
    font-size: 25px;
    margin: 0px 0;
    margin-left:90px;
    text-align: left;
    color:white;
    font-weight:bold;
    letter-spacing: 1px;
    font-family: 'typo', sans-serif;
}
.text-overlay p1 {
    font-size: 30px;
    
    font-family: "Segoe UI", sans-serif;
    
    color:#F0EAD2;
    
    
}
.sales-label {
  margin-top: 20px;
  font-weight: 600;
  font-size: 16px;
  color: white; /* teal-ish */
}
.google-review {
 
  font-size: 18px;
  color: #555;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.google-review .stars i {
  color: green; /* Google star yellow */
  margin-right: 2px;
  font-size: 20px;
}

.rating-text {
  font-weight: 600;
  color: white;
  margin:10px;
}
.text-overlay1 {
    text-align: center;
    color: black;
  /* Center the text horizontally */
    margin-left:120px;
    margin-top:-100px;
    max-width: 80%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);  /* Add a subtle shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;  /* Ensure it takes up the full screen height if needed */
}


.text-overlay1 h1 {
    font-size: 100px;
    
    font-family: 'Calton', sans-serif;
}

.text-overlay1 p {
    font-size: 35px;
    margin: 5px 0;
    font-family: 'chico', sans-serif;
}
.text-overlay1 .button {
    margin-top: 20px;
    font-size: 18px;
    display: inline-block;
    background-color: black;
    color: #F0EAD2; /* Customize as needed */
    padding: 10px 20px;
    border: none;
    font-size:17px;
    border-radius: 0px;
    text-align: center;
    cursor: pointer;
    font-weight:bold;
    margin-right:40px;
    
    font-family:'itronz',sans-serif;
    box-shadow: 0 0 20px 5px #black;
}

.text-overlay .button {
    margin-top: 15px;
    font-size: 25px;
    display: inline-block;
    background-color:black;
    color:white; /* Customize as needed */
    padding: 25px 230px;
    border: none;
    
    border-radius: 0px;
    text-align: center;
    cursor: pointer;
    font-weight:bold;
    margin-right:40px;
    
    font-family:'helvetica',sans-serif;
    box-shadow: 0 0 20px 5px #black;
}
.button{
    margin-top: 20px;
    font-size: 48px;
    display: inline-block;
    background-color: black;
    color: #F0EAD2; /* Customize as needed */
    padding: 10px 20px;
    border: none;
    font-size:17px;
    border-radius: 0px;
    text-align: center;
    cursor: pointer;
    font-weight:bold;
    margin-right:40px;
    border: 3px solid white;
    font-family:'itronz',sans-serif;
    box-shadow: 0 0 20px 5px #black;    

}
.text-overlay .buttonn {
    margin-top: 20px;
    font-size: 18px;
    display: inline-block;
    background-color:black;
    color: #F0EAD2; /* Customize as needed */
    padding: 10px 20px;
    border: none;
    font-size:17px;
    border-radius: 0px;
    text-align: center;
    cursor: pointer;
    font-weight:bold;
    margin-right:40px;
    
    font-family:'itronz',sans-serif;
    box-shadow: 0 0 20px 5px #black;
}
.text-overlay .button:hover {
    background-color:#D0FF71; /* Change to orange on hover */
    color: black;
}

/* Change .buttonn to peach when hovering .button */


/* Hover effect for swapping colors on .buttonn */
.text-overlay .buttonn:hover {
    background-color: #D0FF71; /* Change to peach on hover */
    color: black;
}
/* Responsive Styles for 480px and below */
/* General Styles for the Products Section */
.products-section {
    padding: 50px 20px;
    text-align: center;
    background-color: white;
}

.products-section h2 {
    font-size: 46px;
    font-family: 'Calton', sans-serif;
    color: #333;
    margin-bottom: 50px;
}

/* Container for all product cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12em, 1fr));
    gap: 1em;
    justify-items: center;
    padding: 2em;
    background: white;
}

/* Individual card styles */
.card {
    position: relative;
    width: 15em;
    height: 20em;
    box-shadow: 0px 1px 13px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 120ms;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 0.5em;
    padding-bottom: 3.4em;
    border-radius: 0px;
    flex: 0 0 auto;
}

.card::after {
    content: "Product Description";
    font-family: 'roboto', sans-serif;
    padding-top: 1.25em;
    padding-left: 1.25em;
    position: absolute;
    left: 0;
    bottom: -60px;
    background: #00AC7C;
    color: #fff;
    height: 2.5em;
    width: 90%;
    transition: all 80ms;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0;
    text-align: center;
}

.card .title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9em;
    position: absolute;
    left: 0.625em;
    bottom: 1.875em;
    font-weight: 400;
    color: #000;
}

.card .price {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 0.9em;
    position: absolute;
    left: 0.625em;
    bottom: 0.625em;
    color: #000;
}

.card:hover::after {
    bottom: 0;
    opacity: 1;
}

.card:active {
    transform: scale(0.98);
}

.card:active::after {
    content: "Added!";
    height: 3.125em;
}

/* Image container */
.image {
    background: rgb(241, 241, 241);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* fills the container, may crop */
    border-radius: 0;
}

.image .text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    display: none;
}

/* Hover effect to show text */
.image:hover .text {
    display: block;
}
.categories-grid {
    display: flex;
    justify-content: center;
    gap: 3em;
    margin-bottom: 30px;
}

.category-card {
    background-color: black;
    color: white;
    padding: 15px 30px;
    font-family: "helvetica",sans-serif;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-card:hover {
    background-color: #D0FF71;
    color:black;
}


@media (max-width: 768px) {
    .footer-bottom h1 {
        font-size: 1.5rem;
        margin-top:20px;
    }

    .footer-bottom h3 {
        font-size: 7.25rem;
    }
    .footer h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
}
/* Footer adjustments for small screens (480px and below) */
@media (max-width: 480px) {
    .footer {
        padding: 30px 15px;
        font-size: 12px;
        line-height: 18px;
    }

    .row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 95%;
    }

    .col {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .footer h1 {
        font-size: 24px;
        margin-top: 15px;
    }

    .footer h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer p {
        font-size: 14px;
    }

    .footer-bottom h1 {
        font-size: 1.2rem;
        margin-top: 10px;
    }

    .footer-bottom h3 {
        font-size: 5rem;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .social-icons .fab {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 18px;
        margin-right: 10px;
        margin-top: -30px;
    }

    .newsletter-form {
        margin-top: 30px;
    }

    .newsletter-form input {
        font-size: 12px;
        padding: 8px;
    }

    .newsletter-form button {
        font-size: 20px;
        padding: 8px;
    }

    .underline {
        height: 3px;
        top: 8px;
    }
}

/* Responsive Styles for 480px and below */
@media (max-width: 480px) {
    .products-grid {
        display: flex; /* Change grid layout to flex for horizontal scrolling */
        gap: 10px;
        overflow-x: auto;
        overflow-y:hidden; /* Allow horizontal scrolling */
        padding: 0;
        margin: 0;
    }

    .card {
        flex: 0 0 auto; /* Prevent cards from shrinking */
        width: 12em;
        height:14em; /* Set a fixed width for each card */
        margin-right: 10px; /* Space between cards */
    }

    .products-section {
        padding: 20px 10px; /* Adjust padding for mobile */
    }
}

@media screen and (max-width: 480px) {
    /* Project stats layout for mobile screens */
    .project-stats {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
        padding: 20px;
    }

    .stat-item h1 {
        font-size: 28px; /* Smaller font size */
    }
    .stat-item span {
        font-size: 24px; /* Smaller font size */
    }

    /* Project logos layout for mobile screens (Display only 2 logos horizontally) */
    .project-logos {
        display: flex; /* Ensure flex layout */
        justify-content: space-between; /* Horizontally space out logos */
        gap: 20px; /* Space between logos */
        flex-wrap: nowrap; /* Prevent wrapping */
    }

    .company-logo {
        width: 45%; /* Smaller width for each logo to fit two horizontally */
    }

    /* Display only 2 logos by selecting the first two */
    .project-logos .company-logo:nth-child(n+3) {
        display: none; /* Hide logos from the third one onwards */
    }

    .button {
        font-size: 16px;
        padding: 10px 20px;
    }
    h6{
        font-size: 40vw;
        


    }
}

/* Change .button to orange when hovering .buttonn */

@media (max-width: 480px) {
    body,html{
        width:100vw;
        overflow-x: hidden;
        padding:0;
    }
    .bg-image {
        height: 600px;
        width:100%;
        padding-top: 0px;
        
         /* Prevent repeating */
    }
    .bg-image img {
         /* Slightly zoom out the image */
        object-position: 38% 40%; 
        max-width: 100%;/* Move the image to the left */
    }
    

    .text-overlay {
        margin-left: 0;
         /* Move the text overlay closer to the center */
    }

    

    .logo img {
        max-height: 40px; /* Reduce size for smaller screens */
        margin-left: 20px;
        transform:scale(4);
    }

    
    .navbar li {
        margin-right: 0;
    }

    .navbar a {
        font-size: 18px;
    }

    .cta-button {
        margin-right: 0;
        
    }

    .cta-button:hover {
        transform:scale(1);
    }

    .text-overlay h1 {
        font-size: 45px;
        margin: 0;
        align-self: flex-start; /* Align to the top of the container */
        padding: 10px; /* Optional padding */
        position: relative;
        top: -0px;
        left:0px;
         /* Push slightly down from the top */
    }

    .text-overlay p {
        font-size: 20px;
        position:relative;
        top:0px;
        left:-40px;
        
    }

    .text-overlay .button {
        font-size: 18px;
        padding: 18px 40px;
        position:relative;
        top:0px;
        left:20px;
        
    }

    .text-overlay .buttonn {
        font-size: 14px;
        padding: 8px 15px;
        position:relative;
        top:180px;
        left:20px;
    }
    .bottom-left-text p{
        font-size: 30px;
        position:relative;
        top:-330px;
        left:-30px;
        color:black;
        display:none;
        
        
    }


}
@media screen and (max-width: 480px) {
    /* Service Box: Change to Column layout */
    .service-box {
        flex-direction: column;
        height: 600px; /* Adjust height for mobile screens */
    }

    /* Service Image */
    .service-image {
        width: 100%; /* Take full width */
        height: 350px; /* Set a smaller height for the image */
    }

    /* Service Text */
    .service-text {
        margin-top: 40px;
        width: 90%;
        padding: 20px;
        text-align: center;
    }

    .service-text h3 {
        font-size: 26px; /* Adjust font size for smaller screens */
    }

    .service-text p {
        font-size: 16px;
        line-height: 1.4;
    }

    /* Adjust Button */
    .button {
        font-size: 14px;
        
        align-self: center; 
    }

    /* Service Cards: Stack vertically */
    .service-cards {
        flex-direction: column;
        gap: 40px;
        padding: 10px;
    }

    .cardd {
        width: 100%; /* Full width for mobile screens */
        height: auto; /* Adjust height for mobile screens */
    }

    /* Overlay text in cards */
    .cardd .overlay {
        font-size: 14px; /* Adjust text size */
    }
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-right: 10px;
    
    
    
}


.hamburger div {
    height: 3px;
    background-color: black;
    border-radius: 3px;
    
    
    
}
@media (max-width: 768px) {
    /* Adjust the header padding */
    

    .navbar {
        position: absolute;
        top: 90px;
        right: 0;
        background-color: white;
        flex-direction: column;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        
        display:none;
        
        
        
    }
    
    

    .navbar.show {
        
        height: 400px; 
        /* Adjust based on content */
    background-color:white;
    opacity:1;
 /* Add a dark semi-transparent background */




    }
    

    .navbar li {
        text-align: center;
        padding: 15px 0;
        
    }
    
    
    
    .hamburger {
        display: flex;
        margin-left:30px;
        margin-right: 40px;
        
    }

    .cta-button {
        display: none;
    }
}
#navbar {
    list-style-type: none;
    margin: 0;
    
    display: flex;
    justify-content: center;
    transition: border-radius 0.3s, padding 0.3s, background-color 0.3s;
    

    /* Ensure background color is set */
}

#navbar li {
    margin: 0;
}


#navbar a {
    display: block;
    padding: 14px 20px;
    color: black;
    
    text-decoration: none;
    text-align: center;
    
    
}
form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
        
    border-bottom:1px solid #ccc;
    margin-bottom: 50px;

    }

form .far{
    font-size:18px;
    margin-right:10px;
    margin-top:20px;

}
form input{
    width:100%;
    background-color: transparent;
    color:#402021;
    border:0;
    margin-top:20px;
    outline: none;

}
form button{
    background-color: transparent;
    border:0;
    outline: none;
    cursor: pointer;
    margin-top:20px;

}
form button .fas{
    font-size:16px;
    color: white;
    
    
}
.footer-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-text h6{
    font-size:70px;
     margin-top:40px;

}
.footer-text h5{
    font-size:150px;
     margin-top:120px;
     margin-bottom:20px;

}

.social-icons .fab{
    width:40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color:#402021;
    background: #fff8e7;
    margin-right: 15px;
    margin-top:-40px;
    

}
.social-icons .fab:hover{
    color:#F05098;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 60px;
}

.newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    outline: none;
    
}

.newsletter-form button {
    padding: 10px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s ease;
    
}

.newsletter-form button:hover {
    background-color: black;
    color:white;
    font-size: 28px; 
    

}


.footer {
    width: 100%;
    background:black;
    color: white;
    padding: 50px 20px;
    
    font-size: 13px;
    line-height: 20px;
    
    bottom:0;
    font-family: "Roboto",sans-serif;
    
    
}
.footer h1{
    font-size: 30px;
width:fit-content;
position:relative;
margin-top: 20px;
color: white;
font-family: "Roboto",sans-serif;


}

.footer-bottom h1 {
margin-top: 30px;
font-size: 44px;
text-align: center;
}
.footer-bottom h3 {
margin-top:150px;
font-size: 244px;
text-align: center;
margin-bottom:100px;;
}
.footer h4 {
font-size: 20px;
width:fit-content;
position:relative;
margin-bottom: 20px;
color: white;

}



.row {
    width: 85%;
    display: flex;
    margin:auto;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap:20px;
    
}
.col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.col p {
    margin: 5px 0; /* Remove any default margin */
}

.footer p {
    font-size: 17px;
    margin: 5px 0;
    text-align: center;
    
    color:White;
    font-family: "Calton",sans-serif;
    
    
}



.footer img{
    max-width: 150px;
    margin-bottom: 0px;
    transform:scale(3);
    filter: brightness(0) invert(1);
    

}
hr{
    width:90%;
    border:0;
    border-bottom: 1px solid#ccc;
    margin:20px auto;
}
.copyright{
    text-align:center;
}
.underline{
    width:100%;
    height:5px;
    background: #767676;
    border-radius: 3px;
    position: relative;
    top: 12px;
    left: 0;



}
.underline span{
    width:15px;
    height:100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;


}
@keyframes moving{
    0%{
        left:-20px;
    }
    100%{
        left:100%;
    }
}

.pricing-section {
  margin:80px 0px;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9fafc, #eef3f7);
  font-family: 'Poppins', sans-serif;
}

.pricing-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  background: #fff;
  padding: 40px 25px;
  
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  width: 320px;
  position: relative;
  transition: all 0.4s ease;
  text-align: left;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.pricing-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: black;
  font-family: 'typo', sans-serif;
  
}

.prices {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 20px 0;
  color: #111;
}

.prices span {
  font-size: 0.9rem;
  color: #555;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.pricing-card ul li {
  margin: 12px 0;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
}

.pricing-card ul li::before {
  content: "✔";
  color: #D0FF71;
  font-weight: bold;
  margin-right: 8px;
}

.pricing-card ul li.muted {
  color: #aaa;
}

.btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #000000, #434343);

  color: white;
  padding: 15px 30px;
  font-family: 'helvetica', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background:#D0FF71;
  color:black;
}

/* Featured (Middle Card) */
.pricing-card.featured {
  border: 2px solid #0097b2;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #ff4757;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}



.partners {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.partners h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
  margin-left: -250px;
   /* slight left shift */
  justify-items: center;
}

.partners-logos img {
  max-width: 150px;
  
  transition: filter 0.3s ease;
}
@media (max-width: 480px) {
  .partners {
    padding: 10px 10px;
    
  }

  .partners h2 {
    font-size: 22px;
  }

  
}
/* Overlay */
#cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

/* Drawer */
#cart-drawer {
  position: fixed;
  top: 0;
  right: -600px; /* hidden by default */
  width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
}

/* Active states */
#cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

#cart-drawer.active {
  right: 0;
}
.cart-item {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Top row */
.cart-item-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-item-image-placeholder {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    border-radius: 12px;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-name {
    font-weight: 600;
    font-size: 18px;
}

.cart-item-price,
.cart-item-subtotal {
    font-size: 16px;
    color: #555;
}

/* Bottom row */
.cart-item-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}
.cart-update-form {
    display: flex;
    align-items: center;
    gap: 10px;
    border:none;              /* space between input and button */
    margin-top: 5px;        /* small spacing from other elements */
}

.cart-update-form input.cart-quantity-input {
    width: 60px;
   
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;  /* ensure no underline */
    outline: none;          /* remove blue outline in some browsers */
}

.cart-update-form button.cart-update-btn {
    background: #0097b2;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;   /* ensure no underline */
    transition: background 0.2s ease;
}

.cart-update-form button.cart-update-btn:hover {
    background: #007a91;
}
.cart-remove-btn {
    background: #ff4d4d;
    color: white;
    margin-top:-30px;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.cart-remove-btn:hover {
    opacity: 0.8;
}

.cart-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 15px 0;
}

.cart-total {
    text-align: right;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.checkout-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: #D0FF71;
    color: black;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.checkout-btn:hover {
    background: black;
    color:white;
}

.navbar-icons {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 20px;
    padding: 0;
    align-items: center;
}

.navbar-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 6px;
    transition: 0.3s;
}

.navbar-icons li a:hover {
    transform: scale(1.2);
}

.navbar-icons li a i {
    margin-right: 0; /* No text, icon only */
}

/* Responsive: icons smaller on mobile */
@media (max-width: 768px) {
    .navbar-icons {
        gap: 15px;
        
    }
    .navbar-icons li a {
        font-size: 18px;
        padding: 6px 8px;
    }
}

.cart-count {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #D0FF71;
    color:black;
    font-size: 12px;
    font-weight: bold;
    font-family: "typo",sans-serif;
    padding: 2px 6px;
    border-radius: 50%;
}
@media (max-width: 480px) {
  .cart-count {
    right: 100px; /* move slightly inward (less space from right edge) */
    top: 20px;   /* optional: tweak vertical alignment too */
  }
}

.logo-text {
    font-size: 30px;
    font-weight: bold;
    margin-left: 40px;
    color: black; /* your theme color */
    text-decoration: none; /* remove underline */
    font-family: 'Helvetica', sans-serif;
}

