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

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #63ca60;
}

body {
  font-family: "Arial", sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Header Styling */
header .header {
  background-color: #f9f9f9;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
header .header .icon-section .social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
header .header .icon-section .social-icons a {
  color: #333;
  font-size: 18px;
  transition: all 0.3s ease;
}
header .header .icon-section .social-icons a:hover {
  color: #63ca60;
  transform: scale(1.2);
}
header .header .name-section {
  text-align: center;
}
header .header .name-section h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0;
}
header .header .name-section h1 .text-primary {
  color: #63ca60;
}
header .header .name-section .slogan {
  font-size: 0.9rem;
  color: #e74c3c;
  margin-top: 0.2rem;
}
header .header .name-section .slogan strong {
  font-weight: 600;
}
header .header .shop-section .profile {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
header .header .shop-section .profile span {
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
}
header .header .shop-section .profile span i {
  margin-right: 5px;
}
header .header .shop-section .profile span:hover {
  color: #63ca60;
}

/* Navigation Bar */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: white !important;
}
.navbar .navbar-brand {
  font-weight: 700;
  color: #63ca60;
}
.navbar .navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: #333;
  position: relative;
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
  color: #63ca60;
}
.navbar .navbar-nav .nav-link:hover:after, .navbar .navbar-nav .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: #63ca60;
}
.navbar .navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: rgba(99, 202, 96, 0.1);
  color: #63ca60;
}
.navbar .navbar-nav .dropdown-menu .dropdown-divider {
  margin: 0.3rem 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  header .header .icon-section .social-icons {
    gap: 12px;
  }
  header .header .name-section h1 {
    font-size: 1.5rem;
  }
  header .header .name-section .slogan {
    font-size: 0.8rem;
  }
  header .header .shop-section .profile {
    gap: 15px;
  }
  header .header .shop-section .profile span {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  header .header .row {
    flex-direction: column;
    gap: 15px;
  }
  header .header .icon-section,
  header .header .name-section,
  header .header .shop-section {
    width: 100%;
    text-align: center !important;
  }
  header .header .icon-section .social-icons {
    justify-content: center;
  }
  header .header .shop-section .profile {
    justify-content: center;
  }
  .navbar .navbar-nav .nav-link:after {
    display: none;
  }
}
/* YouTube Channel Section */
#youtube {
  padding: 80px 0;
}
#youtube .btn-danger {
  background-color: #ff0000;
  border-color: #ff0000;
}
#youtube .btn-danger:hover {
  background-color: #cc0000;
  border-color: #cc0000;
}
#youtube .card {
  transition: all 0.3s ease;
}
#youtube .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
#youtube .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
#youtube .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Section Styling */
.section-header h2 {
  position: relative;
  padding-bottom: 15px;
}
.section-header h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #63ca60;
}
.section-header p {
  color: rgb(127.5, 127.5, 127.5);
}

/* Service Cards */
.service-card {
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
.service-card .icon-wrapper {
  transition: all 0.3s ease;
}
.service-card:hover .icon-wrapper {
  background-color: #63ca60 !important;
  color: white !important;
}

/* About Section */
#about .btn-danger {
  background-color: #ff0000;
  border-color: #ff0000;
}
#about .btn-danger:hover {
  background-color: #cc0000;
  border-color: #cc0000;
}

/* About Page Specific Styles */
.about-hero {
  background: linear-gradientrgba(0, 0, 0, 0.7), url("images/about-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: #63ca60;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: white;
  border: 4px solid #63ca60;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #f1f1f1;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f1f1f1;
}

.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #f1f1f1;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f1f1f1 transparent transparent;
}

.right::after {
  left: -12px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.team-img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  color: #333;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #63ca60;
  color: white;
}

