:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto",  sans-serif;
  --dark-color: #060606;
  --nav-font: "Poppins",  sans-serif;
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #364d59; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #52565e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #E5AA70; /* 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. */
  --nav-color: rgba(255, 255, 255, 0.55);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #000; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: rgba(0, 0, 0, 0.95);; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #fff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #E5AA70; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  scroll-behavior: smooth;
	--_nav-btn-clr: light-dark(#222, white);
	--_nav-btn-clr-hover: rgb(254, 154, 0);
	--_nav-btn-clr-expanded: light-dark(var(--txt-light), var(--txt-dark));

	--_nav-bg-open: rgb(137, 75, 0);
	--_nav-bg-open_half: rgb(254, 154, 0);


	--_nav-link-clr: light-dark(var(--txt-light), var(--txt-dark));
	--_nav-link-clr-hover: rgb(254, 154, 0);
	--_nav-link-bg-clr-hover: rgb(137, 75, 0);
   	--color:#ddd;


	color-scheme: light dark;
	--bg-dark: rgb(16, 24, 40);
	--bg-light: rgb(255, 237, 212);

	--txt-light: rgb(10, 10, 10);
	--txt-dark: rgb(245, 245, 245);
}





/* start of navbar section */









	nav {
		container: nav inline-size;
		position: fixed;
		top: 0;
		right: 0;
		padding: 1rem;
		height: 100vh;
		z-index: 99999999999999999;
		&::before,
		&::after {
			content: "";
			position: fixed;
			top: 0;
			right: 0;
			transition: width 600ms cubic-bezier(0.86, 0, 0.672, 1.003);
			border-radius: 30px 0 0 30px;
			height: 100vh;
			z-index: -1;
		}
		&::before {
			width: var(--_nav-bg-w, 0);
			backdrop-filter: blur(3px);
		}
		&::after {
			width: calc(nav>ul + 25px);
			background-color: var(--_nav-bg-open_half);
		}
		&:has([aria-expanded="true"]) {
			--_nav-bg-w: calc(100vw + 30px);
			--_nav-bg-w_after: calc(33vw + 30px);
		}
	}



	nav > button {
		appearance: none;
		border: none;
		display: flex;
		align-items: center;
		gap: 0.25rem;
		background-color: var(--accent-color);
		border-radius: 3px;
		color: var(--_nav-btn-clr);
		transition: color 150ms ease-in-out;
		position: relative;
		z-index: 2;
		& > svg path {
			transition-property: color, scale, rotate;
			transition-duration: 150ms;
			transition-timing-function: ease-in-out;
			transition-delay: 0m;
			transform-origin: center center;
		}
		&:focus-visible {
			outline: 1px dashed steelblue;
		}
		&:is(:hover, :focus-visible,) {
			--_nav-btn-clr: #fff;
		}
		&::before {
			content: var(--nav-btn-label, "Menu");
			transition: color 150ms ease-in-out;
		}
		&[aria-expanded="true"] {
			--nav-btn-label: "Close";
			--_nav-btn-clr: var(--_nav-btn-clr-expanded);

			& > svg path:is(:nth-of-type(1), :nth-of-type(4)) {
				scale: 0 1;
			}
			& > svg path:nth-of-type(2) {
				rotate: -45deg;
			}
			& > svg path:nth-of-type(3) {
				rotate: 45deg;
			}
		}
	}
	/* slide out nav panel */
	nav > ul {
		position: absolute;
		background-color: light-dark(var(--bg-light), var(--bg-dark));
		border-radius: 30px 0 0
			30px;
		overflow: hidden;
		top: 0;
		right: 0;
		margin: 0;
		padding: 0;
		width: fit-content;
		height: 100%;
		list-style: none;
		/*counter-reset: nav-counter;*/

		transform: translateX(var(--_nav-panel-translate-x, 100%));
		transition: transform 1000ms
			cubic-bezier(0.86, 0, 0.672, 1.003);

		/* reveal nav panel*/
		&[aria-hidden="false"] {
			--_nav-panel-translate-x: 0;
			--_nav-link-txt-rotate: 0deg;
			--_nav-link-txt-translate: 0;
		}
	}

	nav > ul > li {
		padding: 0;
		margin: 0;
		overflow-y: clip;

		&:nth-child(1) {
			--i: 1;
			margin-block-start: 40px; /* push below nav toggle button */
		}

		& > i {   
			--_nav-txt-intro-duration: 300ms;
			--_nav-txt-intro-delay: calc( var(--i) * 50ms + 1000ms * 1 );
			--_nav-txt-intro-timing-function: ease-in-out;
			font-family: var(--_nav-f-family);
			letter-spacing: 0.05rem;
			font-size: clamp(2rem, 2.5vw + 0.5rem, 5rem);
			font-weight: 700;
			text-transform: uppercase;
			line-height: 2.5;
			color: var(--_nav-link-clr, black);



		}

		& > a {
			--_nav-txt-intro-duration: 300ms;
			--_nav-txt-intro-delay: calc(
				var(--i) * 50ms + 1000ms * 1
			);
			--_nav-txt-intro-timing-function: ease-in-out;

			font-family: var(--_nav-f-family);
			letter-spacing: 0.05rem;
			position: relative;
			display: flex;
			font-size: 40px;
			font-weight: 700;
			text-transform: uppercase;
			line-height: 2.5;
			padding: 0.5rem 6rem 0.5rem 2rem;
			text-decoration: none;
			color: var(--_nav-link-clr, black);
			isolation: isolate;

			/* link reveal transition */
			transform-origin: left;
			transform: translateY(var(--_nav-link-txt-translate, 100%));

			transition-property: transform;
			transition-duration: var(--_nav-txt-intro-duration);
			transition-delay: var(--_nav-txt-intro-delay, 0ms);
			transition-timing-function: var(--_nav-txt-intro-timing-function);

			/* the amchor text is contained in a span to allow separate animation */
			& > span {
				display: block;
				transition: transform 350ms ease-in-out,
					translate 0ms calc(350ms / 2),
					color 0ms calc(350ms / 2);
			}

			&::before {
				content: "";
				position: absolute;
				inset: 0;
				background-color: var(--_nav-link-bg-clr-hover, black);
				translate: 0 2lh;
				z-index: -1;
				transition: all calc(350ms * 1) ease-in-out;
			}

			/* link hover or focus */
			&:is(:hover, :focus-visible, .active) {
				/* anchor text animation */
				& > span {
					transform: translateY(-2lh);
					translate: 0 2lh;
					color: var(--_nav-link-clr-hover);
				}
				/* background color */
				&::before {
					translate: 0 0;
					transition-duration: calc(350ms * 0.75);
				}
			}
		}
	}






