*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #f2eeeb;
}

img{
	display: block;
	max-width: 100%;
}

/*header bottom hr*/
hr {
  border: 0;
  height: 3px;
  width: 15%;
  position: relative;
  margin: 2rem;
}
hr.hr-1 {
  border: 0;
  height: 2px;
  margin: 0 auto;
  font-weight: 700;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #f58920, rgba(0, 0, 0, 0));
}
.horizontal-line img {
    width: 100%;
    max-width: 10rem;
    height: auto;
    display: block;
    margin: 2rem auto 2rem auto;
}

/* Header Styles */
.header {
	height: 6rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);	
	height: 5rem;
}

.nav-container {
 max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Add this */
    z-index: 1001;
}

.logo img {
    width: 9.25rem;
	margin: 0 auto;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-logo img{
	margin: 0 auto;
	width: 150px;
}

.header.scrolled .logo {
    color: #333;
}

.nav-menu {
   display: flex;
    list-style: none;
    gap: 1rem;
    position: relative;
    z-index: 10; 
	margin: 0 auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10; /* Increase z-index to ensure clickability */
    font-weight: 500;
    display: inline-block; /* Ensure consistent click area */
    pointer-events: auto;
}

.header.scrolled .nav-link {
    color: #333;
}

.nav-link:hover {
    color: #000;
}

.header.scrolled .nav-link:hover {
    color: #000;
}

.header-logo{
	/*height:4rem;*/
	max-width: 17.5rem;
	display: flex;
}

.header-logo img {
	width: 14rem;
    transition: opacity 0.5s ease;
}

/* Blob Animation */
.nav-blob {
    position: absolute;
    background: orange;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0);
    z-index: 1;
    top: 0;
    left: 0;
    pointer-events: none;   
    width: 100%;
    height: 100%;
}

.nav-item.active .nav-blob {
    opacity: 1;
    transform: scale(1);
}

.nav-item:hover .nav-blob {
    opacity: 0.8;
    transform: scale(1.1);
}

