@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');
:root {
	--primary-blue: #0097b2;
	--light-blue: #ebf8ff;
	--white: #ffffff;
	--accent-gold: #d4af37;
	--heading-font: 'Roboto', sans-serif;
	--body-font: 'Roboto', sans-serif;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--body-font);
}
body {
	background: var(--light-blue);
	line-height: 1.6;
}
.navbar {
	background: rgba(255, 255, 255, 0.95);
	padding: 1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}
.logo {
	height: 80px;
	display: flex;
	align-items: center;
	margin-right: 2rem;
}
.logo img {
	height: 100%;
	width: auto;
}
.nav-container {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}
.nav-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	max-width: 1200px;
	/* margin: 8px auto; */
	position: relative;
	top: 12px;
	text-transform: uppercase;
}
.nav-links a {
	text-decoration: none;
	color: var(--primary-blue);
	font-weight: bold;
	transition: all 0.3s ease;
	font-size: 1.1rem;
	letter-spacing: 1.5px;
	padding: 0.5rem 1.5rem;
	border-bottom: 2px solid transparent;
	font-family: var(--heading-font);
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}
.nav-links a:hover {
	opacity: 0.8;
	color: var(--accent-gold);
	border-bottom: 6px solid var(--accent-gold);
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}
.nav-links a.active {
	color: var(--primary-blue);
	border-bottom: 6px solid var(--primary-blue);
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	opacity: 1;
}
.hamburger {
	display: none;
	cursor: pointer;
	padding: 0.5rem;
}
.hamburger span {
	display: block;
	width: 25px;
	height: 3px;
	background: var(--primary-blue);
	margin: 5px 0;
	transition: all 0.3s ease;
}
.hero {
	min-height: 80vh;
	padding-top: 100px;
	/* Increased padding for better spacing */
	margin-top: 0;
	background: linear-gradient(rgb(31 56 89 / 33%), rgb(27 53 85 / 30%)), url(Gemini_Generated_Image_sslbvssslbvssslb.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	text-align: center;
	/* margin-bottom: 4rem; */
	background-attachment: fixed;
	background-size: cover;
	background-position: top;
}
.hero-index {
	background-position-y: -0px;
}
@media screen and (max-width: 1024px) {
	.hero-index {
		background-position-y: 0px;
	}
}
.hero-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 3rem;
	color: var(--white);
}
.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}
.hero p {
	font-size: 1.4rem;
	margin-bottom: 2rem;
	font-weight: 300;
	line-height: 1.6;
}
.cta-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: var(--accent-gold);
	color: var(--white);
	text-decoration: none;
	border-radius: 5px;
	font-size: 1.2rem;
	font-weight: 500;
	transition: transform 0.3s, box-shadow 0.3s;
	/* text-transform: lowercase; */
}
.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.services {
	padding: 2rem 2rem 4rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}
