/* ====================================
   Services Popup Modal - Modern Design
   ==================================== */

/* Service Popup Overlay */
.service-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  animation: fadeIn 0.3s ease-in-out;
}

.service-popup-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Service Popup Modal */
.service-popup-modal {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideUp 0.4s ease-out;
  position: relative;
}

/* Close Button */
.service-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000;
}

.service-popup-close:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Popup Header with Image */
.service-popup-header {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.service-popup-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-popup-overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  box-sizing: border-box;
}

.service-popup-header h2 {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Popup Body */
.service-popup-body {
  padding: 40px;
}

.service-popup-body h3 {
  color: #667eea;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-popup-body p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Service Features List */
.service-features {
  margin: 30px 0;
}

.service-features h4 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  color: #555;
  font-size: 15px;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.service-features li:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #667eea;
  font-size: 12px;
  margin-top: 5px;
}

/* Popup Footer */
.service-popup-footer {
  padding: 30px 40px;
  background: #f8f9fa;
  border-radius: 0 0 15px 15px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.service-popup-footer button {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-contact {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-close-popup {
  background: #e9ecef;
  color: #333;
  border: 1px solid #dee2e6;
}

.btn-close-popup:hover {
  background: #dee2e6;
  color: #000;
}

/* Animation for fade in */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animation for slide up */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Make service items clickable */
.services-two__single {
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-two__single:hover {
  transform: translateY(-10px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-popup-modal {
    width: 95%;
    max-height: 90vh;
  }

  .service-popup-header {
    height: 200px;
  }

  .service-popup-header h2 {
    font-size: 24px;
  }

  .service-popup-body {
    padding: 25px;
  }

  .service-popup-body h3 {
    font-size: 20px;
  }

  .service-popup-footer {
    flex-direction: column;
    padding: 20px 25px;
  }

  .service-popup-footer button {
    width: 100%;
  }
}

/* ====================================
   Testimonial Background Image
   ==================================== */
.aa-testimonial-bg {
  background-image: url(../images/img/feed/bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.aa-testimonial-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1e4e6d; 
    opacity: 0.8; 
}

/* ====================================
   Contact & Services CSS - Modern Design
   ==================================== */

.aa-wrapper {
	min-height: 100%;
	width: 100%;
	background: #f0f4fb;
	overflow-x: hidden;
}
    
.aa-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
    
.aa-header {
	padding: 60px 0 30px;
	text-align: center;
}
    
.aa-header-title {
	font-size: 48px;
	font-weight: 700;
	color: #20506e;
	letter-spacing: 2px;
	position: relative;
	display: inline-block;
}
    
.aa-header-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #d92010, #f92a0b);
	border-radius: 2px;
}
    
.aa-header-subtitle {
	color: #94a3b8;
	font-size: 18px;
	margin-top: 20px;
	font-weight: 300;
}
    
.aa-top-section {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 40px;
	padding: 40px 0;
}
    
@media (max-width: 900px) {
	.aa-top-section {
		grid-template-columns: 1fr;
	}	
}
    
.aa-contact-info {
	background: rgb(255 255 255 / 24%);
	backdrop-filter: none;
	border: none;
	border: 1px solid rgb(255 255 255);
	border-radius: 24px;
	padding: 40px;
	position: relative;
	overflow: hidden;
}
    
.aa-contact-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #d92010, #f92a0b, #d92010);
}
    
.aa-info-title {
	font-size: 28px;
	color: #20506e;
	margin-bottom: 30px;
	font-weight: 600;
	letter-spacing: 1px;
}
    
.aa-info-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 28px;
	border: 1px solid rgb(181 181 181);
	padding: 20px;
	background: rgb(255 255 255 / 48%);
	border-radius: 16px;
	transition: all 0.3s ease;
}
    
.aa-info-item:hover {
	background: rgba(245, 158, 11, 0.1);
	transform: translateX(5px);
}
    
.aa-info-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #d92010, #d97706);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}
    
.aa-info-icon svg {
	width: 24px;
	height: 24px;
	fill: #f3f6fc;
}
    
.aa-info-content h4 {
	color: #20506e;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
    
.aa-info-content p {
	color: #474747;
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: 1px;
}
    
.aa-social-links {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
    
.aa-social-title {
	color: #20506e;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
    
.aa-social-icons {
	display: flex;
	gap: 15px;
}
    
.aa-social-icon {
	width: 45px;
	height: 45px;
	background: #20506e;
	border: 1px solid rgb(121 121 121);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}
    
.aa-social-icon:hover {
	background: linear-gradient(135deg, #d92010, #d97706);
	border-color: transparent;
	transform: translateY(-3px);
}
    
.aa-social-icon i {
	color: #ffffff;
	transition: fill 0.3s ease;
}
    
.aa-social-icon:hover i {
	color: #0f172a;
}
    
.aa-form-section {
	background: rgb(255 255 255 / 24%);
	backdrop-filter: blur(10px);
	border: 1px solid rgb(255 255 255);
	border-radius: 24px;
	padding: 40px;
	position: relative;
	overflow: hidden;
}
    
.aa-form-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #d92010, #f92a0b, #d92010);
}
    
.aa-form-title {
	font-size: 28px;
	color: #20506e;
	margin-bottom: 30px;
	font-weight: 600;
}
    
.aa-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
    
@media (max-width: 600px) {
	.aa-form-row {
		grid-template-columns: 1fr;
	}
}
    
.aa-form-group {
	margin-bottom: 24px;
}
    
.aa-form-label {
	display: block;
	color: #20506e;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
    
.aa-form-input,
.aa-form-textarea,
.aa-form-select {
	width: 100%;
	padding: 16px 20px;
	background: rgb(255 255 255 / 48%);
	border: 1px solid rgb(181 181 181);
	border-radius: 12px;
	color: #474747;
	font-size: 15px;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	letter-spacing: 1px;
}
    
.aa-form-input:focus,
.aa-form-textarea:focus,
.aa-form-select:focus {
	outline: none;
	border-color: #d92010;
	background: rgba(245, 158, 11, 0.05);
	box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}
    
.aa-form-input::placeholder,
.aa-form-textarea::placeholder {
	color: #64748b;
}
    
.aa-form-textarea {
	min-height: 120px;
	resize: vertical;
}
    
.aa-form-select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
}
    
.aa-form-select option {
	background: #1e293b;
	color: #20506e;
}
    
.aa-captcha-section {
	margin-bottom: 24px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}
    
.aa-captcha-label {
	color: #20506e;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
	letter-spacing: 1px;
}
    
.aa-captcha-container {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}
    
.aa-captcha-display {
	padding: 15px 25px;
	background: linear-gradient(135deg, #1e293b, #334155);
	border-radius: 10px;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 8px;
	color: #ffffff;
	user-select: none;
	position: relative;
	overflow: hidden;
}
    
.aa-captcha-display::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
	transform: rotate(-5deg);
}
    
.aa-captcha-refresh {
	width: 45px;
	height: 45px;
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.3);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}
    
.aa-captcha-refresh:hover {
	background: linear-gradient(135deg, #d92010, #d97706);
	border-color: transparent;
	transform: rotate(180deg);
}
    
.aa-captcha-refresh svg {
	width: 20px;
	height: 20px;
	fill: #d92010;
	transition: fill 0.3s ease;
}
    
.aa-captcha-refresh:hover svg {
	fill: #0f172a;
}
    
.aa-captcha-input {
	flex: 1;
	min-width: 150px;
	padding: 14px 18px;
	background: rgb(255 255 255 / 48%);
	border: 1px solid rgb(181 181 181);
	border-radius: 10px;
	color: #20506e;
	font-size: 16px;
	letter-spacing: 4px;
	text-transform: uppercase;
}
    
.aa-captcha-input:focus {
	outline: none;
	border-color: #d92010;
}
    
.aa-submit-btn {
	width: 100%;
	padding: 18px 40px;
	background: linear-gradient(135deg, #d92010, #d97706);
	border: none;
	border-radius: 12px;
	color: #f3f6fc;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
    
.aa-submit-btn::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 ease;
}
    
.aa-submit-btn:hover::before {
	left: 100%;
}
    
.aa-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}
    
.aa-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}
    
.aa-error-message {
	color: #ef4444;
	font-size: 13px;
	margin-top: 8px;
	display: none;
}
    
.aa-error-message.aa-visible {
	display: block;
}
    
.aa-success-message {
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.3);
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	color: #22c55e;
	font-size: 16px;
	margin-top: 20px;
	display: none;
}
    
.aa-success-message.aa-visible {
	display: block;
	animation: aa-fadeIn 0.3s ease;
}
    
@keyframes aa-fadeIn {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}
    
.aa-bottom-section {
	padding: 40px 0;
}
    
.aa-map-container {
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
    
.aa-map-container iframe {
	width: 100%;
	height: 400px;
	border: none;
	display: block;
}
    
.aa-footer {
	margin-top: 60px;
	background: rgb(32 80 110);
}
    
.aa-footer-top {
	padding: 50px 0 40px;
	text-align: center;
	border-bottom: 1px solid rgb(255 255 255 / 56%);
}
    
.aa-footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 15px;
}
    
.aa-footer-logo-icon {
	width: 250px;
	background: #ffffff;
	border-radius: 16px;
	display: flex;
	padding: 10px;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 25px rgb(217 43 15 / 26%);
}
    
.aa-footer-logo-icon img {
	width: 200px;
}
    
.aa-footer-middle {
	padding: 10px 0;
	border-bottom: 1px solid rgb(255 255 255 / 56%);
}
    
.aa-footer-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px 30px;
}
    
.aa-footer-link {
	color: #dcdfe6;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 10px 5px;
	position: relative;
	transition: color 0.3s ease;
}
    
.aa-footer-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #d92010;
	transition: width 0.3s ease;
}
    
.aa-footer-link:hover {
	color: #d92010;
}
    
.aa-footer-link:hover::after {
	width: 100%;
}
    
.aa-footer-bottom {
	padding: 30px 0;
	text-align: center;
}
    
.aa-copyright {
	color: #f0f4fb;
	font-size: 18px;
	letter-spacing: 1px;
}
    
.aa-copyright span {
	color: #f8fafc;
}
    
@media (max-width: 768px) {
	.aa-header-title {
        font-size: 36px;
	}
      
	.aa-contact-info,
	.aa-form-section {
        padding: 30px 20px;
	}
      
	.aa-info-title,
	.aa-form-title {
        font-size: 24px;
	}
	
	.aa-footer {
		margin-top: 60px;
		margin-bottom: 50px;
		background: rgb(32 80 110);
	}
      
	.aa-footer-logo-text {
        font-size: 22px;
	}
      
	.aa-captcha-container {
        flex-direction: column;
        align-items: stretch;
	}
      
	.aa-captcha-display {
        text-align: center;
	}
}

/* ====================================
   Founder Message Section - Modern Design
   ==================================== */

.founder-message-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
	position: relative;
	overflow: hidden;
}

.founder-message-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: rgba(0, 167, 235, 0.08);
	border-radius: 50%;
	z-index: 0;
}

.founder-message-section .container {
	position: relative;
	z-index: 1;
}

/* Image Column */
.founder-image-col {
	margin-bottom: 50px;
}

.founder-image-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 450px;
	animation: slideInLeft 0.8s ease-out;
}

