/* ==== GENERAL BASE STYLES ==== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	overflow-x: hidden;
	font-family: 'Open Sans', sans-serif;
	background-color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Merriweather', serif;
}

/* ==== NAVBAR STYLES ==== */
#navbar .navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	background: #000;
	transition: transform 260ms ease;
	transform: translateY(0);
	will-change: transform;
}

#navbar .nav-link {
	color: #fff;
	transition: color 160ms ease;
}

#navbar .nav-link:hover,
#navbar .nav-link:focus {
	color: #2ecc50;
}

#navbar .dropdown-menu {
	background: #000 !important;
	border: none !important;
	box-shadow: none !important;
	margin-top: 0 !important;
	padding-top: 0.25rem;
	min-width: 10rem;
}

#navbar .dropdown-item {
	color: #fff !important;
}

#navbar .dropdown-item:hover,
#navbar .dropdown-item:focus {
	background: #2ecc50 !important;
	color: #000 !important;
}

/* Clean focus states */
#navbar .dropdown-toggle:focus,
#navbar .nav-link:focus,
#navbar .dropdown-item:focus,
#navbar .navbar-toggler:focus {
	outline: none !important;
	box-shadow: none !important;
}

/* Toggler icon (your X animation) */
.navbar-toggler-icon-custom {
	display: inline-block;
	width: 22px;
	height: 2px;
	background: #fff;
	position: relative;
	vertical-align: middle;
	transition: all 220ms ease;
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
	content: '';
	position: absolute;
	left: 0;
	width: 22px;
	height: 2px;
	background: #fff;
	transition: all 220ms ease;
}

.navbar-toggler-icon-custom::before {
	top: -7px;
}

.navbar-toggler-icon-custom::after {
	top: 7px;
}

.navbar-toggler-icon-custom.open {
	background-color: transparent;
}

.navbar-toggler-icon-custom.open::before {
	transform: translateY(7px) rotate(45deg);
}

.navbar-toggler-icon-custom.open::after {
	transform: translateY(-7px) rotate(-45deg);
}

/* Show dropdown on hover only on desktop */
@media (min-width:992px) {
	#navbar .dropdown:hover>.dropdown-menu {
		display: block;
	}
}

/* Tighten mobile link padding a touch */
@media (max-width:575px) {
	#navbar .navbar-nav .nav-link {
		padding-left: .75rem;
		padding-right: .75rem;
	}
}

/* ==== FOOTER STYLES ==== */
#footer {
	background: #000;
	color: #fff;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Links */
#footer .footer-links a {
	color: #fff;
	text-decoration: none;
	display: inline-block;
	transition: color 0.25s ease, transform 0.25s ease;
}

#footer .footer-links a:hover {
	color: #2ecc50;
	transform: translateX(5px);
}

#footer .footer-links li+li {
	margin-top: 0.5rem;
}

#footer .footer-links i {
	color: #2ecc50;
}

/* Headings & Text */
#footer h5,
#footer h6 {
	font-weight: 600;
	margin-bottom: 1rem;
}

#footer .brand-img {
	max-width: 230px;
	height: auto;
}

#footer .footer-description {
	color: #ccc;
	font-size: 0.9rem;
	max-width: 400px;
	margin: 0 auto;
}

/* Copyright */
#footer small {
	font-size: 0.85rem;
	color: #fff;
}

@media (max-width: 991px) {
	#footer .footer-section .row {
		text-align: center;
	}

	#footer .footer-section .col-md-5 {
		margin-bottom: 2rem;
	}

	#footer .footer-links {
		text-align: center;
	}
}

/* ===== HERO SECTION STYLES ===== */
.hero-section {
	position: relative;
	display: flex;
	align-items: center;
	background-color: #000;
	background-image: url('../images/igtd-drive-hero.webp');
	/* desktop / tablet */
	background-repeat: no-repeat;
	background-size: cover;
	/* keep the stick pushed to the right on wide screens */
	background-position: 70% center;
	min-height: 100svh;
	padding-block: clamp(5rem, 12vh, 7rem);
	overflow: hidden;
	background-attachment: scroll;
	/* avoid mobile parallax bugs */
	transform: translateZ(0);
	/* prevent flicker */
	will-change: transform;
}