/* end of navbar section */








body{
  background: #000;
  overflow-x: hidden;
}


.light-background {
  --background-color: #f4f7f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}


.container-fluid{
    /*background: color-mix(in srgb, var(--dark-color), transparent 10%);  */
    }











/* global page-intro */

.page-intro .page-header {
  padding: 140px 0 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-intro .page-header:before {
  content: "";
  position: absolute;
  inset: 0;
}

.page-intro p{
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}



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

a{
  text-decoration: none;
}

a:hover{
  text-decoration: none;
}





li{
    list-style: none;
}

        /*
        ========================================
        The Main Menu Container
        ========================================
        Fixed to the bottom-right of the screen.
        */
        .radial-menu {
            position: fixed;
            bottom: 2rem; right: 2rem;
            width: 60px;
            height: 60px;
            z-index: 1000000000000000;
        }

        /* The invisible checkbox that tracks the menu's state (open/closed) */
        #menu-toggle-checkbox {
            display: none;
        }

        /*
        ========================================
        The Main Menu Button (The Label)
        ========================================
        This is what the user clicks.
        */
        .menu-toggle-label {
            position: absolute; top: 0; left: 0;
            width: 100%; height: 100%;
            background-color: var(--accent-color);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #000;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: transform 0.4s ease;
            z-index: 2; /* Sits above the menu items */
        }
        .menu-toggle-label:hover { background-color: var(--background-color) }
        
        /* The 'plus' icon and its transition to an 'X' */
        .icon-open, .icon-close { position: absolute; width: 24px; height: 24px; transition: transform 0.3s ease, opacity 0.3s ease; }
        #menu-toggle-checkbox:checked + .menu-toggle-label .icon-open { transform: rotate(45deg); opacity: 0; }
        #menu-toggle-checkbox:checked + .menu-toggle-label .icon-close { transform: rotate(0); opacity: 1; }
        .icon-close { opacity: 0; transform: rotate(-45deg); }

        /*
        ========================================
        The Navigation Links (Menu Items)
        ========================================
        */
        .menu-items { list-style: none; margin: 0; padding: 0; }

        .menu-item {
            position: absolute;
            top: 5px; left: 5px; /* Centered with the main button */
            width: 50px;
            height: 50px;
            
            /* Hidden by default and positioned in the center */
            opacity: 0;
            transform: translate(0, 0) scale(0.5);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), 
                        opacity 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            pointer-events: none;
            z-index: 1;
        }
        
        .menu-item a {
            display: flex; align-items: center; justify-content: center;
            width: 100%; height: 100%;
            background-color: #fff;
            color: #000;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .menu-item a:hover {
          color: #00ff33;
          background-color: brown; }
        
        /*
        ========================================
        Open State and Circular Positioning
        ========================================
        When the checkbox is checked, this block becomes active.
        */
        #menu-toggle-checkbox:checked ~ .menu-items .menu-item {
            opacity: 1;
            pointer-events: auto; /* Make items clickable */
        }
        
        /*
        ========================================
        The magic happens here
        ========================================
        These angles are for a menu in the bottom-right corner,
        fanning out up and to the left.
        */

        /* Item 1: Positioned at 90 degrees */
        #menu-toggle-checkbox:checked ~ .menu-items .menu-item:nth-child(1) {
            transform: translateY(calc(-1 * 150px));
        }
        
        /* Item 2: Positioned at 112.5 degrees */
        #menu-toggle-checkbox:checked ~ .menu-items .menu-item:nth-child(2) {
            transform: translate(calc(-0.383 * 150px), calc(-0.924 * 150px));
        }
        
        /* Item 3: Positioned at 135 degrees */
        #menu-toggle-checkbox:checked ~ .menu-items .menu-item:nth-child(3) {
            transform: translate(calc(-0.707 * 150px), calc(-0.707 * 150px));
        }

        /* Item 4: Positioned at 157.5 degrees */
        #menu-toggle-checkbox:checked ~ .menu-items .menu-item:nth-child(4) {
             transform: translate(calc(-0.924 * 150px), calc(-0.383 * 150px));
        }
        
        /* Item 5: Positioned at 180 degrees */
        #menu-toggle-checkbox:checked ~ .menu-items .menu-item:nth-child(5) {
            transform: translateX(calc(-1 * 150px));
        }