.founder-image {
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	display: block;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.founder-image:hover {
	transform: translateY(-10px);
}

/* Founder Badge */
.founder-badge {
	position: absolute;
	bottom: 30px;
	right: -20px;
	background: white;
	padding: 20px 25px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	animation: slideInRight 0.8s ease-out 0.2s both;
}

.founder-title {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #00a7eb;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 5px;
}

.founder-name {
	font-size: 28px;
	font-weight: 700;
	color: #20506e;
	margin: 0;
	letter-spacing: -0.5px;
}

/* Message Column */
.founder-message-col {
	animation: slideInRight 0.8s ease-out;
}

.founder-content {
	padding: 0 30px;
}

.founder-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: #00a7eb;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 15px;
	padding: 8px 16px;
	background: rgba(0, 167, 235, 0.1);
	border-radius: 20px;
}

.founder-heading {
	font-size: 42px;
	font-weight: 700;
	color: #20506e;
	margin: 20px 0 30px;
	line-height: 1.2;
	letter-spacing: -1px;
}

.founder-message {
	font-size: 16px;
	line-height: 1.8;
	color: #555555;
	margin-bottom: 20px;
	text-align: justify;
	transition: color 0.3s ease;
}

.founder-message:last-child {
	margin-bottom: 40px;
}