.nav-item.active:hover .nav-blob {
    opacity: 1;
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-toggle {
   display: none;
   flex-direction: column;
   cursor: pointer;
   padding: 8px;
   z-index: 1002;
   position: relative;
   width: 3rem;
   height: 3rem;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   transition: all 0.3s ease;
   background: rgb(2 12 38 / 80%);
}

.mobile-toggle:hover {
   background: rgb(2 12 38 / 80%);
}


.mobile-toggle span {
   width: 25px;
   height: 3px;
   background: white;
   margin: 2px 0;
   transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   border-radius: 3px;
   transform-origin: center;
}

.header.scrolled .mobile-toggle span {
   background: #fff;
}

.mobile-toggle.active span {
   background: white;
}

/* Hamburger to X animation */
.mobile-toggle.active span:nth-child(1) {
   transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
   opacity: 0;
   transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
   transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
   backdrop-filter: blur(20px);
   transform: translateY(-100%);
   transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   z-index: 1001;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

.mobile-menu.active {
   transform: translateY(0);
}

/* Close button in mobile menu */
.mobile-close {
   position: absolute;
   top: 30px;
   right: 30px;
   width: 50px;
   height: 50px;
   cursor: pointer;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   transition: all 0.3s ease;
   opacity: 0;
   transform: scale(0.8) rotate(180deg);
}

.mobile-menu.active .mobile-close {
   opacity: 1;
   transform: scale(1) rotate(0deg);
   transition-delay: 0.3s;
}

.mobile-close:hover {
   background: rgba(255, 255, 255, 0.2);
   transform: scale(1.1) rotate(90deg);
}

.mobile-close::before,
.mobile-close::after {
   content: '';
   position: absolute;
   width: 20px;
   height: 2px;
   background: white;
   border-radius: 2px;
   transition: all 0.3s ease;
}

.mobile-close::before {
   transform: rotate(45deg);
}

.mobile-close::after {
   transform: rotate(-45deg);
}

.mobile-close:hover::before,
.mobile-close:hover::after {
   width: 24px;
   background: #ff6b6b;
}

.mobile-nav-menu {
   list-style: none;
   text-align: center;
   padding: 0;
}

.mobile-nav-item {
   margin: 2rem 0;
   opacity: 0;
   transform: translateY(30px);
   transition: all 0.4s ease;
}

.mobile-menu.active .mobile-nav-item {
   opacity: 1;
   transform: translateY(0);
}

.mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-item:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-item:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-link {
   color: white;
   text-decoration: none;
   font-size: 2.5rem;
   font-weight: 300;
   transition: all 0.3s ease;
   position: relative;
   display: inline-block;
}

.mobile-nav-link:hover {
   color: #F44336;
   transform: scale(1.1);
}

.mobile-nav-link::after {
   content: '';
   position: absolute;
   width: 0;
   height: 2px;
   bottom: -10px;
   left: 50%;
   background: linear-gradient(45deg, #ff6b6b, #F44336);
   transition: all 0.3s ease;
}

.mobile-nav-link:hover::after {
   width: 100%;
   left: 0;
}

/* Menu overlay effect */
.mobile-menu::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: radial-gradient(circle at center, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
   opacity: 0;
   transition: opacity 0.6s ease;
}

.mobile-menu.active::before {
   opacity: 1;
   transition-delay: 0.2s;
}

/* Breadcrumb Hero Section */
.breadcrumb-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('../img/kitchen/1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay for better text readability */
.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

/* Content container */
.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.breadcrumb-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Page Title */
.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out;
}

/* Breadcrumb Navigation */
.breadcrumb {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 16px 24px;    
    backdrop-filter: blur(10px);    
    border-radius: 50px;    
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.breadcrumb-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.breadcrumb-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.breadcrumb-link:hover::before {
    left: 100%;
}

.breadcrumb-home-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.breadcrumb-current {
    color: red;
    font-weight: 400;
    font-size: 1rem;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 1);
    border-radius: 25px;
    position: relative;
	margin: 0 0 0 0.5rem
}

.breadcrumb-current::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;   
    border-radius: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* hero-slider section  */
.slider{
    height: 100vh;    
    width: 100%;
    overflow: hidden;
    position: relative;
}
.slider .slider-list .slider-item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.slider .slider-list .slider-item img{
	aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.slider-item-content{	
    position: absolute; 
	top:50%;
	left: 35%;
    width: 100%;
    max-width: 600px;   
    padding: 1rem;
    box-sizing: border-box;
    color: #fff;    
	transform: translate(-50%, -50%);	
	border-radius: 10px;	
     background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;
	
}
.slider-content-inner {
    background: rgba(0, 0, 0, 0.7); 
    padding: 1rem;
    border-radius: 10px;
    transition: background 0.5s ease;
}

.slider-item:nth-child(1) .slider-content-inner{
	 transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;	
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.slider-title, .slider-type {
	margin: 0.5rem;
}
 .slider-type{
	 color: #14ff72cb;
	 font-size: clamp(1rem, 0.6667rem + 1.7778vw, 1.2rem);
	 margin: 1rem 0 1rem 0.5rem;
 }

.slider .slider-list .slider-item .slider-item-content .slider-title{
    font-size: clamp(2rem, 0.3333rem + 2.8889vw, 3.5rem);
    font-weight: bold;
    line-height: 2rem;
}

.slider-buttons {
  position: absolute;
  top: calc(50% + 120px);   
  z-index: 2;
  display: flex;
  gap: 10px;
  margin: 0 0 0 -0.6rem;
}
/* Button styling */
.see-more-button {
  border: none;
  padding: 0.75rem 1.5rem;
  background-color: #fff;
  color: #f54336;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}

.slider .slider-list .slider-item .slider-buttons button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}

.slider-thumbnail{
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
	display: none;
}

.slider-thumbnail .slider-thumbnnail-item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.slider-thumbnail .slider-thumbnnail-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

/* nextPrevArrows Section  */
.slider-arrows{
    position: relative;
    top: 90%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
	gap: 2rem;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 15px; /* reduce from 20px to prevent overflow */
    pointer-events: none;
    box-sizing: border-box;
}

/* Button itself */
.slider-arrows button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
	color: #000;
    border: none;    
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.slider-arrows button:hover {
    background-color: #fff;
    color: #000;
}

.slider-description{
	font-size: 1rem;
	letter-spacing: 2px;
	margin: 0 0 1rem 0.5rem;
}

.slider-buttons button {
  padding: 0.75rem 1.75rem;
  background: #f44336	; 
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 15px rgba(30, 60, 114, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.slider-buttons button::before {
  content: "";
  position: relative;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  z-index: 0;
}

.slider-buttons button:hover::before {
  left: 0;
}

/* Animation Part */
.slider .slider-list .slider-item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.slider .slider-list .slider-item:nth-child(1) .slider-item-content .slider-title,
.slider .slider-list .slider-item:nth-child(1) .slider-item-content .slider-type,
.slider .slider-list .slider-item:nth-child(1) .slider-item-content .slider-description,
.slider .slider-list .slider-item:nth-child(1) .slider-item-content .slider-buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
	
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.slider-item:nth-child(1) .slider-content-inner{
	animation-delay: 0.3s !important;
}
.slider .slider-list .slider-item:nth-child(1) .slider-item-content .slider-title{
    animation-delay: 0.5s !important;
}
.slider .slider-list .slider-item:nth-child(1) .slider-item-content .slider-type{
    animation-delay: 0.7s !important;
}
.slider .slider-list .slider-item:nth-child(1) .slider-item-content .slider-description{
    animation-delay: 0.9s !important;
}
.slider .slider-list .slider-item:nth-child(1) .slider-item-content .slider-buttons{
    animation-delay: 1.1s !important;
}
/* Animation for next button click */
.slider.next .slider-list .slider-item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.slider.next .slider-thumbnail .slider-thumbnail-item:nth-last-child(1){
    overflow: hidden;
}

@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}

.slider.next .slider-thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* Animation for prev button click */
.slider.prev .slider-list .slider-item:nth-child(2){
    z-index: 2;
}

.slider.prev .slider-list .slider-item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.slider.prev .slider-thumbnail .slider-item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.slider.next .slider-arrows button,
.slider.prev .slider-arrows button{
    pointer-events: none;
}

.slider.prev .slider-list .slider-item:nth-child(2) .slider-item-content .slider-title,
.slider.prev .slider-list .slider-item:nth-child(2) .slider-item-content .slider-type,
.slider.prev .slider-list .slider-item:nth-child(2) .slider-item-content .slider-description,
.slider.prev .slider-list .slider-item:nth-child(2) .slider-item-content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
/*modal*/
.img-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 300px);
            gap: 20px;
            margin-top: 50px;
        }

        .grid-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
            transform: translateY(0);
        }

        /* Grid layout with row spans */
        .grid-item:nth-child(1) {
            grid-row: span 2;
        }

        .grid-item:nth-child(4) {
            grid-row: span 2;
        }
		
		.grid-item:nth-child(3) {
            grid-row: span 2;
        }

        .grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .grid-item:hover img {
            transform: scale(1.1);
        }

        .grid-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .grid-item:hover::before {
            opacity: 1;
        }

        .grid-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
            z-index: 2;
        }

        .grid-item:hover .grid-content {
            transform: translateY(0);
            opacity: 1;
        }

        .grid-content h3 {
			color: #fff;
            font-size: 1.5em;
            margin-bottom: 10px;
            font-weight: 300;
        }

        .grid-content p {
            font-size: 0.9em;
            line-height: 1.6;
            opacity: 0.9;
			color: #fff;
        }

        .grid-item:nth-child(1) .grid-content h3,
        .grid-item:nth-child(4) .grid-content h3 {
            font-size: 2em;
        }

        .grid-item:nth-child(1) .grid-content p,
        .grid-item:nth-child(4) .grid-content p {
            font-size: 1em;
        }

        /* Enhanced Modal Styles */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            backdrop-filter: blur(10px);
        }
		
         .modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            position: relative;
            max-width: 95vw;
            max-height: 95vh;
            width: 100%;
            height: 100%;
            display: flex;
			flex-direction: row;
            background: #222;
            border-radius: 20px;
            overflow: hidden;
            transform: scale(0.8);
            transition: all 0.7s cubic-bezier(0.23, 1, 0.320, 1);
        }

         .modal.active .modal-content {
            transform: scale(1) translateX(0) translateY(0);
        }

        .modal-image {
            flex: 1;
            min-width: 45%;
            overflow: hidden;
        }

        .modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .modal-text-container {
            flex: 1;
            background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #555 #2d2d2d;
        }

        .modal-text-container::-webkit-scrollbar {
            width: 8px;
        }

        .modal-text-container::-webkit-scrollbar-track {
            background: #2d2d2d;
        }

        .modal-text-container::-webkit-scrollbar-thumb {
            background: #555;
            border-radius: 4px;
        }
		
		  .modal-text-container::-webkit-scrollbar-thumb:hover {
            background: #777;
        }


        .modal-text {
            padding: 60px;
        }

        .modal-text h2 {
            font-size: 3em;
            margin-bottom: 30px;
            font-weight: 300;
            line-height: 1.2;
			color: #fff;
        }

        .modal-text p {
            font-size: 1.2em;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 30px;
        }

        .content-section {
            margin-bottom: 40px;
        }

        .content-section h3, .content-section h4 {
            font-size: 1.8em;
            margin-bottom: 20px;
            font-weight: 300;
			color: #fff;
        }

        .content-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .content-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .content-image:hover img {
            transform: scale(1.05);
        }

        .content-image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: #fff;
            padding: 15px;
            font-size: 0.9em;
        }

        .close-btn1 {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 1);
            border: none;
            border-radius: 50%;
            color: #ff0074;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn1:hover {
            background: rgba(255, 255, 255, 1);
            transform: rotate(90deg);
			color: #ff0074;
        }

        .grid-item {
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .grid-item:nth-child(1) { animation-delay: 0.1s; }
        .grid-item:nth-child(2) { animation-delay: 0.2s; }
        .grid-item:nth-child(3) { animation-delay: 0.3s; }
        .grid-item:nth-child(4) { animation-delay: 0.4s; }
        .grid-item:nth-child(5) { animation-delay: 0.5s; }
        .grid-item:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .grid-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        @media (max-width: 960px) {
            .modal-content {
                flex-direction: column;
                max-width: 98vw;
                max-height: 98vh;
            }
            .modal-image {
                min-width: 100%;
                height: 40%;
            }
            .modal-text-container {
                height: 60%;
            }
            .modal-text {
                padding: 40px;
            }
          
            .content-images {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .img-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(4, 250px);
            }
            .grid-item:nth-child(1) {
                grid-row: span 2;
            }
            .grid-item:nth-child(4) {
                grid-row: span 1;
            }
            .grid-item:nth-child(3) {
                grid-row: span 2;
            }
           
            .modal-text {
                padding: 30px;
            }
            
            .close-btn {
                top: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .img-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(6, 200px);
            }
            .grid-item:nth-child(1),
            .grid-item:nth-child(4),
            .grid-item:nth-child(5) {
                grid-row: span 1;
            }
            .modal-text {
                padding: 20px;
            }
            .modal-text h2 {
                font-size: 1.8em;
            }
            .modal-image {
                height: 30%;
            }
            .modal-text-container {
                height: 70%;
            }
        }

        body.modal-open {
            overflow: hidden;
        }
/*whoweare*/
.who-we-are {
  background: #f2eeeb;
  padding: 4rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.left-col h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.left-col h2 span {
  color: #f44336; /* red */
}

.right-col .headline {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.right-col hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #333;
}

.right-col .description {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  letter-spacing: 3px;
}

.btn-outline {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid #000;
  border-radius: 2rem;
  background: transparent;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}
@media (max-width: 768px) {
  .columns {
    grid-template-columns: 1fr;
  }

  .left-col h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .right-col .headline {
    font-size: 1.25rem;
  }

  .right-col .description {
    font-size: 0.95rem;
  }
}

.content {
	padding-left: 20px;
}

.about-title {
	color: #6b7280;
	font-size: 16px;
	margin-bottom: 20px;
	font-weight: normal;
}

.main-title {
	font-size: 48px;
	font-weight: bold;
	color: #1f2937;
	margin-bottom: 30px;
	line-height: 1.2;
}

.description {
	color: #000;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 40px;
}

.buttons {
	display: flex;
	gap: 20px;
}

.btn {
	padding: 15px 25px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.btn-primary {
	background-color: #1f2937;
	color: white;
	border-radius: 50px;
}

.btn-primary:hover {
	background-color: #374151;
	border-radius: 50px;
}

.btn-secondary {
	background-color: transparent;
	color: #1f2937;
	border: 2px solid #1f2937;
	border-radius: 50px;
}

.btn-secondary:hover {
	background-color: #1f2937;
	color: white;
	border-radius: 50px;
}

.image-text {           
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	color: #2c3e50;
	font-size: 14px;
	text-align: center;
	font-weight: 500;
	border-radius: 12px;
	margin: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stats-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	align-items: center;
	justify-content: center;
}

.stats-number {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.stats-text {
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.5px;
}

/* Simplified Counters Section */
.counters-section {
	padding: 1rem 2rem 2rem;
	position: relative;
	overflow: hidden;
}

.counters-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23e2e8f0"/><circle cx="80" cy="40" r="1" fill="%23cbd5e1"/><circle cx="40" cy="80" r="1" fill="%23e2e8f0"/></svg>') repeat;
	opacity: 0.4;
}

.counters-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.counters-title {
	text-align: center;
	margin-bottom: 50px;
}

.counters-title h2 {
	font: 700 2.5rem/1.2 'Inter', sans-serif;
	color: #1e293b;
	margin-bottom: 15px;
	background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.counters-title p {
	font-size: 1.1rem;
	color: #64748b;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.charts_orb {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.orb {
	background: #707a5f;
	border-radius: 0.5rem;
	text-align: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.03);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	width: calc(25% - 15px);
	min-width: 220px;
	min-height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 30px 20px;
	position: relative;
	border: 1px solid rgba(226, 232, 240, 0.5);
}

.orb::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
	border-radius: 20px;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.orb:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.orb:hover::before {
	opacity: 1;
}

.orb_graphic {
	margin-bottom: 15px;
	position: relative;
	z-index: 2;
}

.orb_icon {
	font-size: 2.8rem;
	background: linear-gradient(135deg, #ef6d11 0%, #ff8d00 50%, #6c3308 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 15px;
	transition: transform 0.3s ease;
}

.orb_value {
	font: 800 2.5rem/1 'Inter', sans-serif;
	color: #fff;
	letter-spacing: -0.02em;
}

.orb_label {
	font: 600 0.95rem/1 'Inter', sans-serif;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	margin-top: 12px;
	position: relative;
	z-index: 2;
}

@keyframes countUp {
	from { transform: translateY(20px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.count {
	animation: countUp 0.6s ease-out;
}

/* Quote Section */
#quote{
	padding: 3rem 0 3rem 0;
}
.quote-section {    
    background: #707a5f;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 350px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Image Section */
.quote-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.quote-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;   
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
}


/* Content Section */
.quote-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
}

.quote-content h2 {
    font-size: clamp(1rem, 0.1518rem + 4.2411vw, 2rem);
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    position: relative;
    text-align: left;
}

/* Call-to-Action Button */
.mt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: white;
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;    
    max-width: 200px;
	margin: 0 auto;
}


/* Animation on scroll */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add these classes with JavaScript intersection observer */
.quote-image.animate {
    animation: slideInLeft 0.8s ease-out;
}

.quote-content.animate {
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.logo-container {            
	margin: -5.5rem 0 0 0;
}
/*About Page*/
#about{
    padding: 3rem 0 0 0;
    scroll-margin-top: 6rem;
    position: relative;
}

.about-us {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: auto;
    padding: 4rem;
    gap: 2rem;
}

.about-image{
    background: linear-gradient(to right, #edbe74 0%, #ffca9d 100%);
    margin: 2rem 0 2rem 0;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;   
    flex: 1 1 40%;  
    position: relative;
       
}

.about-image img{
    margin-left: -2em;
    margin-top: -2em;
    margin-bottom: 2em;
    border-radius: 5px;
    width: 100%;
}

.about-text{
    flex: 50%;  
    padding: 0 0 40px;
}


.text-container{
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.5;
	padding: 2rem;
}

.about-text p{   
    font-size: clamp(0.8rem, 0.8214rem + 0.8929vw, 1.1rem);
    letter-spacing: 0.2px;
    line-height: 1.5;
    color: #000;
   
}
/*ADVANTAGES*/
#advantages-container, #portfolio-container  {
	padding: 3rem 0 3rem 0;
	position: relative;
}

.advantages-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.083rem;	
	margin: 0 auto;
}

.section-title2 {
	text-align: left;		
	margin: 1.75rem auto;	
	text-align: left;
}

.section-title2 h2 {
	font-size: 24px;
	padding: 6px 0;
	padding-left: 1.25rem;	
	border-left: 3px solid #f44336;
	line-height: 1.15;
	display: inline-block;
	vertical-align: top;
	margin: 0;
	text-transform: uppercase;
}

/* Individual advantage card */
.advantage-card {
	background: #707a5f;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 1.875rem 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.5s ease, box-shadow 0.5s ease;
	
}

.advantage-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Icon container */
.icon-container {
	width: 5rem;
	height: 5rem;
	background-color: #f8f8f8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.icon {
	width: 2.5rem;
	height: 2.5rem;
	fill: #8C6E5D;
}

/* Heading for each advantage */
.advantage-title {
	font-size: 1.3rem;
	margin-bottom: 0.9375rem;
	color: #fff037;
}

/* Description text */
.advantage-description {
	color: #fff;
	line-height: 1.6;
	font-size: 0.95rem;
}
/*features*/

.features-section {
	background-color: #f5f1e9;
	padding: 3rem 3rem;
	text-align: center;
}

.features-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;	
	margin: 0 auto;
	position: relative;
	border: 1px solid #bababa;
}

.feature-item {
	display: flex;
	/*align-items: center;*/
	justify-content: center;
	text-align: left;
	font-size: 14px;
	color: #333;
	padding: 42px 25px 37px;
	position: relative;
}

/* Vertical borders between columns on large screens */
.feature-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: calc(100% - 2.5rem);
	width: 1px;
	background-color: #ccc;
}

.feature-item i {
	font-size: 24px;
	margin-right: 15px;
	color: #666;
}

.feature-text p {
	margin: 0;
}

.feature-text p:first-of-type {
	font-weight: bold;
	font-size: 1.1rem;
	margin: 0 0 .5rem;
}

.feature-text p:last-of-type {
	font-size: 15px;
	color: #666;
}
.latin-text {
	font-size: 1.5rem;
color: white;
  text-shadow:
   -1px -1px 0 #5a6f47,  
    1px -1px 0 #5a6f47,
    -1px 1px 0 #5a6f47,
     1px 1px 0 #5a6f47;
	
	margin-bottom: 2rem;
	position: relative;	
}

.latin-text::before,
.latin-text::after {
	content: "-";
	margin: 0 10px;
	color: #ccc;
}

.links-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 4rem auto 3rem;
	text-align: left;
}

