@charset "UTF-8";
@import "./about.css";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.bod {
  width: 20%;
  border: 2px solid #E53935;
  margin: auto;
  border-radius: 5px;
  margin-top: -1.6rem;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 15px 40px;
  position: relative;
}
.topbar .logo {
  width: 160px;
  position: absolute;
  left: 40px;
  top: 10px;
  z-index: 10;
  border-radius: 15px;
}
@media screen and (max-width: 456px) {
  .topbar .logo {
    width: 120px;
  }
}
.topbar .menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #2747d4;
}
@media screen and (max-width: 768px) {
  .topbar .menu-toggle {
    display: block;
    margin-right: auto;
    margin-left: 70%;
    z-index: 100;
  }
}
.topbar .nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 5px 0;
  margin-right: 30px;
}
.topbar .nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.topbar .nav-links li a:hover {
  border-bottom: 3px solid #E53935;
}
@media screen and (max-width: 768px) {
  .topbar .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    z-index: 99;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  .topbar .nav-links.open {
    display: flex;
  }
  .topbar .nav-links li {
    margin-bottom: 10px;
  }
  .topbar .nav-links li a {
    display: block;
  }
}
.topbar .btn-header {
  padding: 8px 20px;
  background-color: #2747d4;
  color: white;
  font-size: 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  margin-right: 20px;
}
@media screen and (max-width: 456px) {
  .topbar .btn-header {
    font-size: 0.85rem;
    padding: 8px 20px;
    margin-right: 0px;
  }
}
.topbar .btn-header:hover {
  background-color: #E53935;
}

.banner-section {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("./pics/cover.webp") no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding-left: 60px;
}
.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.banner-section .banner-content {
  position: relative;
  z-index: 2;
}
.banner-section .banner-content {
  color: white;
  max-width: 600px;
}
.banner-section .banner-content h1 {
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}
.banner-section .banner-content h2 {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 600;
  margin-top: 10px;
  padding: 10px 15px;
  border-radius: 8px;
}
.banner-section .banner-content h2 span {
  font-style: italic;
  color: #E53935;
  font-weight: 700;
  font-size: 1.9rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}
