/* Global Styles */
:root {
	--primary: #273746;
	--light: #f8f9fa;
	--gray: #6c757d;
	--dark: #343a40;
	--white: #ffffff;
  }
  
  * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;*/
	font-family: "Playfair Display", serif;
  }
  
  body {
	color: var(--dark);
	line-height: 1.6;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
	font-weight: 700;
	line-height: 1.2;
  }
  
  a {
	text-decoration: none;
	color: inherit;
  }
  
  .container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
  }
  
  .btn {
	display: inline-block;
	padding: 10px 28px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
  }
  
  .btn-primary {
	background-color: var(--primary);
	color: var(--white);
  }
  
  .btn-primary:hover {
	background-color: #1c2833;
  }
  
  .btn-outline {
	background-color: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
  }
  
  .btn-outline:hover {
	background-color: var(--primary);
	color: var(--white);
  }
  
  section {
	padding: 80px 0;
  }
  
  /* Header Styles */
  header {
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
  }
  
  .header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
  }
  
  .logo {
	font-weight: 800;
	font-size: 24px;
	color: var(--primary);
  }
  
  .logo img {
	width: 110px;
  }
  
  .nav-links {
	display: flex;
	list-style: none;
	gap: 30px;
  }
  
  .nav-links li a {
	font-weight: 500;
	transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
	color: var(--primary);
  }
  
  .header-buttons {
	display: flex;
	gap: 15px;
  }
  
  .mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 24px;
  }
  
  /* Hero Section */
  .hero {
	padding: 140px 0 80px;
	background-color: #f8f9fa;
  }
  
  .hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
  }
  
  .hero-text {
	flex: 1;
  }
  
  .hero-text h1 {
	font-size: 56px;
	margin-bottom: 20px;
	color: var(--primary);
  }
  
  .hero-text p {
	font-size: 18px;
	margin-bottom: 30px;
	color: var(--gray);
	max-width: 500px;
  }
  
  .hero-buttons {
	display: flex;
	gap: 15px;
  }
  
  .hero-image {
	flex: 1;
	text-align: right;
  }
  
  .hero-image img {
	width: 100%;
	max-width: 700px;
	height: auto;
  }
  
  /* Services Section */
  .services {
	background-color: var(--white);
  }
  
  .section-header {
	text-align: center;
	margin-bottom: 60px;
  }
  
  .section-header h2 {
	font-size: 36px;
	color: var(--primary);
	margin-bottom: 15px;
  }
  
  .section-header p {
	font-size: 18px;
	color: var(--gray);
	max-width: 700px;
	margin: 0 auto;
  }
  
  .services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
  }
  
  .service-card {
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .service-icon {
	width: 60px;
	height: 60px;
	background-color: rgba(39, 55, 70, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
  }
  
  .service-icon i {
	font-size: 24px;
	color: var(--primary);
  }
  
  .service-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--primary);
  }
  
  .service-card p {
	color: var(--gray);
	margin-bottom: 20px;
  }
  
  /* Products Section */
  .products {
	background-color: #f8f9fa;
  }
  
  .products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
  }
  
  .product-card {
	background-color: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .product-image {
	height: auto;
	background-color: #e9ecef;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .product-image img {
	max-width: 100%;
	max-height: 100%;
  }
  
  .product-content {
	padding: 25px;
  }
  
  .product-content h3 {
	font-size: 22px;
	margin-bottom: 10px;
	color: var(--primary);
  }
  
  .product-content p {
	color: var(--gray);
	margin-bottom: 20px;
  }
  
  /* Fun Facts Section */
  .fun-facts {
	background-color: var(--primary);
	color: var(--white);
  }
  
  .fun-facts .section-header h2 {
	color: var(--white);
  }
  
  .fun-facts .section-header p {
	color: rgba(255, 255, 255, 0.8);
  }
  
  .facts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	text-align: center;
  }
  
  .fact-item h3 {
	font-size: 48px;
	margin-bottom: 10px;
  }
  
  .fact-item p {
	font-size: 18px;
	opacity: 0.8;
  }
  
  /* Footer */
  footer {
	background-color: #1c2833;
	color: var(--white);
	padding: 70px 0 30px;
  }
  
  .footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 50px;
  }
  
  .footer-col h4 {
	font-size: 20px;
	margin-bottom: 25px;
	position: relative;
  }
  
  .footer-col h4::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--white);
  }
  
  .footer-links {
	list-style: none;
  }
  
  .footer-links li {
	margin-bottom: 12px;
  }
  
  .footer-links li a {
	opacity: 0.8;
	transition: opacity 0.3s ease;
  }
  
  .footer-links li a:hover {
	opacity: 1;
  }
  
  .footer-contact p {
	margin-bottom: 15px;
	opacity: 0.8;
  }
  
  .social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
  }
  
  .social-links a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
  }
  
  .social-links a:hover {
	background-color: rgba(255, 255, 255, 0.2);
  }
  
  .footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	text-align: center;
	opacity: 0.8;
	font-size: 14px;
  }
  
  /* Page Header */
  .page-header {
	padding: 140px 0 60px;
	background-color: var(--primary);
	color: var(--white);
	text-align: center;
  }
  
  .page-header h1 {
	font-size: 48px;
	margin-bottom: 15px;
  }
  
  .breadcrumb {
	display: flex;
	justify-content: center;
	list-style: none;
	gap: 10px;
	opacity: 0.8;
  }
  
  .breadcrumb li:after {
	content: "/";
	margin-left: 10px;
  }
  
  .breadcrumb li:last-child:after {
	content: "";
  }
  
  /* Contact Info Section */
  .contact-info {
	background-color: var(--white);
  }
  
  .contact-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
  }
  
  .contact-card {
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .contact-icon {
	width: 80px;
	height: 80px;
	background-color: rgba(39, 55, 70, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
  }
  
  .contact-icon i {
	font-size: 32px;
	color: var(--primary);
  }
  
  .contact-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--primary);
  }
  
  .contact-card p {
	color: var(--gray);
  }
  
  /* Contact Form Section */
  .contact-form {
	background-color: var(--light);
  }
  
  .form-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
  }
  
  .section-header {
	margin-bottom: 60px;
  }
  
  .section-header h2 {
	font-size: 36px;
	color: var(--primary);
	margin-bottom: 15px;
  }
  
  .section-header p {
	font-size: 18px;
	color: var(--gray);
	max-width: 700px;
  }
  
  .form-group {
	margin-bottom: 25px;
  }
  
  .form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--dark);
  }
  
  .form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ced4da;
	border-radius: 5px;
	font-size: 16px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .form-control:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(39, 55, 70, 0.1);
	outline: none;
  }
  
  textarea.form-control {
	min-height: 150px;
	resize: vertical;
  }
  
  /* Media Queries */
  @media (max-width: 992px) {
	.form-container {
	  grid-template-columns: 1fr;
	}
  
	.page-header h1 {
	  font-size: 40px;
	}
  }
  
  /* Media Queries */
  @media (max-width: 992px) {
	.about-content {
	  grid-template-columns: 1fr !important;
	}
  
	.about-image {
	  order: -1;
	  max-width: 600px;
	  margin: 0 auto;
	}
  
	.cta-buttons {
	  flex-direction: column;
	  max-width: 300px;
	  margin: 0 auto;
	}
  }
  
  /* Map Section */
  .map-section {
	padding: 0;
  }
  
  .map-container {
	height: 500px;
	width: 100%;
	background-color: #e9ecef;
	position: relative;
  }
  
  .map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
  }
  
  /* About Section */
  .about-section {
	background-color: var(--white);
  }
  
  .about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
  }
  
  .about-image {
	border-radius: 10px;
	overflow: hidden;
  }
  
  .about-image img {
	width: 100%;
	height: auto;
	display: block;
  }
  
  .about-text h2 {
	font-size: 36px;
	color: var(--primary);
	margin-bottom: 20px;
  }
  
  .about-text p {
	margin-bottom: 20px;
	color: var(--gray);
  }
  
  .about-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
  }
  
  .stat-item {
	position: relative;
  }
  
  .stat-item h3 {
	font-size: 36px;
	color: var(--primary);
	margin-bottom: 5px;
  }
  
  .stat-item p {
	font-size: 16px;
	color: var(--gray);
	margin-bottom: 0;
  }
  
  /* Why Choose Us Section */
  .why-choose-us {
	background-color: var(--light);
  }
  
  .section-header {
	text-align: center;
	margin-bottom: 60px;
  }
  
  .section-header h2 {
	font-size: 36px;
	color: var(--primary);
	margin-bottom: 15px;
  }
  
  .section-header p {
	font-size: 18px;
	color: var(--gray);
	max-width: 700px;
	margin: 0 auto;
  }
  
  .features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
  }
  
  .feature-card {
	background-color: var(--white);
	padding: 40px 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .feature-icon {
	width: 70px;
	height: 70px;
	background-color: rgba(39, 55, 70, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
  }
  
  .feature-icon i {
	font-size: 28px;
	color: var(--primary);
  }
  
  .feature-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--primary);
  }
  
  .feature-card p {
	color: var(--gray);
  }
  
  /* Team Section */
  .team-section {
	background-color: var(--white);
  }
  
  .team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
  }
  
  .team-card {
	background-color: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .team-image {
	height: 300px;
	overflow: hidden;
  }
  
  .team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .team-info {
	padding: 25px;
	text-align: center;
  }
  
  .team-info h3 {
	font-size: 20px;
	margin-bottom: 5px;
	color: var(--primary);
  }
  
  .team-info p {
	color: var(--gray);
	font-size: 16px;
	margin-bottom: 15px;
  }
  
  .team-socials {
	display: flex;
	justify-content: center;
	gap: 15px;
  }
  
  .team-socials a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(39, 55, 70, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	transition: all 0.3s ease;
  }
  
  .team-socials a:hover {
	background-color: var(--primary);
	color: var(--white);
  }
  
  /* Client Testimonials */
  .testimonials {
	background-color: var(--light);
  }
  
  .testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
  }
  
  .testimonial-card {
	background-color: var(--white);
	padding: 35px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	position: relative;
  }
  
  .quote-icon {
	position: absolute;
	top: 25px;
	right: 25px;
	color: rgba(39, 55, 70, 0.1);
	font-size: 60px;
  }
  
  .testimonial-text {
	margin-bottom: 25px;
	font-style: italic;
	position: relative;
	z-index: 1;
  }
  
  .client-info {
	display: flex;
	align-items: center;
  }
  
  .client-image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
  }
  
  .client-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .client-name h4 {
	font-size: 18px;
	margin-bottom: 5px;
	color: var(--primary);
  }
  
  .client-name p {
	color: var(--gray);
	font-size: 14px;
  }
  
  /* Clients Logo Section */
  .clients-logo {
	background-color: var(--white);
	padding: 60px 0;
  }
  
  .logo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 30px;
	align-items: center;
  }
  
  .logo-item {
	text-align: center;
	padding: 15px;
	filter: grayscale(100%);
	opacity: 0.6;
	transition: all 0.3s ease;
  }
  
  .logo-item:hover {
	filter: grayscale(0%);
	opacity: 1;
  }
  
  .logo-item img {
	max-width: 100%;
	height: auto;
  }
  
  /* CTA Section */
  .cta-section {
	background-color: var(--primary);
	color: var(--white);
	text-align: center;
	padding: 80px 0;
  }
  
  .cta-content h2 {
	font-size: 36px;
	margin-bottom: 20px;
  }
  
  .cta-content p {
	font-size: 18px;
	margin-bottom: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.9;
  }
  
  .cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
  }
  
  .btn-light {
	background-color: var(--white);
	color: var(--primary);
  }
  
  .btn-light:hover {
	background-color: rgba(255, 255, 255, 0.9);
  }
  
  .btn-outline-light {
	background-color: transparent;
	border: 2px solid var(--white);
	color: var(--white);
  }
  
  .btn-outline-light:hover {
	background-color: var(--white);
	color: var(--primary);
  }
  
  /* Pagination Styles */
  .pagination {
	display: flex;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .pagination .page-item {
	margin: 0 5px;
  }
  
  .pagination .page-link {
	display: inline-block;
	padding: 8px 16px;
	background-color: #fff;
	color: #273746;
	/* Custom color */
	text-decoration: none;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	text-align: center;
  }
  
  .pagination .page-item.active .page-link {
	background-color: #273746;
	/* Custom color */
	color: #fff;
	border-color: #273746;
	/* Custom color */
  }
  
  .pagination .page-item.disabled .page-link {
	background-color: #f8f9fa;
	color: #6c757d;
	border-color: #ddd;
  }
  
  .pagination .page-link:hover {
	background-color: #f1f1f1;
	color: #273746;
	/* Custom color */
  }
  
  /* Previous & Next Button Styles */
  .pagination .page-item:first-child .page-link {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
  }
  
  .pagination .page-item:last-child .page-link {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
  }
  
  .pagination .page-item.disabled .page-link {
	cursor: not-allowed;
  }
  
  .pagination .page-item a.page-link {
	cursor: pointer;
  }
  
  /* Share */
  .blog-share {
	font-family: Arial, sans-serif;
	margin-top: 20px;
  }
  
  /* Styling for the social media share section */
  .blog-share .social-share {
	display: flex;
	justify-content: flex-start;
	gap: 15px;
	/* Adds space between icons */
	list-style-type: none;
	padding: 0;
  }
  
  /* Each list item (icon button) styling */
  .blog-share .social-share li {
	border-radius: 50%;
	background-color: #273746;
	/* Your desired color */
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  /* Icon styling */
  .blog-share .social-share li a {
	color: white;
	/* White color for icons */
	font-size: 18px;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 40px;
  }
  
  /* Hover effect */
  .blog-share .social-share li:hover {
	background-color: #1a2634;
	/* Darker shade of #273746 */
	transform: scale(1.1);
	/* Slight zoom effect on hover */
  }
  
  /* Hover effect for icons */
  .blog-share .social-share li a:hover {
	color: #fa2356;
	/* Gold color when hovering over the icon */
  }
  
  .single-blog-content h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
	font-weight: 700;
	line-height: 1.2;
	margin: 14px 0px;
  }
  
  .single-blog-content ul,
  .single-blog-content ol {
	margin-left: 25px;
	margin-bottom: 20px;
  }
  
  .post-thumbnail img {
	border-radius: 5px;
  }
  
  .single-blog-content p {
	line-height: 1.8;
  }
  
  /* Grid system like Bootstrap */
  
  .section-blog .row {
	display: flex;
	flex-wrap: wrap;
	margin: -15px;
  }
  
  .section-blog .col-lg-8,
  .section-blog .col-lg-4 {
	padding: 15px;
	box-sizing: border-box;
  }
  
  @media (min-width: 992px) {
	.section-blog .col-lg-8 {
	  width: 66.6666%;
	}
	.section-blog .col-lg-4 {
	  width: 33.3333%;
	}
  }
  
  @media (max-width: 991px) {
	.section-blog .col-lg-8,
	.section-blog .col-lg-4 {
	  width: 100%;
	}
  }
  
  /* Sidebar styling */
  .sidebar {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 10px;
  }
  
  /* Widget Common Styles */
  .widget {
	margin-bottom: 30px;
  }
  
  .widget-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #333;
	border-bottom: 2px solid #ddd;
	padding-bottom: 8px;
  }
  
  /* Categories */
  .category-list li {
	margin-bottom: 10px;
	margin-left: 15px;
  }
  
  .category-list li a {
	text-decoration: none;
	color: #555;
	transition: color 0.3s;
  }
  
  .category-list li a:hover {
	color: #007bff;
  }
  
  /* Social Widget */
  .widget.widge-social-link .social-list {
	display: flex;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
  }
  
  .widget.widge-social-link .social-list li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	background-color: #eaeaea;
	color: #333;
	border-radius: 50%;
	font-size: 16px;
	transition: 0.3s ease-in-out;
  }
  
  .widget.widge-social-link .social-list li a:hover {
	background-color: #007bff;
	color: #fff;
  }
  
  /* Recent Posts */
  .popular-post-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
  }
  
  .single-post {
	display: flex;
	gap: 15px;
  }
  
  .w-100 {
	width: 100%;
  }
  .single-post .post-content {
	flex: 1;
  }
  
  .blog-date {
	list-style: none;
	margin-top: 10px;
	margin-left: 0px !important;
	font-weight: 700;
  }
  
  .single-post .title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #222;
  }
  
  .single-post .title a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s;
  }
  
  .single-post .title a:hover {
	color: #007bff;
  }
  
  .blog-meta li {
	font-size: 13px;
	color: #777;
	list-style: none;
  }
  
  /* Banner Ad */
  .widget-banner-ad img {
	width: 100%;
	border-radius: 10px;
	display: block;
  }
  
  /* Media Queries */
  @media (max-width: 992px) {
	.hero-content {
	  flex-direction: column;
	  text-align: center;
	}
  
	.hero-text p {
	  margin: 0 auto 30px;
	}
  
	.hero-buttons {
	  justify-content: center;
	}
  
	.hero-image {
	  margin-top: 40px;
	}
  }
  
  @media (max-width: 768px) {
	.header-inner {
	  position: relative;
	}
  
	.mobile-toggle {
	  display: block;
	}
  
	.nav-links {
	  position: absolute;
	  top: 100%;
	  left: 0;
	  width: 100%;
	  flex-direction: column;
	  background-color: var(--white);
	  padding: 20px;
	  gap: 15px;
	  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	  display: none;
	}
  
	.nav-links.active {
	  display: flex;
	}
  
	.header-buttons {
	  display: none;
	}
  
	.hero-text h1 {
	  font-size: 42px;
	}
  
	.blog-share .social-share {
	  justify-content: center;
	  gap: 10px;
	}
  }
  