:root {
  --primary-color: #0f3460;
  --secondary-color: #2e5a88;
  --accent-color: #1a4d8c;
  --text-color: #333333;
  --light-text: #ffffff;
  --background-color: #f9f7f4;
  --card-bg: #ffffff;
  --header-font: "Montserrat", sans-serif;
  --body-font: "Open Sans", sans-serif;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: 0.95rem;
}

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

.section {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--header-font);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

.section-description {
  text-align: center;
  max-width: 800px;
  margin: -1rem auto 2.5rem;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  font-family: var(--header-font);
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-text);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.85rem;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--header-font);
  font-weight: 700;
}

.logo h1 {
  font-size: 1.6rem;
  color: var(--primary-color);
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-color);
  transition: var(--transition);
}

.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1602153508683-b5bc610271d6?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-text);
  padding: 0 2rem;
}

.hero-content {
  max-width: 800px;
  
}

.hero-title {
  font-family: var(--header-font);
  
  font-size: 3.2rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;

}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: -1.5rem auto 3rem;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.hero .btn-hero {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--header-font);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  transition: var(--transition);
  background-color: var(--primary-color);
  color: #fff;
}

.hero .btn-hero:hover {
  background-color: #fff;
  color: var(--primary-color);
  border: 2px solid #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.about-intro {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-left: 4px solid var(--primary-color);
}

.about-intro p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

.about-text h3 {
  font-family: var(--header-font);
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--secondary-color);
  
}

.about-text p {
  margin-bottom: 1.3rem;
  font-size: 0.9rem;
  line-height: 1.7;
  padding-left: 1rem;
  text-align: justify;
}

.categories {
  background-color: #f0f4fa;
  padding: 5rem 0;
}

.categories-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.category-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (hover: hover) {
  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  }
}

.category-image {

  height: 280px;
  overflow: hidden;
  position: relative;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.category-title {
  font-family: var(--header-font);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  padding: 1.5rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.category-card:hover .category-title {
  opacity: 1;
  transform: translateY(0);
}

.product-search {
  margin: 2rem auto;
  max-width: 500px;
  position: relative;
}

.product-search input {
  width: 100%;
  padding: 0.8rem 4rem 0.8rem 3rem;
  border: 2px solid var(--secondary-color);
  border-radius: 30px;
  font-family: var(--body-font);
  font-size: 1rem;
  transition: var(--transition);
}

.product-search input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 90, 136, 0.3);
}

.product-search .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
}

.product-search .clear-search {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
  display: none;
  transition: var(--transition);
}

.product-search .clear-search:hover {
  color: var(--primary-color);
}

#no-results-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  display: none;
}

#no-results-msg p {
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

@media (hover: hover) {
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  }
}

.product-image {
  height: 320px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-title {
  font-family: var(--header-font);
  padding: 1rem 1rem 0.5rem;
  font-size: 1.1rem;
  color: var(--primary-color);
  text-align: center; 
}
.product-description {
  padding: 0 1rem 1rem;
  color: #666;
  font-size: 0.9rem;
}

.product-action {
  padding: 0 1rem 1rem;
  display: flex;
  justify-content: center;
}


.events {
  background-color: #efefef; 
}

.events-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 5px 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
  -webkit-overflow-scrolling: touch;
}

.events-slider::-webkit-scrollbar {
  display: none; 
}

.event-card {
  flex: 0 0 calc(50% - 1rem);
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  scroll-snap-align: start;
}

.event-video {
  height: 400px;
  background-color: #000;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: block;
}

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: var(--transition);
  z-index: 2;
}

.event-overlay span {
  color: white;
  font-family: var(--header-font);
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 30px;
  transition: var(--transition);
}

.event-overlay span:hover {
  background-color: white;
  color: var(--primary-color);
  transform: scale(1.05);
}

.event-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-title {
  font-family: var(--header-font);
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
  color: var(--primary-color);
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 1.5rem;
}

.event-nav-btn {
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.event-nav-btn:hover {
  background-color: var(--accent-color);
}

.event-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.event-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: var(--transition);
}

.event-dot.active {
  background-color: var(--primary-color);
  width: 28px;
  border-radius: 10px;
}

.testimonials {
  background-color: #f0f4fa;
  position: relative;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 235px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  position: relative;
}



.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  text-align: justify;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  text-align: right;
  font-size: 0.95rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.prev-btn, .next-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
  color: var(--accent-color);
}

.testimonial-dots {
  display: flex;
  margin: 0 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}
.policies-container {
  max-width: 900px;
  margin: 0 auto;
}

.policy-tab {
  background-color: var(--card-bg);
  border-radius: 5px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.policy-header {
  padding: 1.2rem 1.5rem;
  font-family: var(--header-font);
  font-weight: 600;
  color: var(--primary-color);
  background-color: #f8f8f8;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.policy-content {
  display: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  text-align: justify;
  visibility: hidden;
}

.policy-content.active {
  display: block;
  max-height: 500px;
  padding: 1.5rem;
  opacity: 1;
  visibility: visible;
}

.policy-content p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.policy-icon i {
  transition: var(--transition);
}

.policy-tab.active .policy-icon i {
  transform: rotate(180deg);
}

.contact {
  background-color: #f9f9f9;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 3rem;
  
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 500px));
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1.5rem;

}

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