.stats-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stats-item i {
  font-size: 2.5rem;
  color: #63ca60;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }
  .left::after, .right::after {
    left: 18px;
  }
  .right {
    left: 0%;
  }
}
/* Footer */
footer {
  background-color: #212529;
}
footer a {
  transition: all 0.3s ease;
}
footer a:hover {
  color: #63ca60 !important;
  padding-left: 5px;
}
footer .social-links a:hover {
  transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  z-index: 99;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Tweaks */
@media (max-width: 767.98px) {
  header .icon-section,
  header .name-section,
  header .shop-section,
  .header .icon-section,
  .header .name-section,
  .header .shop-section {
    text-align: center !important;
    margin-bottom: 15px;
    justify-content: center;
  }
  header .name-section p,
  .header .name-section p {
    margin-left: 0;
    margin-top: 0;
  }
  header .shop-section .profile,
  .header .shop-section .profile {
    justify-content: center;
  }
  .hero-section {
    padding: 60px 0;
    text-align: center;
  }
  .hero-section .d-flex {
    justify-content: center;
  }
  .section-header h2:after {
    width: 60px;
  }
}
@media (max-width: 575.98px) {
  .header .name-section h1 {
    font-size: 1.5rem;
  }
  .header .name-section p {
    font-size: 0.8rem;
  }
  .header .shop-section .profile span {
    font-size: 14px;
  }
  .header .shop-section .profile span i {
    margin-right: 3px;
  }
  #youtube {
    padding: 60px 0;
  }
}
/* Contact Page Specific Styles */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/contact-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.contact-info-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

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

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(99, 202, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-icon i {
  font-size: 24px;
  color: #63ca60;
}

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

.form-control, .form-select {
  height: 50px;
  border-radius: 8px;
  border: 1px solid #eee;
  padding-left: 15px;
}

textarea.form-control {
  height: auto;
  min-height: 150px;
  padding-top: 15px;
}

.form-control:focus, .form-select:focus {
  box-shadow: none;
  border-color: #63ca60;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

.btn-submit {
  background: #63ca60;
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #4ca64a;
  transform: translateY(-3px);
}

.business-hours {
  list-style: none;
  padding: 0;
}

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

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

.day {
  font-weight: 600;
}

.hours {
  color: #63ca60;
}

.blog-section {
  background: #f9f9f9;
  padding: 80px 0;
}

.blog-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #007bff;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.blog-content p {
  color: #666;
  margin-bottom: 15px;
}

.read-more {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
}

/* Custom styles for the new sections */
.theme-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.theme-col {
  padding: 15px;
}

.theme-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
}

.theme-card-header {
  padding: 15px;
  background: linear-gradient(135deg, #63ca60, #4ca64a);
  color: white;
  text-align: center;
}

.theme-card-body {
  padding: 20px;
}

.sponsor-section {
  padding: 60px 0;
  background-color: white;
}

.sponsor-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  margin: 10px;
  transition: all 0.3s ease;
}

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

.sponsor-img {
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
}

/* Hide theme section on mobile */
@media (max-width: 991.98px) {
  .theme-section {
    display: none;
  }
}
/* blog page Header Styles */
.blog-header {
  background-color: var(--secondary-color);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
  margin-bottom: 40px;
}

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

.blog-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Featured Posts Carousel */
.featured-posts {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.featured-slider {
  position: relative;
}

.featured-slider .owl-nav {
  position: absolute;
  top: -70px;
  right: 0;
}

.featured-slider .owl-nav button {
  width: 40px;
  height: 40px;
  background: var(--light-color) !important;
  color: var(--dark-color) !important;
  border-radius: 50% !important;
  margin-left: 10px !important;
  transition: all 0.3s;
}

.featured-slider .owl-nav button:hover {
  background: var(--primary-color) !important;
  color: white !important;
}

/* Blog Post Card */
.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 30px;
  height: 100%;
}

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

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

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

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

.blog-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-light);
}

.blog-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