.links-column ul {
	list-style-type: none;
}

.links-column ul li {
	margin-bottom: 1rem;
	font-size: 14px;
	color: #fff;
}

.links-column ul li::before {
	content: "\f111";
	font-family: FontAwesome;
	position: relative;
	padding-right: 15px;
	font-size: 9px;
	opacity: .6;

}
@media (max-width:768px){
    .container{
        max-width: 100% !important; 
    }
}
@media (max-width:576px){
    .container{
        max-width: 100% !important; 
    }
}
@media (max-width:1200px){
    .advantage-card:nth-child(3) {
        grid-column: 1 / -1; 
        width: 100%; 
    }
}
/*values*/
.values-section {
    padding: 4rem 2rem;  
    text-align: center;
}

.counters-title {
    margin-bottom: 3rem;
}

.counters-title h2 {
    font-size: clamp(1.5rem, -0.125rem + 3vw, 2.5rem);
    color: #333;
    font-weight: 700;
}

.value-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.value-item h3 {
    font-size: clamp(1.2rem, -0.125rem + 3vw, 1.5rem);
    color: #f44336;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {   
    .value-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .value-item {
        padding: 1.5rem;
    }
}
@media (max-width: 560px) {
	 .value-container {
        grid-template-columns: 1fr
	 }
}
@media (max-width: 480px) {
    .values-section {
        padding: 2rem 1rem;
    }   
}
/*what-we-do*/
#what-container{
	padding: 3rem 3rem;
}
.bookstore-content {
  position: relative;
  min-height: 100vh;
  column-gap: 3rem;
  padding-block: min(20vh, 3rem);
  padding-inline: 2.3em;
  align-items: center;
  justify-content: center;
  background: #707a5f;
  overflow: hidden;
}
.grid__item a{
	text-decoration: none;
	color: #000;
}
/* Grid item */