/* navbar segment */





.dropdown{
  
}

 .dropdown ul{
  background: var(--accent-color);
}



.scrolled .header .logo{
    display: none;
}

.scrolled .header{
    display: none;
    backdrop-filter: (25px);
}

.scrolled .header .logo img{
    display: none;
}

/* Global Header on Scroll
------------------------------*/
section p.text-video{
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: .6s;
    padding-left: 6px;
    padding-right: 6px;
    border-radius: 1px 15px 15px 15px;
    text-align: center;
}

.text-video:hover b{
    background: var(--contrast-color);
    color: var(--accent-color);
}

.video-section h1{    
  color: var(--accent-color);
  font-size: 28px;
  line-height: 1em;
  margin-top: 20px;
}


.featured {
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  overflow: hidden;
  background-attachment: fixed;
  background-size: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.featured-bg {
  padding: .2em 0;
}

.featured .featured-bg h1{  
  color: var(--accent-color);
  font-size: 28px;
  line-height: 1em;
  margin-top: 20px;
}

.featured .featured-bg h1 a{
  text-transform: uppercase;
  color: var(--accent-color);
  text-decoration: none;
  border: 2px solid var(--accent-color);
  font-size: 28px;
  border-radius: 29px;
  padding: 5px;
  transition: .5s;
}

.featured .featured-bg h1 a:hover{
  background-color: var(--accent-color);
}


.featured .featured-bg p {
  color: color-mix(in srgb, var(--dark-color), transparent 10%);
  font-size: 18px;
}

.featured .featured-bg p.day{
  font-size: 12px;
}

.featured .featured-bg p span{
  color: var(--accent-color);
}

.featured .featured-bg a{
  text-decoration: none;
}

.featured .featured-bg a i{
  color: #00ff33;
  width: 20px;
  height: 20px;
  font-size: 28px;
  border-radius: 15px;
  padding: 9px;
  animation: contact 1s linear infinite;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  transition: .5s;
}

.featured .featured-bg a:hover i{
  margin-top: 10px;
  color: var(--accent-color);
  background: var(--contrast-color);
}

@keyframes contact {
  0%, 100%{
    background-size: 0%;
  }
  50%{
    background-size: 100%;
  }
}





/*carousel*/

/* Set fixed consistent height */
#fixedCarousel .carousel-item {
  height: 350px;   /* adjust height as you want */
  overflow: hidden;
  border-radius: 40px;
}

