@charset "utf-8";
/*
Template Name: Academic Education V2
Author: <a href="http://www.os-templates.com/">OS Templates</a>
Author URI: http://www.os-templates.com/
Licence: Free to use under our free template licence terms
Licence URI: http://www.os-templates.com/template-terms
File: Layout CSS
*/

@import url("fontawesome-4.2.0.min.css");
@import url("../scripts/nivo-lightbox/nivo-lightbox.min.css");
@import url("framework.css");

/* 
 * RIMC Website Redesign
 * Modern Style CSS
 * Created for Rashtriya Indian Military College
 */

/* Base Variables */
:root {
  --primary-color: #0a2240; /* Navy Blue - Military-inspired color */
  --secondary-color: #c3933f; /* Gold - Military-inspired color */
  --accent-color: #a51c30; /* Deep Red - Military-inspired color */
  --text-color: #333333;
  --light-text: #ffffff;
  --light-bg: #f5f5f5;
  --dark-bg: #121921;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 5px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container and Grid */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  flex: 1;
  padding: 0 15px;
  min-width: 250px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: var(--light-text);
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-accent:hover {
  color: var(--accent-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  color: var(--secondary-color);
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-color);
  padding: 8px 0;
}

.top-bar-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.top-bar-nav li {
  margin-left: 20px;
}

.top-bar-nav li:first-child {
  margin-left: 0;
}

.top-bar-nav a {
  color: var(--light-text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.top-bar-nav a:hover {
  color: var(--secondary-color);
}

/* Header */
.header {
  background-color: var(--light-text);
  box-shadow: var(--shadow);
  padding: 15px 0;
  position: relative;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Main Navigation */
.main-nav {
  background-color: var(--secondary-color);
  position: relative;
  z-index: 99;
}

.nav-container {
  position: relative;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 15px 20px;
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--accent-color);
}

.has-dropdown > .nav-link:after {
  content: '▼';
  font-size: 0.7rem;
  margin-left: 5px;
  vertical-align: middle;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background-color: var(--light-text);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 99;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.dropdown-link:hover {
  background-color: var(--light-bg);
  color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--light-text);
  max-width: 650px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--light-text);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Slider */
.slider {
  position: relative;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  flex: 0 0 100%;
  position: relative;
}

.slide-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--light-text);
}

.slide-title {
  font-size: 1.5rem;
  color: var(--light-text);
  margin-bottom: 10px;
}

.slider-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.slider-control {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--light-text);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.slider-control:hover {
  background-color: var(--secondary-color);
}

.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-indicator.active {
  background-color: var(--secondary-color);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: var(--light-text);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  background-color: var(--light-text);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.feature-desc {
  color: #666;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-title {
  margin-bottom: 20px;
}

.about-desc {
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-feature-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.about-feature-text {
  font-weight: 600;
}

/* Courses Section */
.courses-section {
  padding: 80px 0;
  background-color: var(--light-text);
}

.courses-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.course-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background-color: var(--light-text);
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.course-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.course-card:hover .course-img img {
  transform: scale(1.1);
}

.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  background-color: var(--accent-color);
  color: var(--light-text);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 3px;
}

.course-content {
  padding: 20px;
}

.course-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.course-desc {
  color: #666;
  margin-bottom: 15px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #666;
}

.course-meta-icon {
  color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.testimonials-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  text-align: center;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  background-color: var(--light-text);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.testimonial-text:before,
.testimonial-text:after {
  content: '"';
  color: var(--secondary-color);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.testimonial-position {
  font-size: 0.85rem;
  color: #666;
}

/* News Section */
.news-section {
  padding: 80px 0;
  background-color: var(--light-text);
}

.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background-color: var(--light-text);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .news-img img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: var(--light-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 600;
}

.news-day {
  font-size: 1.25rem;
}

.news-content {
  padding: 20px;
}

.news-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.news-desc {
  color: #666;
  margin-bottom: 15px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.news-author {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #666;
}

.news-author-icon {
  color: var(--secondary-color);
}

.news-comments {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #666;
}

.news-comments-icon {
  color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--light-text);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section .section-title {
  color: var(--light-text);
}

.cta-section .section-title:after {
  background-color: var(--secondary-color);
}

.cta-desc {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cta-section .btn-outline {
  border-color: var(--light-text);
  color: var(--light-text);
}

.cta-section .btn-outline:hover {
  background-color: var(--light-text);
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-title {
  margin-bottom: 20px;
}

.contact-desc {
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
}

.contact-text {
  flex: 1;
}

.contact-label {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-value {
  color: #666;
}

.contact-map {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(195, 147, 63, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: #999;
  padding-top: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-contact-info {
  margin-bottom: 20px;
}

.footer-contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  border-radius: 50%;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.footer h4 {
  color: var(--light-text);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #999;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer form {
  margin-bottom: 20px;
}

.footer .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--light-text);
}

.footer .form-control::placeholder {
  color: #999;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: var(--light-text);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

/* Internal Pages Styles */
.page-banner {
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb li {
  margin-right: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb li:last-child {
  color: var(--secondary-color);
}

.breadcrumb a {
  color: white;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--secondary-color);
}

.about-detail-section {
  background-color: white;
}

.about-detail-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-detail-content .about-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.about-detail-content .about-text {
  flex: 2;
  min-width: 300px;
}

.about-detail-content h3 {
  margin-top: 1.5rem;
  color: var(--primary-color);
}

.about-detail-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Section for academic details */
.academics-section {
  padding: 60px 0;
  background-color: white;
}

.academics-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.academics-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.academics-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.academics-text {
  flex: 2;
  min-width: 300px;
}

.academics-text h3 {
  margin-top: 1.5rem;
  color: var(--primary-color);
}

.academics-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Fees Section Styles */
.fees-section {
  padding: 60px 0;
  background-color: white;
}

.fees-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 30px;
}

.card-header {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 20px;
}

.card-header h3 {
  margin: 0;
  color: white;
  font-size: 1.3rem;
}

.card-body {
  padding: 20px;
}

.fee-table {
  width: 100%;
  margin-bottom: 30px;
  overflow-x: auto;
}

.fee-table table {
  width: 100%;
  border-collapse: collapse;
}

.fee-table th,
.fee-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.fee-table th {
  background-color: var(--light-bg);
  font-weight: 600;
  color: var(--primary-color);
}

.fee-table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.fee-table tfoot {
  font-weight: 600;
}

.fee-notes h3,
.fee-info h3,
.late-fee h3,
.refund-policy h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.fee-notes ul {
  padding-left: 20px;
}

.fee-notes li {
  margin-bottom: 10px;
}

.info-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.info-item {
  flex: 1;
  min-width: 250px;
  padding: 15px;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
}

.info-item h4 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.info-item p {
  margin: 0;
  color: #666;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 2.5rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 2.5rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.p-5 {
  padding: 2.5rem;
}

/* Special elements */
.badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: var(--secondary-color);
  color: white;
}

.badge-primary {
  background-color: var(--primary-color);
}

.badge-accent {
  background-color: var(--accent-color);
}

/* Gallery Page Styles */
.gallery-section {
  padding: 60px 0;
  background-color: white;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-icon {
  color: white;
  font-size: 2rem;
}