@media screen and (min-width: 960px) {
  .bookstore-content {
    display: flex;
    padding-inline: 0;
  }
}

.bookstore-content .content {
  width: 100%;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 3em;
}

@media screen and (min-width: 960px) {
  .bookstore-content .content {
    width: 40%;
    padding-left: 5em;
    margin-bottom: 0;
  }
}

.bookstore-content h2 {
  letter-spacing: 0.8px;
  font-weight: 700;
  font-size: clamp(1.5rem, -0.125rem + 3vw, 2.5rem);
  line-height: 1.2;
}

.bookstore-content p {
  font-size: clamp(1.1rem, -0.125rem + 3vw, 1.2rem);
  line-height: 1.8;
  margin-inline: auto;
  margin-top: 10px;
}

.bookstore-content .counter {
  font-weight: 400;
  display: flex;
  align-items: center;
  margin: 2.5em 0 2em 0;
  gap: 2em;
}

.bookstore-content .counter i {
  margin-right: 10px;
}

.bookstore-content .counter span {
  display: block;
  text-transform: capitalize;
  font-size: 0.8rem;
  color: #c1c1c1;
  margin-top: 3px;
}

.bookstore-content .btn {
  background-color: #d51a6d;
  border: none;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  border-radius: 3.125rem;
  transition: 0.3s ease-in;
}

.bookstore-content .btn i {
  margin-left: 15px;
}

.bookstore-content .btn:hover {
  background-color: #ae0a53;
}

/* Swiper Container */
.book-swiper-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  right: 0px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .book-swiper-container {
    width: 60%;
    right: -60px;
  }
}

.book-swiper {
  position: relative;
  width: 100%;
  z-index: 2;
}

.book-swiper .swiper-slide {
  width: 10rem;
  height: 24rem;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  position: relative;
  border-radius: 12px;
  box-shadow: -1px 5px 15px #0000001f;
  text-align: center;
  opacity: 0.4;
  transition: opacity 0.4s ease-in;
}

.book-swiper .swiper-slide span {
  display: inline-block;
  background: #fff;
  border-radius: 0 50px 50px 0;
  text-transform: capitalize;
  padding: 12px 20px;
  letter-spacing: 0.5px;
  font-weight: 500;
  position: absolute;
  bottom: 1rem;
  left: 0;
  color: #000;

}

.book-swiper .swiper-slide h3 {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 0.625rem;
  letter-spacing: 0.8px;
  position: relative;
  word-wrap: break-word;
}

@media screen and (min-width: 800px) {
  .book-swiper .swiper-slide h3 {
    font-size: 1.8rem;
  }
}

.book-swiper .swiper-slide p {
  color: #fff;
  line-height: 1.6;
  font-size: 0.8rem;
}

.book-swiper .slide-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -10px);
  width: 90%;
}