.contact-icon {
  font-size: 2rem;
  color: var(--primary-color);
  background-color: rgba(15, 52, 96, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h3 {
  font-family: var(--header-font);
  color: var(--primary-color);
  margin-bottom: 0.2rem;
  font-size: 1.3rem;
}

.contact-text p {
  font-size: 0.9rem;
  
}

.contact-text a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-text a:hover {
  color: var(--primary-color);
}

.contact-map {
  height: 100%;
  min-height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.footer {
  background-color: #0f3460;
  color: #f5f5f5;
  padding: 4rem 0 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 3fr 1.5fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

.footer-logo h2 {
  font-family: var(--header-font);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--light-text);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-column h3 {
  font-family: var(--header-font);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--light-text);
}

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

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
  
}

.footer-column a:hover {
  color: var(  --card-bg);
}

.footer-social h3 {
  font-family: var(--header-font);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: inline-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);
  text-decoration: none; 
}

.social-icons a:hover {
  background-color: #fff;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-policies {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-policies a {
  text-decoration: none;
  margin-right: 8px; 
}

.footer-policies a:not(:last-child)::after {
  content: " · "; 
  margin-left: 8px;
  margin-right: 8px; 
}

.footer-policies a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-policies a:hover {
  color: var(--light-text);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-text p {
  margin-bottom: 1.3rem;
  font-size: 0.9rem;
  line-height: 1.7;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: justify;
}

  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-links {
    
    gap: 2rem;
  }

  .event-card {
    flex: 0 0 100%; 
  }

  .event-video {
    height: 300px;
  }

  .hamburger {
    display: block;
  }

  .nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
  }

  .nav.active {
    visibility: visible;
    opacity: 1;
  }

  .nav-list {
    position: absolute;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 8rem 1.5rem;
    overflow-y: auto;
    transition: right 0.6s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav.active .nav-list {
    right: 0;
  }

  .nav-link {
    margin: 0.8rem 0;
    display: block;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--header-font);
    text-align: center;
    padding: 0.5rem 1rem;
  }

  .nav-link::after {
    background-color: var(--secondary-color);
  }

  .hamburger {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .hamburger.active .bar {
    background-color: var(--primary-color);
  }

  .header.scrolled .hamburger.active .bar {
    background-color: var(--primary-color);
  }
  .testimonial-card {
    height: 450px;
  }
  .about-text p {
  margin-bottom: 1.3rem;
  font-size: 0.9rem;
  line-height: 1.7;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: justify;
}
}

@media (max-width: 576px) {
  .header,
  .header.scrolled {
    padding: 1rem 0 !important;
  }
  .footer-content,
  .footer-logo,
  .footer-links,
  .footer-social,
  .footer-column,
  .footer-bottom,
  .footer-policies {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    width: 100%;
  }
  .footer-column {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .footer-column ul {
    padding-left: 0;
  }
  .social-icons {
    justify-content: center;
  }
    
.footer-policies {
    display: none !important; 
  }

  .footer-bottom {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 0; 
  }
  .about-text p {
  margin-bottom: 1.3rem;
  font-size: 0.9rem;
  line-height: 1.7;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: justify;
}


.nav::before:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
}

@media (orientation: landscape) and (max-height: 500px) {
   .hero {
    height: auto;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
   

  .footer-content,
  .footer-logo,
  .footer-links,
  .footer-social,
  .footer-column,
  .footer-bottom,
  .footer-policies {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    width: 100%;
  }
  .footer-column {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .footer-column ul {
    padding-left: 0;
  }
  .social-icons {
    justify-content: center;
  }
    
.footer-policies {
    display: none !important; 
  }

  .footer-bottom {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 0; 
  }
}

@media (width: 344px) {
  .contact-text p {
    font-size: 0.87rem;
  }
  .contact-card {
      padding: 1.4rem;
    }
 .about-text p {
  margin-bottom: 1.3rem;
  font-size: 0.9rem;
  line-height: 1.7;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: justify;
}

}


.header.scrolled .hamburger.active .bar {
  background-color: var(--text-color);
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}


@media (width: 1024px) {
  .contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 500px));
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1.5rem;

}

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

.contact-icon {
  font-size: 2rem;
  color: var(--primary-color);
  background-color: rgba(15, 52, 96, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-text p {
  margin-bottom: 1.3rem;
  font-size: 0.9rem;
  line-height: 1.7;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: justify;
}
}

@media (width: 1114px) {
  .contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 500px));
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1.5rem;

}

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

.contact-icon {
  font-size: 2rem;
  color: var(--primary-color);
  background-color: rgba(15, 52, 96, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-text p {
  margin-bottom: 1.3rem;
  font-size: 0.9rem;
  line-height: 1.7;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: justify;
}
}

@media (max-width: 320px) {
  .contact-text p {
    font-size: 0.6rem;
  }
  .contact-text h3 {
  font-family: var(--header-font);
  color: var(--primary-color);
  margin-bottom: 0.11rem;
  font-size: 1rem;
}
.about-text p {
  margin-bottom: 1.3rem;
  font-size: 0.9rem;
  line-height: 1.7;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: justify;
}
}
