/*-----------------------------------------------------------------------------------
    Template Name: Seeva - Medical and Dental HTML Template
    Template URI: https://webtend.net/demo/html/seeva/
    Author: WebTend
    Author URI:  https://webtend.net/
    Version: 1.1

    Note: This is Main Style CSS File.
-----------------------------------------------------------------------------------
	CSS INDEX
	===================
    #. Common
    #. Input field
    #. Keyframes & Animation
    #. Components
        ##. Preloader
        ##. Template Btn
        ##. Hero Area
            ##. Hero Area One
            ##. Hero Area Two
        ##. Hero Slider
            ##. Hero Slider One
            ##. Hero Slider Two
        ##. Section Heading
        ##. Image title box
        ##. Circle Image Gallery
        ##. Iconic Box
            ###. Iconic Box
            ###. Iconic Box Two
            ###. Iconic Box Three
        ##. Doctor Boxes
            ###. Doctor Boxes One
            ###. Doctor Boxes Two
            ###. Doctor Boxes Three
            ###. Doctor Details
        ##. Testimonials
            ###. Testimonials Slider
        ##. Counter
        ##. Check List
        ##. Partner Logos
        ##. Latest Blog
        ##. Tile Gallery
        ##. Simple Icon
        ##. Fancy Content Box
        ##. Call to Action
            ###. Call to Action One
            ###. Call to Action Two
        ##. Bordered Icon
        ##. Gallery
        ##. Pricing Table
        ##. Accordion
        ##. Seeva Video
        ##. Progress-bar
        ##. Product Tab
        ##. Page Title
        ##. Contact
    #. Blog
        ##. Blog Post Loop
        ##. Blog Details
        ##. Comment Template
        ##. Pagination
        ##. Sidebar
    #. Section
    #. Shop
        ##. Product Top-bar
        ##. Product Loop
        ##. Product Details
        ##. Shop Sidebar
    #. Footer
-----------------------------------------------------------------------------------*/
/*======= Common =======*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&amp;family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');



/* ===== GLOBAL CSS ===== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

.about {
	margin-top: 50px;
}

.section-header {
	text-align: left;
	margin-bottom: 3rem;
	font-weight: bold;
	margin-top: 50px;

}

.section-header h2 {
	color: #00ACE9;
}

.card-conclave {
	background-color: white;
	border-radius: 10px;
	/* box-shadow: var(--shadow); */
	padding: 30px;
	/* margin-bottom: 10px; */
	transition: var(--transition);
	border: none;
}

@media (max-width: 767px) {
	.card-conclave {
		margin-left: 15px;
		margin-right: 15px;
	}
}

.card-conclave h3 {
	font-size: 1rem;
	font-weight: bold;
	color: #005da9;
}

.card-conclave:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ===== HEADER & NAVIGATION ===== */
header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-top {
	background-color: var(--primary);
	color: white;
	padding: 10px 0;
	text-align: center;
	font-size: 0.9rem;
}

.header-top span {
	font-weight: 600;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo-image {
	max-height: 50px;
	width: 200px;
	display: block;
}


.logo-icon {
	background-color: var(--secondary);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
}

.logo-text h1 {
	font-size: 1.8rem;
	margin-bottom: 0;
}

.logo-text p {
	font-size: 0.9rem;
	color: var(--gray);
	margin-bottom: 0;
}



nav a {
	font-weight: 600;
	color: #212529;
	position: relative;
}

nav a:hover {
	color: #005da9;
}

nav a.active {
	color: #005da9;
}

nav a.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #005da9;
}

.mobile-toggle {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* ===== MOBILE HEADER FIX ===== */
/* ===== MOBILE PANEL ===== */
.mobile-panel {
	position: fixed;
	top: 0;
	right: -280px;
	/* hidden off-screen initially */
	width: 280px;
	height: 100vh;
	background: #fff;
	z-index: 9999;
	transition: right 0.3s ease;
	display: flex;
	flex-direction: column;
	padding-top: 20px;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
}

.mobile-panel.active {
	right: 0;
}

.mobile-panel .close-btn {
	align-self: flex-end;
	padding: 10px 20px;
	font-size: 44px;
	cursor: pointer;
}

.mobile-panel ul {
	list-style: none;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.mobile-panel ul li a {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark);
	text-decoration: none;

}

/* Mobile menu links with dividers */
.mobile-panel ul li {
	border-bottom: 1px solid #eee;
	/* divider line */
}

.mobile-panel ul li:last-child {
	border-bottom: none;
	/* remove divider from last item */
}

.mobile-panel ul li a {
	display: block;
	padding: 15px 0;
}


.mobile-panel ul li a.active {
	color: var(--secondary);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
	nav {
		display: none;
	}

	.mobile-toggle {
		display: block;
		margin-right: 20px;
	}

	.logo-image {
		max-height: 50px;
		width: 200px;
		display: block;
		margin-left: 20px;
	}

}


/* ===== HERO SECTION ===== */
.hero {
	width: 100%;
	height: 380px;
	/* fixed height */
	overflow: hidden;
}

.hero-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	/* aligns image to top */
	justify-content: center;
}