/* Individual Slide Backgrounds */
.book-swiper .swiper-slide--one {
  background: linear-gradient(to bottom, #2c536400, #203a4303, #0f2027cc),
    url("../img/slider/1.webp") no-repeat center / cover;
}
.book-swiper .swiper-slide--one h3 {
  font-family: "Courgette", cursive;
  font-weight: 300;
}

.book-swiper .swiper-slide--two {
  background: linear-gradient(to bottom, #2c536400, #203a4303, #0f2027cc),
    url("../img/slider/2.webp") no-repeat center / cover;
}
.book-swiper .swiper-slide--two h3 {
  font-family: "Noto Serif Vithkuqi", serif;
  font-weight: 300;
}

.book-swiper .swiper-slide--three {
  background: url("../img/slider/5.webp") no-repeat center / cover;
}

.book-swiper .swiper-slide--four {
  background: url("../img/slider/3.webp") no-repeat center / cover;
}

.book-swiper .swiper-slide--five {
  background: url("../img/slider/4.webp") no-repeat center / cover;
}

.book-swiper .swiper-slide--six {
  background: linear-gradient(to bottom, #2c536400, #203a4303, #0f2027cc),
    url("../img/slider/7.webp") no-repeat center / cover;
}
.book-swiper .swiper-slide--six h3 {
  font-family: "Chonburi", cursive;
  font-weight: 400;
}

/* Active Slide */
.book-swiper .swiper-slide-active {
  display: grid;
  opacity: 1;
}

/* Pagination */
.book-swiper .swiper-pagination {
  position: relative;
  bottom: -0.313rem;
  text-align: center;
  margin-top: 35px;
  width: auto;
}

.book-swiper .swiper-pagination-bullet {
  border-radius: 0;
  width: 1.5rem;
  height: 0.25rem;
  background: #fff;
}

.book-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

/*portfolio*/
.portfolio-container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 36.25rem;
  background-color: #f2eeeb;
  z-index: 1;
  overflow: hidden;
}
.category-title {
    font-size: 24px;
    padding: 6px 0;
    padding-left: 1.25rem;
    border-left: 3px solid #f44336;
    line-height: 1.15;
    display: inline-block;
    vertical-align: top;
    margin: 0 auto;
    text-transform: uppercase;
}

.sliders-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.ms--images {
  position: relative;
  overflow: hidden;
}
.ms--images.ms-container--horizontal {
  width: 100%;
  height: 400px;
  max-width: 100%;
}
.ms--images.ms-container--horizontal .ms-track {
  left: calc(50% - 350px);
}
.ms--images.ms-container--horizontal .ms-slide {
  display: inline-flex;
}
.ms--images .ms-track {
  display: flex;
  position: absolute;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.ms--images .ms-slide {
  align-items: center;
  justify-content: center;
  width: 700px;
  height: 400px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.ms--images {
  left: calc(50% - 280px);
}
.ms--images.ms-container--horizontal .ms-track {
  left: -70px;
}

.ms--images .ms-slide__image-container {
  width: 80%;
  height: 80%;
  background-color: rgba(255, 255, 255, 1);
  overflow: hidden;
}
.ms--images .ms-slide__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border: 1.5rem solid #fff;
  cursor: pointer;
}

.ms--numbers {
  position: relative;
  overflow: hidden;
}
.ms--numbers.ms-container--horizontal {
  width: 240px;
  height: 240px;
  max-width: 100%;
}
.ms--numbers.ms-container--horizontal .ms-track {
  left: calc(50% - 120px);
}
.ms--numbers.ms-container--horizontal .ms-slide {
  display: inline-flex;
}
.ms--numbers .ms-track {
  display: flex;
  position: absolute;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.ms--numbers .ms-slide {
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.ms--numbers {
  position: absolute;
  left: calc(50% - 23.75rem);
  top: calc(50% - 20rem);
  z-index: -1;
  pointer-events: none;
}
.ms--numbers .ms-slide {
  font-size: 9rem;
  position: relative;
  z-index: -1;
  font-weight: 900;
  color: #f44336;
}

.ms--titles {
  position: relative;
  overflow: hidden;
}
.ms--titles.ms-container--vertical {
  width: 400px;
  height: 170px;
  max-height: 100%;
}
.ms--titles.ms-container--vertical .ms-track {
  flex-direction: column;
  top: calc(50% - 85px);
}
.ms--titles.ms-container--vertical.ms-container--reverse .ms-track {
  flex-direction: column-reverse;
  top: auto;
  bottom: calc(50% - 85px);
}
.ms--titles.ms-container--vertical .ms-slide {
  display: flex;
}
.ms--titles .ms-track {
  display: flex;
  position: absolute;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.ms--titles .ms-slide {
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 170px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.ms--titles {
  position: absolute;
  left: calc(50% - 370px);
  bottom: calc(50% - 18rem);
  z-index: 1;
  pointer-events: none;
}
.ms--titles .ms-track {
  white-space: normal;
}
.ms--titles .ms-slide {
  font-size: 3.3rem;
  font-weight: 600;
}
.ms--titles .ms-slide h3 {
  margin: 0;
  
}

.ms--links {
  position: relative;
  overflow: hidden;
}
.ms--links.ms-container--vertical {
  width: 120px;
  height: 60px;
  max-height: 100%;
}
.ms--links.ms-container--vertical .ms-track {
  flex-direction: column;
  top: calc(50% - 30px);
}
.ms--links.ms-container--vertical .ms-slide {
  display: flex;
}
.ms--links .ms-track {
  display: flex;
  position: absolute;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.ms--links .ms-slide {
  align-items: center;
  justify-content: center;
  width: 123px;
  height: 60px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.category-title{
	text-align:center;
}

.ms--links {
  position: absolute;
  left: calc(50% - 450px);
  top: calc(50% + 95px);
  z-index: 1;
}
.ms--links .ms-track {
  white-space: normal;
}
.ms--links .ms-slide__link {
  font-weight: 600;
  padding: 5px 0 8px;
  border-bottom: 2px solid #ff4436;
  background: #fff;
  color: #ff4436;
  cursor: pointer;
  padding: 0.5rem;
  border-radius:50px;
  text-decoration: none;
}

.pagination {
  display: flex;
  position: absolute;
  left: calc(50% - 420px);
  top: calc(100%);
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}
.pagination__button {
  display: inline-block;
  position: relative;
  width: 36px;
  height: 20px;
  margin: 0 5px;
  cursor: pointer;
}
.pagination__button:before, .pagination__button:after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  width: 100%;
  box-shadow: 0 1px 0 #0B0D14;
}
.pagination__button:before {
  height: 2px;
  background-color: #6A3836;
}
.pagination__button:after {
  height: 3px;
  background-color: #DC4540;
  opacity: 0;
  transition: 0.5s opacity;
}

.pagination__item--active .pagination__button:after {
  opacity: 1;
}

@media screen and (max-width: 860px) {
  .ms--numbers {
    left: calc(50% - 120px);
  }

  .ms--titles {
    left: calc(50% - 200px);   
    text-align: center;
  }

  .ms--links {
    left: calc(50% - 60px);
    top: calc(50% + 80px);
  }

  .pagination {
    left: 50%;
    top: calc(100% - 50px);
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 600px) {
  .ms--images {
    overflow: visible;
  }
}
@media screen and (max-width: 400px) {
  .ms--titles .ms-slide {
    transform: scale(0.8);
  }
}

/*faq*/
  .faq-container {
		max-width: 1300px;
		margin: 0 auto;
		padding: 20px;
	}

	.faq-title {
		text-align: center;
		margin-bottom: 3rem;
		font-size: clamp(1.5rem, -0.125rem + 3vw, 2.5rem);
		color: #333;
	}

	.faq-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.accordion {
		background-color: white;
		border-radius: 8px;
		box-shadow: -1px 1px 0px rgba(0, 0, 0, 0.1);
		margin-bottom: 15px;
		overflow: hidden;
	}

	.accordion-header {
		padding: 1.3rem;
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: clamp(1rem, -0.125rem + 3vw, 1.1rem);      
		color: #450000;
		background-color: #f9f9f9;
		transition: background-color 0.3s ease;
	}

	.accordion-header:hover {
		background-color: #e0e0e0;
	}

	.accordion-content {
		max-height: 0;
		overflow: hidden;
		padding: 0 15px;
		transition: max-height 0.3s ease-out, padding 0.3s ease-out;
		background-color: #fff;
	}

	.accordion-content p {
		padding: 0 0 1rem 0;
		color: #000;
	}

	.accordion.active .accordion-content {
		max-height: 500px; /* Increased to accommodate dynamic content */
		padding: 15px;
	}

	.accordion-icon {
		font-size: 0.8rem;
		transition: transform 0.3s ease-in-out;
		transform: rotate(0deg);
		display: inline-flex; /* Ensures consistent rendering */
		align-items: center;
		justify-content: center;
		width: 24px; /* Fixed size for smoother animation */
		height: 24px;
	}

	.accordion.active .accordion-icon {
		transform: rotate(225deg);
	}

	@media (max-width: 768px) {
		.faq-grid {
			grid-template-columns: 1fr;
		}
		#what-container{
	padding: 0.5rem 0.5rem;}
}
	}
	/*contact*/
	#contact-wrapper{
		padding: 3.5rem 0 3rem 0;
	}
    .contact-wrapper {
      display: flex;
	  align-items: center;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
      gap: 40px;
    }
	
	.contact-form{
		max-width: 760px;
		width:100%;
		margin: 3rem auto 3rem auto;
	}

    .left-contact, .right-form {
      flex: 1;
      /*min-width: 300px;*/
    }

    .left-contact h2 {
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

    .left-contact h3 {
      font-size: clamp(1rem, 0.0625rem + 5vw, 2rem);
      font-weight: 500;
      margin-bottom: 30px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
    }

    .contact-item i {
      font-size: 1.5rem;
      background: #3d0a00;
      color: #fff;
      border-radius: 50%;
      padding: 15px;
      margin-right: 15px;
      border: 2px dashed #ccc;
	  width: 3.5rem;
		height: 3.5rem;
		display: flex;
		align-items: center;
		justify-content: center;

	}
	.contact-item a{
		text-decoration: none;
		color: #000;
	}
    .contact-item div {
      line-height: 2;
    }

    .contact-item div span {
      display: block;
    }

    .right-form h2 {
      font-size: clamp(1rem, 0.0625rem + 5vw, 2rem);
      margin-bottom: 10px;
    }

    .right-form p {
      margin-bottom: 30px;
      color: #333;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    input, textarea {
      padding: 1.3rem;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 1rem;
	  width: 100%;
    }

    textarea {
      resize: vertical;
      min-height: 150px;
	  border-radius: 15px;
    }

    .form-row {
      display: flex;
      gap: 20px;
    }

    .form-row > div {
      flex: 1;
    }

    button {
      background-color: #3d0a00;
      color: #fff;
      padding: 14px 24px;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      cursor: pointer;
      align-self: center;
    }

	input, textarea {
		border: 2px solid #ccc;
		transition: border 0.3s ease;
	}

	input.success, textarea.success {
		border-color: #28a745;
	}

	input.error, textarea.error {
		border-color: #dc3545;
	}

input:focus, textarea:focus {
    outline: none;
    border-color: #007bff;
}

.form-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

#formStatus {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    min-height: 1.5em;
}

.loader-icon {
  display: none;
  width: 16px;
  height: 16px; 
  border: 2px solid #fff;
  border-top: 2px solid #007bff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  visibility: hidden;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.success-check {
    color: #28a745;
}

@media (max-width: 768px) {
  .contact-wrapper {
	flex-direction: column;
	padding: 1.2rem 0;
	flex-wrap: nowrap;
  }

  .left-contact, .right-form {
	border-radius: 20px;
	border: 1px solid #ddd;
	padding: 0.8rem;
	background-color: #fff;
	width: 100%;
  }

  .form-row {
	flex-direction: column;
  }

  form button {
	width: 100%;
	text-align: center;
  }
}
	
/*Process*/
#process{
    padding: 2rem 0 2rem 0;
    scroll-margin-top: 6rem;
    position: relative;
}

.process-wrapper {
	margin: auto;
	max-width: 1400px;
}

#progress-bar-container {
	position: relative;
	width: 90%;
	margin: auto;
	height: 100px;
	margin-top: 65px;
	margin-bottom: 75px;
	z-index: 1;
}

#progress-bar-container ul {
	padding: 0;
	margin: 0;
	padding-top: 15px;
	z-index: 9999;
	position: absolute;
	width: 100%;
	margin-top: -40px
}

#progress-bar-container li:before {
	content: " ";
	display: block;	
	margin: auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;	
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

/*#progress-bar-container li.active:before,
#progress-bar-container li:hover:before {
	/*border: solid 2px #fff;*/
	/*background: linear-gradient(to right, #fd746c   0%, #734b6d 100%);
}*/

#progress-bar-container li {
	list-style: none;
	float: left;
	width: 16.66%;
	text-align: center;
	color: #aaa;
	text-transform: uppercase;
	font-size: 11px;
	cursor: pointer;
	font-weight: 700;
	transition: all ease 0.2s;
	vertical-align: bottom;
	height: 60px;
	top: 64px;
	position: relative;
}

#progress-bar-container li .step-inner {
	font-family: 'comfortaa';
	position: absolute;
	width: 100%;
	bottom: 0;
	font-size: 0.75rem;
	top: 60px;
	word-wrap: break-word
}

#progress-bar-container li.active,
#progress-bar-container li:hover {
	color: #000 ;
}

