/* ========== PRIMARY HERO SECTION ========== */
#hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

#hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('../img/public/home-bg.jpg');
	background-size: cover;
	background-position: center;
	opacity: 0.08;
	pointer-events: none;
	z-index: 1;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	pointer-events: none;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgba(0,132,201,0.3);
	border-radius: 50%;
	animation: floatParticle 20s infinite ease-in-out;
}

.particle-1 {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
	animation-duration: 18s;
}

.particle-2 {
	top: 60%;
	left: 20%;
	animation-delay: 3s;
	animation-duration: 22s;
}

.particle-3 {
	top: 40%;
	right: 15%;
	animation-delay: 1s;
	animation-duration: 20s;
}

.particle-4 {
	top: 75%;
	right: 25%;
	animation-delay: 5s;
	animation-duration: 19s;
}

@keyframes floatParticle {
	0%, 100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.2;
	}
	25% {
		transform: translate(30px, -30px) scale(1.2);
		opacity: 0.4;
	}
	50% {
		transform: translate(-20px, -60px) scale(0.8);
		opacity: 0.3;
	}
	75% {
		transform: translate(-40px, -30px) scale(1.1);
		opacity: 0.4;
	}
}

.gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.2;
	animation: driftOrb 25s infinite ease-in-out;
}

.orb-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(0,165,219,0.4) 0%, rgba(0,165,219,0) 70%);
	top: -100px;
	right: -100px;
	animation-delay: 0s;
}

.orb-2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(0,132,201,0.3) 0%, rgba(0,132,201,0) 70%);
	bottom: -50px;
	left: -50px;
	animation-delay: 5s;
	animation-duration: 30s;
}

@keyframes driftOrb {
	0%, 100% {
		transform: translate(0, 0);
	}
	33% {
		transform: translate(50px, -30px);
	}
	66% {
		transform: translate(-30px, 40px);
	}
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 30px 60px;
	position: relative;
	z-index: 2;
	text-align: center;
}

.hero-text {
	animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-eyebrow {
	font-size: 14px;
	font-weight: 500;
	color: #0084c9;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 24px;
	opacity: 0;
	animation: fadeIn 1s ease-out 0.3s forwards;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

.hero-title {
	font-family: 'Ruda', sans-serif;
	font-size: 68px;
	font-weight: 300;
	line-height: 1.2;
	color: #595959;
	margin-bottom: 28px;
	letter-spacing: -1px;
}

.title-highlight {
	font-weight: 700;
	background: linear-gradient(135deg, #0084c9 0%, #00a5db 50%, #00db6d 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	margin-top: 8px;
}

.hero-subtitle {
	font-size: 20px;
	line-height: 1.8;
	color: #777;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 300;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	padding: 16px 40px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.4s ease;
	cursor: pointer;
	letter-spacing: 0.5px;
}

.btn-primary {
	background: linear-gradient(135deg, #0084c9 0%, #00a5db 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(0,132,201,0.2);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0,132,201,0.35);
}

.btn-ghost {
	background: transparent;
	color: #0084c9;
	border: 1px solid rgba(0,132,201,0.3);
}

.btn-ghost:hover {
	background: rgba(0,132,201,0.05);
	border-color: #0084c9;
}

.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	animation: fadeIn 1s ease-out 1.5s forwards;
	opacity: 0;
}

.scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(180deg, transparent 0%, #0084c9 100%);
	animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
	0%, 100% {
		opacity: 0.3;
		transform: translateY(0);
	}
	50% {
		opacity: 1;
		transform: translateY(10px);
	}
}

.scroll-indicator span {
	font-size: 12px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
}

@media (max-width: 991px) {
	.hero-title {
		font-size: 48px;
	}
	
	.hero-subtitle {
		font-size: 18px;
	}
	
	.scroll-indicator {
		bottom: 20px;
	}
}

@media (max-width: 767px) {
	#hero {
		min-height: 75vh;
	}
	
	.hero-title {
		font-size: 36px;
	}
	
	.hero-subtitle {
		font-size: 16px;
	}
	
	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.btn {
		width: 100%;
		max-width: 280px;
	}
	
	.scroll-indicator {
		display: none;  /* Hide on mobile since buttons stack and take more vertical space */
	}
}

/* ========== SECONDARY HERO SECTION ========== */
#hero-sm {
	position: relative;
	min-height: 42vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
	overflow: hidden;
	padding: 60px 30px;
}

#hero-sm::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	pointer-events: none;
	z-index: 1;
}