/* dark overlay so text always reads clean */
.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 0;
}

.hero-text {
	position: relative;
	z-index: 1;
	max-width: 650px;
	color: #e5e5e5;
}

/* tighten vertical rhythm a bit */
.hero-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.1;
	color: #2ecc50;
	text-shadow: 0 4px 20px rgba(0, 255, 102, 0.5);
	margin-bottom: 1.25rem;
}

.hero-description {
	font-size: clamp(0.95rem, 1.5vw, 1.15rem);
	line-height: 1.6;
	color: #f0f0f0;
	margin-bottom: 1.75rem;
}

/* Large desktops: keep stick nicely to the right */
@media (min-width: 1400px) {
	.hero-section {
		background-position: 72% center;
	}
}

/* Tablets & small laptops */
@media (max-width: 991.98px) {
	.hero-section {
		/* text a bit higher, stick moves down */
		align-items: flex-start;
		padding-top: clamp(6rem, 12vh, 7rem);
		padding-bottom: clamp(4rem, 10vh, 6rem);
		background-position: center bottom;
	}

	.hero-text {
		max-width: 32rem;
	}
}

/* Phones: use the vertical image, stick from middle → bottom */
@media (max-width: 575.98px) {
	.hero-section {
		background-image: url('../images/igtd-drive-hero-mobile.webp');
		background-repeat: no-repeat;
		/* show the USB from middle to bottom, keep top free for text */
		background-size: contain;
		background-position: center bottom;

		min-height: 100svh;
		padding-top: clamp(6rem, 14vh, 7rem);
		padding-bottom: 3rem;
	}

	.hero-title {
		font-size: clamp(1.9rem, 6vw, 2.2rem);
		line-height: 1.2;
	}

	.hero-description {
		font-size: 0.95rem;
		line-height: 1.55;
	}
}

/* ===== PROBLEM & COST SECTION ===== */
.problem-benefits-section p {
	color: #dcdcdc;
	line-height: 2;
}

/* ===== SOLUTIONS SECTION ===== */
.solutions-header {
	max-width: 700px;
	margin: 0 auto;
}

.solutions-title {
	color: #2ecc50;
	font-size: 2.5rem;
}

/* Tabs (left navigation) */
.solutions-nav .solutions-tab-link {
	border-radius: 0.75rem;
	padding: 0.75rem 1.25rem;
	margin-bottom: 0.75rem;
	background-color: #111;
	border: 1px solid #222;
	color: #ccc;
	transition: all 0.3s ease;
	font-weight: 500;
	text-align: left;
}

.solutions-nav .solutions-tab-link:hover:not(.active) {
	background-color: #1a1a1a;
	color: #fff;
	transform: translateX(3px);
}