.blog-meta span {
  margin-right: 15px;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-title a {
  color: var(--dark-color);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 15px;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.read-more:hover {
  color: var(--secondary-color);
}

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

.read-more:hover i {
  margin-left: 8px;
}

/* Blog Grid */
.blog-grid {
  padding: 60px 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 15px;
  margin-bottom: 30px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.page-item {
  margin: 0 5px;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.page-link:hover, .page-item.active .page-link {
  background: var(--primary-color);
  color: white;
}

/* Sidebar */
.sidebar {
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.sidebar-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-color);
  color: var(--dark-color);
}

.sidebar-widget {
  margin-bottom: 30px;
}

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

.categories-list li {
  margin-bottom: 10px;
}

.categories-list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

.categories-list a:hover {
  color: var(--primary-color);
}

.categories-list span {
  background: var(--light-color);
  color: var(--text-light);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
}

.recent-post {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}

.recent-post-img {
  width: 70px;
  height: 70px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.recent-post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recent-post-content h4 {
  font-size: 15px;
  margin-bottom: 5px;
  line-height: 1.4;
}

.recent-post-content h4 a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

.recent-post-content h4 a:hover {
  color: var(--primary-color);
}

.recent-post-content span {
  font-size: 13px;
  color: var(--text-light);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.tag {
  display: inline-block;
  background: var(--light-color);
  color: var(--text-color);
  padding: 5px 15px;
  border-radius: 20px;
  margin: 0 5px 10px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
}

.tag:hover {
  background: var(--primary-color);
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .featured-slider .owl-nav {
    top: -60px;
  }
}
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/about-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: #63ca60;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}
.timeline-item::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: #fff;
  border: 4px solid #63ca60;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #f1f1f1;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f1f1f1;
}

.right {
  left: 50%;
}
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #f1f1f1;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f1f1f1 transparent transparent;
}
.right::after {
  left: -12px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: #fff;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  color: #333;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: #63ca60;
  color: #fff;
}

.stats-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.stats-item i {
  font-size: 2.5rem;
  color: #63ca60;
  margin-bottom: 15px;
}

.stats-carousel .owl-item {
  padding: 0 15px;
}
.stats-carousel .stats-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}
.stats-carousel .stats-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}
.stats-carousel .stats-item i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
}
.stats-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.stats-carousel .owl-prev,
.stats-carousel .owl-next {
  background: rgba(255, 255, 255, 0.2) !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.5rem !important;
}
.stats-carousel .owl-prev:hover,
.stats-carousel .owl-next:hover {
  background: rgba(255, 255, 255, 0.3) !important;
}
.stats-carousel .owl-dots {
  margin-top: 20px;
  text-align: center;
}
.stats-carousel .owl-dot span {
  background: rgba(255, 255, 255, 0.5) !important;
}
.stats-carousel .owl-dot.active span {
  background: #fff !important;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item::before {
    left: 60px;
    border: medium solid #fff;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
  }
  .left::after,
  .right::after {
    left: 18px;
  }
  .right {
    left: 0%;
  }
}
:root {
  --primary-color: #4285f4;
  --secondary-color: #34a853;
  --accent-color: #ea4335;
  --warning-color: #fbbc05;
  --dark-color: #202124;
  --light-color: #f8f9fa;
  --gray-color: #dadce0;
}

/* Header Styles */
.header header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 60px 0 40px;
  text-align: center;
  margin-bottom: 30px;
}
.header header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.header header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Search Bar */
.search-container {
  max-width: 600px;
  margin: 30px auto;
  position: relative;
}
.search-container input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding-right: 50px;
}
.search-container button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

