/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 70px; /* Added to offset fixed header height */
    background-color: #ffffff; /* Blue background color */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h2 {
    color: #2c5282;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2c5282;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #2c5282;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #1a365d;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(10, 30, 102);
    text-align: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.iti-heading {
    font-family: 'Georgia', serif; /* Changed font family */
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content .cta-button {
    margin-top: 1rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

.hero-content .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.3);
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}

.hero-content .cta-button:active {
    transform: translateY(0);
}

/* Contact Form Styles */
.contact-form .cta-button {
    margin-top: 1rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    font-weight: 600;
}

.contact-form .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.3);
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}

.contact-form .cta-button:active {
    transform: translateY(0);
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: #f7fafc;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

/* Statistics */
.statistics {
    padding: 4rem 0;
    background: #2c5282;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.mission-vision {
    padding: 5rem 0;
    background: #f7fafc;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-card i {
    font-size: 3rem;
    color: #2c5282;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.company-story {
    padding: 5rem 0;
}

.story-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c5282;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.team-section {
    padding: 5rem 0;
    background: #f7fafc;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-image i {
    font-size: 3rem;
    color: #2c5282;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c5282;
}

.position {
    color: #718096;
    font-weight: 600;
    margin-bottom: 1rem;
}

.achievements {
    padding: 5rem 0;
}

.achievements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.achievement-item i {
    font-size: 3rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.achievement-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c5282;
}

/* Services Page Styles */
.services-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.detailed-services {
    padding: 5rem 0;
    background: #f7fafc;
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 3rem;
    color: #2c5282;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
    text-align: center;
}

.service-detail-card p {
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
}

.service-features li:last-child {
    border-bottom: none;
}

.process-section {
    padding: 5rem 0;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2c5282;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #2c5282;
}

.services-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
}

/* Trainings Page Styles */
.trainings-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    text-align: center;
}

.trainings-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trainings-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.training-programs {
    padding: 5rem 0;
    background: #f7fafc;
}

.training-programs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.programs-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Accordion Styles */
.accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5282;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f7fafc;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.program-details {
    padding: 2rem;
}

.program-info h4 {
    color: #2c5282;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Curriculum Highlights specific styling */
.program-info h4.curriculum-highlights {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    border-bottom: 2px solid #2c5282;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Enroll Now button in program details */
.program-info .cta-button {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.4);
    margin-top: 1.5rem;
}

.program-info .cta-button:hover {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    box-shadow: 0 6px 18px rgba(26, 54, 93, 0.6);
    transform: translateY(-2px);
}

.program-info .cta-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(26, 54, 93, 0.4);
}

.program-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
}

.spec i {
    color: #2c5282;
}

.program-info ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
}

.program-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.program-info li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
}

.program-info li:last-child {
    border-bottom: none;
}

/* Trades Grid Styles */
.trades-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}

.trade-item {
    background: #f7fafc;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    flex: 1 1 180px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 6px rgba(44, 82, 130, 0.1);
}

.trade-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(44, 82, 130, 0.25);
    border-color: #2c5282;
    background: white;
}

.trade-item i {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.trade-item span {
    font-weight: 700;
    color: #2c5282;
    font-size: 1.1rem;
}

.training-benefits {
    padding: 5rem 0;
    background: white;
}

.training-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item i {
    font-size: 3rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

/* Conferences Page Styles */
.conferences-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    text-align: center;
}

.conferences-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.conferences-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.conferences-content {
    padding: 5rem 0;
}

.conference-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.conference-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5282;
}

.upcoming-conferences {
    margin-bottom: 4rem;
}

.upcoming-conferences h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

.conference-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.conference-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
}

.conference-date {
    background: #2c5282;
    color: white;
    padding: 1.5rem;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.day {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.year {
    font-size: 0.9rem;
}

.conference-info {
    padding: 1.5rem;
    flex: 1;
}

.conference-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.location {
    color: #718096;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.conference-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: #e2e8f0;
    color: #2c5282;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.conference-benefits {
    padding: 4rem 0;
    background: #f7fafc;
}

.conference-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

.conference-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.conference-benefits .benefit-item {
    text-align: center;
    padding: 2rem;
}

.conference-benefits .benefit-item i {
    font-size: 3rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.conference-benefits .benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.conference-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    border-radius: 10px;
    margin-top: 3rem;
}

.conference-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.conference-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/iti-college-management-systtmolnege-management-system.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-content {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #2c5282;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #2c5282;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #1a365d;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2c5282;
    min-width: 24px;
    padding-top: 0.25rem;
}

.contact-item div h3 {
    font-size: 1.1rem;
    color: #2c5282;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item div p {
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 2rem;
    color: #2c5282;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c5282;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c5282' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.form-group select:focus {
    outline: none;
    border-color: #2c5282;
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-group select::placeholder {
    color: #a0aec0;
}

.contact-form .cta-button {
    margin-top: 1rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
}

.contact-form .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.3);
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}

.contact-form .cta-button:active {
    transform: translateY(0);
}

/* Map Section (Optional - can be added later) */
.map-section {
    padding: 4rem 0;
    background: white;
}

/* Utility Classes */
.text-center {
    text-align: center;
}
.mb-2 {
    margin-bottom: 2rem;
}
.mt-2 {
    margin-top: 2rem;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    background: #e2e8f0;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-image {
    text-align: center;
    color: #2c5282;
    font-size: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.placeholder-image i {
    font-size: 3rem;
}

.gallery-info {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.gallery-info h3 {
    font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 1rem;
    color: #718096;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Hero and Content Styles */
.gallery-hero {
    padding: 100px 0 40px; /* top padding to offset fixed header */
    background: #f7fafc;
    text-align: center;
}

.gallery-hero h1 {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

.gallery-hero p {
    font-size: 1.2rem;
    color: #4a5568;
}

.gallery-content {
    padding: 2rem 0 4rem;
    max-width: 1200px;
    margin: 20px auto 0;
}

/* Gallery Intro */
.gallery-intro {
    max-width: 800px;
    margin: 0 auto;
}

/* Gallery Filter Styles */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #2c5282;
    background: white;
    color: #2c5282;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.filter-btn:hover {
    background: #2c5282;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

.filter-btn.active {
    background: #2c5282;
    color: white;
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.4);
}

.filter-btn.active:hover {
    background: #1a365d;
    border-color: #1a365d;
}

/* Load More Button Styles */
.load-more {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.load-more .cta-button {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.4);
}

.load-more .cta-button:hover {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    box-shadow: 0 6px 18px rgba(26, 54, 93, 0.6);
    transform: translateY(-2px);
}

.load-more .cta-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(26, 54, 93, 0.4);
}