#progress-bar-container li:after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	background: #706f6f;
	margin: auto;
	border: solid 7px #fff;
	border-radius: 50%;
	margin-top: -30px;
	box-shadow: 0 2px 13px -1px rgba(0, 0, 0, 0.3);
	-webkit-transition: all ease 0.2s;
	-moz-transition: all ease 0.2s;
	-ms-transition: all ease 0.2s;
	-o-transition: all ease 0.2s;
	transition: all ease 0.2s;
}

#progress-bar-container li:hover:after {
	background: #555;
}

#progress-bar-container li.active:after {
	background: #00b32d;
}

#progress-bar-container #line {
	width: 84%;
	margin: auto;
	background: #706f6f;
	height: 6px;
	position: absolute;
	left: 8%;
	top: 53px;
	z-index: 1;
	border-radius: 50px;
	-webkit-transition: all ease 0.9s;	
	-moz-transition: all ease 0.9s;
	-ms-transition: all ease 0.9s;
	-o-ms-transition: all ease 0.9s;
	transition: all ease 0.9s;
}

#progress-bar-container #line-progress {
	content: " ";
	width: 3%;
	height: 100%;
	background: #00b300;
	background: linear-gradient(to right, #f58e3a 0%, #d0d336 100%);
	position: absolute;
	z-index: 2;
	border: 1px dashed gray;
	border-radius: 50px;
	-webkit-transition: all ease 0.9s;	
	-moz-transition: all ease 0.9s;
	-ms-transition: all ease 0.9s;
	-o-ms-transition: all ease 0.9s;
	transition: all ease 0.9s;	
}

.section-content img {
	max-width: 100%;
	height:100%;
	max-height:18.75rem;
}

.hr1{
	padding-top: 5rem;
	padding-bottom: 1.5rem;
}

.hr1:after{
	content: "";
    display: flex;
    border-top: double #42275a;      
    width: 20rem;
    align-items: center;
    justify-content: center;
    margin: 0.8rem auto;
}

#progress-content-section {
	width: 90%;
	margin: auto;
	background: #fefefe;	
	border-radius: 12px;	
}

#progress-content-section .section-content {
	padding: 30px 40px;
	text-align: center;
	
}

#progress-content-section .section-content h2 {
	font-size: 1rem;	
	color:  #734b6d;
	letter-spacing: 1px;
}

#progress-content-section .section-content p {
	font-size: 1.2rem;
	line-height: 1.5;
	color: #777;
    text-align: center;
    max-width: 960px;
}

#progress-content-section .section-content {
	display: none;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(15px);
	animation: none;
}

#progress-content-section .section-content.active {
  display: flex;
  flex-direction: column;
  animation: FadeInUp 700ms ease forwards;
  opacity: 1;
}

@keyframes FadeInUp {
	0% {
		transform: translateY(15px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		opacity: 1;
	}
}


@media (max-width: 768px) {
	#progress-content-section .section-content {
		flex-direction: column;
		text-align: center;
		padding: 1rem;
	}
}

.section-content img {
	flex: 1 1 300px;
	width: 100%;
	max-width: 400px;
	height: auto;
	object-fit: contain;
}

#progress-bar-container li:after:active {
	color: #fd746c;
}

.p-numbers{
	position: absolute;
    bottom: 70px;    
    width: 100%;
	font-size: 1rem;
}

.section-content img {
	flex: 1 1 300px;
	width: 100%;
	max-width: 400px;
	height: auto;
	object-fit: contain;
}