.hero-sm-wrapper {
	max-width: 900px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.floating-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.4;
	pointer-events: none;
}

.orb-1 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(0,132,201,0.3) 0%, transparent 70%);
	top: -100px;
	right: 10%;
	animation: float1 20s ease-in-out infinite;
}

.orb-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(0,165,219,0.25) 0%, transparent 70%);
	bottom: -150px;
	left: -50px;
	animation: float2 25s ease-in-out infinite;
}

.orb-3 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(0,219,109,0.15) 0%, transparent 70%);
	top: 40%;
	left: 15%;
	animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes float2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-40px, 20px) scale(1.15); }
}

@keyframes float3 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(20px, 30px) scale(0.9); }
}

.hero-sm-content {
	position: relative;
	z-index: 3;
}

.hero-sm-title {
	font-family: 'Ruda', sans-serif;
	font-size: 56px;
	font-weight: 700;
	color: #595959;
	margin-bottom: 24px;
	line-height: 1.1;
	letter-spacing: -1px;
}

.hero-sm-description {
	font-size: 20px;
	line-height: 1.7;
	color: #777;
	font-weight: 300;
	max-width: 700px;
	margin: 0 auto;
}

@media (max-width: 767px) {
	#hero-sm {
		min-height: 36vh;
		padding: 50px 30px;
	}
	
	.hero-sm-title {
		font-size: 38px;
	}
	
	.hero-sm-description {
		font-size: 17px;
	}
	
	.orb-1, .orb-2, .orb-3 {
		opacity: 0.3;
	}
}


/* QUOTE - CLASSIC */
.quote-classic {
	padding: 100px 30px;
	background: white;
	position: relative; 
}

.quote-classic::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	pointer-events: none;
	z-index: 1;
}

.quote-classic-container {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.quote-icon-classic {
	color: rgba(0,132,201,0.15);
	margin-bottom: 30px;
}

.quote-text-classic {
	font-family: 'Ruda', sans-serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.5;
	color: #595959;
	margin-bottom: 30px;
	font-style: italic;
}

.quote-author-classic {
	font-size: 17px;
	color: #0084c9;
	font-weight: 600;
	margin-bottom: 5px;
}

.quote-title-classic {
	font-size: 14px;
	color: #999;
	font-weight: 400;
}

/* Homepage Sectional Photo */
/* home-photo-right or home-photo-left */
.home-photo-rounded-accent {
	padding: 100px 30px;
	background: #fff; /*linear-gradient(135deg, rgba(0,165,219,0.02) 0%, rgba(0,132,201,0.04) 100%); */
}

.home-rounded-accent-container {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.home-rounded-accent-content {
	text-align: center;
}

.home-rounded-accent-content h2 {
	font-family: 'Ruda', sans-serif;
	font-size: 38px;
	font-weight: 600;
	color: #595959;
	margin-bottom: 20px;
	line-height: 1.2;
}

.home-rounded-accent-content p {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #777;
	margin-bottom: 25px;
}

.home-rounded-cta {
	display: inline-block;
	padding: 14px 32px;
	background: linear-gradient(135deg, #0084c9 0%, #00a5db 100%);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	font-size: 15px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,132,201,0.2);
}

.home-rounded-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,132,201,0.3);
}

.home-rounded-frame {
	width: 100%;
	height: 400px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0,132,201,0.12);
	position: relative;
}

.home-rounded-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.home-rounded-frame.home-rounded-frame-accent::after {
	content: '';
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border: 2px solid rgba(255,255,255,0.5);
	border-radius: 16px;
	pointer-events: none;
}

/* Photo positioning helper classes */
.home-photo-left .home-rounded-accent-image {
	order: -1;
}

.home-photo-right .home-rounded-accent-image {
	order: 1;
}

/* First breakpoint (1023px) - shrink photo to 40% */
@media (max-width: 1023px) {
	
	.home-rounded-frame {
		height: 350px;
	}
}

