  :root {
  	--primary: #CE1126;
  	--theme-color: #FCD116;
  	--secondary: #F8FAFC;
  	--text: #666;
  	--white: #FFFFFF;
  	--accent: #009A49;
  	--shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  	--transition: all 0.3s ease;
  	--section-padding: 30px;
  	--spacing-xs: 5px;
  	--spacing-sm: 8px;
  	--spacing-md: 20px;
  	--spacing-lg: 40px;
  	--font-size-sm: 15px;
  	--font-size-md: 17px;
  	--font-size-lg: 20px;
  }

  * {
  	margin: 0;
  	padding: 0;
  	box-sizing: border-box;
  	font-family: 'Inter', sans-serif;
  }

  body {
  	font-size: var(--font-size-md);
  	line-height: 1.7;
  	color: var(--text);

  }

  .section {
  	padding: var(--section-padding) 0;
  }

  a, button {
  	text-decoration: none;
  	cursor: pointer;
  	transition: var(--transition);
  }



  /* Utility Classes */
  .visible-xs { display: none; }
  .hidden-xs { display: block; }

  .text-uppercase { text-transform: uppercase; }

  .title {
  	font-size: 30px;
  	line-height: 1.3;
  	color: var(--primary);
  	font-weight: 700;
  	text-transform: uppercase;

  }

  .title1 {
  	font-size: 30px;
  	line-height: 1.3;
  	color: var(--primary);
  	font-weight: 700;

  }

  .sub_title {
  	font-size: 20px;
  	font-weight: 600;
  	line-height: 1.3;
  	position: relative;

  }

  .sub_title::after {
  	content: '';
  	display: block;
  	width: 60px;
  	height: 3px;
  	background: var(--theme-color);
  	margin-top: 10px;
  }

  .title1::after {
  	content: '';
  	display: block;
  	width: 60px;
  	height: 3px;
  	background: var(--theme-color);
  	margin-top: 10px;
  }



  h1, h2, h3, h4, h5, h6 {
  	color: var(--primary);
  }

  .hero_info,.second-travel-packages, .review-section,.recommendation-section,.destination-packages {
  	background: var(--white);
  }

  .blogs_section{
  	background: var(--secondary);
  }
  .w-100{
  	width: 100%!important;
  }

  .text-justify{
  	text-align: justify;
  }
  
  /* Button Styles */
  .btn {
  	display: inline-flex;
  	align-items: center;
  	justify-content: center;
  	padding: var(--spacing-sm) var(--spacing-md);
  	font-size: var(--font-size-sm);
  	font-weight: 600;
  	text-transform: uppercase;
  	border-radius: 4px;
  	transition: var(--transition);
  }

  .btn-solid {
  	background: linear-gradient(135deg, var(--accent) 0%, #d96b2c 100%);
  	color: var(--white);
  	box-shadow: var(--shadow);
  }

  .btn-solid:hover, .btn-solid:focus {
  	background: linear-gradient(135deg, var(--theme-color) 0%, #1f5b8c 100%);
  	transform: translateY(-3px);
  	color: var(--white);
  }

  .btn-outline {
  	background: transparent;
  	color: var(--theme-color);
  	border: 2px solid var(--theme-color);
  }

  .btn-outline:hover, .btn-outline:focus {
  	background: var(--theme-color);
  	color: var(--white);
  }


/* Header Container */
.header-container {
	top: 0;
	position: relative;
	background: var(--secondary);
	width: 100%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top_header{
	margin-bottom: 10px;
}
.header-social-icons {
	display: flex;
	gap: var(--spacing-sm);
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--accent);
	border-radius: 50%;
	color: var(--white);
	font-size: var(--font-size-md);
	transition: var(--transition);
}

.social-icon:hover {
	background: var(--accent);
	color: var(--white);
	transform: translateY(-2px);
}
.header-contact {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--spacing-md);
}

.contact-link {
	color: var(--text);
	font-size: var(--font-size-md);
	display: inline-flex;
	align-items: center;
	transition: var(--transition);
}

.contact-link:hover {
	color: var(--accent);
}

.social-icon-img {
	width: 35px;
	height: 35px;
	object-fit: contain;
	transition: var(--transition);
}



/* Navigation */

.logo img {
	max-height: 70px;
	width: 100%;
	object-fit: contain;


}

.navbar-nav {
	display: flex;
	justify-content: center;
	width: 100%;
	gap: 15px;
}

.nav-link {
	position: relative;
	color: var(--text);
	line-height: 1.3;
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
	padding: 8px 12px;
	transition: var(--transition);
}

.nav-link:hover, .nav-link:focus {
	color: var(--theme-color) !important;
}

.nav-link.active {
	color: var(--accent) !important;
	font-weight: 600;
}

.nav-item.dropdown .nav-link::after {
	margin-left: 8px;
	font-size: 13px;
}

/* Mega Menu Styles */
.mega-menu {
	position: absolute;
	top: 100%;
	background: var(--white);
	box-shadow: var(--shadow);
	border-radius: 0 0 8px 8px;
	padding: 25px 0;
	display: none;
	z-index: 999;
}

.nav-item.dropdown:hover .mega-menu {
	display: block;
}

.mega-menu .container {
	margin: 0 auto;
	padding: 0 15px;
}

.mega-menu-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.mega-menu-column {
	padding: 12px;
	width: 250px;
}

.mega-menu-column h4 {
	font-size: 16px;
	font-weight: 600;
	color: var(--theme-color);
	text-transform: uppercase;
	margin-bottom: 15px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--accent);
}

