@font-face {
  font-family: 'Fontastique';
  src: url('/fonts/Fontastique.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

    body {

      background-color: #f8f9fa;
      color: #026d97;
      font-family: "Roboto", Arial, sans-serif;
      padding-bottom: 50px; /* reserve space for the floating button */
      
    }
    
 

 h1 { font-family: "Georgia", "Times New Roman", serif; } /* example */

    .hero {
  background:
              url('img/Print-Support-Hub-Image-2.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 100px 0;
  text-align: center;
}


.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex
;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom:5rem;
    margin-left: 15%;

}
/* Mobile adjustments */
@media (max-width: 576px) {
    .carousel-indicators {
        margin-right: 5%;
        margin-left: 5%;
        margin-bottom: 2rem; /* smaller gap for mobile */
    }
}
    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    .hero p {
      font-size: 1.25rem;
    }

    .section-title {
      margin-bottom: 40px;
      text-align: center;
      color: #00afef;
    }

    .footer {
      background-color: #0d6efd;
      color: white;
      padding: 20px 0;
      text-align: center;
    }

    .btn-primary {
      background-color: #0d6efd;
      border: none;
    }

    .btn-primary:hover {
      background-color: #0b5ed7;
    }
    
     .navbar-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #adb5bd;
}
.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* Stronger overlay for better contrast */
  z-index: 1;
}

.hero-slide .slide-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
  padding: 0 15px;
  top: 50%;
  transform: translateY(-50%);
}
.navbar-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd;
}
.carousel-indicators [data-bs-target] {
  background-color: white;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.6;
}

.carousel-indicators .active {
  opacity: 1;
}


/* Navbar turns white on scroll */
.navbar.scrolled {
  background-color: white !important;
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand {
  color: #000 !important;
}

.navbar.scrolled .nav-link:hover {
  color: #0d6efd !important;
}

/* Smooth transition */
.navbar, .nav-link, .navbar-brand {
  transition: all 0.3s ease;
}

/* make sure navbar doesn't clip the shadow */
.navbar {
  overflow: visible; /* allow shadow to show outside */
  z-index: 1030;
}

/* custom toggler: no border, subtle bg, clear shadow */
.custom-toggler {
  border: none;
  background-color: black; /* subtle frosted bg — change alpha as needed */
  padding: .35rem .6rem;
  border-radius: .5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28); /* visible soft shadow */
  transition: box-shadow .18s ease, transform .08s ease;
}

/* active / focus states */
.custom-toggler:focus,
.custom-toggler:active {
  box-shadow: 0 12px 34px rgba(0,0,0,0.32);
  transform: translateY(1px);
  outline: none;
}

/* ensure the toggler icon is visible on dark backgrounds */
.navbar .navbar-toggler-icon {
  width: 20px;
  height: 20px;
  filter: invert(1) brightness(5); /* makes the default icon show as white */
  
}

.navbar-toggler
{
    background-color:white;
}
/* Remove all borders & default styles */
.custom-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* subtle shadow */
  background: transparent;
  padding: 8px 12px;
}

/* Menu text default (white) */
.menu-text {
  color: white;
  transition: color 0.3s ease;
}

/* When navbar is scrolled */
.navbar.scrolled .menu-text {
  color: #00afef; /* Bootstrap blue */
}



/* start box set*/
/* Container styling */
.scrolling-cards {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}
.scrolling-cards::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Cards take up 50% on desktop, 100% on mobile */
.scrolling-cards .card {
  flex: 0 0 calc(50% - 0.5rem);
}
@media (max-width: 768px) {
  .scrolling-cards .card {
    flex: 0 0 100%;
  }
}

  
  .scrolling-cards::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
  }

  .scrolling-cards img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .card-body {
    text-align: center;
    background-color: #dbdbdb;
  }
  
 .card-content {
  display: flex;
  width: 100%;
  height: 100%; /* Set fixed or min height */
  overflow: hidden;
}

.card-text {
  flex: 1 1 60%;  /* Text takes 60% width */
  flex-direction: column;
  justify-content: center; /* vertically center content */
  padding: 1rem;
}

.card-image {
  flex: 0 0 40%; /* Image takes 40% width */
}


.card-img-right {
  width: 120px;      /* adjust size as needed */
  height: 100px;     /* adjust size as needed */
  object-fit: cover;
  border-radius: 1px;
  flex-shrink: 0;    /* keep image size fixed */
}
.card img {
  float: right;
  width: 120px;    /* Adjust size */
  height: 100px;
  margin-left: 15px; /* Space between image and text */
  object-fit: cover;
  border-radius: 1px;
}