/*footer*/
.footer__content-middle {
	max-width: 1200px;
	margin: 0 auto;
	font-size: 14px;
	color: #666;
}

.grid.dt-sc-column.four-column.page-width {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: left;
}
/*Brands*/
#brand-logos {
   padding: 3rem 0;
}
.brand-text{
	font-size: clamp(1rem, 0.8214rem + 0.8929vw, 1.1rem);
	letter-spacing: 1px;
	line-height: 2;
}
.brand-heading{
	margin: 0 0 2rem 0;
	text-align: center;
}

.brand-swiper {
   padding: 3rem 0 !important;
   background: transparent;
}

.brand-swiper .swiper-slide {
   width: auto !important;
   display: flex;
   justify-content: center;
   align-items: center;
}

.brand-swiper img {
   height: 180px;
   width: auto;
   object-fit: contain;
}

.swiper {
	padding: 3rem;
}

.brand-swiper::before,
.brand-swiper::after {
   content: '';
   position: absolute;
   top: 0;
   width: 100px;
   height: 100%;
   z-index: 2;
   pointer-events: none;
}

.brand-swiper::before {
   left: 0;
   background: linear-gradient(to left, rgba(255,255,255,0), #f2eeeb);
}

.brand-swiper::after {
   right: 0;
   background: linear-gradient(to right, rgba(255, 255, 255, 0), #f2eeeb);
}

.brand-swiper .swiper-wrapper {
   transition-timing-function: linear !important;
}
/* Lightbox Styles */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

.lightbox-img {
	max-width: 90%;
	max-height: 80%;
	object-fit: contain;
}

.lightbox-close {
	position: absolute;
	top: 1.5625rem;
	right: 2.25rem;
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
}

.lightbox-prev, .lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);	
	font-size: 1rem;
    cursor: pointer;
    padding: 10px;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
	background: #fff;
	color: #f44336;
	border-radius: 50px;
}

.lightbox-prev {
	left: 20px;
}

.lightbox-next {
	right: 20px;
}

.error-message {
	display: none;
	text-align: center;
	color: #ff4436;
	font-size: 1.2rem;
	padding: 20px;
}

.address, .address-phone, .address-email{
	display: flex;
	align-items: center;
	font-size: 1rem;
}

.address i, .address-phone i, .address-email i {
	margin-right: 10px;
	color: #666;
}

.address-phone a, .address-email a {
	color: #666;
	text-decoration: none;
}

.address-phone a:hover, .address-email a:hover {
	text-decoration: underline;
}
.links-column p{
	margin: 1rem 0 0 2rem;
    color: #fff;
    line-height: 2;
	letter-spacing: 1px;
	font-weight: 400;
}

.links-column ul li a{
	text-decoration: none;
	color: #fff;
}

.links-column h3{
	color: #fff;	
}

.widget-head {
    margin: 0 0 1.5rem 2rem;
    padding-bottom: 20px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #F39F5F 4.85%, rgba(201, 203, 223, 0) 96.39%);
    border-bottom: 2px solid transparent;
    border-image-slice: 2;
    display: inline-block;
}

#footer{
	padding: 3rem 0 0 0;
}

.footer {
	background-color: #2b2b2b;
	background-image: url(../img/body/body-bg.png);
	padding: 20px 40px;
	text-align: center;
}

#footer-year{
  display: flex;  
  color: #330202; 
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;  
  margin: 0 auto;
}

.social_icons{
	display: flex;
	align-items: center;
	justify-content: center;
}

.social_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    font-size: 24px;
    color: #fff;
    background-color: #333;
    border-radius: 50%;  
}

.social_button.facebook {
    background-color: #1877F2;
}

.social_button.twitter {
    background-color: #1DA1F2;
}

.social_button.instagram {
    background-color: rgb(228, 64, 95); 
}

.social_button.linkedin {
    background-color: rgb(10, 102, 194);
}

.footer-block__heading {
font-size: 14px;
color: #666;
margin-right: 10px;
font-weight: normal;
}

.footer__list-social {
display: flex;
list-style: none;
padding: 0;
margin: 0;
}

.list-social__item {
	display: inline-block;
margin: 0 5px;
}

.list-social__item::before{
	content:"" !important;
}

.list-social__link {
color: #fff;
background-color: #5a6f47;
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
}

.list-social__link i {
font-size: 14px;
}

.footer-block__heading {
	font-size: 1.2rem;
	color: #666;            
	font-weight: normal;
	margin:0 1rem 0 0;
}

.footer__list-social {
	display: flex;
	list-style: none;
	padding: 0;
}

.list-social__item {
	margin: 0 5px;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top .arrow {
  position: absolute;
  font-size: 1rem;
  color: #333;
  z-index: 2;
}

.progress-circle {
  transform: rotate(-90deg);
  position: absolute;
}

.progress-circle circle {
  fill: none;
  stroke-width: 4;
}

.progress-circle .bg {
  stroke: #eee;
}

.progress-circle .progress {
  stroke: #ff4848;
  stroke-dasharray: 163.36; /* 2 * PI * r (2 * π * 26) */
  stroke-dashoffset: 163.36;
  transition: stroke-dashoffset 0.2s ease;
}

.working-hours{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 1rem;
}

.visually-hidden{
 display: none;
}

.working-hours h3 {
	font-size: 1.5rem;
	color: #fff;	
	font-weight: normal;
}

.working-hours ul {
	list-style-type: none;
}

.working-hours ul li {
	margin-bottom: 1rem;
	font-size: 14px;
	color: #fff;
}

.working-hours ul li::before {
    content: "\f111";
    font-family: FontAwesome;
    position: relative;
    padding-right: 15px;
    font-size: 9px;
    opacity: .6;
}
}

/* Responsive adjustments */
@media (max-width: 1024px) {
.features-container {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, auto);
}

	/* Vertical border between left and right columns */
	.feature-item:nth-child(odd)::after {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		height: 40px;
		width: 1px;
		background-color: #ccc;
	}

	/* Remove border for items in the last column */
	.feature-item:nth-child(even)::after {
		display: none;
	}

	/* Horizontal border between top and bottom rows */
	.feature-item:nth-child(1)::before,
	.feature-item:nth-child(2)::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 80%;
		height: 1px;
		background-color: #ccc;
	}
	
	.links-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.grid.dt-sc-column.four-column.page-width {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.tablink {
		flex: 1 0 33.33%;
	}

	.tablink:nth-child(3n)::after {
		display: none;
	}    
}

@media (max-width: 600px) {
	.features-container {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(4, auto);
		padding: 0 1.5rem;
	}

	/* Remove all vertical borders */
	.feature-item:not(:last-child)::after,
	.feature-item:nth-child(odd)::after,
	.feature-item:nth-child(even)::after {
		display: none;
	}
	/* Add horizontal borders between items, except the last one */
	.feature-item:not(:last-child)::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 80%;
		height: 1px;
		background-color: #ccc;
	}

	.feature-item {
		justify-content: flex-start;
		text-align: center;
		gap: 1rem;
	}

	.feature-item i {
		margin-right: 0;
		margin-bottom: 10px;
	}

	.feature-text {
		display: flex;
		flex-direction: column;
		align-items: flex-start;                
	}
	.links-container {
		grid-template-columns: 1fr;
		
	}

	.grid.dt-sc-column.four-column.page-width {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.subscribe {
		text-align: center;
	}

	.subscribe input {
		width: 80%;
		margin-bottom: 10px;
	}

	.address, .address-phone, .address-email, .social_icons {
		justify-content: center;
	}

	.social_icons {
		align-items: center;
	}
	
	.tablinks-container {
		display: none;
	}

	.tablinks-dropdown {
		display: block;
	}
}