/* Second breakpoint (768px) - stack vertically and center text */
@media (max-width: 768px) {
	.home-rounded-accent-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.home-photo-left .home-rounded-accent-container {
		grid-template-columns: 1fr;
	}
	
	.home-rounded-accent-image {
		order: -1 !important; /* Image always on top on mobile */
	}
	
	.home-rounded-frame {
		height: 320px;
	}
}

/* Small mobile */
@media (max-width: 576px) {
	.home-photo-rounded-accent {
		padding: 60px 20px;
	}
	
	.home-rounded-accent-content h2 {
		font-size: 32px;
	}
	
	.home-rounded-frame {
		height: 280px;
	}
}


/* Next Event Home Section - Container */
.next-event-home-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent */
.next-event-home-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 132, 201, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.next-event-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.next-event-header {
    text-align: center;
    margin-bottom: 35px;
}

.next-event-heading {
    font-family: 'Ruda', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #595959;
    margin-bottom: 8px;
    line-height: 1.2;
}

.next-event-subheading {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #777;
    margin: 0;
}

/* Main Content Layout */
.next-event-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.next-event-content:hover {
    box-shadow: 0 12px 40px rgba(0, 132, 201, 0.15);
}

/* Image Wrapper */
.next-event-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.next-event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: 3% 0%;
    transition: transform 0.5s ease;
}

/* Date Badge */
.next-event-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 70px;
    font-family: 'Ruda', sans-serif;
}

.next-event-month {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0084c9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 4px;
}

.next-event-day {
    display: block;
    font-family: 'Ruda', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #595959;
    line-height: 1;
}

/* Event Type Badge */
.next-event-type-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 8px 18px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid;
}

.next-event-type-badge.speaker-series {
    border-color: #00a5db;
    color: #00a5db;
}