.hero-img {
	width: 100%;
	max-height: 100%;
	/* prevents image from exceeding section height */
	height: auto;
	display: block;
}


.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(10, 44, 94, 0.9), rgba(10, 44, 94, 0.8));
	z-index: 1;
}

.hero h1 {
	color: white;
	font-size: 3.5rem;
	margin-bottom: 1rem;
}

.hero p {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto 2rem;
	color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 30px;
}


.sub-themes .row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

@media (max-width: 992px) {
	.sub-themes .row {
		grid-template-columns: 1fr;
	}
}

.card-conclave p {
	font-size: 14px;
}

.more-link a {
	font-weight: 400;
	color: #005da9;
	font-size: 0.9rem;
}

.more-link a:hover {
	color: var(--accent);
}


.schedule-day h3 {
	color: #00ACE9;
	font-weight: 600;
	margin-bottom: 10px;
	margin-top: 50px;
	font-size: 1.5rem;
}

.schedule-day hr {
	border: none;
	border-top: 2px solid #005DA9;
	margin-bottom: 10px;
}

.schedule-row {
	display: grid;
	grid-template-columns: 150px 1fr;
	padding: 15px 0;
	border-bottom: 1px solid var(--light-gray);
	margin-bottom: 30px;
	color: #212529;
}

.schedule-row .time {
	font-weight: 600;
	color: var(--gray);
}

.schedule-row .details {
	font-size: 1rem;
}

.schedule-row .room {
	display: block;
	color: var(--gray);
	font-size: 0.9rem;
	margin-top: 5px;
}

.schedule-row.break {
	background-color: #eef8f9;
	padding: 15px;
}

.schedule-row.highlight {
	background-color: #eef8f9;
	padding: 15px;
}

.schedule-row.multi {
	align-items: flex-start;

}

.tracks {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;

}

.track {
	padding-left: 15px;
	border-left: 3px solid var(--secondary);
	color: #212529;
}

@media (max-width: 992px) {
	.schedule-row {
		grid-template-columns: 1fr;
		gap: 10px;
	}

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

	.track {
		border-left: none;
		border-top: 3px solid var(--secondary);
		padding-left: 0;
		padding-top: 10px;
	}
}


.speaker-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.speaker-card {
	text-align: center;
	padding: 25px;
	color: #212529;

}




.speaker-img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 20px;
	border: 5px solid var(--light-gray);
}


/* ===== SPEAKER FULL WIDTH SECTION ===== */
.speaker-hero {
	width: 100%;
	background-color: #00ACE9;
	/* Blue from screenshot */
	padding: 40px 0;
}

/* Layout */
.speaker-grid-1 {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;

	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 40px;
	align-items: center;
}

/* Image */
.speaker-image img {
	width: 200px;
	height: auto;
	border-radius: 4px;
	object-fit: cover;
}

