

*{
    margin: 0;
    padding: 0;
    font-family: 'Bebas Neue', sans-serif;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.header
{
    min-height: 100svh;
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/snow1.png);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav
{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img
{
    width: 100px;
}

.nav-links
{
    flex: 1;
    text-align: right;
}

.nav-links ul li
{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a
{
    color: #fff;
    text-decoration: none;
    font-size: 24.4444px;
}
.nav-links ul li::after
{
    content: '';
    width: 0%;
    height: 2px;
    background: #00bfff;
    display: block;
    margin: auto;
    transition: 0.4444s;
}
.nav-links ul li:hover::after
{
    width: 83%;
}

.text-box
{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-box h1 
{
    font-size: 44.44444px;
}

.text-box p
{
    margin: 10px 0 40px;
    font-size: 30.44444px;
}

.hero-btn
{
    display: inline-block;
    text-decoration: none;
    color: #fff; 
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 30.4444444px;
    background: transparent;
    position: relative;
    cursor: pointer;
    margin-top: 20px;
}

.hero-btn:hover
{
    border: 1px solid #00bfff;
    background: #00bfff;
    transition: .6942044444s
}

 nav .fa-regular,
nav .fa-solid {
    display: none; /* hide by default */
}


@media(max-width: 700px)
{
    .text-box h1
    {
        font-size: 20px;
    }
    .nav-links ul li
    {
        display: block;
    }
    .nav-links 
    {
        position: fixed;
     background: linear-gradient(45deg, rgba(34,32,33,1.0), rgba(34,32,33,0.84444)); 

        
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa-solid
    {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    
    nav .fa-regular
    {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul
    {
        padding: 30px;
    }
}

/*------------Services----------------*/

.services
{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1
{
    font-size: 44.4444px;
    font-weight: 600;
}

.services p
{
    color: darkslategrey;
    font-size: 24.4444px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row
{
    margin-top: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.services-col
{
    flex-basis: 31.444444%;
    background: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}

h3
{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.services-col:hover
{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    transition: 0.4444s
}

@media(max-width: 700px)
{
    .row{
        flex-direction: column;
    }
}


/*----------Products We Use-------------*/
.products
{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.products-col
{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    
    position: relative;
    overflow: hidden;
    height: 220px;
}

.products p
{
    color: #fff;
    font-size: 14px;
    position: relative;
    text-wrap: wrap;
    transform: translateY(+250px);
}

.products-col img
{
  
    width: 100%;        /* fills the card width */
    height: 250px;      /* fixed height for all images */
    object-fit: cover;  /* crops and keeps aspect ratio */
    display: block;
    border-radius: 10px 10px 0 0; /* optional, if you want rounded top corners */

}

.layer 
{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.444444s;
}

.layer:hover
{
     background-color: rgba(0, 191, 255, 0.4444);
}

.layer h3 
{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.4444s;
}

.layer:hover h3
{
    bottom: 49%;
    opacity: 1;
}

.layer p
{  
    text-wrap: wrap;
    transform: translateY(+250px);
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.4444s;
}

.layer:hover p
{
    bottom: 24%;
    opacity: 1;
}

/* Smooth fade for background and text */
.layer {
    transition: background 0.6s ease; /* background fade */
}

.layer h3,
.layer p {
    transition: opacity 0.6s ease, bottom 0.6s ease; /* text fade and move */
}

/* Scroll-active state (mobile) */
.layer.active {
   background-color: rgba(0, 191, 255, 0.4444);
}

.layer.active h3 {
    bottom: 49%;
    opacity: 1;
}

.layer.active p {
    bottom: 24%;
    opacity: 1;
}


/* Scroll-triggered (mobile) state */
.layer.active {
    background-color: rgba(0, 191, 255, 0.4444);
}

.layer.active h3 {
    bottom: 49%;
    opacity: 1;
}

.layer.active p {
    bottom: 24%;
    opacity: 1;
}


/*---------------Testimonial---------------*/


.testimonial
{
    width: 80%;
    margin:auto;
    text-align: center;
    padding-top: 100px;

}

.testimonial-col
{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.testimonial-col img
{
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 2 / 3;
}

.testimonial-col p
{
    padding: 0;
}

.testimonial-col h3
{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;

}

/*----------Reviews-------------*/
.review
{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
    
}

.review-col
{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #f4f4f4;
    padding: 25px;
    cursor: pointer;
    display: flex;
}

.review-col img 
{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.review-col p
{
    padding: 0;
    color: #000000;
    
}

.review-col h3
{
    margin-top: 15px;
    text-align: left;
        color: #000000;
}

.review-col .fa-solid
{
    color: #FBEC5D;
}

.review-col .fa-regular
{
    color: #FBEC5D;
}

.testimonial-section {
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
    overflow: hidden; /* Ensures no vertical scrollbars */
}



.testimonial-section h2{
    margin-bottom: 64.4444px;
}

.testimonial-section p1{
    display: none;
}

@media (max-width: 768px){
    .testimonial-section p1{
        display: block;
        font-size: 19.4444px;
        color: #9aa7b3;
    }
}
    
/* The viewport that hides overflowing cards */

.scroller-wrapper {
  width: 100%;
  overflow: hidden;     /* not auto */
  position: relative;
}

.scroller-inner {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-left: 1rem;/* centers first card visually */
      animation: scroll 44s linear infinite;
  will-change: transform;
}

.scroller-inner::before {
  content: "";
  flex: 0 0 calc((100vw - 300px) / 2);
}


@media (max-width: 768px) {
  .scroller-inner {
    animation: none;
  }
 
}


 /* Disable animation on touch devi
  
  .scroller-wrapper {
  position: relative;
  overflow-x: auto;
  width: 100%;
  padding: 1rem 0;
}

.scroller-inner {
  display: flex;
  gap: 1rem;
  width: max-content; /* optional if you want auto scroll animation 
  animation: scroll 44s linear infinite optional */

/* Pause animation on hover */
.scroller-wrapper:hover .scroller-inner {
    animation-play-state: paused;
}

/* Card Styling */




.card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    height: 300px;
    width: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
min-height: 320px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    flex-shrink: 0;
}


.card {
  height: auto;
  min-height: 300px;
}



.card:not(:has(img)) {
    padding-top: 40px;
}

.cardimg {
  width: 100%;
  flex: 0 0 180px;          /* ← THIS controls space */
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardimg img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .card {
    min-height: auto;
  }

  .cardimg {
    flex: 0 0 140px;
  }

  .cardimg img {
    width: 120px;
    height: 120px;
  }
}


.review {
    font-style: italic;
    color: #333;
    margin-bottom: 10px;
}

.author {
    font-weight: bold;
    color: #555;
}

/* Animation Keyframes */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Moves left by half, requires duplication for loop */
}


/*----------|CTA -------------*/

.cta
{
    margin: 100px auto;
    width: 80%;
    height: 250px;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/snow1.png);
   
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
     color: #fff;
    margin-bottom: 40px;
   
    padding: 0px;
}



.cta h1{
    padding-top: 30px;
}

@media(max-width: 700px)
{
    .cta h1
    {
        font-size: 24px;
        padding-top: 30px;
     
    }
}


/*----------Footer-------------*/

.footer
{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4
{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.footer p
{
    
}

.icons .fa
{
    color: #00bfff;
    margin: 0 14.444px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-heart-o
{
    color: #00bfff;
}


/*----------ABout us page-------------*/

.sub-header
{
    width: 100%;
    height: 50svh;
    height: 50vh;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/snow1.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.subheader h1
{
    margin-top: 100px;
}

.about-us
{
    width: 80%; 
    margin: auto;
    padding-top: 80px; 
    padding-bottom: 50px;
}

.about-col
{
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img
{
    width: 100%;
}

.about-col h1
{
    padding-top: 0;
}

.about-col p
{
    padding: 15px 0 25px;
    text-indent: 40px;
}

.about-col span
{
    display:block;
    text-indent: 40px;
}

.red-btn
{
    border: 1px solid #00bfff;
    background: transparent;
    color: #00bfff;
}

.red-btn:hover
{
    color: #fff;
}

/*-----------Blog Content----------------*/

.blog-content
{
    width: 80%;
    margin: auto;
    padding: 60px 0;
    overflow: hidden; /* prevents content from spilling into footer */
     min-height: auto;
    clear: both;

}

.blog-row
{
    display: flex;
    align-items: flex-start; /* aligns top of blog-left with blog-right */
    justify-content: space-between;
    gap: 30px;
}

.blog-left
{
    flex-basis: 65%;
}

.blog-left img {
    width: 120px;        /* small logo size */
    height: auto;
    display: block;
    margin: 0 0 20px 0;  /* space below image */
}
/* Target images inside <p> in blog-left */
.blog-left img.projectimg {
    display: block;
    width: 100%;
    max-width: 400px; 

    max-height: 600px;
    margin: 20px auto;     /* centers image */
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 768px) {
    .blog-left img.blog-feature-img {
        max-width: 90%;
        margin: 15px auto;
        border-radius: 10px;
    }
}


.blog-left h2
{
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}

.blog-left p
{
    color: #999;
    padding: 0;
    margin-bottom: 10px;
}

.blog-right
{
    flex-basis: 32%;
}

.blog-right h3
{
    background: #00bfff;
    color: #fff;
    padding: 7px 0; 
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-right div
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}



@media(max-width:700px)
{
    .sub-header h1
    {
        font-size: 24px;
    }
}

/*-------------contact us page---------------*/

.location
{
    width: 80%; 
    margin: auto;
    padding: 80px 0;
}

.location iframe
{
    width: 100%;
}

.contact-us
{
    width: 80%;
    margin: auto;
}

.contact-col
{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div
{
    display: flex;
    align-items: center; 
    margin-bottom: 40px;
}

.contact-col div .fa 
{
    font-size: 28px;
    color: #00bfff;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p
{
    padding: 0;

}

.contact-col div h5
{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}

.contact-col input, .contact-col textarea
{
    width: 100%;
    padding: 15px; 
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #000;
    box-sizing: border-box;
        font-size: 20.44444444px;
    font-weight: 500;
    color: #2f4f4f;
}

.scroller-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}

.scroller-inner {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scroll 40s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
}


.scroller-inner.paused {
  animation-play-state: paused;
}

.card {
  flex: 0 0 auto;
  background: #f0f0f0;
  padding: 1rem 2rem;
  border-radius: 10px;
  transition: transform 0.4s ease, background 0.4s ease;
}

/* Highlight nearest card */
.card.active {
  background: #007BFF;
  color: white;
  transform: scale(1.05);
}

/* Edge fade gradients */
.scroller-wrapper::before,
.scroller-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.scroller-wrapper::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}
.scroller-wrapper::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

/* Scroll keyframes */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.nav-header-text h3
{
    align-content: center;
    text-align: center;
    font-size: 44.44px;
    color: #fff;
    padding-top: 144.44px;
    position: relative;
}

.shop-header h3
{
font-size: 44.44px;
padding-top: 125px;
padding-bottom: 55.55px;
}

.shop-para h3{
font-size: 19.4444px;

padding-bottom: 55.55px;
}


/* ===============================
   SHOP / PRODUCTS PAGE STYLES
   (Replaces embedded <style>)
================================ */

/* Page base (only affects shop page content) */
/* ===============================
   SHOP PAGE ONLY
================================ */

.shop-header h3 {
    text-align: center;
    font-size: 44.44px;
    padding: 125px 0 55.55px;
}

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



.product-card {
    width: 220px;
    height: 380px;              /* ← increase card height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}


.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.product-info {
    padding: 10px;
}

.product-info h3 {
    font-size: 24px;
    margin: 10px 0 5px;
}

.product-info p {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0;
}

.add-to-cart-btn {
    background: #e7bf05;
    color: #fff;
    border: none;
    padding: 8px 15px;
    margin: 10px 0;
    border-radius: 5px;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    opacity: 0.7;
}

.cart-item {
    padding: 15px;
    max-width: 600px;
    margin: auto;
}

.cart-item h4 {
    font-size: 22px;
    margin-bottom: 5px;
}


.qty-controls {
 
    align-items: center;
    gap: 10px;
}

.qty-controls button {
    padding: 4px 10px;
    font-size: 18px;
    cursor: pointer;
}

.cart-scroll-prompt
{
    padding-top: 100px;
}

.scroll-arrows
{
    padding-top: 50px;
    text-align: center;
    color: #fff;
}

.product-linkss
{
 
    color: inherit;
}
.product-card a {
    display: block;   /* ensures the whole area is clickable */
    width: 100%;
    text-decoration: none;   /* remove underline */
    color: inherit;          /* keep text color */
}


.product-card {
    height: 380px;
}

.product-info {
    flex-grow: 1;
}

 

















@media (max-width: 768px) {
  .scroller-inner {
    animation: none; /* stop auto scroll on touch devices */
  }
}

@media (max-width: 768px) {
  .scroller-wrapper {
    overflow-x: auto;       /* allow horizontal scroll */
    overflow-y: hidden;     /* hide vertical overflow */
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  }

  .scroller-inner {
    animation: none;        /* stop auto-scroll */
  }

  .card {
    flex: 0 0 auto;         /* ensure cards don’t shrink */
  }
}

/* Add this at the bottom of your CSS */
.products-col .layer.active {
     background-color: rgba(0, 191, 255, 0.4444); /* same as hover */
}

.products-col .layer.active h3 {
    bottom: 49%;
    opacity: 1;
}

.products-col .layer.active p {
    bottom: 24%;
    opacity: 1;
}


.sub-header .text-box1{
    display: flex;
    flex-direction: column;
    align-items: center;     /* horizontal center */
 /* vertical center */
    text-align: center;
    height: 100%;
}

.text-box1 h1 
{
    font-size: 44.44444px;
}

.shop-item .add-to-cart-btn {
    display: block;
    margin: 30px auto 0 auto; 
    /* centers horizontally */
}


.product-page img {
    display: block;
    margin: 144.4444px auto 50px auto;
    max-width: calc(100% - 200px); /* 100px left + right */
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.product-page p {
    display: block;
    text-align: center;
    margin: 14.4444px auto 14.4444px auto;
    max-width: calc(100% - 200px); /* 100px left + right */
  

    border-radius: 8px;
}

.hero-btn1
{
    display: inline-block;
    align-content: center;
    text-decoration: none;
    color: #fff; 
    border: 1px solid #000;
    padding: 12px 34px;
    font-size: 30.4444444px;
    color: #3b3938;
    position: relative;
    cursor: pointer;
    margin-top: 20px;
}

.hero-btn1:hover
{
    border: 1px solid #00bfff;
    background: #00bfff;
    transition: .6942044444s
}





@media (max-width: 768px) {
    .product-page p
    {
        max-width: 100%;      /* remove desktop padding logic */
    width: 100%;
    padding: 0 16px;      /* nice mobile breathing room */
    box-sizing: border-box;
    }
  .product-image-wrapper {
  border-radius: 14px;
    overflow: hidden !important;
    max-width: 100%;
    margin: 20px 16px;
  }

  .product-image-wrapper img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    display: block !important;
    padding: 0;
    border-radius: 14px;
    max-width: 100%;
    box-sizing: border-box;
  }
}