.solutions-nav .solutions-tab-link.active {
	background: linear-gradient(135deg, #2ecc50, #1fae3a);
	color: #000;
	border-color: #2ecc50;
	box-shadow: 0 4px 15px rgba(46, 204, 80, 0.5);
}

/* Tab content */
.solutions-content {
	padding: 1.25rem 1.5rem;
	background-color: #111;
	border: 1px solid #222;
	border-radius: 1rem;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solutions-content:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.solutions-item-title {
	color: #2ecc50;
}

.solutions-item-text {
	color: #ddd;
	font-weight: 500;
	line-height: 1.6;
}

@media (max-width: 992px) {
	.solutions-nav {
		flex-direction: row;
		justify-content: center;
		flex-wrap: wrap;
		margin-bottom: 1.5rem;
	}

	.solutions-nav .solutions-tab-link {
		margin: 0.4rem;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.solutions-title {
		font-size: 2rem;
	}
}

/* ===== PRIMARY BUTTON STYLE ===== */
.btn-primary {
	position: relative;
	display: inline-block;
	background: linear-gradient(to bottom, #2ecc71, #27ae60);
	border: 1px solid #1e8449;
	color: #fff;
	font-weight: 600;
	font-size: 1.05rem;
	border-radius: 6px;
	padding: 0.75rem 2rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	z-index: 1;
}

.btn-primary::before {
	content: "";
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: rgba(255, 255, 255, 0.25);
	transform: skewX(-25deg);
	transition: left 0.5s ease;
	z-index: 2;
}

.btn-primary:hover::before {
	left: 130%;
}

.btn-primary:hover {
	background: linear-gradient(to bottom, #27ae60, #229954);
	transform: translateY(-2px);
}

.btn-primary:active {
	transform: translateY(1px) scale(0.98);
}

.btn-primary span {
	display: inline-block;
	transition: transform 0.3s ease;
}

.btn-primary:hover span {
	transform: translateX(6px);
}

/* ===== SERVICES & PRODUCTS ===== */
.section-title,
.section-subtitle {
	color: #2ecc50;
	font-weight: 700;
}

.section-title {
	font-size: 2.5rem;
}

.section-subtitle {
	font-size: 2rem;
}

.overview-title {
	color: #2ecc50;
	font-size: 1.75rem;
	font-weight: 600;
}

.overview-text {
	color: #ccc;
	line-height: 1.6;
}

/* Product cards */
.product-card {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	padding: 20px 30px;
	margin-bottom: 20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	will-change: transform;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.product-number {
	background: #2ecc50;
	color: #fff;
	font-weight: 700;
	font-size: 1.1rem;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	margin: 0 auto;
}

.product-title {
	color: #2ecc50;
	font-size: 1.4rem;
	font-weight: 600;
}

.product-text {
	color: #ccc;
	line-height: 1.6;
}

.package-card .card-body {
	display: flex;
	flex-direction: column;
}

.package-card ul.list-unstyled li {
	margin-bottom: 0.75rem;
	line-height: 1.5;
}

@media (max-width: 992px) {
	.section-title {
		font-size: 2rem;
	}

	.overview-title {
		font-size: 1.5rem;
	}
}

@media (max-width: 768px) {
	.product-card {
		padding: 15px 20px;
	}

	.product-number {
		margin-bottom: 10px;
	}

	.overview-text {
		font-size: 0.95rem;
	}
}

/* ===== HOW IT WORKS SECTION ===== */
.process-section {
	background: #000;
	color: #ccc;
}

.section-title {
	color: #2ecc50;
	font-size: 2.5rem;
	font-weight: 700;
}

.section-description {
	color: #ccc;
	font-size: 1.1rem;
	max-width: 800px;
	margin: 0 auto;
}

/* Timeline base */
.timeline {
	position: relative;
	margin: 50px 0;
	padding: 0;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: rgba(46, 204, 80, 0.3);
	transform: translateX(-50%);
}

/* Timeline items */
.timeline-item {
	position: relative;
	width: 50%;
	padding: 30px 40px;
}

.timeline-item.timeline-right {
	left: 50%;
}

/* Timeline content */
.timeline-content {
	background: rgba(255, 255, 255, 0.05);
	padding: 25px 20px;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	will-change: transform;
}

.timeline-content:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Number bubble */
.timeline-number {
	background: #2ecc50;
	color: #fff;
	font-weight: 700;
	font-size: 1.2rem;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top: -10px;
	left: -15px;
}

.timeline-right .timeline-number {
	left: auto;
	right: -15px;
}

/* Titles & text */
.timeline-title {
	color: #2ecc50;
	font-size: 1.45rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.timeline-text {
	font-size: 1rem;
	line-height: 1.6;
}


@media (max-width: 991px) {
	.section-title {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	.timeline::before {
		left: 8px;
	}

	.timeline-item,
	.timeline-item.timeline-right {
		width: 100%;
		left: 0;
		padding: 25px 15px 25px 40px;
		margin-bottom: 30px;
	}

	.timeline-number {
		left: -8px;
	}

	.timeline-right .timeline-number {
		right: auto;
		left: -8px;
	}
}

/* Testimonial Section */
.testimonial-card {
	background: #ffffff;
	border: 1px solid #e6e6e6;
}

.testimonial-img {
	width: 70px;
	height: 70px;
	object-fit: cover;
}

.testimonial-quote {
	line-height: 1.7;
	color: #222;
}

.quote-mark {
	color: #2ecc50;
	font-size: 1.4rem;
	font-weight: 700;
}

.testimonial-card .bi-star-fill {
	color: #2ecc50;
}

.testimonial-card {
	padding: 2.25rem;
	border-radius: 10px;
}

.testimonial-quote {
	font-size: 1.05rem;
}

.legal-link:hover {
	text-decoration: underline;
}

/* Glowing Green Gradient Testimonial Box */
.testimonial-glow-box {
	background: radial-gradient(circle at top center,
			rgba(46, 204, 80, 0.20) 0%,
			rgba(46, 204, 80, 0.05) 35%,
			rgba(0, 0, 0, 0.85) 85%),
		linear-gradient(135deg,
			rgba(0, 255, 102, 0.10),
			rgba(0, 130, 60, 0.15));

	border-radius: 22px;
	padding: 3rem 2rem;
	border: 1px solid rgba(46, 204, 80, 0.15);
	box-shadow:
		0 0 20px rgba(0, 255, 100, 0.10),
		0 0 60px rgba(0, 255, 100, 0.08) inset;
	backdrop-filter: blur(2px);
	position: relative;
	overflow: hidden;
}

/* Soft vignette corners */
.testimonial-glow-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at bottom center,
			rgba(0, 255, 102, 0.12),
			transparent 60%);
	opacity: 0.6;
	z-index: 0;
}

.testimonial-glow-box * {
	position: relative;
	z-index: 1;
}

/* ===== TEAM SECTION ===== */
.team-section {
	background-color: #000;
	color: #ccc;
}

/* Section Headings */
.section-title {
	color: #2ecc50;
	font-size: 2.4rem;
	font-weight: 700;
}

.section-description {
	color: #ccc;
	font-size: 1.1rem;
	max-width: 750px;
	margin: 0 auto;
	line-height: 1.6;
}

/* TEAM CARD */
.team-card {
	background-color: #000;
	border-radius: 12px;
	overflow: hidden;
	max-width: 380px;
	margin: 0 auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Full wrapper for image + info box */
.team-inner {
	max-width: 240px;
	/* FIX: Image + green box share this exact width */
	margin: 0 auto;
}

/* IMAGE */
.team-image {
	width: 100%;
}

.team-photo {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 4 / 5;
	border-radius: 12px 12px 0 0;
}

/* INFO PANEL (BOTTOM) */
.team-info {
	background: #0d1f0e;
	padding: 18px 15px;
	border-radius: 0 0 12px 12px;
	border-top: 1px solid rgba(46, 204, 80, 0.25);
	text-align: center;
	width: 100%;
	/* Matches team-inner */
}

/* Text */
.team-name {
	color: #fff;
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 10px;
}

/* Icons */
.team-icons a {
	color: #2ecc50;
	font-size: 1.4rem;
	transition: transform 0.2s ease, color 0.2s ease;
}

.team-icons a:hover {
	transform: scale(1.12);
	color: #30ff70;
}

/* Large screens */
@media (min-width: 992px) {
	.team-inner {
		max-width: 260px;
	}
}

/* Medium screens */
@media (max-width: 991px) {
	.section-title {
		font-size: 2rem;
	}
}

/* Small screens */
@media (max-width: 767px) {
	.team-inner {
		max-width: 200px;
	}

	.team-name {
		font-size: 1.05rem;
	}

	.team-icons a {
		font-size: 1.25rem;
	}
}

/* ===== FREE VIDEO SECTION ===== */
.free-video-section {
	background: #000;
	color: #ccc;
	text-align: center;
}

.free-video-section .section-title {
	color: #2ecc50;
	font-size: 2.3rem;
	font-weight: 700;
}

.free-video-section .section-description {
	font-size: 1.1rem;
	max-width: 800px;
	margin: 0 auto 40px;
	line-height: 1.6;
}

/* Video Wrapper */
.video-wrapper {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.video-thumbnail {
	width: 100%;
	border-radius: 12px;
	display: block;
}

/* Play Button */
.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(46, 204, 80, 0.85);
	border: none;
	color: #fff;
	font-size: 3rem;
	padding: 15px 25px;
	border-radius: 50%;
	transition: all 0.3s ease;
	z-index: 2;
}

.play-button:hover {
	background: rgba(46, 204, 80, 1);
	transform: translate(-50%, -50%) scale(1.1);
}

/* Video Overlay */
.video-overlay {
	position: fixed;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.85);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	z-index: 9999;
}

.video-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Video Container */
.video-container {
	position: relative;
	max-width: 800px;
	width: 90%;
}

.video-container video {
	width: 100%;
	border-radius: 12px;
}

/* Close Button */
.close-video {
	position: absolute;
	top: -18px;
	right: -18px;
	background: #2ecc50;
	border: none;
	color: #fff;
	font-size: 2rem;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	cursor: pointer;
	z-index: 2;
	transition: transform 0.3s ease;
}

.close-video:hover {
	transform: scale(1.1);
}

/* CTA */
.video-cta {
	font-size: 1rem;
	margin-top: 1rem;
}

@media (max-width: 768px) {
	.free-video-section .section-title {
		font-size: 2rem;
	}

	.play-button {
		font-size: 2.2rem;
		padding: 10px 18px;
	}

	.video-container {
		width: 95%;
	}
}

/* ===== FAQ SECTION ===== */
.faq-section {
	background: #000;
	color: #ccc;
}

.faq-section .section-title {
	color: #2ecc50;
	font-size: 2.3rem;
	font-weight: 700;
}

.faq-section .section-description {
	font-size: 1.1rem;
	max-width: 800px;
	margin: 0 auto 3rem;
	line-height: 1.6;
}

/* Accordion */
.accordion-item {
	background-color: #111;
	border: 1px solid #222;
	border-radius: 10px;
	margin-bottom: 15px;
	overflow: hidden;
	transition: transform 0.25s ease;
}

.accordion-item:hover {
	transform: translateY(-2px);
}

/* Header Buttons */
.accordion-button {
	background-color: #111;
	color: #ccc;
	font-weight: 500;
	font-size: 1.05rem;
	padding: 1rem 1.25rem;
	border: none;
	box-shadow: none;
	transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
	color: #2ecc50;
	background-color: #141414;
}

.accordion-button:focus {
	box-shadow: 0 0 0 0.15rem rgba(46, 204, 80, 0.35);
}

/* Icon Color */
.accordion-button::after {
	filter: invert(75%) sepia(15%) saturate(0%) hue-rotate(0deg) brightness(95%);
	transition: filter 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
	filter: invert(64%) sepia(97%) saturate(404%) hue-rotate(80deg) brightness(95%);
}

/* Body Content */
.accordion-body {
	background-color: #141414;
	color: #ccc;
	line-height: 1.6;
	padding: 1rem 1.25rem;
	border-top: 1px solid #222;
}

@media (max-width: 768px) {
	.faq-section .section-title {
		font-size: 2rem;
	}

	.faq-section .section-description {
		font-size: 1rem;
	}

	.accordion-button {
		font-size: 1rem;
	}
}

/* ===== CTA SECTION ===== */
.cta-section {
	background: #000;
	color: #ccc;
	padding: 6rem 0;
}

.cta-title {
	color: #2ecc50;
	font-size: 2.3rem;
	line-height: 1.35;
	max-width: 900px;
	margin: 0 auto 1.5rem;
}

/* Body paragraphs stay left-aligned */
.cta-note,
.cta-description {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #ccc;
}

/* Secondary text is centered but smaller */
.cta-secondary {
	color: #aaa;
	font-size: 1rem;
}

/* CTA Link */
.cta-link {
	color: #2ecc50;
	font-weight: 600;
	text-decoration: none;
	transition: color .3s ease, transform .3s ease;
}

.cta-link:hover {
	color: #25b143;
	transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.cta-title {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.cta-section {
		padding: 4rem 1rem;
	}

	.cta-title {
		font-size: 1.8rem;
	}

	.cta-description {
		font-size: 1rem;
	}
}

/* ===== ABOUT SECTION ===== */
.about-section {
	color: #e5e5e5;
	background-color: #000;
}

.about-title {
	color: #2ecc50;
	font-weight: 700;
	font-size: 2rem;
}

.about-section p {
	color: #f0f0f0;
	line-height: 1.65;
	margin-bottom: 1rem;
}

.about-section .lead {
	color: #ccc;
	font-size: 1.15rem;
}

.about-image {
	width: 100%;
	border-radius: 2rem 1rem 5rem 1rem;
	object-fit: cover;
}

@media (max-width: 992px) {
	.about-title {
		font-size: 1.8rem;
	}
}

@media (max-width: 768px) {
	.about-image {
		margin-bottom: 2rem;
	}

	.about-title {
		font-size: 1.6rem;
	}

	.about-section p {
		font-size: 0.95rem;
	}
}

@media (max-width: 576px) {
	.about-section {
		padding: 3.5rem 1rem;
	}
}

/* ===== LEGAL SECTION STYLING ===== */
.legal-section {
	color: #ccc;
	max-width: 1000px;
	margin: 0 auto;
}

.legal-section p,
.legal-section li {
	text-align: left;
	line-height: 1.6;
	margin-bottom: 1rem;
	color: #f0f0f0;
}

.legal-section ul {
	padding-left: 1.25rem;
}

.legal-section h1,
.legal-section h4 {
	color: #2ecc50;
	font-weight: 700;
	margin-bottom: 1rem;
}

.legal-link {
	color: #2ecc50;
	text-decoration: none;
	transition: all 0.3s ease;
}

.legal-link:hover {
	text-decoration: underline;
}

/* ===== CONTACT SECTION STYLING ===== */
.text-brand {
	color: #2ecc50;
	margin-top: -0.5rem;
}

.contact-line i {
	font-size: 1.1rem;
}

.contact-line span {
	white-space: nowrap;
}

/* Placeholder styling for the contact form */
#contactform .form-control::placeholder {
	color: #000;
	opacity: 1;
}

@media (max-width: 576px) {
	.contact-line {
		text-align: center;
	}

	#contactform .col-md-4 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/* ===== THE BREAKDOWN SECTION STYLING ===== */
.product-section h1 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2ecc50;
}

.text-product {
	color: #2ecc50;
}

.product-section ul {
	line-height: 1.7;
	padding-left: 1.2rem;
}

.product-section ul li {
	margin-bottom: 10px;
}

.product-section ul li:last-child {
	margin-bottom: 0;
}

/* ===== DIGITAL MARKETERS SALES FUNNEL ===== */
.bg-product {
	background-color: #2ecc50;
}

.package-card {
	background: #fff;
	border-radius: 1.25rem;
	transition: all 0.35s ease;
}

.package-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.package-card .card-header {
	font-size: 1.1rem;
	letter-spacing: 0.5px;
	border-radius: 1.25rem 1.25rem 0 0;
}

.package-card ul li {
	padding: 6px 0;
	border-bottom: 1px solid #eee;
	color: #333;
	transition: color 0.3s ease;
}

.package-card ul li:last-child {
	border-bottom: none;
}

.package-card ul li:hover {
	color: #2ecc50;
}

/* ===== THE DAILY DRIVE SYSTEM ===== */
.info-card {
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-card i {
	transition: color 0.3s ease;
}

.info-card:hover i {
	color: #27ae60;
}

.info-card h6 {
	color: #222;
}

.info-card p {
	color: #555;
	font-size: 0.9rem;
}

.results-card {
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.results-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.circle-number {
	background-color: #2ecc50;
	color: #000;
	font-weight: 700;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1rem;
}