/* Force all images to fill the same space */
#fixedCarousel .carousel img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  object-fit: cover;   /* keeps same size, no stretching */
  display: block;
}




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 90px 0 60px 0;
}
  
@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 50px 60px 50px;
  }
}
  
  .hero .info h2 {
    color: var(--contrast-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 54px;
    font-weight: 700;
    position: relative;
  }
  
  .hero .info h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }


  .hero .info p span{
    color: var(--accent-color);
  }
  
  .hero .info p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 24px;
  }
  
  .hero .info .btn-get-started {
    text-decoration: none;
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--accent-color);
  }
  
  .hero .info .btn-get-started:hover {
    background: var(--accent-color);
  }
  
  .hero .carousel {
    inset: 0;
    position: absolute;
    overflow: hidden;
  }
  
  .hero .hero-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition-duration: 0.4s;
  }
  
  .hero .hero-item .img {
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/home-image.jpg);
    background-size: cover;
    background-attachment: fixed;
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .hero .hero-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  
  
  
  
/* Container for the photos-img */
.photos-img {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Style each photos-img item */
.photos-img-item {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Style for the images */
.photos-img-item img {
  width: 100%;
  height: 200px;
  transition: .5s;
  object-fit: cover;
}

/* Hover effect to enlarge the image and add a shadow */
.photos-img-item:hover img {
  transform: scale(1.2);
}





  /* start of about us */

  .section {
    color: var(--default-color);
    padding: 40px 0;
    scroll-margin-top: 92px;
    overflow: clip;
  }



  .about-us .features-image {
    position: relative;
    min-height: 400px;
  }
  
  .about-us .features-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .about-us h3 {
    font-size: 28px;
    font-weight: 700;
  }
  
  .about-us .icon-box {
    margin-top: 30px;
  }
  
  .about-us .icon-box i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 24px;
    line-height: 1.2;
  }
  
  .about-us .icon-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .about-us .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }


  .about .content h3 {
      font-size: 2rem;
      text-align: center;
      font-weight: 700;
  }

  .about .content ul {
      list-style: none;
      text-align: left;
      padding: 0;
  }

  .about .content ul li {
      padding-bottom: 10px;
  }

  .about .content ul i {
      font-size: 1.25rem;
      margin-right: 4px;
      color: var(--accent-color);
  }

  .about .content p:last-child {
      margin-bottom: 0;
  }

  .about .content .read-more {
      background: var(--accent-color);
      color: var(--contrast-color);
      font-family: var(--heading-font);
      font-weight: 500;
      font-size: 15px;
      letter-spacing: 1px;
      padding: 10px 24px 12px 24px;
      border-radius: 50px;
      transition: 0.3s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
  }

  .about .content .read-more i {
      font-size: 18px;
      margin-left: 5px;
      line-height: 0;
      transition: 0.3s;
  }

  .about .content .read-more:hover {
      background: color-mix(in srgb, var(--accent-color), transparent 20%);
      padding-right: 19px;
  }

  .about .content .read-more:hover i {
      margin-left: 10px;
  }


  /*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
  .why-us .why-box {
      color: var(--contrast-color);
      background: var(--accent-color);
      padding: 30px;
  }

  .why-us .why-box h3 {
      color: var(--contrast-color);
      font-weight: 700;
      font-size: 34px;
      margin-bottom: 30px;
  }

  .why-us .why-box p {
      margin-bottom: 30px;
  }

  .why-us .why-box .more-btn {
      display: inline-block;
      background: color-mix(in srgb, var(--contrast-color), transparent 85%);
      padding: 8px 40px 10px 40px;
      color: var(--contrast-color);
      transition: all ease-in-out 0.4s;
      border-radius: 50px;
  }

  .why-us .why-box .more-btn i {
      font-size: 14px;
  }

  .why-us .why-box .more-btn:hover {
      color: var(--accent-color);
      background: var(--surface-color);
  }

  .why-us .icon-box {
      background-color: var(--surface-color);
      text-align: center;
      padding: 40px 30px;
      width: 100%;
      height: 100%;
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .why-us .icon-box i {
      color: var(--accent-color);
      font-size: 32px;
      margin-bottom: 30px;
      background: color-mix(in srgb, var(--accent-color), transparent 95%);
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 72px;
      height: 72px;
      transition: 0.3s;
  }

  .why-us .icon-box h4 {
      font-size: 20px;
      font-weight: 700;
      margin: 0 0 30px 0;
  }

  .why-us .icon-box p {
      font-size: 15px;
      color: color-mix(in srgb, var(--default-color), transparent 30%);
  }

  .why-us .icon-box:hover i {
      color: var(--contrast-color);
      background: var(--accent-color);
  }


  

/* Start of our products section */

