/* Default styles for larger screens */
/* GLightbox navigation styles */
.glightbox-container .gclose,
.glightbox-container .gnext,
.glightbox-container .gprev {
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    position: absolute;
    transition: background-color 0.15s ease;
    padding: 10px;
}

.glightbox-container .gnext,
.glightbox-container .gprev {
    height: 50px;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.glightbox-container .gprev {
    left: 10px;
}

.glightbox-container .gnext {
    right: 10px;
}

.glightbox-container .gclose {
    right: 10px;
    top: 10px;
    height: 40px;
    width: 40px;
}

.glightbox-container .gnext svg,
.glightbox-container .gprev svg,
.glightbox-container .gclose svg {
    fill: #FFFFFF;
    width: 100%;
    height: 100%;
}

.glightbox-container .gclose:hover,
.glightbox-container .gnext:hover,
.glightbox-container .gprev:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .glightbox-container .gnext,
    .glightbox-container .gprev {
        height: 45px;
        width: 45px;
    }
    
    .glightbox-container .gprev {
        left: 5px;
    }
    
    .glightbox-container .gnext {
        right: 5px;
    }
    
    .glightbox-container .gclose {
        right: 5px;
        top: 5px;
    }
}
.glightbox-mobile .gprev {
    display: block !important;
    opacity: 1;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    z-index: 2147483647;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.glightbox-mobile .gprev {
    left: 10px;
}

.glightbox-mobile .gnext {
    right: 10px;
}

.glightbox-mobile .gnext svg,
.glightbox-mobile .gprev svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.glightbox-mobile .gclose svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.glightbox-mobile .gclose {
    top: 15px;
    right: 15px;
    position: fixed;
}

/* Default header styles */
.header__topbar {
	padding: 10px 0;
}
.header__topbar .container {
	max-width: 100%;
}
.header__topbar--inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__info {
	display: flex;
	gap: 15px;
}
.header__info--list {
	display: flex;
	align-items: center;
	color: #fff;
}
.header__info--list a:hover {
	color: #fff;
}
.header__social {
	display: flex;
	gap: 15px;
}
.header__social--icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #3b5998; /* Default Facebook color */
	color: white;
}
.header__social {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}
.header__social--list {
  display: inline-block;
}
.header__social--icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.facebook {
  background-color: #3b5998; /* Facebook Original Blue */
  color: white; /* White icon */
}