.service-card {
	background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
	padding: 3rem;
	border-radius: 15px;
	border: 1px solid rgba(44, 82, 130, 0.1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}
.service-card:hover {
	transform: translateY(-5px);
}
.service-card i {
	font-size: 2.5rem;
	color: var(--accent-gold);
	margin-bottom: 1.5rem;
}
.service-card h3 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--primary-blue);
	font-family: var(--heading-font);
	/* text-transform: lowercase; */
}
.service-card p {
	font-size: 1.2rem;
	color: #4a5568;
	line-height: 1.7;
	font-family: var(--body-font);
	font-weight: 300;
}
footer {
	background: var(--primary-blue);
	color: var(--white);
	padding: 4rem 2rem 2rem;
	margin-top: 2rem;
}
.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr) 1.5fr;
	gap: 2rem;
}
.footer-col h3 {
	color: var(--white);
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	font-weight: 500;
}
.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-col ul li {
	margin-bottom: 0.8rem;
}
.footer-col ul li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: block;
}
.footer-col ul li a:hover {
	color: var(--accent-gold);
	padding-left: 5px;
}
.footer-contact {
	padding-left: 2rem;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-contact p {
	margin-top: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 400;
	letter-spacing: 0.3px;
}
.contact-details p {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	font-weight: 400;
	letter-spacing: 0.3px;
}
.contact-details i {
	color: var(--accent-gold);
	font-size: 1.4rem;
	min-width: 24px;
	text-align: center;
}
.social-links {
	display: flex;
	gap: 1.5rem;
	margin-top: 2.5rem;
}
.social-link {
	color: var(--white);
	font-size: 1.8rem;
	transition: all 0.3s ease;
	opacity: 0.85;
}
.social-link:hover {
	color: var(--accent-gold);
	transform: translateY(-3px);
	opacity: 1;
}
.copyright {
	width: 100%;
	background: rgba(0, 0, 0, 0.1);
	text-align: left;
	padding: 1rem 0;
	margin-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright p {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	font-size: 0.9rem;
	opacity: 0.8;
}
.copyright a {
	color: var(--white);
	text-decoration: none;
}
.dev {
	float: right;
}
@media screen and (max-width: 1024px) {
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-contact {
		grid-column: 1 / -1;
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding: 2rem 0 0;
		margin-top: 2rem;
	}
}
@media screen and (max-width: 640px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.footer-col,
	.footer-contact {
		text-align: center;
		padding: 0;
	}
	.contact-details p {
		justify-content: center;
	}
	.social-links {
		justify-content: center;
	}
	.copyright p {
		text-align: center;
	}
	.dev {
		float: none;
		display: block;
		margin-top: 0.5rem;
	}
}

/* Add responsive adjustments */
@media screen and (max-width: 768px) {
	.navbar {
		justify-content: space-between;
		padding: 0.8rem 1rem;
		flex-wrap: nowrap;
	}
	.nav-container {
		width: 100%;
		justify-content: space-between;
	}
	.nav-links {
		gap: 1rem;
	}
	.nav-links a {
		font-size: 1rem;
		padding: 0.3rem 0.8rem;
	}
	.hero {
		padding-top: 100px;
		min-height: 70vh;
		/* Ensure enough space on mobile */
		background-attachment: scroll; /* Disable fixed backgrounds on mobile for better performance */
	}
	.hero h1 {
		font-size: 2.5rem;
	}
	.hero p {
		font-size: 1.1rem;
	}
	.services-page {
		margin-top: 80px;
	}
	.logo {
		height: 40px;
		margin: 0;
	}
	.hamburger {
		display: block;
		order: 2;
		margin-left: auto;
	}
	.nav-links {
		display: none;
		position: absolute;
		top: 60px;
		/* Adjust based on your navbar height */
		left: 0;
		width: 100%;
		background: var(--white);
		padding: 1rem;
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
	}
	.nav-links.active {
		display: flex;
	}
	.nav-links a {
		font-size: 0.9rem;
		width: 100%;
		text-align: center;
		padding: 0.8rem;
	}
	/* Hamburger animation */
	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	.hamburger.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.hamburger.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
	.years-section, .services-hero {
		background-attachment: scroll; /* Disable fixed backgrounds on mobile for better performance */
	}
}
.services-page {
	margin-top: 20px;
	/* Add space below navbar */
	padding-top: 0rem;
}

.features-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-heading {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 2rem;
    text-align: center;
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

.years-section {
    background: linear-gradient(rgb(44 82 130 / 47%), rgb(44 82 130 / 44%)), url(Gemini_Generated_Image_3r85833r85833r85.jpg);
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0;
    background-attachment: fixed;
}

.years-content {
    max-width: 800px;
    margin: 0 auto;
}

.years-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.years-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-section {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: -4rem;
    margin-bottom: 4rem;
}

.cta-section h2 {
    color: var (--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    background: rgba(0, 0, 0, 0.1);
    text-align: left;
    padding: 1rem;
    font-size: 0.9rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright a {
	color:white;
}
.dev {
	float:right;
}

.copyright p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 0 1rem;
}

.services-intro h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.services-intro p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.services-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 120px;
    height: fit-content;
    background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
}

.services-sidebar h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-sidebar p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.services-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.services-sidebar ul {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.services-sidebar ul li {
    position: relative;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.services-sidebar ul li::before {
    content: "✓";
    color: #38a169;  /* Nice green color */
    font-weight: bold;
    font-size: 1.2rem;
}

.services-sidebar .cta-button {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    background: #38a169;  /* Match the checkmark color */
}

.services-sidebar .cta-button:hover {
    background: #2f855a;  /* Darker shade for hover */
}

@media screen and (max-width: 1024px) {
    .services-container {
        flex-direction: column;
    }

    .services-sidebar {
        position: relative;
        top: 0;
        flex: 0 0 auto;
    }
}

.services-hero {
    background: url('site cover.png');
    min-height: 80vh;
    margin-bottom: 0;
    background-attachment: unset;
    background-position: center;
    background-size: cover;
}

.services-hero .hero-content {
    max-width: 900px;
}

.services-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
}

.services-hero p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.services-hero {
	background: linear-gradient(rgb(44 82 130 / 28%), rgb(44 82 130 / 52%)), url(premium_photo-1661475916373-5aaaeb4a5393.jpg);
	min-height: 75vh;
	margin-bottom: 0;
	background-attachment: fixed;
	background-position-y: -30px;
	background-position-x: right;
	background-size: contain;
}

.about-hero {
    background: linear-gradient(rgb(44 82 130 / 28%), rgb(44 82 130 / 45%)), url(Gemini_Generated_Image_wtekn3wtekn3wtek.jpg);
    min-height: 75vh;
    margin-bottom: 0;
    background-attachment: fixed;
    background-position-y: -30px;
    background-position-x: right;
    background-size: contain;
    /* padding-top: 120px; */
    /* padding-top: 48px; */
}

.about-container {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-content {
    flex: 1;
    text-align: center;
}

.about-content h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem 2rem;
    border-radius: 15px;
    background: transparent;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg,
        var(--white) 0%,
        var(--light-blue) 100%);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 151, 178, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg,
        var(--white) 0%,
        rgba(0, 151, 178, 0.15) 100%);
    box-shadow: 0 10px 20px rgba(0, 151, 178, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a5568;
}

.contact-hero {
	background: linear-gradient(rgb(31 56 89 / 35%), rgb(27 53 85 / 42%)), url(Gemini_Generated_Image_x00scwx00scwx00s.jpg);
	background-size: cover;
	background-attachment: fixed;
}

@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}


.trust-section {
    background: var(--light-blue);
    padding: 5rem 2rem;
    margin-top: 4rem;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-container h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-intro {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.testimonial-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

.trust-section {
    background: var(--light-blue);
    padding: 5rem 2rem;
    margin-top: 3rem;
    padding-top: 0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-container h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-intro {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card i {
    font-size: 2.5rem;
    color: var (--primary-blue);
    margin-bottom: 1.5rem;
}

.testimonial-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ...existing code... */

.client-testimonials {
    margin-top: 4rem;
    padding: 2rem 0;
}

.testimonial-quote {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.3s ease; /* Added transition */
}

.testimonial-quote:hover {
    transform: translateY(-5px); /* Same animation as partner cards */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
}

.testimonial-quote i.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 2rem;
    color: var(--accent-gold);
    background: var(--white);
    padding: 0 10px;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.client-name {
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.client-detail {
    color: #666;
    font-size: 0.9rem;
}

/* ...existing code... */

.process-section {
    background: var(--white);
    padding: 5rem 2rem;
    margin-top: 2rem;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process-container h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin: 4rem 0;
}

.step {
    flex: 1;
    position: relative;
    padding: 0 1rem;
}

.step-number {
    background: var(--accent-gold);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-content {
    background: linear-gradient(135deg,
        var(--white) 0%,
        var(--light-blue) 100%);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 151, 178, 0.1); /* Subtle border using primary-blue */
}

.step-content:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg,
        var(--white) 0%,
        rgba(0, 151, 178, 0.15) 100%); /* Slightly stronger gradient on hover */
    box-shadow: 0 10px 20px rgba(0, 151, 178, 0.1);
}

.step i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Arrow connectors */
.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -2rem;
    z-index: 1;
    top: 124px;
    font-size: 4rem;
    color: var(--accent-gold);
}

@media screen and (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .step:not(:last-child)::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -2rem;
        font-size: 50px;
        transform: translateX(50%);
    }
}

/* ...existing code... */

/* ...existing code... */

.contact-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info-card {
    background: linear-gradient(135deg,
        var(--white) 0%,
        var(--light-blue) 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-card h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 0.5rem;
}

.info-item h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--primary-blue);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.contact-form .cta-button {
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
}

/* Styles for "What will happen next?" section (e.g., on Thank You page) */
.contact-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    /* Ensure it spans full width if parent .contact-container is a grid */
    grid-column: 1 / -1;
}

.contact-section .section-title h2 {
    color: var(--primary-blue);
    font-size: 2.5rem; /* Consistent with other section headings */
    font-family: var(--heading-font);
}

.contact-section .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    /* Ensure it spans full width if parent .contact-container is a grid */
    grid-column: 1 / -1;
    margin-top: 1rem; /* Space from the title */
}

.step-item {
    background: linear-gradient(145deg, var(--white) 0%, var(--light-blue) 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 151, 178, 0.1); /* Subtle border with primary blue */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 151, 178, 0.12);
}

.step-item i {
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.step-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-family: var(--heading-font);
}

.step-item p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    font-family: var(--body-font);
}

@media screen and (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* ...existing code... */

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #4a5568;
    font-size: 1.1rem;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Make the form fields larger and more readable */
.form-group input,
.form-group select {
    padding: 1rem;
    font-size: 1.1rem;
    width: 100%;
}

/* ...existing code... */