/* Poppins Font Family */
* {
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 55px; /* Account for fixed navbar */
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0d6efd !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.hero-section h1 {
    font-weight: 700;
    line-height: 1.2;
    font-size: 39px;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    margin-bottom: 10px !important;
}

/* Page Header */
.page-header {
    padding: 80px 0 60px;
    margin-top: 0px !important;
}

/* Step Number */
.step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

/* Conference Cards */
.conference-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.conference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

a .conference-card {
    color: inherit;
}

a:hover .conference-card {
    text-decoration: none;
}

/* Process Step */
.process-step {
    width: 80px;
    height: 80px;
}

/* Contact Icons */
.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Cards */
.card {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Form Controls */
.form-control,
.form-select {
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 400;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

/* Footer */
footer {
    margin-top: auto;
}

footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #0d6efd;
    transform: translateX(3px);
}

footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-right: 10px;
}

footer .social-links a:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
}

footer h5 {
    position: relative;
    padding-bottom: 15px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #0d6efd;
}

footer ul li {
    transition: all 0.3s ease;
}

footer ul li:hover {
    padding-left: 5px;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Text Styles */
.lead {
    font-weight: 400;
    font-size: 1.15rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.display-4 {
    font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Image Styling */
img {
    border-radius: 10px;
}

/* List Styling */
.list-unstyled li {
    padding: 5px 0;
}

/* Primary Color Override */
.text-primary {
    color: #0d6efd !important;
}

.bg-primary {
    background-color: #0d6efd !important;
}

/* Conference Hero Section */
.hero-conference {
    background: linear-gradient(rgba(13, 110, 253, 0.8), rgba(13, 110, 253, 0.8)), url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1920') center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .hero-conference {
        min-height: 400px;
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .hero-conference h1 {
        font-size: 2rem;
    }
    
    .hero-conference .lead {
        font-size: 1rem;
    }
}

