/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color-scheme: --primary;
}

:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #155b76; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --border-color: #ddd;
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1b1b1b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #353535;
  --contrast-color: #ffffff;
}

body {
            font-family: 'Segoe UI', sans-serif;
        }

        .top-bar {
        position: fixed;
        background-color: #155b76;
        top: 0;
        width: 100%;
        z-index: 1040;
    }
    @media (max-width: 767px) {
        .top-bar {
            display: none;
        }
    }
    .navbar.fixed-top {
        top: 30px; /* height of top bar */
    }

    @media (max-width: 767px) {
        .navbar.fixed-top {
            top: 0;
        }
    }

        .navbar {
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            background-color: var(--background-color);
        }

        .navbar-brand img {
            height: 80px;
        }

        .brand-heading {
            font-family: 'Great Vibes', cursive;
            font-size: 38px;
            font-weight: bold   ;
            color: #d65f5f; /* Elegant purple */
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
            margin: 0;
            padding: 0;
            transition: all 0.3s ease-in-out;
        }

        .brand-heading:hover {
            color: #fff; /* Soft red on hover */
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
        }

        .navbar a{
            color: var(--heading-color);
            font-size: 16px;
            font-weight: 400;
        }

        .navbar a:hover{
            background-color: var(--accent-color);
            color: var(--background-color);
            border-radius: 5px;
        }

        .nav-item.active .nav-link{
            background-color: var(--accent-color);
            color: var(--background-color);
            border-radius: 5px;
        }

        @media (max-width: 768px) {

            .navbar a{
            color: var(--heading-color);
            font-size: 16px;
            font-weight: 400;
            padding-left: 5px;
        }
        
        .navbar-brand img {
            height: 50px;
        }
            
        }

        /*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: left;
  padding-bottom: 60px;
  position: relative;
  justify-content: left;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Global Button Section
--------------------------------------------------------------*/


/*Navbar Social icons*/

/* Social and toggle (mobile only) */
.mobile-icons {
  display: flex;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-right: 10px;
}