.mega-menu-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mega-menu-column li {
	margin-bottom: 12px;
	text-align: left;
}

.mega-menu-column li a {
	color: var(--text);
	font-size: 14px;
	transition: var(--transition);
	display: block;
}

.mega-menu-column li a:hover {
	color: var(--accent);
	padding-left: 6px;
}

/* Single Dropdown Styles */
.dropdown-menu {
	border: none;
	background: var(--secondary);
	padding: 15px 0;
	min-width: 220px;
	display: none;
}

.nav-item.dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-item {
	padding: 12px 18px;
	font-size: 15px;
	transition: var(--transition);
	color: var(--text);
}

.dropdown-item:hover {
	color: var(--theme-color);
	background: var(--secondary);
}


#particles-js {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 3; 
}


/* Hero Section */
/* Hero Section */
.hero {
	position: relative;
	height: 90vh;
	overflow: hidden;
}


.hero .item {
	position: relative;
	height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.hero .item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: linear-gradient(135deg, rgb(26 42 68 / 50%), rgb(0 0 0 / 44%));*/
	z-index: 1;
}


.hero .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.hero-content {
	text-align: center;
	max-width: 900px;
	position: relative;
	z-index: 11;
	color: var(--white);
	padding: 25px;
	transform: translateY(25px);
	z-index: 9999;
	animation: fadeInUp 1s ease forwards 0.5s;
	margin-top: 5%;
}

@keyframes fadeInUp {
	to { transform: translateY(0); opacity: 1; }
}

.hero-content h1 {
	font-size: clamp(25px, 7vw, 50px);
	font-weight: 700;
	margin-bottom: 25px;
	line-height: 1.3;
	color: var(--white);
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-content p {
	font-size: clamp(17px, 2.5vw, 21px);
	margin-bottom: 35px;
	color: #F0F4F8;
	line-height: 1.7;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}








/*info css*/
.hero-img-box img {
	width: 100%;
	height: auto;
	object-fit: cover; 
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	display: block;
}




.hero-text-section .about p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}




/* Newsletter Section */

.newsletter-content {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	text-align: center;
}