@media (max-width: 768px) {
  .banner-section {
    height: 220px;
    padding-left: 20px;
  }
  .banner-section .banner-content h1 {
    font-size: 1.9rem;
    width: 80%;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 456px) {
  .banner-section .banner-content h1 {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .banner-section .banner-content h2 {
    font-size: 1.4rem;
    width: 90%;
    margin-top: -1rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 456px) {
  .banner-section .banner-content h2 {
    font-size: 1.1rem;
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e8ecf9;
  flex-wrap: wrap;
  width: 100%;
  padding: 60px 20px;
}
.hero .hero-text {
  width: 45%;
  padding: 30px;
}
.hero .hero-text span {
  font-style: italic;
  font-size: 2.5rem;
}
.hero .hero-text h2 {
  color: #1d3ab6;
  font-size: 4rem;
  margin-bottom: 20px;
}
.hero .hero-text p {
  font-size: 1.5rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero .hero-buttons .btn {
  padding: 12px 24px;
  background-color: #2747d4;
  color: white;
  text-decoration: none;
  margin-right: 15px;
  border-radius: 6px;
  font-weight: 500;
}
.hero .hero-buttons .btn:hover {
  background-color: #E53935;
}
.hero .hero-buttons .btn-secondary {
  background-color: #3c5dd6;
}
.hero .hero-buttons .btn-secondary:hover {
  background-color: #E53935;
}
.hero .hero-image {
  width: 55%;
}
.hero .hero-image img {
  max-width: 100%;
}

.iso-section {
  background-color: #fff;
  padding: 30px 30px 60px;
  border-top: 1px solid #e0e0e0;
  background-image: url("./pics/angelback.webp");
}
.iso-section .iso-title {
  color: #243c80;
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 456px) {
  .iso-section .iso-title {
    font-size: 35px;
  }
}
.iso-section .iso-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 2.2rem;
}
.iso-section .iso-logos {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.iso-section .iso-logos img {
  width: 200px;
  height: 95px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 456px) {
  .iso-section .iso-logos img {
    width: 80px;
  }
}
.iso-section .iso-text {
  font-size: 1.3rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  line-height: 1.4;
  padding: 0 30px;
  text-align: justify;
  font-weight: 500;
}
@media screen and (max-width: 456px) {
  .iso-section .iso-text {
    font-size: 1rem;
  }
}

.about-section {
  background-color: #e8ecf9;
  padding: 10px 55px;
}
.about-section .about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .about-section .about-container {
    flex-direction: column;
    align-items: center;
  }
}
.about-section .about-container .about-text {
  flex: 1;
  width: 45%;
  text-align: justify;
  line-height: 1.5;
}
@media only screen and (max-width: 991px) {
  .about-section .about-container .about-text {
    width: 100%;
    padding: 0 20px;
  }
}
.about-section .about-container .about-text h2 {
  color: #fff;
  background-color: #E53935;
  width: 30%;
  border-radius: 10px;
  padding: 3px;
  text-align: center;
  margin: 20px auto;
}
@media only screen and (max-width: 991px) {
  .about-section .about-container .about-text h2 {
    width: 50%;
  }
}
.about-section .about-container .about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 456px) {
  .about-section .about-container .about-text p {
    font-size: 16px;
  }
}
.about-section .about-container .about-text p strong {
  color: #0d3a8c;
}
.about-section .about-container .about-text p em {
  font-style: italic;
  color: #555;
}
.about-section .about-container .about-text ul {
  margin: 10px 0 20px 20px;
  list-style-type: none;
}
.about-section .about-container .about-text ul li {
  position: relative;
  padding-left: 1.5em;
}
.about-section .about-container .about-text ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2747d4;
  font-size: 1.1em;
  line-height: 1.6;
}
.about-section .about-container .about-text ul li {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
.about-section .about-container .about-text .learn-more-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #2747d4;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}
.about-section .about-container .about-text .learn-more-btn:hover {
  background-color: #E53935;
}
.about-section .about-container .about-image {
  width: 55%;
  padding-left: 25px;
}
.about-section .about-container .about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  .about-section .about-container .about-image img {
    display: none;
  }
}
.about-section .about-container .about-image .about-page {
  width: 300px;
  margin: 0 auto;
}

.why-section {
  background-color: #fff;
  padding: 50px 20px 6rem;
  text-align: center;
  background-image: url("./pics/angelback.webp");
}
.why-section .why-container {
  width: 100%;
  margin: auto;
}
.why-section .why-container h2 {
  color: #243c80;
  margin-bottom: 40px;
  font-size: 2rem;
}
@media screen and (max-width: 456px) {
  .why-section .why-container h2 {
    font-size: 1.8rem;
  }
}
.why-section .why-container .why-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 3rem;
}
.why-section .why-container .why-cards .why-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 25px 20px;
  width: 320px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.why-section .why-container .why-cards .why-card:hover {
  transform: translateY(-5px);
}
.why-section .why-container .why-cards .why-card .icon {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}
.why-section .why-container .why-cards .why-card h3 {
  font-size: 18px;
  color: #243c80;
  margin-bottom: 10px;
  font-weight: 750;
}
.why-section .why-container .why-cards .why-card p {
  font-size: 14px;
  color: #555;
  font-weight: 500;
  padding: 0 10px;
  line-height: 1.5;
}

.products-section {
  background-color: #e8ecf9;
  padding: 30px 20px 60px;
  text-align: center;
}
.products-section .products-title {
  font-size: 32px;
  color: #243c80;
  margin-bottom: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 456px) {
  .products-section .products-title {
    font-size: 1.8rem;
  }
}
.products-section .products-subtitle {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
  width: 45%;
  text-align: center;
  margin: 15px auto 10px auto;
}
.products-section .product-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 3rem;
}
.products-section .product-cards .product-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  width: 220px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
@media screen and (max-width: 768px) {
  .products-section .product-cards .product-card {
    width: 230px;
  }
}
.products-section .product-cards .product-card:hover {
  transform: translateY(-5px);
}
.products-section .product-cards .product-card img {
  width: 100%;
  height: auto;
  -o-object-fit: fill;
     object-fit: fill;
}
.products-section .product-cards .product-card .product-label {
  background-color: #1f2b7b;
  color: white;
  padding: 10px;
  font-weight: 600;
}