.floating-quote-btn {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  background-color: #00afef !important;
  color: white !important;
  text-align: center !important;
  padding: 15px 0 !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  text-decoration: none !important;
  letter-spacing: 1.2px !important;
  z-index: 99999 !important;
  user-select: none !important;
  cursor: pointer !important;
  display: block !important;
}

 /* Carousel layout */
.scrolling-cards {
  display: flex;
  gap: 1rem;
  overflow-x: auto;               /* must be auto for wheel/drag to work */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;  /* smooth snapping */
  padding: 1rem 0;
}

/* show two cards on desktop, one on mobile */
.scrolling-cards .card {
  flex: 0 0 calc(50% - 0.5rem);   /* two cards (with gap) */
  scroll-snap-align: center;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .scrolling-cards .card { flex: 0 0 100%; }
}

/* arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  border: none;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  border-radius: 10%;
  z-index: 5;
}
.prev-btn { left: 8px; }
.next-btn { right: 8px; }

/* dragging cursor */
.scrolling-cards.dragging { cursor: grabbing; cursor: -webkit-grabbing; }

/* dots */
.dots-container { text-align:center; margin-top:0.75rem; }
.dot {
  width: 10px; height: 10px; display: inline-block; border-radius: 50%;
  background: #bbb; margin: 0 6px; cursor: pointer; border: none;
}
.dot.active { background: #333; }

.card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms ease-out, transform 800ms ease-out;
 background-color:transparent;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}


.testimonial-section {
  padding: 20px 0; /* reduce top & bottom padding */
  
}

.testimonial-section h2 {
  margin-bottom: 15px; /* reduce gap under heading */
}

.testimonial-carousel .container {
  margin-top: 10px; /* reduce gap above carousel */
  margin-bottom: 10px; /* reduce gap below carousel */
}


  .testimonial-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.card-content {
  height: auto !important; /* let height fit content */
  padding: 0; /* remove extra padding */
}
.carousel-controls {
  margin-top: 1rem;
}

.carousel-controls button {
  background: #1da1f2;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  cursor: pointer;
}
.logo-section {
  background: #fff;
  padding: 30px;
  max-width: 100%; /* Prevents hitting site edges */
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
}

.logo-section h2, .logo-section p {
  margin: 0;
  padding-bottom: 10px;
}

.logo-section {
  overflow: hidden;
  padding: 20px;
  background: #fff; /* optional background */
}

.logo-track {
  display: flex;
  gap: 20px;
  
}

.logo-track img {
  height: 60px; /* adjust as needed */
  flex-shrink: 0;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.logo-track ul {
  display: flex;
  align-items: center;
  gap: 40px; /* space between logos */
  list-style: none; /* remove dots */
  padding: 0;
  margin: 0;
}

.logo-track ul li img {
  height: 60px; /* adjust as needed */
  display: block;
}
 .promo-section {
    display: flex;
    gap: 20px;
    width: 100%; /* take full available width */
    max-width: 1600px; /* optional upper limit for huge screens */
    margin: auto;
    padding: 20px;
    background-color: #f0f0f0;
    flex-wrap: wrap; /* allow wrapping on mobile */
  }

  .promo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    color: white;
    background: black;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  /* Video card (big) */
  .promo-card.video {
    flex: 2;
    min-height: 400px;
  }

  /* Image card (small) */
  .promo-card.image {
    flex: 1;
    min-height: 400px;
  }

  .promo-card video,
  .promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .promo-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .promo-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 12px;
  }

  .promo-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .promo-buttons a {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95rem;
    display: inline-block;
  }

  .btn-primary {
    background: #3b82f6;
    color: white;
  }

  .btn-secondary {
    background: white;
    color: black;
  }

  /* Mobile: stack vertically */
  @media (max-width: 768px) {
    .promo-section {
      flex-direction: column;
    }

    .promo-card.video,
    .promo-card.image {
      flex: 1 1 100%;
      min-height: 250px;
    }
  }