/* Text Content */
.speaker-content h2 {
	color: #ffffff;
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.speaker-content p {
	color: #ffffff;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
	.speaker-grid-1 {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 20px;
		padding: 20px;
	}

	.speaker-image img {
		width: 160px;
		margin: 0 auto;
	}

	.speaker-content h2 {
		font-size: 1.4rem;
	}

	.speaker-content p {
		font-size: 0.95rem;
	}

	.hero {
		width: 100%;
		height: 100px;
		/* fixed height */
		overflow: hidden;
	}
}



.session-wrapper {
	max-width: 1100px;
	margin: auto;
	font-family: Arial, sans-serif;
}

/* Tabs */
.tabs {
	display: flex;
	gap: 30px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
}

.tabs button {
	background: none;
	border: none;
	padding: 10px 0;
	font-weight: 600;
	cursor: pointer;
	position: relative;
}

.tabs button.active {
	background: #005DA9;
	color: #fff;
	padding: 8px 14px;
}

/* Section titles */
.section-title {
	font-size: 14px;
	letter-spacing: 1px;
	margin: 30px 0 15px;
}

/* Card container */
.people-card {
	background: #eaf3fb;
	padding: 25px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	border-radius: 6px;
}

/* Individual person */
.person {
	display: flex;
	gap: 15px;
	align-items: center;
}

.person img {
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 4px;
}

.person h4 {
	margin: 0;
	font-size: 16px;
}

.person p {
	margin: 6px 0 0;
	font-size: 13px;
	color: #555;
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
	.people-card {
		grid-template-columns: 1fr;
	}
}


.session-header {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	padding: 30px 0;
	max-width: 1100px;
	margin: auto;
}

/* Date box */
.date-box {
	background: #e6f0fb;
	width: 100px;
	height: 100px;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.date-box h2 {
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	color: #2c6ecb;
}

.date-box span {
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 600;
	color: #2c6ecb;
}

/* Right content */
.session-code {
	font-size: 14px;
	font-weight: 700;
	color: #2c6ecb;
}


/* Meta info */
.session-meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #5f6f81;
}

.meta-item i {
	color: #2c6ecb;
	font-size: 16px;
}

.session-right h1 {
	color: #00ACE9;
}


/* Responsive */
@media (max-width: 768px) {

	/* ===== SESSION HEADER ===== */
	.session-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 20px 16px;
		gap: 15px;
	}

	.session-left {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.date-box {
		width: 85px;
		height: 85px;
		border-radius: 14px;
	}

	.date-box h2 {
		font-size: 30px;
	}

	.date-box span {
		font-size: 13px;
	}

	.session-right {
		width: 100%;
	}

	.session-code {
		display: inline-block;
		margin-bottom: 6px;
	}

	.session-right h1 {
		font-size: 22px;
		line-height: 1.3;
		margin-bottom: 10px;
	}

	.session-meta {
		align-items: center;
	}

	.meta-item {
		justify-content: center;
		font-size: 13px;
	}

	/* ===== TABS ===== */
	.tabs {
		display: flex;
		justify-content: center;
		gap: 10px;
		margin: 20px 0;
		flex-wrap: wrap;
	}

	.tab-btn {
		flex: 1;
		padding: 10px;
		font-size: 14px;
		border-radius: 6px;
	}

	/* ===== TAB CONTENT ===== */
	.tab-content {
		padding: 0 16px;
	}

	.tab-content p {
		font-size: 14px;
		line-height: 1.6;
	}

	/* ===== SECTION TITLES ===== */
	.section-title {
		font-size: 18px;
		text-align: center;
		margin: 30px 0 20px;
	}

	/* ===== PEOPLE CARDS ===== */
	.people-card {
		display: flex;
		flex-direction: column;
		gap: 20px;
		padding: 0 16px;
	}

	.person {
		display: flex;
		align-items: center;
		gap: 15px;
		background: #f7f9fc;
		padding: 12px;
		border-radius: 10px;
	}

	.person img {
		width: 70px;
		height: 70px;
		border-radius: 8px;
		object-fit: cover;
		flex-shrink: 0;
	}

	.person .info h4 {
		font-size: 15px;
		margin-bottom: 4px;
	}

	.person .info p {
		font-size: 13px;
		line-height: 1.4;
		margin: 0;
	}
}


.tabs {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}

.tab-btn {
	padding: 10px 20px;
	border: none;
	background: #eee;
	cursor: pointer;
	font-weight: 600;
}

.tab-btn.active {
	background: #000;
	color: #fff;
}

.tab-content {
	display: none;
	margin-bottom: 50px;
}

.tab-content.active {
	display: block;
}

.speaker-sessions {
	margin-top: 50px;
	margin-bottom: 50px;
}

.speaker-sessions {
	color: #00ACE9;
}

/* ===== FOOTER ===== */



.footer-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column {
	flex: 1;
	min-width: 250px;
}

.footer-column h3 {
	color: white;
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
}

.footer-column ul {
	list-style: none;
}

.footer-column li {
	margin-bottom: 10px;
}

.footer-column a {
	color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
	color: white;
	padding-left: 5px;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 50%;
	font-size: 1.2rem;
}

.social-links a:hover {
	background-color: var(--accent);
	color: white;
}

.copyright {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}



/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
	.content-with-sidebar {
		flex-direction: column;
	}

	.field-trip-card {
		flex-direction: column;
		text-align: center;
	}

	.field-trip-img {
		width: 100%;
		min-width: auto;
	}
}

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

	h2 {
		font-size: 1.7rem;
	}

	nav ul {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: white;
		flex-direction: column;
		padding: 20px;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
		gap: 15px;
	}

	nav ul.active {
		display: flex;
	}

	.mobile-toggle {
		display: block;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero-btns {
		flex-direction: column;
		align-items: center;
	}

	.hero-btns .btn {
		width: 100%;
		max-width: 300px;
	}

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


/*# sourceMappingURL=style.css.map */