.services-section {
  background-color: #f9f9f9;
  padding: 30px 20px 60px;
  text-align: center;
}
.services-section h2 {
  font-size: 2.2rem;
  color: #243c80;
  font-weight: bold;
  margin-bottom: 2rem;
  margin-left: -20px;
}
@media screen and (max-width: 456px) {
  .services-section h2 {
    font-size: 1.8rem;
  }
}
.services-section .subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-top: 10px;
}
.services-section .services-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .services-section .services-grid {
    margin: auto;
    margin-top: 30px;
    width: 80%;
  }
}
.services-section .service-card {
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.services-section .service-card:hover {
  transform: translateY(-5px);
}
.services-section .service-card .service-img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
.services-section .service-card h3 {
  font-size: 1.4rem;
  color: #111;
  margin-bottom: 12px;
}
.services-section .service-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .services-section .services-grid {
    flex-direction: column;
    align-items: center;
  }
  .services-section .service-card {
    width: 90%;
  }
}

.site-footer {
  background-color: #e8ecf9;
  background-image: url("pics/angel v-tech.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  image-resolution: from-image;
  padding: 60px 50px 30px;
}
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 60px 20px 30px;
  }
}
.site-footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 456px) {
  .site-footer .footer-container {
    gap: 0px;
  }
}
.site-footer .footer-container .footer-column {
  flex: 1 1 200px;
}
@media screen and (max-width: 456px) {
  .site-footer .footer-container .footer-column {
    text-align: left;
  }
}
.site-footer .footer-container .footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-container .footer-column h4 {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 456px) {
  .site-footer .footer-container .footer-column h4 {
    font-size: 1rem;
  }
}
.site-footer .footer-container .footer-column .footer-logo {
  width: 160px;
  margin-bottom: 5px;
}
.site-footer .footer-container .footer-column p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 456px) {
  .site-footer .footer-container .footer-column p {
    font-size: 0.9rem;
  }
}
.site-footer .footer-container .footer-column .footer-links {
  list-style: none;
  padding: 0;
  padding-left: 1.5rem;
}
.site-footer .footer-container .footer-column .footer-links li {
  margin-bottom: 10px;
}
.site-footer .footer-container .footer-column .footer-links li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.site-footer .footer-container .footer-column .footer-links li a:hover {
  text-decoration: underline;
  color: #2747d4;
}
.site-footer .footer-container .footer-column iframe {
  border-radius: 8px;
}
.site-footer .footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.site-footer .footer-bottom .footer-text p {
  font-size: 0.9rem;
  color: #666;
}
.site-footer .footer-bottom .social-icons {
  display: flex;
  gap: 10px;
}
.site-footer .footer-bottom .social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}
.site-footer .footer-bottom .social-icons img:hover {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .site-footer .footer-container {
    flex-direction: row;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
  }
}
@media (max-width: 768px) and (max-width: 456px) {
  .site-footer .footer-container {
    flex-direction: column;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-column iframe {
    width: 100%;
    height: 150px;
  }
  .site-footer .footer-bottom {
    text-align: center;
  }
}

.header-section {
  background: linear-gradient(to right, #0a2e73, #133e9c);
  color: white;
  padding: 3rem;
  text-align: center;
}
.header-section h1 {
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}
.header-section p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.header-section nav {
  font-size: 1.4rem;
  color: #ddd;
}
.header-section nav a {
  color: white;
  text-decoration: underline;
}
.header-section nav a:hover {
  text-decoration: none;
}

.who-we-are {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.tab-section {
  max-width: 1000px;
  margin: auto;
  padding: 2rem 1rem;
}
.tab-section .tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  gap: 10px;
  flex-wrap: wrap;
}
.tab-section .tabs .tab-button {
  padding: 0.7rem 1.5rem;
  border: none;
  background: #eaeaea;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  color: #10286d;
}
.tab-section .tabs .tab-button.active {
  background: #10286d;
  color: white;
}
.tab-section .tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
.tab-section .tab-content.active {
  display: block;
}
.tab-section .tab-content h3 {
  color: #10286d;
  margin-bottom: 1rem;
}

.choose-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.choose-content .choose-list {
  flex: 1;
  min-width: 250px;
}
.choose-content .choose-list .choose-item {
  margin-bottom: 1rem;
}
.choose-content .choose-img {
  flex: 1;
  text-align: center;
}
.choose-content .choose-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.product-hero {
  background: #10286d;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.product-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.product-hero nav {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #ddd;
}
.product-hero nav a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s;
}

.carousel-section {
  padding: 2rem 1rem;
  text-align: center;
}
.carousel-section h2 {
  font-size: 2rem;
  color: #10286d;
  margin-bottom: 1.5rem;
}
.carousel-section .carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.carousel-section .carousel-container .carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-section .carousel-container .carousel-track .card {
  flex: 0 0 250px;
  margin: 0 10px;
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
}
.carousel-section .carousel-container .carousel-track .card img {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}
.carousel-section .carousel-container .nav-btn {
  position: absolute;
  top: 40%;
  background: #10286d;
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.3rem 1rem;
  border-radius: 50%;
  z-index: 1;
}
.carousel-section .carousel-container .nav-btn.left {
  left: 0;
}
.carousel-section .carousel-container .nav-btn.right {
  right: 0;
}
.carousel-section .dots {
  margin-top: 1rem;
}
.carousel-section .dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}
.carousel-section .dots .dot.active {
  background: #10286d;
}