.promo-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

 .video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
  }

  .video-wrapper video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
  }

  .video-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .video-btn:hover {
    background: rgba(0, 0, 0, 0.8);
  }
  
   .about-container {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .about-text {
    flex: 1;
  }

  .about-photo {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .about-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* Mobile: stack vertically */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
    .about-photo {
      order: -1; /* photo appears above text on mobile */
    }
  }
  
     .container {
        max-width: 1300px;
        margin: auto;
        padding: 60px 20px;
    }

    /* Headings */
    h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }
    h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 15px;
    }
    p {
        color: var(--text-muted);
        margin-bottom: 25px;
        font-size: 1rem;
    }

    /* Top section - Image cards */
    .image-cards {
        display: flex;
        gap: 25px;
        flex-wrap: wrap;
    }
    .image-card {
        background-color: var(--card-bg);
        border-radius: 12px;
        overflow: hidden;
        flex: 1;
        min-width: 280px;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .image-card img {
        width: 100%;
        height: auto;
        display: block;
    }
    .image-card p {
        padding: 15px;
        font-size: 0.95rem;
        margin: 0;
    }

    /* Features section */
    .features {
        margin-top: -42px;
        --bg-dark: #31B7EA;
        --text-light: #ffffff;
        --text-muted: #bbbbbb;
        --gold: #f5c542;
        --card-bg: #1a1a1a;

    }
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
         --bg-dark:#31B7EA;
        --text-light: #ffffff;
        --text-muted: #bbbbbb;
        --gold: #f5c542;
        --card-bg: #1a1a1a;

    }
    
    
    .feature-box {
        background-color: #31B7EA;
        padding: 25px;
        border-radius: 12px;
        text-align: center;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
         

    }
    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    }
    .feature-icon {
        font-size: 40px;
        color: var(--gold);
        margin-bottom: 10px;
    }
    .feature-box h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        color: var(--text-light);
    }
    .feature-box p {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin: 0;
    }

    @media (max-width: 768px) {
        h1, h2 {
            font-size: 1.8rem;
        }
    }
    
    .new1{
        background-color:#026D97;
    }
    
    
    .new1 {
        padding: 40px 20px;
    }

    /* Animation base state */
    .float-in {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-out;
    }

    /* When visible */
    .float-in.show {
        opacity: 1;
        transform: translateY(0);
    }

    /* Layout styling */
    .image-cards {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    .image-card {
        flex: 1;
        min-width: 250px;
    }
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }
    .feature-box {
        background: #31B7EA;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
    }
    .feature-icon {
        font-size: 40px;
        margin-bottom: 10px;
        color: gold;
    }