.products .section-header {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.products .section-header span {
    position: absolute;
    top: 46px;
    color: rgba(14, 29, 52, 0.1);
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 56px;
    text-transform: uppercase;
    line-height: 0;
}

.products .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
}

#about {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #fff;
  position: relative;
  padding: 15% 0 15% 0;
  margin-top: 40px;
}

#about .content h3{
    text-align: center;
}

#about .content ul{
    text-align: left;
}

#about .content ul li{
    text-align: left;
}

.what-we {
  padding: 88px 0 100px 0 !important;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover !important;
}

.our-products-item {
  margin-top: 20px;
  background: #fff;
  border: 2px solid #fff;
  position: relative;
  perspective: 1000px;
  -moz-perspective: 1000px;
  -webkit-perspective: 1000px;
  -ms-perspective: 1000px;
  -o-perspective: 1000px;
  cursor: pointer
}

.our-products-item .product-thmb {
  height: 370px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.product-thmb img {
  width: 100%;
  height: 100%;
}

.our-products-item h6 {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  margin: 26px 0 25px;
  padding: 21px 0 0;
  text-align: center;
  position: relative;
}

.our-product-ds {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #eeeeee;
  width: 100%;
  height: 100%;
  transform: rotateY(-90deg);
  -moz-transform: rotateY(-90deg);
  -webkit-transform: rotateY(-90deg);
  -ms-transform: rotateY(-90deg);
  -o-transform: rotateY(-90deg);
  transform-origin: left center 0;
  -moz-transform-origin: left center 0;
  -webkit-transform-origin: left center 0;
  -ms-transform-origin: left center 0;
  -o-transform-origin: left center 0;
  transition: transform 0.3s linear 0s, opacity 0.3s linear 0s;
  -moz-transition: transform 0.3s linear 0s, opacity 0.3s linear 0s;
  -webkit-transition: transform 0.3s linear 0s, opacity 0.3s linear 0s;
  -ms-transition: transform 0.3s linear 0s, opacity 0.3s linear 0s;
  -o-transition: transform 0.3s linear 0s, opacity 0.3s linear 0s;
  backface-visibility: hidden;
  opacity: 0;
  overflow: hidden;
  box-shadow: 2px 2px 6px #888888;
}

.our-products-item:hover .our-product-ds{
  opacity: 1;
  transform: rotateY(0deg);
}

.our-products-bk {
  margin: 0 1px 1px;
  background: #fff;
  height: 100%;
  margin-bottom: 1px;
  padding: 33px 40px 15px;
  text-align: center;
}

.entry-our-product {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.our-products-item h6 {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  margin: 26px 0 25px;
  padding: 21px 0 0;
  text-align: center;
  position: relative;
}

#about p {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #2c2c2c;
  font-weight: 500;
  margin: 0;
}

.tz-readmore {
  color: #222 !important;
  bottom: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  margin: 0;
  text-decoration: none !important;
  padding: 12px 40px;
  display: inline-block;
  border-radius: 50px;
  transition: 0.5s;
  border: 3px solid var(--accent-color);
}

.tz-readmore:hover{
  background: var(--accent-color);
}

.tz-readmore i {
  color: #222;
  font-size: 12px;
  line-height: 14px;
  padding-left: 10px;
}

.our-services{
  border: 4px solid #00ff33;
}

.our-services .features-image{
  position: relative;
  min-height: 400px;
}

.our-services .features-image img{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.our-services .service-header{ 
  position: relative; 
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.our-services .icon-box i{
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.our-services .service-content{
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/* End of our products section */


/* start of project us section */

#projects{
  max-width: 100%;
  display: flex;
  background: url(../images/wall-unit8.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  flex-wrap: nowrap;
}
.container{
  width: 100%;
}


/*portfolio section*/



.service-v1 h3 {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.portfolio-image{
    width: 100%;
    height: 280px; /* adjust to whatever height you want */
    object-fit: cover; 
    object-position: center;
    border-radius: 4px; /* optional */
    
}


.our-team-main {
    width: 100%;
    height: auto;
    border-bottom: 7px #8B0000 solid;
    background: #fff;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: 0.5s;
    margin-bottom: 28px
}

.our-team-main img {
    border-radius: 50%;
    margin-bottom: 20px;
    width: 90px
}

.our-team-main h3 {
    font-size: 20px;
    font-weight: 700
}

.our-team-main p {
    margin-bottom: 0
}

.team-back {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 15px 0 15px;
    text-align: left;
    background: #fff
}

.social-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
}

.social-icon {
  text-decoration: none;
  font-size: 24px;
  color: #333;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #007bff; /* You can change this to any color you want on hover */
}

.social-icon i {
  font-size: 30px; /* Adjust the icon size */
}




.team-front {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
    background: #fff;
    padding: 15px;
    bottom: 0px;
    transition: all 0.5s ease
}

.our-team-main:hover .team-front {
    bottom: -200px;
    transition: all 0.5s ease
}

.our-team-main:hover {
    border-color: #FF0000;
    transition: 0.5s
}







/* end of portfolio section */
  
    


/* begin of project section */


/* end of project us section */



/* our working process section */
.working-process-area {
  position: relative;
  display: block;
  background: #f6f6f6;
  padding: 110px 0 50px;
  z-index: 2;
}

.single-process {
  position: relative;
  display: block;
  padding-top: 40px;
  background: transparent;
  transition: all .5s ease;
  margin-bottom: 60px;
}

.single-process:hover {
  transform: translateY(-10px);
}

.single-process ul li{
  list-style: disc;
  text-align: left;
}

.single-process .top-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 90px;
  height: 90px;
  display: block;
  border: 3px solid var(--accent-color);
  padding: 27px 0;
  background: #ffffff;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
  z-index: 3;
  transition: all .5s ease;
}

.single-process:hover .top-box{
  border: 3px solid var(--dark-color);
}

.single-process .top-box::before {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  content: "";
  background: var(--accent-color);
  border-radius: 50%;
  transition: all 0.5s ease-in-out 0s;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateY(-90deg) translateZ(0px);
  opacity: 0;
  z-index: -1;
  backface-visibility: hidden;
}

.single-process:hover .top-box::before{  
  transform: perspective(1200px) rotateY(0deg) translateZ(0px);
  opacity: 1;
}

.single-process .top-box span {
  color: #27282c;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 700ms ease 100ms;
}

.single-process:hover .top-box span{
  color: var(--contrast-color);
}

.single-process .inner {
  position: relative;
  display: block;
  padding: 82px 30px 50px;
  background: #ffffff;
  border-radius: 10px;
  border-top: 3px solid var(--accent-color);
  -webkit-box-shadow: 0px 6px 10px 3px #e8e8e8;
  box-shadow: 0px 6px 10px 3px #b6b2b2;
  transition: .5s;
}

.single-process:hover .inner{
  background: var(--accent-color);
  border-top: 3px solid var(--dark-color);
  box-shadow: 0px 6px 10px 3px, 0px 10px 6px 10px #e8e8e8;
}

.single-process .inner h4 {
  color: #27282c;
  font-weight: 600;
  margin: 0 0 18px;
  transition: .5s;
}


.single-process:hover .inner h4{
  text-transform: uppercase;
  color: var(--contrast-color);
  font-weight: 900px;
}

.single-process .inner .icon-holder {
  position: relative;
  display: block;
  padding-top: 22px;
}




/* End of our process */




/*start of our photos-img*/







.section-header {
  text-align: center;
  padding: 3px 0;
  position: relative;
}

.section-header span {
  position: absolute;
  top: 49px;
  color: rgba(14, 29, 52, 0.04);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 76px;
  text-transform: uppercase;
  line-height: 0;
}

.section-header h2 {
  text-shadow: 20px 20px 20px #000000;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--accent-color);
  position: relative;
  z-index: 2;
}



/* project section */




/* end of project section */


/* start of contact details */

.contact-section .section-header {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.contact-section .section-header span {
  position: absolute;
  top: 46px;
  color: rgba(14, 29, 52, 0.05);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 0;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact-section .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--accent-color);
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

.contact-section .info-item i {
  font-size: 20px;
  border: 3px solid var(--accent-color);
  border-radius: 150px;
  color: #000;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}


.contact-section .info-item p a{ 
  color: var(--accent-color);
  border-radius: 20px;
  padding: 3px;
  text-decoration: none;
  transition: .5s;
}

.contact-section .info-item p:hover a{
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact-section .info-item .social{
  display: flex;
}

.contact-section .info-item .social a{
  text-decoration: none;
}

.contact-section .info-item .social a i{
  transition: .5s;
  text-decoration: none;
  color: #00ff33;
  border: none;
}

.contact-section .info-item .social a:hover i{
  font-size: large;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact-section .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}




/* end of contact details */

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  background: url("../images/vanity4.jpg") top center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-size: 14px;
  position: relative;
}

.footer .container {
  position: relative;
}

.footer:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
}

.footer .footer-top {
  padding-top: 50px;
  justify-content: space-evenly;
}

.footer .footer-about .logo {
  text-decoration: none;
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.footer .footer-links p span{
    color: var(--accent-color);
}

.footer .footer-links ul {
  text-align: center;
  list-style: none;
  padding: 0px 20px;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  text-decoration: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-contact p span a{
  font-size: 20px;
  color: var(--contrast-color);
  border: 1px solid var(--contrast-color);
  padding: 5px;
  border-radius: 20px;
  font-weight: 400px;
  text-decoration: none;
  transition: .5s;
}

.footer .footer-contact p span a:hover{
  border: 1px solid var(--accent-color);

}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}




.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

.credit-link:hover{
    color: var(--accent-color);
}