.instagram {
  background: linear-gradient(45deg, #f58529, #e1306c, #8a3ab9); /* Instagram Gradient */
  color: white; /* White icon */
}

.youtube {
  background-color: #FF0000; /* YouTube Original Red */
  color: white; /* White icon */
}
.header__social--icon:hover {
  transform: scale(1.1);
}
.header__social--icon {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* Banner */
.orbitWrapper {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	border-radius: 0px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	margin-top: 0px;
}
.orbitTrack {
	display: flex;
	transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.orbitSlide {
	flex-shrink: 0;
	width: 100%;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.orbitSlide.active {
	opacity: 1;
	transform: scale(1);
}
.orbitSlide img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	border-radius: 0px;
}
.orbitNav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	padding: 0 15px;
}
.orbitBtn {
	background: rgba(255, 255, 255, 0.7);
	color: #333;
	border: none;
	font-size: 26px;
	padding: 8px 12px;
	cursor: pointer;
	border-radius: 50%;
	transition: background 0.3s ease;
}
.orbitBtn:hover {
	background: rgba(255, 255, 255, 1);
}
.categories__inner{
	padding-top: 50px;
}
/* About Us Page CSS */
.about-wrapper {
	max-width: max-content;
	margin: 60px auto;
	padding: 20px;
}
.about-card {
	display: flex;
	flex-wrap: wrap;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
	overflow: hidden;
}
.about-top-section {
	display: flex;
	flex-wrap: wrap;
}
.left-image {
	flex: 1 1 400px;
	min-height: 350px;
}
.right-content {
	flex: 1 1 600px;
    padding: 40px;
    padding-bottom: 20px;
    padding-top: 0px;
}
.right-content h1 {
	font-size: 35px;
    color: #292826;
    margin-bottom: 10px;
    margin-top: 10px;
    letter-spacing: 1px;
}
.right-content p {
	font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-align: justify;
}	
.lower-content {
	padding: 30px;
    padding-top: 0px;
}	
.lower-content p {
	font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-align: justify;
}	
.highlight {
	background-color: #e7f3ff;
    border-left: 5px solid #f9d342;
    padding: 12px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-style: italic;
    letter-spacing: 1px;
    font-size: 15px;
}
.quote {
	background-color: #fffbe6;
    border-left: 5px solid #292826;
    padding: 15px 20px;
    border-radius: 8px;
    color: #666;
    font-size: 15px;
    letter-spacing: 1px;
    margin: 20px 0;
}
.extra__card{
	margin-bottom: 40px;
}
.button-group {
    display: flex;
    gap: 10px; /* space between buttons */
    margin-top: 0px;
    flex-wrap: wrap; /* optional: makes it responsive */
}
.button-group .widget__form--btn {
    flex: 1; /* optional: equal width buttons */
    min-width: 150px; /* minimum button width */
}
.calculate-btn{
	width: 100%;
    text-align: center;
    margin-top: 2rem;
    font-size: 15px;
    padding: 0px;
}
.calculate-btn:hover {
	background-color: #000;
}
.reset-btn {
    background-color: red;
    color: white;
    border: none;
	width: 100%;
    text-align: center;
    margin-top: 2rem;
    font-size: 15px;
    padding: 0px;
}
.reset-btn:hover {
	background-color: #000;
}
.terms-section ul {
	padding-left: 20px;
    margin-bottom: 20px;
}
.terms-section ul li {
	margin-bottom: 8px;
    line-height: 1.6;
    letter-spacing: 1px;
    font-size: 18px;
    list-style: circle;
}
.terms-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}
.terms-section .text-primary {
    color: #007BFF;
}
.terms-section .text-secondary {
	color: #6c757d;
}
.terms-section .content-box {
	padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}
.terms-section .content-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
.terms-section h1 {
	font-size: 2.5rem;
    font-weight: bold;
}
.terms-section h3 {
	font-size: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.terms-section .highlight-box {
	background: #f8f9fa;
    border-left: 4px solid #f9d342;
    padding: 1rem 1.5rem;
    margin-top: 2rem;
    border-radius: 0.5rem;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 40px;
}
.project__details--section{
	padding-top: 80px;
}
.project__details--content{
	padding-top: 50px;
}
.custom_gallery{
	padding-top: 80px;
	padding-bottom: 80px;
}
/* Container for the charges section */
/* Container for the charges section */
.charges__section {
    margin-bottom: 80px;
}
/* Title for each charges group */
.charges__title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
/* Wrapper for the list */
.charges__list-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
/* Styling for the ul list with 4 items per row */
.charges__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 4 items per row */
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
/* Styling for each list item */
.charges__list-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
/* Hover effect for each list item */
.charges__list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
/* Styling for the icon */
.charges__icon {
    margin-right: 10px;
    color: #3498db; /* Change icon color */
}
/* Styling for the text */
.charges__text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
/* Floating Contact Buttons CSS */
.contact-buttons {
	position: fixed;
	bottom: 50px;
	left: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1000;
}
.contact-buttons a {
	color: white;
	font-size: 15px;
	padding: 10px 10px;
	border-radius: 50px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	text-align: center;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	width: 125px;
	text-decoration: none;
	transition: transform 0.3s ease;
	letter-spacing: 1px;
}
.contact-buttons a.call-button {
	background-color: #802721;
}
.contact-buttons a.whatsapp-button {
	background-color: #25D366;
}
.contact-buttons a i {
	margin-right: 10px;
}
.contact-buttons a:hover {
	transform: scale(0.95);
}
/* Responsive Design */
@media (max-width: 1024px) {
    .charges__list {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row for tablets */
    }
}
/* Scroll to Top Button */
@media (max-width: 768px) {
	/* Email and Phone in one row */
	.header__info {
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
	}
	/* Hide the location on mobile */
	.header__info--list:nth-of-type(3) {
		display: none !important;
	}
	/* Center social icons on mobile */
	.header__social {
		justify-content: center;
		width: 100%;
	}
	/* Make icons smaller on mobile */
	.header__social--icon {
		width: 30px;
		height: 30px;
	}
	/* Stack info in a column */
	.header__info--list {
		margin-bottom: 10px;
	}
	.main__logo--title img {
		width: 120px;
        padding-top: 0px;
        padding-bottom: 0px;
	}
	.offcanvas__header--menu__open {
		display: flex; /* Use flexbox for alignment */
		justify-content: flex-end; /* Push the menu button to the right */
		align-items: center; /* Align items vertically centered */
		width: 100%; /* Ensure it takes full width */
	}
	.offcanvas__header--menu__open--btn {
		background: none;
		border: none;
		cursor: pointer;
	}
	.offcanvas__header--menu__open--svg {
		width: 32px;
		height: 32px;
	}
	.orbitWrapper {
		margin-top: 0px;
	}
	.orbitBtn {
        font-size: 20px;
		padding: 6px 10px;
	}
	.about-card {
		flex-direction: column;
	}
	.left-image {
		min-height: 250px;
	}
	.right-content {
		padding-bottom: 0px;
        padding-left: 25px;
        padding-right: 25px;
        padding-top: 25px;
	}
	.right-content h1 {
		font-size: 25px;
        margin-bottom: 20px;
	}
	.right-content p {
		font-size: 13px;
	}
	.highlight {
		font-size: 13px;
	}
    .quote {
		font-size: 13px;
    }
	.lower-content p {
		font-size: 13px;
	}
	.contact-buttons {
		width: 100%;
		margin: 0;
		padding: 0;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 99;
		display: block;
	}
	.contact-buttons a {
		min-width: auto;
        padding: 10px 12px;
        font-size: 14px;
        float: left;
        width: 50%;
        overflow: hidden;
        text-align: center;
        border-radius: 0;
	}
	#scroll__top {
		position: fixed;
        bottom: 0px;
        right: 0px;
        color: white;
        font-size: 24px;
        padding: 0px;
        cursor: pointer;
        width: 47px;
        height: 47px;
        line-height: 10px;
        z-index: 99999;
        border-radius: 0%;
	}
	.charges__list {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row for smaller devices */
    }
}
@media (max-width: 480px) {
	.orbitWrapper {
		margin-top: 0px;
	}
	.orbitBtn {
		font-size: 18px;
		padding: 5px 8px;
	}
	.orbitNav {
		padding: 0 8px;
	}
	.charges__list {
        grid-template-columns: 1fr; /* 1 item per row on mobile */
    }
}