/* Reduce general section spacing */
 section, .testimonial-section, .logo-box, .image-cards, .features {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* Tighten headings and paragraphs */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
p {
  margin-top: 0.25rem !important;
  margin-bottom: 0.75rem !important;
}

/* Hero carousel height */
.carousel-inner {
  height: 80vh !important;
}

/* Testimonials tighter */
.scrolling-cards {
  margin-top: -3.5rem !important;
  margin-bottom: 1rem !important;
}

/* Logos section tighter around content */
.logo-box {
  padding: 1rem 0 !important;
}


.product-section {
  background: #f5f5f5;
  padding: 25px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #222;
}

.arrow-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  border: none;
  color: white;
  font-size: 18px;
  padding: 6px 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.arrow-btn:hover {
  background: linear-gradient(135deg, #0056b3, #004094);
  transform: translateX(3px);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1500px; /* Limit width */
  margin: 0 auto; /* Center container */
  padding: 0 20px; /* Space on both ends */
}
}

.product-card {
  background: white;
  border-radius: 12px;
  padding: 15px;
  position: relative;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.product-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.brand {
  font-size: 13px;
  color: gray;
  text-transform: uppercase;
  margin: 8px 0 4px;
  font-weight: 600;
}

.product-title {
  font-size: 15px;
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.product-title:hover {
  text-decoration: underline;
}

.rating {
  font-size: 14px;
  color: #f5a623;
  font-weight: 500;
}

.rating span {
  color: #555;
  font-size: 12px;
}

.price {
  margin-top: 8px;
}

.price .current {
  font-size: 18px;
  font-weight: 700;
  color: #e60023;
  margin-right: 6px;
}

.price .old {
  font-size: 14px;
  color: #888;
  text-decoration: line-through;
}

.badge {
  position: absolute;
  top: 12px;
  padding: 4px 10px;
  font-size: 12px;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.badge.new {
  left: 12px;
  background: linear-gradient(135deg, #28a745, #218838);
}

.badge.sale {
  left: 12px;
  background: linear-gradient(135deg, #ff9800, #e67e00);
}

.badge.discount {
  right: 12px;
  background: linear-gradient(135deg, #ff5722, #e64a19);
}






.map-container {
  max-width: 1300px; /* Keeps it from hitting site edges */
  margin: 0 auto; /* Centers the map */
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 14px;
}

.mapouter {
  position: relative;
  text-align: right;
  width: 100%;
  height: 400px;
}

.gmap_canvas {
  overflow: hidden;
  background: none!important;
  width: 100%;
  height: 400px;
}

.gmap_iframe {
  height: 400px!important;
  border-radius: 10px;
}
/* base float-in */
.fade-in-element {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1),
              transform 700ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
  /* keep elements in flow (no layout shift) */
}

/* visible state (when element enters viewport) */
.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* small tweak for images/text inside to look smooth */
.fade-in-element img,
.fade-in-element video {
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}

/* Respect user's motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-in-element {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.floating-call-btn {
  position: fixed !important;
  bottom: 75px !important;
  right: 9px !important;
  background-color: #25d366;
  color: white;
  font-size: 26px;
  width: 55px;
  height: 55px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999999 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.35);
}
.btn-print-shop {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-print-shop:hover {
    background-color: #333; /* Darker on hover */
    color: #fff;
    text-decoration: none;
}
@media (min-width: 992px) {
  .navbar-nav {
    margin-right: 0 !important; /* remove excess gap */
  }
  .btn-printshop {
    margin-left: 0 !important; /* no space between menu & button */
  }
}

.btn-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: #00afef;
    /* --bs-btn-border-color: #212529; */
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #424649;
    --bs-btn-hover-border-color: #373b3e;
    --bs-btn-focus-shadow-rgb: 66, 70, 73;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #4d5154;
  
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    border: hidden;
    
   
}


 /* About section */
    .about-wrap { padding-block: clamp(2.5rem, 4vw, 4rem); }
    .section-title { color: #111827; font-weight: 700; letter-spacing: -0.02em; }
    .lead-text { color: #374151; }

    .md-card {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 1rem;
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
      overflow: hidden;
    }
    
      .md-photo {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      object-position: top;
      display: block;
    }

    .md-caption { padding: .75rem 1rem; border-top: 1px solid rgba(0,0,0,0.06); background: #fafafa; }
    .md-name { font-weight: 700; margin: 0; }
    .md-role { margin: 0; font-size: .95rem; color: #6b7280; }

    .signature { font-family: "Brush Script MT", "Comic Sans MS", cursive; font-size: 1.25rem; color: #111827; }

    /* Nice bullet list */
    .checklist li { margin-bottom: .4rem; }
    .checklist .bi { margin-right: .35rem; }

    /* Make sure image appears above text on mobile */
    @media (max-width: 991.98px) {
      .stack-mobile { display: flex; flex-direction: column; gap: 1.25rem; }
    }
    
    
    .px-5 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

  .quote-form {
      max-width: 900px;
      margin: auto;
    }
    .form-control {
      border: none;
      border-bottom: 1px solid #ddd;
      border-radius: 0;
      padding-left: 35px;
      background: transparent;
      box-shadow: none !important;
    }
    .form-control:focus {
      border-color: #000;
    }
    .form-group {
      position: relative;
      margin-bottom: 25px;
    }
    .form-group i {
      position: absolute;
      left: 8px;
      top: 50%;
      transform: translateY(-50%);
      color: #888;
      font-size: 1rem;
    }
    label {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 3px;
    }
    .file-upload {
      padding-left: 35px;
    }
    .submit-btn {
      background: #e63946;
      color: #fff;
      padding: 12px;
      border: none;
      border-radius: 5px;
      font-weight: 500;
      transition: background 0.3s;
    }
    .submit-btn:hover {
      background: #d62828;
    }
    .terms {
      font-size: 13px;
      color: #666;
    }
    
    
    
    /* Contact things */
    
   

   
    .hours-table td {
      padding: 8px 0;
    }
    .newsletter-input {
  border-radius: 30px;
  border: 1px solid #ddd;
  padding-left: 15px;
  height: 45px;
}

.newsletter-btn {
  border-radius: 30px;
  height: 45px;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.social-icon {
  font-size: 1.5rem;
  color: #333;
  transition: color 0.3s;
}
.social-icon:hover {
  color: #ff6600; /* change color on hover */
}