.social-icons a {
  color: var(--accent-color);
  font-size: 20px;
  text-decoration: none;
}
/**/

        .carousel-item {
            height: 90vh;
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
            padding-top: 100px;
        }

        .carousel-caption-custom {
            display: none;
            position: absolute;
            top: 45%;
            left: 10%;
            z-index: 10;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        }

        .carousel-caption-custom h1 {
            display: none;
            font-size: 3.5rem;
            font-weight: bold;
        }

        .carousel-caption-custom p {
            display: none;
            font-size: 1.25rem;
        }

        @media (max-width: 768px) {
            .carousel-item {
            height: 42vh;
        }
        .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        display: block;
        padding-top: 0;
        }
        }
    
        .breadcrumb-section {
            position: relative;
            background: url('../img/breadcrumb.jpg') center center/cover no-repeat;
            height: 400px;
            }

        /*.breadcrumb-section .overlay {*/
        /*    position: absolute;*/
        /*    inset: 0;*/
        /*    background-color: rgba(0, 0, 0, 0.5);*/
        /*    z-index: 1;*/
        /*    }*/

        .breadcrumb-section .container {
            z-index: 2;
            }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
            }

        .breadcrumb a {
            color: #fff;
            text-decoration: underline;
            }

        .breadcrumb a:hover {
            text-decoration: none;
            }

        .breadcrumb-title {
            font-size: 36px;
            font-weight: 700;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
            }


        .icon-box {
            background: white;
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .icon-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .icon-box i {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        .cta {
            background: linear-gradient(to right, var(--accent-color), #072b3a);
            color: white;
            text-align: center;
            padding: 60px 20px;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .product-card {
        background: #ffffff;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid #ddd;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        padding: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: transform 0.2s ease-in-out;
    }

    .product-card:hover {
        transform: translateY(-5px);
    }

    .product-card img {
        max-height: 200px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .product-card h6 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
    }

    .product-card p.price {
        color: var(--accent-color);
        font-weight: bold;
        margin-bottom: 15px;
        font-size: 1rem;
    }

    .product-card .btn {
        margin-top: auto;
        background-color: var(--accent-color);
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 5px;
        transition: background-color 0.3s;
    }

    .product-card .btn:hover {
        background-color: var(--accent-color);
        color: var(--background-color);
    }

    .owl-nav button {
        position: absolute;
        top: 35%;
        border-radius: 50%;
        padding: 5px 10px !important;
        font-size: 42px !important;
    }

    .owl-nav .owl-prev {
        left: -20px;
    }

    .owl-nav .owl-next {
        right: -20px;
    }

    .owl-nav i {
        font-size: 20px;
    }

        .testimonials-section {
            overflow: hidden;
            width: 100%;
            padding: 40px 20px;
            background-color: var(--background-color);
            /* margin: 20px auto !important; */
        }

        .testimonials-container {
            display: flex;
            gap: 20px;
            animation: scroll 20s linear infinite;
            width: max-content;
        }

        .testimonial {
            flex: 0 0 calc(50% - 20px);
            background: white;
            padding: 20px;
            border-radius: 10px;
            min-width: 300px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            text-align: center;
        }

        .testimonial img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
        }

        .testimonial .description {
            font-size: 0.95rem;
            color: #333;
            margin-bottom: 10px;
        }

        .testimonial .name {
            font-weight: bold;
            color: #555;
        }

        /* Autoscroll keyframes */
            @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); } /* Adjust based on number of testimonials */
        }

        /* Responsive: 1 per row on mobile */
        @media (max-width: 768px) {
        .testimonial {
            flex: 0 0 100%;
        }

        .testimonials-container {
            flex-wrap: nowrap;
            animation: scroll 25s linear infinite;
         }
        }

    /* Wave Top */
        /* .footer-wave {
        position: relative;
        top: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        }

        .footer-wave svg {
        display: block;
        width: 100%;
        height: auto;
        transform: rotate(180deg);
        } */

        /* Footer Styling */
        footer {
        background: #212529;
        color: white;
        padding: 60px 0 20px 0;
        position: relative;
        z-index: 1;
        }

        footer a {
        color: white;
        margin: 0 10px;
        }

        footer a:hover {
        color: var(--accent-color);
        }

        .footer-bottom-text {
        color: #aaa;
        }

        /* Optional: Adjust headings */
        footer h5, footer h6 {
        font-weight: bold;
        }

        footer ul {
        padding-left: 0;
        }

        footer ul li {
        list-style: none;
        }

        footer ul li a {
        color: white;
        text-decoration: none;
        }

        footer ul li a:hover {
        text-decoration: underline;
        }
        
        /* Timeline Section */
    .custom-timeline-title {
      text-align: center;
      margin-bottom: 60px;
      font-size: 2.5rem;
      color: #2c3e50;
    }
  
    .custom-timeline {
      position: relative;
      max-width: 1000px;
      margin: auto;
      padding: 20px 0;
    }
  
    .custom-timeline::after {
      content: '';
      position: absolute;
      width: 6px;
      background: linear-gradient(to bottom, var(--accent-color), #9b59b6);
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 3px;
    }
  
    .custom-timeline-item {
      padding: 20px 30px;
      position: relative;
      width: 50%;
    }
  
    .custom-timeline-item::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      right: -10px;
      background: #fff;
      border: 4px solid var(--accent-color);
      top: 20px;
      border-radius: 50%;
      z-index: 1;
    }
  
    .custom-left {
      left: 0;
    }
  
    .custom-right {
      left: 50%;
    }
  
    .custom-right::after {
      left: -10px;
    }
  
    .custom-content {
      background: white;
      padding: 20px 30px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      position: relative;
    }
  
    .custom-content h3 {
      margin-bottom: 10px;
      color: var(--accent-color);
      font-size: 1.2rem;
    }
  
    .custom-content p {
      font-size: 0.95rem;
      line-height: 1.5;
    }
  
    /* Responsive Styles */
    @media screen and (max-width: 768px) {
      .custom-timeline::after {
        left: 20px;
      }
  
      .custom-timeline-item {
        width: 100%;
        padding-left: 60px;
        margin-bottom: 40px;
      }
  
      .custom-timeline-item.custom-right {
        left: 0;
      }
  
      .custom-timeline-item::after {
        left: 15px;
        right: auto;
      }
    }

    /*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

  /* Our Brands */

    .brand-carousel {
      overflow: hidden;
      white-space: nowrap;
      background: #fff;
      padding: 20px 0;
    }

    .brand-track {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-left 20s linear infinite;
    }

    .brand-track img {
      width: 150px;
      margin: 0 25px;
      vertical-align: middle;
      object-fit: contain;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    
    .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#ffffff;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
	color: #fff;
}

