/* style.css */

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

html,
body {
  height: 100%; /* Ensure full height */
  font-family: "Poppins", sans-serif;
  background: white;
  color: black;
  display: flex;
  flex-direction: column; /* Stack children vertically */
}

body {
  min-height: 100vh; /* Ensure body takes at least the full viewport height */
}

main {
  flex: 1; /* Allow main content to grow and fill the remaining space */
}

/* Global Styles */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: white;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.logo {
  height: 90px;
}

.navbar {
  display: flex;
  gap: 20px;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 10px 15px;
  transition: background 0.3s;
}

.navbar a:hover {
  background: #ffcc00;
  border-radius: 5px;
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  width: 100%;
  background: white;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-nav a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  padding: 10px;
  display: block;
  text-align: center;
}

.mobile-nav a:hover {
  background: #ffcc00;
  border-radius: 5px;
}

.mobile-nav.show {
  display: flex;
}

@media (max-width: 768px) {
  .navbar {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 50px 20px;
}

.hero .card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  resize: none;
}

.select-container {
  margin-bottom: 20px;
}

.select-container label {
  display: block;
  margin-bottom: 5px;
}

.select-container select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.button-container {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.button-container button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.button-container button:first-child {
  background: #ffcc00;
}

.button-container button:last-child {
  background: #333;
  color: white;
}

/* Footer */
/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  flex-shrink: 0; /* Prevent footer from shrinking */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.footer-column img.footer-logo {
  display: block;
  margin: 0 auto 10px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

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

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

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-column ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icons a {
  font-size: 20px;
  color: #ffcc00;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffd700;
}

.footer-bottom {
  margin-top: 20px;
  opacity: 0.7;
}

/* Remove or modify the media query for smaller screens */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: row; /* Keep columns side by side */
    gap: 10px; /* Adjust gap for smaller screens */
    overflow-x: auto; /* Allow horizontal scrolling if needed */
  }

  .footer-column {
    flex: 1 1 auto; /* Allow columns to shrink and grow as needed */
    min-width: 150px; /* Adjust minimum width for smaller screens */
  }
}

/* Scroll-to-Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffcc00;
  color: black;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: #ffd700;
  transform: scale(1.1);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background: #ffcc00;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown .arrow {
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease-in-out;
}

.dropdown:hover .arrow {
  opacity: 1; /* Show only on hover */
}
/* File Compressor Specific Styles */
.file-input-container {
  margin-bottom: 20px;
  text-align: center;
}

.file-input-container input[type="file"] {
  display: none;
}

.file-input-container label {
  background: #ffcc00;
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}

.file-input-container label:hover {
  background: #ffd700;
  transform: scale(1.05);
}

#status {
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
  color: #333;
}

#downloadContainer {
  display: none;
  margin-top: 20px;
  text-align: center;
}

#downloadLink {
  color: #ffcc00;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s;
}

#downloadLink:hover {
  color: #ffd700;
}

/* Adjust card layout for File Compressor */
.hero .card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Button styling for File Compressor */
.button-container button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.button-container button:first-child {
  background: #ffcc00;
  color: black;
}

.button-container button:first-child:hover {
  background: #ffd700;
  transform: scale(1.05);
}

.button-container button:last-child {
  background: #333;
  color: white;
}

.button-container button:last-child:hover {
  background: #444;
  transform: scale(1.05);
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background: #ffcc00;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown .arrow {
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease-in-out;
}

.dropdown:hover .arrow {
  opacity: 1; /* Show only on hover */
}
/* Mobile Dropdown Styles */
.mobile-dropdown {
  width: 100%;
}

.mobile-dropbtn {
  text-decoration: none;
  color: black;
  font-size: 18px;
  padding: 10px;
  display: block;
  text-align: center;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  position: relative; /* Add this to position the arrow */
}

.mobile-dropbtn .arrow {
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease-in-out;
  position: absolute; /* Position the arrow */
  right: 10px; /* Adjust as needed */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Center vertically */
}

.mobile-dropbtn:hover .arrow {
  opacity: 1; /* Show only on hover */
}

.mobile-dropdown-content {
  display: none;
  background: #f8f8f8;
  padding-left: 20px;
}