.newsletter-form {
	display: flex;
	max-width: 650px;
	margin: 0 auto;
	background: var(--white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.newsletter-form:hover {
	transform: translateY(-5px);
}

.newsletter-form .form-control {
	height: 54px;
	padding: 0 22px;
	font-size: 16px;
	flex: 1;
	border-radius: 12px 0 0 12px;
	border: 2px solid var(--primary);
}

.newsletter-form .form-control:focus {
	box-shadow: none;
	outline: none;
}

.newsletter-form .btn {
	border-radius: 0 12px 12px 0;
	padding: 0 35px;
	height: 54px;
	font-size: 16px;
	background: linear-gradient(135deg, var(--accent) 0%, #d96b2c 100%);
}

.newsletter-form .btn:hover {
	background: linear-gradient(135deg, var(--theme-color) 0%, #1f5b8c 100%);
	transform: scale(1.03);
}

.form-feedback {
	margin-top: 12px;
	font-size: 15px;
	color: var(--white);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.form-feedback.show {
	opacity: 1;
}

/* Footer */
.footer {
	background: linear-gradient(180deg, var(--primary) 0%, #071523 100%);
	color: var(--white);
	position: relative;
	padding: 100px 0 0px;
	overflow: hidden;
}

.section-shape {
	position: absolute;
	left: 0;
	width: 100%;
	height: 96px;
	background-size: contain;
	background-repeat: repeat-x;
	z-index: 1;
}

.footer .container {
	position: relative;
	z-index: 1;
}

.footer-logo img {
	max-width: 240px;
	margin-bottom: 30px;
	transition: transform 0.3s ease;
}

.footer-logo img:hover {
	transform: scale(1.03);
}

.footer-about p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.9;
}

.footer-contact-info {
	margin-bottom: 30px;
}

.footer-contact-info p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
	font-size: 16px;
}

.footer-contact-info i {
	color: var(--accent);
	margin-right: 14px;
	margin-top: 6px;
	font-size: 18px;
	transition: transform 0.3s ease;
}

.footer-contact-info p:hover i {
	transform: translateX(5px);
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 25px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	color: var(--white);
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--accent);
	color: var(--white);
	transform: translateY(-5px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.footer-links h5 {
	color: var(--white);
	font-size: 20px;
	margin-bottom: 30px;
	font-weight: 600;
	position: relative;
}

.footer-links h5::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 50px;
	height: 3px;
	background: var(--accent);
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 15px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	display: flex;
	align-items: center;
	transition: var(--transition);
}

.footer-links a i {
	margin-right: 12px;
	color: var(--accent);
	font-size: 13px;
	transition: transform 0.3s ease;
}

.footer-links a:hover {
	color: var(--accent);
	padding-left: 10px;
}

.footer-links a:hover i {
	transform: translateX(5px);
}

.footer-bottom {
	text-align: center;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
}

.footer-bottom a {
	color: var(--accent);
	font-weight: 500;
	transition: var(--transition);
}

.footer-bottom a:hover {
	color: var(--white);
	text-decoration: underline;
}

/* Back to Top */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--theme-color) 0%, #1f5b8c 100%);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	box-shadow: var(--shadow);
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: linear-gradient(135deg, var(--accent) 0%, #d96b2c 100%);
	transform: translateY(-5px);
}






/* ------------------ Mobile Menu ------------------ */
.mobile-menu {
	position: sticky;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: linear-gradient(135deg, var(--accent) 0%, #d96b2c 100%);
	backdrop-filter: blur(10px); 
	box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.2); 
	justify-content: space-around; 
	align-items: center;
	padding: 4px 0px;
}

.mobile-menu a {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 17%;
	padding: 3px 0 !important;
	border-radius: 15px;
	position: relative;
	color: #f5f5f5;
	text-decoration: none;
	font-size: 10px;
	transition: all 0.3s ease;
	overflow: hidden;
}

.mobile-menu a i {
	font-size: 28px;
	margin-bottom: 8px;
	color: #f5f5f5;
	text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
	transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.mobile-menu a span {
	font-size: 11px; 
	font-weight: 500;
	color: #f5f5f5;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.3); 
	transition: color 0.3s ease;
}

.mobile-menu {
	animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
	0% { transform: translateY(100%); }
	100% { transform: translateY(0); }
}



/* Parallax Section */
.para-section {
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	color: var(--white);
	min-height: 600px;
	display: flex;
	align-items: center;
}

.para-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(42, 157, 143, 0.7), rgba(38, 70, 83, 0.7));
	z-index: 1;
}

.para-inner-section {
	position: relative;
	z-index: 2;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}


.ghana-facts {
	background-color: rgba(0, 0, 0, 0.8);
	padding: var(--spacing-md);
	border-radius: 12px;
	box-shadow: var(--shadow);
	max-width: 400px;
	animation: fadeIn 1s ease-in-out;
}

.ghana-facts h6 {
	font-size: var(--font-size-lg);
	color: var(--theme-color);
	margin-bottom: var(--spacing-sm);
	text-transform: uppercase;
}

.ghana-facts ul li {
	font-size: var(--font-size-sm);
	margin-bottom: var(--spacing-xs);
	display: flex;
	align-items: center;
	transition: background-color var(--transition);
}


.ghana-facts ul li i {
	color: var(--accent);
	margin-right: var(--spacing-sm);
}


/* Map Image */
.map-image {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
	transition: transform 0.3s ease;
}

.map-image:hover {
	transform: scale(1.05);
}


/*package css*/

.package-card {
	border: 1px solid #ddd;
	border-radius: 1px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
	height: auto;
	overflow: hidden;
	position: relative;
	animation: fadeIn 0.5s ease-out forwards;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.package-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.package-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: center;
}

.price {
	background-color: var(--theme-color);
	color: #fff;
	padding: 5px 10px;
	display: inline-block;
	margin: 10px 0;
	position: absolute;
}
.sale-price {
	text-decoration: line-through;
	color: #888;
	margin-right: 10px;
}
.package-content {
	padding: 10px;
}
.package-content h3 {
	margin: 0 0 10px;                
	color: var(--accent);             
	font-size: 18px;                    
	font-family: 'Playfair Display', serif;
	line-height: 1.5em;                
	display: -webkit-box;             
	-webkit-box-orient: vertical;  
	-webkit-line-clamp: 1;              
	overflow: hidden;              
	text-overflow: ellipsis;         
}

.package-content p {
	color: #666;
	margin: 0 0 15px;
	font-size: 15px;
	line-height: 1.5em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}

.package-content p b {
	color: var(--primary);
}

.read_more {
	background: #f5f5f5;
	height: 40px;
}

.item_rating {
	float: left;
	width: 45%;
	padding: 0 10px 0 15px;
	position: relative;
	height: 40px;
	line-height: 40px;
	text-align: center;
}
.item_rating .star-rating {
	float: left;
	overflow: hidden;
	position: relative;
	height: 1em;
	line-height: 1;
	font-size: 1em;
	width: 6.5em;
	font-family: star;
	margin-top: 12px !important;
	font-weight: 400;
	color: var(--theme-color);
}
.read_more_button {
	float: right;
	color: #fff;
	width: 55%;
	text-align: center;
	line-height: 41px;
	padding: 0 0 0 20px;
	background: var(--primary);
	position: relative;
	font-weight: 700;
	font-size: 12px;
	margin-top: 0;
	margin-right: -1px;
	margin-bottom: -1px;
	border-radius: 0;
	text-transform: uppercase;
}

.read_more_button:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 0;
	height: 0;
	border-top: 20px solid #fff0;
	border-left: 20px solid #f5f5f5;
	border-bottom: 20px solid #fff0;
}




.thumb1 {
	flex: 0 0 80px;
	height: 60px;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	border: 2px solid transparent;
}
.thumb1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.thumb1.active {
	transform: scale(1.05);
	border-color: #00b4d8;
}
.thumb1.active img {
	opacity: 1;
}



/*category listing sidebar css*/

.sidebar {
	background-color: var(--secondary);
	padding: 20px;
	box-shadow: var(--shadow);
}

.sidebar-filter {
	margin-bottom: var(--spacing-lg);
}

.sidebar-filter h4 {
	font-size: var(--font-size-lg);
	margin-bottom: var(--spacing-md);
	color: var(--primary);
	font-weight: 600;
}

.filter-group {
	margin-bottom: var(--spacing-md);
}

.filter-group h5 {
	font-size: var(--font-size-md);
	margin-bottom: var(--spacing-sm);
	color: var(--text);
	font-weight: 500;
}

.filter-group label {
	display: flex;
	align-items: center;
	margin-bottom: var(--spacing-sm);
	font-size: var(--font-size-sm);
	color: var(--text);
	cursor: pointer;
	transition: var(--transition);
}

.filter-group label:hover {
	color: var(--primary);
}

.filter-group input[type="checkbox"] {
	margin-right: var(--spacing-sm);
	accent-color: var(--primary); 
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.filter-btn {
	background-color: var(--primary);
	color: var(--white);
	padding: var(--spacing-sm) var(--spacing-md);
	border: none;
	border-radius: 5px;
	width: 100%;
	font-size: var(--font-size-md);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.filter-btn:hover {
	background-color: var(--accent);
	transform: translateY(-2px);
}


.guide-card h4 {
	font-size: var(--font-size-lg);
	margin-bottom: var(--spacing-md);
	color: var(--primary);
	font-weight: 600;
}

.guide-image {
	margin-bottom: var(--spacing-md);
}

.guide-img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
	max-height: 150px; 
}


.guide-info p {
	font-size: var(--font-size-sm);
	color: var(--text);
	margin-bottom: var(--spacing-sm);
	display: flex;
	align-items: center;
}

.guide-info p i {
	margin-right: var(--spacing-sm);
	color: var(--accent);
}

.guide-btn {
	background-color: var(--accent);
	color: var(--white);
	padding: var(--spacing-sm) var(--spacing-sm);
	border-radius: 5px;
	text-align: center;
	display: block;
	font-size: var(--font-size-md);
	font-weight: 600;
	transition: var(--transition);
}

.guide-btn:hover {
	background-color: var(--primary);
	transform: translateY(-2px);
}


@media (max-width: 768px) {
	.sidebar {
		max-width: 100%;
		margin-bottom: var(--spacing-lg);
	}

	.sidebar-filter h4,
	.guide-card h4 {
		font-size: var(--font-size-md);
	}

	.filter-group h5 {
		font-size: var(--font-size-sm);
	}

}





/* ================================
   Contact Section Styles
================================== */
.contact-page-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 20px;
	padding: 25px 15px;
	position: relative;
	margin-bottom: 25px;
	border-radius: 30px 30px 30px 0;
	background: #fff;
	box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.contact-page-info:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 50px rgba(0, 154, 73, 0.15);
}

.contact-page-info::before {
	content: "";
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: -8px;
	background: var(--accent);
	clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
	height: 20px;
	z-index: -1;
}

.contact-info-icon {
	width: 60px;
	height: 60px;
	font-size: 28px;
	color: var(--white);
	background: var(--accent);
	text-align: center;
	line-height: 60px;
	border-radius: 50%;
	position: relative;
}

.contact-info-icon::before {
	content: "";
	position: absolute;
	inset: -10px;
	border: 2px solid var(--accent);
	border-radius: 50%;
}

.contact-info-content h5 {
	font-size: var(--font-size-lg);
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 6px;
}

.contact-info-content p,
.contact-info-content a {
	font-size: var(--font-size-sm);
	font-weight: 500;
	color: var(--text);
}

/* ================================
   Contact Form Section
================================== */
.contact-wrapper {
	position: relative;
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
	z-index: 1;
	overflow: hidden;
}

.contact-img {
	position: relative;
	padding-left: 20px;
}

.contact-img::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 100%;
	background: var(--accent);
	border-radius: 20px 0 0 20px;
	clip-path: polygon(100% 0, 20% 50%, 100% 100%, 0 100%, 0 0);
	z-index: -1;
}

.contact-img img {
	width: 100%;
	clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0 50%, 10% 0);
	border-radius: 8px;
}

.contact-form {
	padding: 20px;
}

.contact-form-header {
	margin-bottom: 30px;
}

.contact-form-header h2 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--primary);
}

.contact-form input,
.contact-form textarea {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 10px 12px;
	font-size: var(--font-size-sm);
	width: 100%;
	transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--accent);
	outline: none;
}





/*form design css*/
form label {
	display: block;
	margin-bottom: var(--spacing-xs);
	font-weight: 600;
	font-size: var(--font-size-sm);
	color: var(--text);
}

form input,
form textarea {
	width: 100%;
	padding: var(--spacing-sm);
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: var(--font-size-sm);
	background-color: var(--white);
	transition: var(--transition);
}

form input:focus,
form textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 2px rgba(206, 17, 38, 0.2);
}