/* Event Details */
.next-event-details {
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.next-event-title {
    font-family: 'Ruda', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0084c9;
    margin-bottom: 6px;
    line-height: 1.3;
}

.next-event-subtitle {
    font-family: 'Ruda', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #595959;
    margin-bottom: 16px;
}

/* Speaker Info */
.next-event-speaker {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.next-event-speaker-name {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #00a5db;
    margin-bottom: 4px;
}

.next-event-speaker-title {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    font-style: italic;
    margin: 0;
}

/* Description */
.next-event-description {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

/* Event Meta */
.next-event-meta {
    margin-bottom: 24px;
}

.next-event-datetime {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.next-event-date {
    font-family: 'Ruda', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #595959;
}

.next-event-time,
.next-event-duration {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

/* Action Buttons */
.next-event-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.next-event-btn {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    display: inline-block;
    white-space: nowrap;
}

.next-event-btn-primary {
    background: #0084c9;
    color: white;
}

.next-event-btn-primary:hover {
    background: #00a5db;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 132, 201, 0.3);
}

.next-event-btn-secondary {
    background: transparent;
    color: #0084c9;
    border-color: #0084c9;
}

.next-event-btn-secondary:hover {
    background: #0084c9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 132, 201, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .next-event-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .next-event-image-wrapper {
        min-height: 350px;
    }
    
    .next-event-details {
        padding: 35px 30px;
    }
    
    .next-event-heading {
        font-size: 36px;
    }
    
    .next-event-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .next-event-home-section {
        padding: 50px 20px;
    }
    
    .next-event-heading {
        font-size: 32px;
    }
    
    .next-event-subheading {
        font-size: 16px;
    }
    
    .next-event-header {
        margin-bottom: 30px;
    }
    
    .next-event-image-wrapper {
        min-height: 280px;
    }
    
    .next-event-details {
        padding: 30px 25px;
    }
    
    .next-event-title {
        font-size: 24px;
    }
    
    .next-event-subtitle {
        font-size: 16px;
    }
    
    .next-event-date-badge {
        top: 15px;
        right: 15px;
        padding: 10px 14px;
        min-width: 60px;
    }
    
    .next-event-day {
        font-size: 28px;
    }
    
    .next-event-type-badge {
        bottom: 15px;
        right: 15px;
        font-size: 11px;
        padding: 6px 14px;
    }
}

@media (max-width: 640px) {
    .next-event-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .next-event-btn {
        width: 100%;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .next-event-heading {
        font-size: 28px;
    }
    
    .next-event-details {
        padding: 25px 20px;
    }
    
    .next-event-title {
        font-size: 22px;
    }
    
    .next-event-description {
        font-size: 14px;
    }
}

.photo-staggered {
	padding: 100px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.staggered-container {
	max-width: 1000px;
	margin: 0 auto;
}

.staggered-title {
	font-family: 'Ruda', sans-serif;
	font-size: 42px;
	font-weight: 600;
	color: #595959;
	text-align: center;
	margin-bottom: 70px;
}

.staggered-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	margin-bottom: 60px;
}

.staggered-row:last-child {
	margin-bottom: 0;
}

.staggered-image {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 25px rgba(0,132,201,0.1);
	transition: all 0.4s ease;
}

.staggered-image img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
}

.staggered-image:hover {
	transform: scale(1.03);
	box-shadow: 0 10px 35px rgba(0,132,201,0.15);
}

.staggered-text h3 {
	font-family: 'Ruda', sans-serif;
	font-size: 28px;
	font-weight: 600;
	color: #595959;
	margin-bottom: 15px;
}

.staggered-text p {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #777;
}

.staggered-link {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #0084c9;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.3s ease;
	margin-top: 12px; 
}

.staggered-link:hover {
	color: #00a5db;
}

.link-arrow {
	display: inline-block;
	transition: transform 0.3s ease;
}

.staggered-link:hover .link-arrow {
	transform: translateX(4px);
}

@media (max-width: 991px) {
	.staggered-row,
	.staggered-row.reverse {
		grid-template-columns: 1fr;
	}
	
	.staggered-image {
		order: -1;
	}
}

.photo-circular {
	padding: 100px 30px;
	background: white;
}

.circular-container {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 60px;
}

.circular-content {
	flex: 1;
	text-align: center; 
}

.circular-image {
	flex-shrink: 0;
}

.circle-frame {
	width: 350px;
	height: 350px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0,132,201,0.15);
	position: relative;
}

.circle-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.circle-frame::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 3px solid rgba(0,132,201,0.2);
	border-radius: 50%;
	pointer-events: none;
}

.circular-content h2 {
	font-family: 'Ruda', sans-serif;
	font-size: 38px;
	font-weight: 600;
	color: #595959;
	margin-bottom: 20px;
	line-height: 1.2;
}

.circular-content p {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #777;
	margin-bottom: 25px;
}

.circular-cta {
	font-family: 'Roboto', sans-serif;
	color: #0084c9;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	transition: all 0.3s ease;
	display: inline-block;
}

.circular-cta:hover {
	color: #00a5db;
	transform: translateX(5px);
}

@media (max-width: 991px) {
	.circular-container {
		flex-direction: column;
		text-align: center;
	}
	
	.circle-frame {
		width: 280px;
		height: 280px;
	}
	
	.circular-image {
		order: -1;
	}
}

.contact-minimal {
	padding: 100px 30px;
	background: white;
}

.contact-minimal-container {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.contact-minimal h2 {
	font-family: 'Ruda', sans-serif;
	font-size: 42px;
	font-weight: 600;
	color: #595959;
	margin-bottom: 20px;
}

.contact-minimal > p {
	font-family: 'Roboto', sans-serif;
	font-size: 17px;
	line-height: 1.7;
	color: #777;
	margin-bottom: 40px;
}

.contact-links {
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-top: 12px;
	margin-bottom: 40px;
}

.contact-link {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	color: #595959;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-link svg {
	color: #0084c9;
	transition: transform 0.3s ease;
}

.contact-link:hover {
	color: #0084c9;
}

.contact-link:hover svg {
	transform: scale(1.1);
}

.contact-divider {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 40px;
}

.contact-divider::before,
.contact-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e0e0e0;
}

.contact-divider span {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	color: #aaa;
}

.contact-button {
	display: inline-block;
	padding: 16px 40px;
	font-family: 'Ruda', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: white;
	background: #0084c9;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.3s ease, transform 0.2s ease;
}

.contact-button:hover {
	background: #00a5db;
	transform: translateY(-2px);
}

@media (max-width: 600px) {
	.contact-links {
		flex-direction: column;
		align-items: center;
		gap: 20px; 
	}
}