.mobile-dropdown-content a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
  font-size: 16px;
}

.mobile-dropdown-content a:hover {
  background: #ffcc00;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: block;
}

/* Team Page Styles */
.team-hero {
  background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-top: -20px; /* Adjust for header */
}

.team-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.team-hero .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.team-section {
  padding: 60px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 350px)
  ); /* Fixed width cards */
  justify-content: center; /* This centers the grid items */
  gap: 30px;
  margin: 50px 0;
  padding: 0 20px; /* Add some padding on sides */
}
.team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-img-container {
  height: 300px;
  overflow: hidden;
}

.team-img-container img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-container img {
  transform: scale(1.05);
}

.team-info {
  padding: 25px;
}

.team-info h3 {
  margin-bottom: 5px;
  color: #333;
  font-size: 1.4rem;
}

.team-info .position {
  color: #ff9900;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}

.team-info .bio {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

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

.social-links a {
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #ff9900;
  transform: scale(1.2);
}

.join-team {
  text-align: center;
  padding: 50px 20px;
  background: #f8f8f8;
  border-radius: 10px;
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.join-team h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #333;
}

.join-team p {
  margin-bottom: 25px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: #ffcc00;
  color: black;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button:hover {
  background: transparent;
  color: #ff9900;
  border-color: #ff9900;
  transform: translateY(-3px);
}

/* Mission & Vision Styles */
.mission-hero {
  background: linear-gradient(135deg, #0066cc 0%, #003366 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-top: -20px; /* Adjust for header */
}

.mission-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.mission-hero .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.mission-content {
  padding: 60px 0;
}

.mission-card {
  background: white;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.mission-card .icon {
  font-size: 2.5rem;
  color: #ff9900;
  margin-bottom: 20px;
}

.mission-card h2 {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.8rem;
}

.mission-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

.values-list {
  text-align: left;
  list-style-type: none;
  margin-top: 20px;
}

.values-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
  color: #555;
}

.values-list li:before {
  content: "✓";
  color: #ff9900;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.timeline-section {
  padding: 60px 0;
  background: #f8f8f8;
}

.timeline-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline:before {
  content: "";
  position: absolute;
  width: 2px;
  background: #ff9900;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 20px 0;
  position: relative;
}

.timeline-date {
  width: 120px;
  background: #ff9900;
  color: white;
  text-align: center;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  position: absolute;
  left: 50%;
  margin-left: -60px;
  z-index: 1;
}

.timeline-content {
  width: 45%;
  padding: 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: 55%;
}

.timeline-content h3 {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.3rem;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .team-hero,
  .mission-hero {
    padding: 60px 20px;
  }

  .team-hero h1,
  .mission-hero h1 {
    font-size: 2rem;
  }

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

  .timeline:before {
    left: 30px;
  }

  .timeline-date {
    width: 100px;
    left: 30px;
    margin-left: -50px;
  }

  .timeline-content {
    width: auto;
    margin-left: 80px !important;
    margin-right: 20px !important;
  }

  .mission-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .team-hero,
  .mission-hero {
    padding: 50px 15px;
  }

  .team-info {
    padding: 20px;
  }

  .join-team {
    padding: 30px 15px;
  }

  .timeline-date {
    width: 80px;
    font-size: 0.9rem;
    padding: 5px 10px;
    left: 15px;
    margin-left: -40px;
  }

  .timeline-content {
    margin-left: 60px !important;
  }
}

/* About us*/
.about-main {
  font-family: "Poppins", sans-serif;
  color: #333;
  padding: 2rem 1rem;
  background: linear-gradient(to bottom right, #f4f7f8, #ffffff);
}

.about-hero {
  text-align: center;
  padding-bottom: 2rem;
}

.about-hero h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  font-weight: 600;
}

.about-hero h1 span {
  color: #4e9efc;
}

.about-hero p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 0.5rem;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.about-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem 2rem;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2a2a2a;
}

.about-card p,
.about-card ul {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.about-card ul {
  list-style: none;
  padding-left: 0;
}

.about-card ul li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.about-card ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
}

/* Contact */
/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, #0066cc 0%, #003366 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-hero .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
  margin-bottom: 25px;
  color: #333;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  background: #ffcc00;
  color: black;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.submit-btn:hover {
  background: #ff9900;
  transform: translateY(-2px);
}

.form-success {
  background: #4caf50;
  color: white;
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-success i {
  font-size: 1.5rem;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card,
.business-hours-card,
.social-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3,
.business-hours-card h3,
.social-card h3 {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.3rem;
}

.contact-method {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-method i {
  color: #ff9900;
  font-size: 1.2rem;
  margin-top: 3px;
}

.contact-method h4 {
  margin-bottom: 5px;
  font-size: 1rem;
  color: #555;
}

.contact-method a,
.contact-method p {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-method a:hover {
  color: #ff9900;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.hours-list li:last-child {
  border-bottom: none;
}

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

.social-links a {
  color: #333;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #ff9900;
  transform: scale(1.1);
}

/* FAQ's Design */
/* Unique FAQ Page Styles */
.faq-hero {
  background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  color: white;
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./assets/images/faq-pattern.svg") center/cover no-repeat;
  opacity: 0.1;
}

.faq-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  position: relative;
}

.faq-hero .subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.search-faq {
  max-width: 600px;
  margin: 2rem auto 0;
  position: relative;
}

.search-faq input {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-faq button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: #4a6cf7;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
}

.faq-container {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.faq-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-tab {
  padding: 0.8rem 1.5rem;
  background: #f5f7ff;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e0e5ff;
}

.faq-tab:hover,
.faq-tab.active {
  background: #4a6cf7;
  color: white;
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category h2 {
  color: #4a6cf7;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-category h2 i {
  background: #e0e5ff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq-accordion {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item {
  border-bottom: 1px solid #e0e5ff;
  background: white;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f9faff;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.faq-answer ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.still-questions {
  text-align: center;
  padding: 4rem 1rem;
  background: #f9faff;
  margin-top: 3rem;
}

.still-questions h2 {
  margin-bottom: 1.5rem;
  color: #4a6cf7;
}

.still-questions p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

@media (max-width: 768px) {
  .faq-hero h1 {
    font-size: 2.2rem;
  }

  .faq-tabs {
    justify-content: flex-start;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 60px 20px;
  }

  .contact-form-container,
  .contact-info-card,
  .business-hours-card,
  .social-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero .subtitle {
    font-size: 1rem;
  }

  .contact-method {
    flex-direction: column;
    gap: 5px;
  }
}

/* blog */
/* Blog Page Styles */
.blog-hero {
  background: linear-gradient(135deg, #0066cc 0%, #003366 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.blog-hero .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.blog-section {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.blog-image-container {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.featured .blog-image-container {
  height: 100%;
}

.blog-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image-container img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff9900;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content {
  padding: 20px;
}

.featured .blog-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #666;
}

.blog-meta .category {
  color: #ff9900;
  font-weight: 600;
}

.blog-card h2 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  line-height: 1.4;
}

.blog-card h2 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card h2 a:hover {
  color: #ff9900;
}

.featured h2 {
  font-size: 1.8rem;
}

.excerpt {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.read-more {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #ff9900;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(3px);
}

.reading-time {
  color: #999;
  font-size: 0.9rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  grid-column: 1 / -1;
}

.page-numbers {
  display: flex;
  gap: 10px;
}

.page-numbers a,
.page-nav {
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.page-numbers a:hover,
.page-nav:hover {
  background: #f0f0f0;
}

.page-numbers a.active {
  background: #0066cc;
  color: white;
}

.page-nav.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}

.sidebar-widget h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #ff9900;
}

.category-list {
  list-style: none;
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #ff9900;
}

.category-list span {
  color: #999;
}

.popular-post {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.popular-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popular-post-title {
  display: block;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.popular-post-title:hover {
  color: #ff9900;
}

.popular-post-date {
  font-size: 0.9rem;
  color: #999;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

.newsletter-form button {
  background: #ff9900;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #ff8800;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .blog-sidebar {
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .blog-card.featured {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    padding: 60px 20px;
  }

  .pagination {
    flex-wrap: wrap;
    gap: 10px;
  }

  .page-numbers {
    order: 1;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .blog-hero h1 {
    font-size: 2rem;
  }

  .blog-hero .subtitle {
    font-size: 1rem;
  }

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