/* Root Variables */
:root {
  --primary-color: #d22b2b;
  --secondary-color: #f5f5f5;
  --text-color: #333;
  --accent-color: #ac2b2b;
  --transition: all 0.3s ease-in-out;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-color);
  background-color: var(--secondary-color);
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Header Styles */
.header {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-left: 12px;
}

/* Navigation */
.navigation {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  padding: 8px 12px;
  border-radius: 6px;
}

.nav-links li a:hover {
  color: var(--primary-color);
  background-color: rgba(210, 43, 43, 0.05);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .mobile-toggle {
    display: block;
    margin-left: 20px;
  }
}

/* Smooth Transition for Menu Links */
.nav-links li {
  transition: transform 0.2s ease-in;
}

.nav-links li:hover {
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  background: url('images/hero-bg.jpg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 20, 20, 0.5);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
}

.hero h2 span {
  color: #ffe37b;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f5f5f5;
}

/* Buttons */
.hero-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  text-decoration: none;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #d22b2b;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #ac1f1f;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #d22b2b;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
}

/*speeches section*/
.speeches-section {
  padding: 60px 20px;
  background-color: #fff;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color);
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.search-box input {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
}

.search-box button {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-left: none;
  background: var(--primary-color);
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.year-filter select {
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.language-options .lang-btn {
  padding: 10px 16px;
  margin: 0 4px;
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.language-options .lang-btn.active,
.language-options .lang-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.speeches-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.speech-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.speech-card:hover {
  transform: translateY(-5px);
}

.speech-card iframe {
  width: 100%;
  height: 180px;
  border: none;
}

.speech-details {
  padding: 15px;
}

.speech-details h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.speech-details p {
  font-size: 0.9rem;
  color: #555;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.page-btn {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.page-btn.active,
.page-btn:hover {
  background: var(--primary-color);
  color: #fff;
}




/* Bhajans Section Styles - High-end & Responsive */
/* Global Styles */
:root {
  --primary-color: #f59e0b;
  --secondary-color: #d97706;
  --bg-gradient-start: #fef3c7;
  --bg-gradient-end: #fed7aa;
  --text-dark: #1f2937;
  --text-muted: #4b5563;
  --shadow-color: rgba(0, 0, 0, 0.15);
  --transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 1rem;
}

body {
  background: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  overflow-x: hidden;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Bhajans Section */
.bhajans-section {
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23fef3c7" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
}

/* Section Titles */
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin: 0.5rem auto;
  border-radius: 2px;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Bhajan Player */
.bhajan-player {
  background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
  border-radius: var(--border-radius);
  box-shadow: 0 15px 30px var(--shadow-color);
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bhajan-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.3), transparent 50%);
  opacity: 0.5;
  pointer-events: none;
}

/* Player Controls */
.player-controls {
  display: grid;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.player-info {
  text-align: center;
}

.player-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px var(--shadow-color);
}

/* Progress Bar */
.progress-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  padding: 0 1rem;
}

.progress-bar {
  flex-grow: 1;
  height: 10px;
  background: #e5e7eb;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s var(--transition-easing);
}

.progress-bar div {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 5px;
  width: 0;
  transition: width 0.1s linear;
  position: relative;
  overflow: visible;
}

.progress-bar div::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px var(--shadow-color);
}

.time-display {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* Controls */
.controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.controls button {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--transition-easing);
  position: relative;
  overflow: hidden;
}

.controls button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.controls button:hover::before {
  width: 200%;
  height: 200%;
}

.controls button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--shadow-color);
}

.controls button:active {
  transform: translateY(0);
}

.controls button:disabled {
  background: #d1d5db;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Bhajan List */
.bhajan-list-container {
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

#search {
  width: 100%;
  padding: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s var(--transition-easing);
  box-shadow: inset 0 2px 4px var(--shadow-color);
}

#search:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

#list {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #e5e7eb;
}

#list::-webkit-scrollbar {
  width: 8px;
}

#list::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 4px;
}

#list::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

#list div {
  padding: 1rem;
  background: white;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.3s var(--transition-easing);
  border: 1px solid #e5e7eb;
}

#list div:hover {
  background: var(--bg-gradient-start);
  transform: translateX(5px);
}

