html,
body {
  overflow-x: hidden;
  width: 100%;
}

img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 90px;
  background: linear-gradient(to right, #000c67, #000c67);
  color: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
}

.logo {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.logo-image img {
  max-height: 110px;
  width: auto;
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.logo-image img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

.navbar-left {
  display: flex;
  align-items: center;
}

.nav-list ul {
  list-style: none;
  padding-left: 8rem !important;
  font-size: larger;
  font-weight: 600;
  display: flex;
  gap: 60px;
  align-items: center;
}

.nav-list ul li {
  position: relative;
}

.nav-list ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.nav-list ul li a:not(:has(button))::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: #00f7ff;
  transition: width 0.3s ease-in-out;
}


.nav-list ul li a:hover {
  color: #00f7ff;
}


.nav-list ul li a:hover::after {
  width: 100%;
}

.nav-item button {
  background: linear-gradient(135deg, #007bff, #00d4ff);
  border: none;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
}

.nav-item button:hover {
  background: linear-gradient(135deg, #0056b3, #0094ff);
  transform: scale(1.07);
  box-shadow: 0 8px 20px rgba(0, 122, 255, 0.5);
}

.search-bar {
  position: relative;
  display: flex;
  align-items: center;
}

.search-bar input {
  padding: 10px 40px;
  border-radius: 25px;
  border: 1px solid #ddd;
  font-size: 14px;
  width: 250px;
  transition: all 0.3s ease;
}

.search-bar input:focus {
  outline: none;
  border-color: #007bff;
  width: 280px;
  box-shadow: 0 0 10px rgba(0, 122, 255, 0.3);
}

.search-bar i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 16px;
}

.menu-toggle {
  background: transparent;
  border: none;
  font-size: 30px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  transition: transform 0.3s ease-in-out;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 60%;
  background-color: #060081;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.mobile-menu.show-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu li {
  padding: 12px 20px;
  border-bottom: 1px solid #ddd;
  animation: fadeIn 0.5s ease-in-out;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-menu li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.mobile-menu li a:hover {
  background-color: #007bff;
  color: white;
}

.mobile-menu li a i {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}


@media (max-width: 1024px) {
  header {
    padding: 18px 40px;
  }

  .nav-list ul {
    padding-left: 4rem !important;
    gap: 40px;
  }

  .nav-item button {
    padding: 8px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 14px 30px;
  }

  .nav-list {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 30px;
    top: 45px;
  }

  .mobile-menu {
    display: block;
  }

  .nav-item button {
    font-size: 14px;
    padding: 8px 18px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 12px 20px;
  }

  .logo-image img {
    max-height: 80px;
  }

  .menu-toggle {
    font-size: 28px;
    right: 20px;
    top:25px;
  }

  .mobile-menu ul {
    padding: 15px;
  }

  .mobile-menu li {
    padding: 10px 15px;
  }

  .search-bar input {
    width: 180px;
  }

  .search-bar input:focus {
    width: 200px;
  }
}


@media (max-width: 992px) {
  .navbar-left {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.active {
    display: block;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
  }

  .logo {
    flex-grow: unset;
  }
}

@media (max-width: 576px) {
  .logo-image img {
    max-height: 80px;
    width: auto;
  }

  .nav-list li a {
    font-size: 14px;
  }

  .nav-item button {
    font-size: 12px;
    padding: 6px 16px;
  }
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 10% 0;
  position: relative;
  height: 80vh;
  width: 100%;
  background: linear-gradient(to right, #000c67, #000c67);
}

.hero .image {
  display: flex;
  justify-content: center;
  min-width: 300px;
  position: relative;
}

.hero .image img {
  border-radius: 12px;
  animation: fadeInRight 1s ease-in-out;
  max-height: 578px;
  width: auto;
  object-fit: cover;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  80% {
    opacity: 1;
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero .image::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: rgb(9, 25, 174);
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

.hero .content {
  max-width: 600px;
  animation: fadeInUp 1s ease-in-out;
  padding: 0 0 80px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #007bff;
  text-shadow: 1px 1px 2px rgba(0, 123, 255, 0.5);
}

.hero ul {
  list-style: none;
  padding-left: 20px;
}

.hero ul li {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.hero ul li i {
  font-size: 1.5rem;
  color: #007bff;
  margin-right: 10px;
}

.hero .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.hero .cta a {
  background: #007bff;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero .cta a:hover {
  background: #0056b3;
  box-shadow: 0 6px 10px rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: auto;
  }

  .hero .image {
    width: 100%;
    order: 1;
  }

  .hero .image::after {
    width: 80%;
  }

  .hero .content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero ul {
    padding-left: 0;
  }

  .hero .cta {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 5% 5%;
  }

  .hero .image img {
    max-width: 100%;
    height: auto;
  }

  .hero .image::after {
    width: 100%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero .cta {
    flex-direction: column;
    align-items: center;
  }
}

.stats-container {
  position: absolute;
  bottom: -10px;
  left: 30%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 80%;
  max-width: 1200px;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  80% {
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.stat-box {
  text-align: center;
  padding: 5px 10px;
  color: white;
  border-radius: 10px;
  width: 250px;
  transition: all 0.3s ease-in-out;
  animation: popIn 0.8s ease-out;
}


.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}

.stat-box i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}

.stat-box h3 {
  font-size: 20px;
  margin: 5px 0;
}

.stat-box p {
  font-size: 14px;
  color: rgb(255, 255, 255);
  padding-bottom: 20px;
}

@media (max-width: 1440px) {
  .hero {
    text-align: center;
    height: auto;
  }

}



@media (max-width: 1024px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    height: auto;
  }

  .hero .content {
    max-width: 100%;
    padding: 20px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero ul {
    padding-left: 0;
  }

  .hero .cta {
    justify-content: center;
  }

  .stats-container {
    position: static;
    transform: none;
    margin-top: 40px;
    width: 90%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 5% 5% 0;
    flex-direction: column-reverse;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero ul li {
    font-size: 1rem;
  }

  .hero .content {
    padding-top: 20px;
    padding-bottom: 0;
    order: 1;
  }

  .hero .cta a {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .stats-container {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .stat-box {
    width: 240px;
    height: 130px;
  }
}


@media (max-width: 375px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero .cta a {
    font-size: 0.85rem;
    padding: 10px 18px;
  }

  .stat-box {
    width: 90%;
  }
}

/* Stats Ends Here */

/* Courses Section */
.courses-container {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.course-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.course-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.course-card:hover .course-image {
  transform: scale(1.05);
}

.course-info {
  padding: 20px;
}

.course-title {
  font-size: 1.5rem;
  color: #222;
  font-weight: bold;
  margin-bottom: 10px;
}

.course-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.course-btn {
  display: inline-block;
  padding: 10px 15px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: bold;
}

.course-btn:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .courses-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.exp {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.exp a {
  display: inline-block;
  padding: 12px 25px;
  color: #ffffff;
  background-color: transparent;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgb(25, 0, 255);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.exp a:hover {
  background: rgb(25, 0, 255);
  color: #fff;
}

.career-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background-color: #ffffff;
}

.career-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
  align-items: center;
}

.career-left img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0px 8px 20px rgba(211, 210, 210, 0.1);
}

.career-right {
  max-width: 550px;
}

.career-feature {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.career-feature i {
  font-size: 24px;
  color: #ff4081;
  margin-right: 15px;
}

.career-feature h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #333;
}

.career-feature p {
  font-size: 16px;
  color: #666;
}

.career-btn {
  background: linear-gradient(to right, #3f51b5, #10089d);
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.career-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .career-container {
    flex-direction: column;
    text-align: center;
  }

  .career-left img {
    max-width: 300px;
  }

  .career-feature {
    flex-direction: column;
    align-items: center;
  }

  .career-feature i {
    margin-bottom: 10px;
  }
}

/* Badge Section Ends Here */

/* Marque Style */
.company-tieups {
  text-align: center;
  padding: 80px 20px;
  border-radius: 10px;
}

.company-tieups h2 {
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media screen and (max-width: 576px) {
  .company-tieups {
    padding: 40px 0;

  }

  .company-tieups h2 {
    font-size: 18px;
  }
}

.marquee-wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 10px 0;
}

.marquee {
  display: flex;
  gap: 50px;
  animation: marquee-left 12s linear infinite;
  white-space: nowrap;
  align-items: center;
}

.marquee-right {
  animation: marquee-right 12s linear infinite;
}

.marquee img {
  height: 90px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.marquee img:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@keyframes marquee-left {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

/* Pattern of work ends Here */

/* Scroll to Top Button Styling */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  display: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.scroll-to-top-btn:hover {
  background-color: #92c4f9;
  transform: scale(1.1);
}

.scroll-to-top-btn:focus {
  outline: none;
}

.whyus {
  padding: 30px 0 20px;
  text-align: center;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);

}

.whyus h2 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.sidemenusbar {
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 30px;
}

.righttab {
  border: 2px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  padding: 20px 8px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.righttab.active {
  background: linear-gradient(135deg, #d4d3d3, #ffffff);
  color: rgb(21, 0, 255);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.why_choose_us {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  padding: 20px;
  overflow: hidden;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.contents {
  flex: 1;
  border: 2px solid rgb(255, 255, 255);
  color: black;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.contents img {
  width: 100%;
  height: 410px;
  border-radius: 20px;
  object-fit: fill;
  position: relative;
}

@media (max-width: 768px) {
  .why_choose_us {
    flex-direction: column-reverse;
  }

  .sidemenusbar {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .righttab {
    width: auto;
    padding: 10px 10px;
  }

  .contents img {
    width: 100%;
    height: auto;
    max-height: 350px;
  }

  .contents::after {
    content: "";
    display: block;
    width: 80%;
    height: 4px;
    background: linear-gradient(to right, #ffffff, #ffffff);
    margin: 8px auto 0;
    border-radius: 5px;
  }
}

@media (min-width: 769px) {
  .contents::after {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .sidemenusbar {
    flex-direction: row;
    justify-content: center;
    gap: 5px;
    padding-right: 0;
  }

  .hide {
    display: none;
  }
}

.patterns {
  padding: 80px 20px;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
}

.patterns h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  animation: slideInFromLeft 1s ease-out;
}

.patterns p {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeIn 1.5s ease-out 0.3s;
}

.pattern-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin-top: 0;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s;
}

.patterns-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 10px;
  animation: fadeInUp 1.5s ease-out 0.5s;
}

.pattern-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out forwards;
}

.pattern-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pattern-item img {
  max-width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease-in-out;
}

.pattern-item:hover img {
  transform: scale(1.05);
}

.pattern-item i {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.pattern-item:hover i {
  color: #1d7ed7;
  transform: translateY(-5px);
}

.pattern-item h3 {
  font-size: 1.8rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  animation: fadeIn 1s ease-out;
}

.pattern-item p {
  font-size: 1rem;
  color: #b40000;
  line-height: 1.5;
  margin-top: 0;
  opacity: 1;
  animation: fadeIn 1s ease-out 0.3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .patterns h2 {
    font-size: 2rem;
  }

  .patterns p {
    font-size: 1rem;
  }

  .pattern-item {
    padding: 20px;
  }
}

/* Icon Styles */
.pattern-item .pattern-item-icon {
  font-size: 60px;
  color: #007bff;
  margin-bottom: 18px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  padding: 15px;
  background-color: rgba(0, 123, 255, 0.1);
}

.pattern-item:hover .pattern-item-icon {
  background-color: rgba(0, 123, 255, 0.2);
  transform: scale(1.1);
}

.pattern-item h3 {
  font-size: 26px;
  color: #333;
  margin-bottom: 14px;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}

.pattern-item:hover h3 {
  color: #007bff;
}

.pattern-item p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-top: 15px;
  transition: color 0.3s ease-in-out;
}

.pattern-item {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.5s forwards;
}

.pattern-item:nth-child(1) {
  animation-delay: 0.2s;
}

.pattern-item:nth-child(2) {
  animation-delay: 0.4s;
}

.pattern-item:nth-child(3) {
  animation-delay: 0.6s;
}

.pattern-item:nth-child(4) {
  animation-delay: 0.8s;
}

@media (max-width: 768px) {
  .pattern-item .pattern-item-icon {
    font-size: 45px;
    padding: 10px;
  }

  .pattern-item h3 {
    font-size: 22px;
  }

  .pattern-item p {
    font-size: 16px;
  }
}