.contact-hero {
  background: #10286d;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  font-size: 1.2rem;
}
.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 456px) {
  .contact-hero h1 {
    font-size: 1.8rem;
  }
}
.contact-hero p {
  width: 70%;
  margin: auto;
  line-height: 1.5;
}
@media screen and (max-width: 456px) {
  .contact-hero p {
    font-size: 1rem;
  }
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 3rem 2rem;
  gap: 2rem;
}
.contact-section .form-box {
  flex: 1 1 400px;
  max-width: 500px;
}
.contact-section .form-box h2 {
  font-size: 2rem;
  color: #222;
}
.contact-section .form-box h2 strong {
  color: #10286d;
}
.contact-section .form-box form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}
.contact-section .form-box form input,
.contact-section .form-box form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.contact-section .form-box form button {
  background: #10286d;
  color: white;
  padding: 0.8rem;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-section .form-box form button:hover {
  background: #0d1f4d;
}
.contact-section .contact-info p {
  margin: 0.5rem 0;
}
.contact-section .map-box {
  flex: 1 1 400px;
  max-width: 500px;
}
@media screen and (max-width: 456px) {
  .contact-section .map-box {
    flex: 1 1 360px;
  }
}
.contact-section .map-box iframe {
  width: 100%;
  height: 100%;
}
.contact-section .map-box img {
  width: 100%;
  border-radius: 20px;
}

.clients-list {
  padding: 2rem;
  background-color: #fff;
}
.clients-list h2 {
  text-align: center;
  font-size: 2rem;
  color: #10286d;
  margin-bottom: 1.5rem;
}
.clients-list table {
  width: 100%;
  border-collapse: collapse;
}
.clients-list table thead {
  background-color: #e8ecf9;
}
.clients-list table thead th {
  padding: 0.8rem;
  text-align: left;
  font-weight: bold;
  color: #333;
}
.clients-list table tbody tr {
  border-bottom: 1px solid #ddd;
}
.clients-list table tbody tr td {
  padding: 0.8rem;
  text-align: left;
  color: black;
}

.card-head {
  text-align: center;
  padding: 40px 20px 60px;
  background-color: #f0f4ff;
  background-image: url("./pics/angel.png");
}
.card-head h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.card-head p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 456px) {
  .card-head p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 376px) {
  .card-head p {
    font-size: 0.9rem;
  }
}
.card-head .card-subtitle {
  font-size: 1rem;
  color: #fff;
  margin-top: 10px;
  font-weight: 500;
}
.card-head .card-subtitle em {
  font-style: italic;
  color: #E53935;
}

.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}
.product-container .card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.product-container .card:hover {
  transform: translateY(-5px);
}
.product-container .card img {
  width: 100%;
  height: 200px;
  -o-object-fit: fill;
     object-fit: fill;
}
.product-container .card h1 {
  font-size: 1.3rem;
  color: #243c80;
  margin: 15px 0;
}
.product-container .card p {
  font-size: 0.95rem;
  padding: 0 15px 20px;
  color: #666;
}

@media (max-width: 600px) {
  .card-head h1 {
    font-size: 1.8rem;
  }
  .container .card img {
    height: 160px;
  }
}/*# sourceMappingURL=index.css.map */