/* Categories */
.categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}
.categories .category-btn {
  background: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  font-weight: 500;
}
.categories .category-btn:hover, .categories .category-btn.active {
  background: var(--primary-color);
  color: white;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px 0;
}
.tools-grid .tool-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tools-grid .tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.tools-grid .tool-card .tool-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}
.tools-grid .tool-card .tool-icon.bg-remover {
  background-color: var(--accent-color);
}
.tools-grid .tool-card .tool-icon.photo-resizer {
  background-color: var(--primary-color);
}
.tools-grid .tool-card .tool-icon.calculator {
  background-color: var(--secondary-color);
}
.tools-grid .tool-card .tool-icon.converter {
  background-color: var(--warning-color);
}
.tools-grid .tool-card .tool-icon.editor {
  background-color: #673ab7;
}
.tools-grid .tool-card .tool-icon.generator {
  background-color: #009688;
}
.tools-grid .tool-card .tool-content {
  padding: 20px;
}
.tools-grid .tool-card .tool-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.tools-grid .tool-card .tool-content p {
  color: #5f6368;
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.tools-grid .tool-card .tool-content .tool-btn {
  display: inline-block;
  background: var(--light-color);
  color: var(--dark-color);
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}
.tools-grid .tool-card .tool-content .tool-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* Section Title */
.section-title {
  text-align: center;
  margin: 60px 0 30px;
}
.section-title h2 {
  font-size: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-title h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Calculator Tool */
.calculator-tool {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 40px 0;
  display: none;
}
.calculator-tool.active {
  display: block;
}
.calculator-tool .calculator-display {
  background: #f1f3f4;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: right;
  font-size: 1.8rem;
  min-height: 60px;
}
.calculator-tool .calculator-keys {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.calculator-tool .calculator-keys .calc-btn {
  padding: 15px;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  background: #f1f3f4;
  cursor: pointer;
  transition: all 0.2s;
}
.calculator-tool .calculator-keys .calc-btn:hover {
  background: #e0e0e0;
}
.calculator-tool .calculator-keys .calc-btn.operator {
  background: #dadce0;
}
.calculator-tool .calculator-keys .calc-btn.equals {
  background: var(--primary-color);
  color: white;
}

/* File Upload Box */
.upload-box {
  border: 2px dashed var(--gray-color);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin: 20px 0;
  cursor: pointer;
  transition: all 0.3s;
}
.upload-box:hover {
  border-color: var(--primary-color);
  background: rgba(66, 133, 244, 0.05);
}
.upload-box i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.upload-box p {
  margin-bottom: 15px;
}
.upload-box .upload-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
}

/* Converter Tool */
.converter-tool {
  display: none;
}
.converter-tool.active {
  display: block;
}
.converter-tool .converter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
.converter-tool .converter-form .converter-group {
  flex: 1;
  min-width: 200px;
}
.converter-tool .converter-form .converter-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.converter-tool .converter-form .converter-group select,
.converter-tool .converter-form .converter-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray-color);
  border-radius: 5px;
  font-size: 1rem;
}
.converter-tool .converter-result {
  background: #f1f3f4;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  font-size: 1.2rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }
  header p {
    font-size: 1rem;
  }
  .tools-grid {
    grid-template-columns: 1fr;
  }
}
/* Tool Page Styles */
.tool-page {
  padding: 60px 0;
}
.tool-page .section-title {
  margin-bottom: 40px;
}
.tool-page .section-title h2 {
  font-size: 2.2rem;
  color: var(--dark-color);
}
.tool-page .section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Upload Box Styles */
.upload-box {
  border: 2px dashed var(--gray-color);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin: 20px 0;
  cursor: pointer;
  transition: all 0.3s;
}
.upload-box:hover {
  border-color: var(--primary-color);
  background: rgba(66, 133, 244, 0.05);
}
.upload-box i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.upload-box h3 {
  margin-bottom: 10px;
}
.upload-box p {
  margin-bottom: 5px;
  color: var(--text-light);
}
.upload-box .upload-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  margin-top: 15px;
}

/* Result Container Styles */
.result-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}
.result-container .result-column {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.result-container .result-column h4 {
  margin-bottom: 15px;
}

.image-preview {
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 10px;
  background: #f9f9f9;
}
.image-preview img {
  max-width: 100%;
  max-height: 300px;
  display: block;
  margin: 0 auto;
}

.image-info {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Tool Actions */
.tool-actions {
  margin-top: 30px;
}
.tool-actions .tool-btn {
  margin: 0 10px;
}

/* Calculator Styles */
.calculator-tool {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 40px 0;
}
.calculator-tool .calculator-display {
  background: #f1f3f4;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: right;
  font-size: 1.8rem;
  min-height: 60px;
}
.calculator-tool .calculator-keys {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.calc-btn {
  padding: 15px;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  background: #f1f3f4;
  cursor: pointer;
  transition: all 0.2s;
}
.calc-btn:hover {
  background: #e0e0e0;
}
.calc-btn.operator {
  background: #dadce0;
}
.calc-btn.equals {
  background: var(--primary-color);
  color: white;
}

/* Converter Styles */
.converter-tool {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 40px 0;
}
.converter-tool .converter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
.converter-tool .converter-group {
  flex: 1;
  min-width: 200px;
}
.converter-tool .converter-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.converter-tool .converter-group select,
.converter-tool .converter-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray-color);
  border-radius: 5px;
  font-size: 1rem;
}
.converter-tool .converter-result {
  background: #f1f3f4;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  font-size: 1.2rem;
  text-align: center;
}

/* PDF Tool Styles */
.pdf-action-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  height: 100%;
}
.pdf-action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.pdf-action-card .action-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.pdf-action-card h4 {
  margin-bottom: 10px;
}
.pdf-action-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Password Generator Styles */
.password-display {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.password-display input {
  flex: 1;
}

.password-options {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .result-column {
    min-width: 100%;
  }
  .calculator-keys {
    grid-template-columns: repeat(4, 1fr);
  }
}/*# sourceMappingURL=style.css.map */