#list div.active {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
  .bhajans-section {
    padding: 2rem 1rem;
  }

  .bhajan-player {
    padding: 1.5rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
  }

  .player-info h3 {
    font-size: 1.5rem;
  }

  .controls button {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .bhajan-player {
    padding: 1rem;
  }

  .controls {
    gap: 0.75rem;
  }

  .controls button {
    width: 40px;
    height: 40px;
  }

  .progress-bar {
    height: 8px;
  }

  .progress-bar div::after {
    width: 14px;
    height: 14px;
    top: -3px;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.bhajan-player,
.bhajan-list-container {
  animation: fadeIn 0.6s var(--transition-easing);
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .bhajan-player {
    background: var(--primary-color);
    border: 2px solid var(--text-dark);
  }

  .controls button {
    border: 2px solid white;
  }

  #list div {
    border: 2px solid var(--text-dark);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .controls button,
  .progress-bar div,
  #list div {
    transition: none;
  }

  .bhajan-player,
  .bhajan-list-container {
    animation: none;
  }
}




/*ppt section*/
/* Custom properties for consistency */
:root {
  --primary-color: #ff9900;
  --secondary-color: #d97706;
  --background-color-dark: #f0f4f8;
  --background-color-card: #fff;
  --text-color-primary: #1f2937;
  --text-color-secondary: #4b5563;
  --border-color: #e2e8f0;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --accent-gradient: linear-gradient(45deg, #ff9900, #ffc107);
}

.documents-section {
    padding: 3rem 0;
    text-align: center;
}

.documents-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.deity-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.deity-card {
    background-color: var(--background-color-card);
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.deity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.deity-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color-primary);
}

.deity-card-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-pdf {
    background: #e53e3e; /* Red color for PDF */
    color: white;
}

.btn-pptx-view {
    background: #06b6d4; /* Cyan color for PPTX */
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: var(--background-color-card);
    margin: 5% auto;
    padding: 1.5rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: zoomIn 0.3s ease-out;
}

.modal-header {
    margin-bottom: 1rem;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--text-color-primary);
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--text-color-primary);
}

.modal-body {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.9); }
    to { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .deity-card-title {
        font-size: 1.3rem;
    }
}



/** Books Section */
.books-section {
  background: #fdfcf9;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 10px;
  color: #4a2c13;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #777;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.book-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  max-width: 320px;
}

.book-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.book-card h3 {
  font-size: 1.2rem;
  color: #2f1b0c;
  margin-top: 15px;
}

.book-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 10px 0 20px;
  line-height: 1.5;
}

.book-icon i {
  font-size: 2.5rem;
  color: #c57e00;
}

.btn-download {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d35400;
  color: #fff;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-download:hover {
  background-color: #a84300;
}

/* Spinner */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.spinner {
  border: 4px solid #eee;
  border-top: 4px solid #c57e00;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .book-card {
    padding: 25px 15px;
  }
}





/*about section*/
:root {
  --primary-bg: #f6f9fc;
  --accent-color: #e67e22;
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.3);
  --text-main: #222;
  --text-subtle: #555;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --radius: 20px;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-main);
}

/* About Section */
.about-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom right, #fefefe, #e9f5ff);
}

.about-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 60px;
  box-shadow: 0 16px 40px var(--shadow-color);
  backdrop-filter: blur(14px);
  gap: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px var(--shadow-color);
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
  object-fit: cover;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-text {
  flex: 1;
}

.about-text .section-title {
  font-size: 2.8rem;
  color: var(--accent-color);
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-subtle);
  margin-bottom: 20px;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-text .section-title {
    font-size: 2.2rem;
  }

  .about-text p {
    font-size: 1.05rem;
  }
}

/*contact section*/
.contact-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom right, #fefefe, #f3f9ff);
  color: #222;
}

.contact-section .container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-section .section-title {
  font-size: 2.6rem;
  color: #e67e22;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-section .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: #e67e22;
  box-shadow: 0 0 8px rgba(230, 126, 34, 0.3);
  outline: none;
}

.contact-form .btn-primary {
  background: #e67e22;
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: #cf711f;
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section .container {
    padding: 0 10px;
  }

  .contact-section .section-title {
    font-size: 2rem;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .contact-form .btn-primary {
    font-size: 1rem;
  }
}



.footer {
  background: linear-gradient(135deg, #fffef9, #f7f4ee);
  color: #333;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
  border-top: 1px solid #eaeaea;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.footer-logo {
  flex: 1 1 250px;
}

.footer-logo img {
  width: 130px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.footer-logo p {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

.footer-about {
  flex: 2 1 500px;
}

.footer-about h3 {
  font-size: 1.3rem;
  color: #d35400;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-about p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo,
  .footer-about {
    width: 100%;
  }

  .footer-about {
    margin-top: 20px;
  }
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #e67e22;
  color: white;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.back-to-top i {
  transform: translateY(1px);
}

.back-to-top:hover {
  background: #cf711f;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