@media (max-width: 1000px) {
  .slide-content {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .slide-content-cta {
    background-color: rgba(255, 255, 255, 0.3);
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}

@media (max-width: 992px) {	

    .about-us {
        display: flex;
		flex-direction: column;
        padding: 1.5rem;
    }

    .about-text {
        padding: 0 0 40px;
    }

    .about-image {
        float: left;
        width: 100%;       
        margin: 0 auto;
    }


@media (max-width: 920px) {

	.pagination-container {
      display: none;
  }
	.pagination-item {
    width: 0.5rem;
    height: 0.5rem;
    background-color: rgba(208, 206, 204, 0.32);
    border-radius: 50%;
    padding: 0.45rem;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: center;
    color: #fff;
    font-family: "Montserrat", sans-serif;
  }
	.pagination-item + .pagination-item {
    margin-top: 0;
    margin-left: 0.5rem;
    border-top: none;
  }
	.pagination-item.active {
    background-color: #3b3e45;
    font-weight: 700;
    width: auto;
  }
  .pagination-item:not(.active) {
    background-color: rgba(208, 206, 204, 0.32);
  }
    .pagination-item:not(.active):hover {
    background-color: #fff;
    color: #000;
    width: auto;
  }
  .pagination-item.active:after {
    content: none;
  }
}

@media (max-width: 630px) {
  .controls-container {
    display: none !important; /* Hide controls in mobile view */
  }
}
@media (max-width: 768px){
	.controls-container {
		display: none;
	}
	
	.pagination-container{
		display: flex !important;
    flex-direction: row;
    gap: 0.5rem;
    bottom: 10px;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
	right: auto;
	}
	 .features-section{
	  padding: 1rem;
  }

  
}

/* Large Desktop */
@media (min-width: 1400px) {
    .quote-container {
        gap: 80px;
    }

}

/* Desktop */
@media (max-width: 1200px) {
    .quote-container {
        gap: 50px;
    }

}

/* Tablet */
@media (max-width: 992px) {
    .quote-section {
        padding: 60px 0;
    }
    
    .quote-container {
        gap: 40px;
    }    

    .mt-button {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}

/* Mobile - Stack vertically */
@media (max-width: 768px) {
    .quote-section {
        padding: 50px 0;
    }
    
    .quote-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .quote-image {
        max-width: 400px;
        order: 1;
    }
    
    .quote-content {
        order: 2;
        padding: 20px 0;
        align-items: center;
    }

    .mt-button {
        padding: 14px 30px;
        font-size: 1rem;
        align-self: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .quote-section {
        padding: 40px 0;
    }
    
    .quote-container {
        gap: 30px;
        padding: 0 15px;
    }
    
    .quote-image {
        max-width: 100%;
    }  
    
    .mt-button {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 180px;
    }

}


/* Responsive Design */
@media (max-width: 768px) {
   .nav-menu {
       display: none;
   }

   .mobile-toggle {
       display: flex;
   }

   .header {
       padding: 15px 0;
   }

   .header.scrolled {
       padding: 12px 0;
   }

}

@media (max-width: 480px) {
   .mobile-nav-link {
       font-size: 2rem;
   }
   
   .mobile-nav-item {
       margin: 1.5rem 0;
   }

   .mobile-close {
       top: 20px;
       right: 20px;
       width: 45px;
       height: 45px;
   }
}

/* Parallax effect for background */
@media (min-width: 769px) {
    .breadcrumb-hero {
        background-attachment: fixed;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-hero {
        height: 50vh;
        min-height: 300px;
        background-attachment: scroll;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .breadcrumb-list {
        padding: 12px 20px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .breadcrumb-link {
        font-size: 0.9rem;
        padding: 6px 12px;
        gap: 6px;
    }
    
    .breadcrumb-current {
        font-size: 0.9rem;
        padding: 6px 16px;
    }

}

@media (max-width: 480px) {
    .breadcrumb-hero {
        height: 40vh;
        min-height: 250px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .breadcrumb-wrapper {
        gap: 15px;
    }
    
    .breadcrumb-list {
        padding: 10px 16px;
        flex-direction: column;
        gap: 12px;
    }
    
    .breadcrumb-separator {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .breadcrumb-link {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
    
    .breadcrumb-current {
        font-size: 0.85rem;
        padding: 5px 12px;
    }
    
    .breadcrumb-home-icon {
        width: 16px;
        height: 16px;
    }
	.contact-section {
		padding: 0;
	}
	.advantages-container {
		display: flex;
		flex-direction: column;
	}
}
/*Media queies for slider*/
@media screen and (max-width: 678px) {
    .slider .slider-list .slider-item .item-content{
        padding-right: 0;
    }
    .slider .slider-list .slider-item .item-content .slider-title{
        font-size: 50px;
    }
}

/* Responsive fix for small screens */
@media screen and (max-width: 960px) {
	.slider-item-content {
        position: absolute;
        left: 50%;
        top: 50%;
    }
}
@media screen and (max-width: 768px) {
   .slider-item-content {
        position: absolute;
        left: 50%;
        top: 50%;
    }

  .slider-buttons {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2rem;
  }
}

/**/

/* Responsive Design */
@media (max-width: 1024px) {
	.orb {
		width: calc(33.333% - 15px);
		min-width: 200px;
	}
	.counters-title h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
	.counters-section { padding: 50px 15px; }
	.orb {
		width: calc(50% - 10px);
		min-height: 200px;
		padding: 25px 15px;
		min-width: 0;
	}
	.orb_value { font-size: 2.2rem; }
	.orb_icon { font-size: 2.4rem; }
	.counters-title h2 { font-size: 2rem; }
	.counters-title p { font-size: 1rem; }
	.charts_orb { gap: 15px; }
}

@media (max-width: 520px) {
	.orb {
		width: 100%;
		max-width: 300px;
		min-height: 180px;
		padding: 20px 15px;
	}
	.orb_icon { font-size: 1.5rem; }
	.orb_value { font-size: 2rem; }
	.orb_label { font-size: 0.85rem; letter-spacing: 1px; }
	.counters-title { margin-bottom: 40px; }
	.counters-title h2 { font-size: 1.8rem; }
	.charts_orb { gap: 20px; }
    .gallery .gallery-item{
        width: 100%;
    }
}
		
/* Responsive Design */
@media (max-width: 1024px) {
	.charts_orb {
		grid-template-columns: repeat(3, 1fr);
		gap: 18px;
	}
	
	.counters-title h2 {
		font-size: 2.2rem;
	}
}


@media (max-width: 768px) {
	.counters-section {
		padding: 50px 15px;
	}
	
	.charts_orb {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.orb {
		min-height: 200px;
		padding: 25px 15px;
		max-width: none;
	}
	
	.orb_value {
		font-size: 2.2rem;
	}
	
	.orb_icon {
		font-size: 2.4rem;
	}
	
	.counters-title h2 {
		font-size: 2rem;
	}
	
	.counters-title p {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {

	.main-title {
		font-size: 28px;
	}

	.images-grid {
		grid-template-columns: 1fr;
	}

	.image-item {
		display: none;
	}

	.image-item.large {
		display: block;
		grid-column: 1;
	}

	.image-item.large img {
		height: auto;
	}

	.counters-section {
		padding: 0
	}

	.counters-title h2 {
		font-size: 2rem;
	}	
}
/* Parallax Section */