/* Founder Signature */
.founder-signature {
	padding-top: 30px;
	border-top: 2px solid rgba(0, 167, 235, 0.3);
	margin-top: 30px;
}

.signature-name {
	font-size: 20px;
	font-weight: 700;
	color: #20506e;
	margin: 0 0 5px;
	letter-spacing: -0.5px;
}

.signature-title {
	font-size: 14px;
	color: #00a7eb;
	font-weight: 600;
	margin: 0;
	letter-spacing: 0.5px;
}

/* Animations */
@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);
	}
}

/* Responsive Design */
@media (max-width: 992px) {
	.founder-message-section {
		padding: 60px 0;
	}

	.founder-content {
		padding: 0;
	}

	.founder-heading {
		font-size: 32px;
		margin: 15px 0 25px;
	}

	.founder-message {
		font-size: 15px;
		line-height: 1.7;
		text-align: left;
	}

	.founder-badge {
		bottom: 20px;
		right: -15px;
		padding: 15px 20px;
	}

	.founder-name {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.founder-message-section {
		padding: 50px 0;
	}

	.founder-image-col {
		margin-bottom: 40px;
	}

	.founder-image-wrapper {
		max-width: 100%;
	}

	.founder-badge {
		position: static;
		margin-top: 20px;
		text-align: center;
	}

	.founder-content {
		padding: 0;
	}

	.founder-heading {
		font-size: 28px;
		margin: 12px 0 20px;
	}

	.founder-message {
		font-size: 14px;
		line-height: 1.6;
	}

	.founder-label {
		font-size: 11px;
		margin-bottom: 12px;
	}
}

.floating-social-icons {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1000;
	transition: transform 0.3s;
}
.floating-social-icons ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.floating-social-icons ul li {
	margin: 5px 0;
	position: relative;
}
.floating-social-icons ul li a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 40px;
	height: 40px;
	background: #3b5998;
	color: #fff;
	font-size: 20px;
	padding-left: 10px;
	transition: 0.3s;
	border-radius: 5px;
	position: relative;
	text-decoration: none;
}
.floating-social-icons ul li a i {
	margin-right: 10px;
}
.floating-social-icons ul li a:hover::after {
	content: attr(data-title);
	position: absolute;
	left: 50px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 5px 10px;
	border-radius: 3px;
	white-space: nowrap;
	letter-spacing: 1px;
}
.social-icon {
	display: none;
}
/* Floating Contact Buttons CSS */
.contact-buttons {
	position: fixed;
	bottom: 20px;
	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: #d9240b;
}
.contact-buttons a.whatsapp-button {
	background-color: #25D366;
}
.contact-buttons a i {
	margin-right: 10px;
}
.contact-buttons a:hover {
	transform: scale(0.95);
}
@media (max-width: 768px) {
	.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-to-top {
		display: inline-block;
		width: 50px;
		height: 50px;
		background: #ff1f00;
		position: fixed;
		bottom: 0px;
		right: 5px;
		z-index: 99;
		text-align: center;
		-webkit-transition: all 0.4s ease;
		transition: all 0.4s ease;
		display: none;
		border-radius: 0;
	}
}
