@import url('https://fonts.googleapis.com/css?family=Montserrat:500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	background: linear-gradient(180deg, #fffaf8 0%, #f4f7fb 100%);
	font-family: 'Open Sans', sans-serif;
	color: #2E3D49;
}


/*SCROLLBAR Styling*/
::-webkit-scrollbar {
    width: 5px;
  }
  ::-webkit-scrollbar-thumb {
    background: #FA4B37;
    border-radius: 5px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #9a51a0; 
  }
  
  /*NAVIGATION BAR*/
  
.black {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav
  {
      width: 100%;
      background-color: #fff;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 10px 2%;
      position: fixed;
      top: 0px;
      z-index: 10;
      box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
  }
  
  .logohead{
      height:68px;
      width:68px;
  }

  .hamburger {
    display: none;
  }

  .get-started-btn {
    display: inline-block;
    min-width: 132px;
    padding: 9px 20px;
    background: linear-gradient(to right, #FA4B37, #6C3483);
    color: #fff !important;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease 0s;
  }

  .nav li, a, button
  {
      float: left;
      font-family: "Montserrat", sans-serif;
      font-weight: 500;
      font-size: 13px;
      color: #2E3D49;
      display: block;
      text-decoration: none;
      text-align: center;
  }
  
  .nav ul li 
  {
      list-style: none;
      display: inline-block;
      padding: 0px 20px;
      position: relative;
  }
  
  .nav ul li a
  {
      transition: all 0.3s ease 0s;
  }
  
  .nav ul li a:hover
  {
  	color: #fff;
  	border-radius: 5px;
  	background: #6C3483;
  	padding: 4px 6px;
    }

  .nav-dropdown > a::after {
      content: " \25BE";
      font-size: 11px;
  }

  .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 14px 30px rgba(0,0,0,0.12);
      padding: 10px 0 0;
      z-index: 20;
  }

  .dropdown-menu li {
      display: block;
      padding: 0;
      margin: 0;
  }

  .dropdown-menu li a {
      display: block;
      padding: 10px 16px;
      text-align: left;
      white-space: nowrap;
  }

  .nav-dropdown.open .dropdown-menu {
      display: block;
  }

  @media (min-width: 769px) {
    .nav-dropdown:hover .dropdown-menu {
      display: block;
    }
  }
  
  .nav button
  {
      padding: 9px 25px;
      background: linear-gradient(to right, #FA4B37, #9a51a0);
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      outline: none;
      transition: all 0.3s ease 0s;
  }
  #srchbtn {
      padding: 9px 20px;
  }
  #srchbtn img {
      width: 15px;
      filter: brightness(100);
  }
    .nav button:hover
    {
        opacity: .9;
    }

  .get-started-btn:hover
  {
      opacity: .9;
  }
  .nav .search
  {
      float: right;
  }
  .nav .search .srch
  {
      font-size: 13px;
      width: 300px;
      border: none;
      outline: none;
      border-bottom: 2px solid #FA4B37;
      padding: 9px;
  }
  .nav .search button
  {
      margin-right: 5px;
      float: right;
      margin-left: 10px;
  }
  .nav .switch-tab {
      cursor: pointer;
      visibility: hidden;
  }
  .nav .switch-tab img {
      width: 20px;
  }
  .nav .check-box {
      cursor: pointer;
      visibility: hidden;
  }

.active {
	color: #fff;
	border-radius: 5px;
	background: #9a51a0;
	padding: 4px 6px;
}
.logo img{
	width: 100px;
	cursor: pointer;
	transition: all 1s;
}

  /*.nav*/
  /*{*/
  /*    width: 100%;*/
  /*    background-color: #fff;*/
  /*    display: flex;*/
  /*    flex-wrap: wrap;*/
  /*    justify-content: space-between;*/
  /*    align-items: center;*/
  /*    padding: 20px 2%;*/
  /*    position: fixed;*/
  /*    top: 0px;*/
  /*    z-index: 10;*/
  /*    box-shadow: 1px 1px 10px rgba(0,0,0,0.5);*/
  /*}*/
  
  /*#list-switch{*/
  /*     margin-right: 26%;*/
  /*}*/
  
  /*.nav li, a, button*/
  /*{*/
  /*    float: left;*/
  /*    font-family: "Montserrat", sans-serif;*/
  /*    font-weight: 500;*/
  /*    font-size: 13px;*/
  /*    color: #2E3D49;*/
  /*    display: block;*/
  /*    text-decoration: none;*/
  /*    text-align: center;*/
  /*}*/
  
  /*.nav ul li img {*/
  /*    width: 20px;*/
  /*    margin-right: 10px;*/
  /*    transform: translateY(5px);*/
  /*    padding-top: 5px;*/
  /*}*/
  
  /*.nav ul li */
  /*{*/
  /*    list-style: none;*/
  /*    display: inline-block;*/
  /*    padding: 0px 20px;*/
  /*}*/
  
  /*.nav ul li a*/
  /*{*/
  /*    transition: all 0.3s ease 0s;*/
  /*}*/
  
  /*.nav ul li a:hover*/
  /*{*/
  /*    color: #FA4B37;*/
  /*}*/
  
  /*.nav button*/
  /*{*/
  /*    padding: 9px 25px;*/
  /*    background: linear-gradient(to right, #FA4B37, #9a51a0);*/
  /*    color: #fff;*/
  /*    border: none;*/
  /*    border-radius: 5px;*/
  /*    cursor: pointer;*/
  /*    outline: none;*/
  /*    transition: all 0.3s ease 0s;*/
  /*}*/
  /*#srchbtn {*/
  /*    padding: 9px 20px;*/
  /*}*/
  /*#srchbtn img {*/
  /*    width: 15px;*/
  /*    filter: brightness(100);*/
  /*}*/
  /*.nav button:hover*/
  /*{*/
  /*    opacity: .9;*/
  /*}*/
  /*.nav .search*/
  /*{*/
  /*    float: right;*/
  /*}*/
  /*.nav .search .srch*/
  /*{*/
  /*    font-size: 13px;*/
  /*    width: 300px;*/
  /*    border: none;*/
  /*    outline: none;*/
  /*    border-bottom: 2px solid #FA4B37;*/
  /*    padding: 9px;*/
  /*}*/
  /*.nav .search button*/
  /*{*/
  /*    margin-right: 5px;*/
  /*    float: right;*/
  /*    margin-left: 10px;*/
  /*}*/
  /*.nav .switch-tab {*/
  /*    cursor: pointer;*/
  /*    visibility: hidden;*/
  /*}*/
  /*.nav .switch-tab img {*/
  /*    width: 20px;*/
  /*}*/
  /*.nav .check-box {*/
  /*    cursor: pointer;*/
  /*    visibility: hidden;*/
  /*}*/
  
  /*TITLE*/
  .title {
      width: min(1180px, calc(100% - 32px));
      margin: 132px auto 22px;
      padding: 34px 34px 26px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      background:
        radial-gradient(circle at top left, rgba(250, 75, 55, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(108, 52, 131, 0.96), rgba(250, 75, 55, 0.92));
      border-radius: 30px;
      box-shadow: 0 22px 55px rgba(106, 54, 121, 0.22);
      text-wrap: balance;
  }
  .title-kicker {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.22);
      color: #fff7fb;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
  }
  .title span{
      display: inline-block;
      font-weight: 900;
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(40px, 5.2vw, 76px);
      line-height: 1.08;
      letter-spacing: -0.03em;
      max-width: 820px;
      margin: 0 auto;
      color: #fff;
      text-shadow: 0 10px 24px rgba(37, 19, 51, 0.24);
  }
  .title .shortdesc {
      max-width: 720px;
      padding: 6px 0 0;
      margin: 0 auto;
      font-family: 'Open Sans', sans-serif;
      font-size: 18px;
      font-weight: 600;
      line-height: 1.7;
      text-align: center;
      color: rgba(255,255,255,0.9);
  }

  .section-title {
      width: 100%;
      max-width: 1180px;
      margin: 34px auto 12px;
      padding: 0 24px;
      text-align: left;
      font-size: clamp(28px, 4vw, 38px);
      font-family: 'Montserrat', sans-serif;
      color: #24303d;
  }

  .section-title::after {
      content: "";
      display: block;
      width: 88px;
      height: 4px;
      margin-top: 10px;
      border-radius: 999px;
      background: linear-gradient(to right, #FA4B37, #6C3483);
  }

/* main galary */
  .gallery {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 28px;
    padding: 8px 0 12px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-color: grey transparent;
    scroll-behavior: smooth;
}

.gallery1 {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    padding: 8px 0 0;
}

#students .section-title,
#training .section-title {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

h2 {
    color: #333;
    text-align: center;
    width: 100%;
}

.card {
    width: 250px;
    display: inline-flex;
    flex-direction: column;
    vertical-align: top;
    margin-right: 22px;
    background-color: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(32, 55, 90, 0.12);
    border: 1px solid rgba(46, 61, 73, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card1{
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(32, 55, 90, 0.12);
    border: 1px solid rgba(46, 61, 73, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery1:first-of-type .card1,
#trainers-gallery .card {
    position: relative;
    border-radius: 26px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,255,0.98));
    box-shadow: 0 22px 48px rgba(22, 38, 64, 0.14);
    border: 1px solid rgba(108, 52, 131, 0.08);
}

.gallery1:first-of-type .card1::before,
#trainers-gallery .card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(to right, #FA4B37, #6C3483);
    z-index: 2;
}

.abc{
    height:300px;
    width: 100%;
    object-fit: cover;
}

.abc1{
    height:300px;
    width: 100%;
    object-fit: cover;
}

.gallery1:first-of-type .abc1,
#trainers-gallery .abc {
    height: 320px;
}

.card:hover,
.card1:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 46px rgba(32, 55, 90, 0.16);
}

.gallery1:first-of-type .card1:hover,
#trainers-gallery .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 58px rgba(22, 38, 64, 0.2);
}

.gallery::-webkit-scrollbar {
    height: 10px; 
}

.gallery::-webkit-scrollbar-thumb {
    background-color: grey; 
    border-radius: 999px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 22px 22px 0 0;
    transition: transform 0.3s ease-in-out;
}

.card:hover img {
    transform: scale(1.05);
}

.gallery1:first-of-type .card1:hover img,
#trainers-gallery .card:hover img {
    transform: scale(1.08);
}

.card-info {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.card-info h3 {
    color: #24303d;
    font-size: 22px;
}

.card-info p {
    color: #5f6975;
    line-height: 1.65;
    margin: 0;
}

.gallery1:first-of-type .card-info,
#trainers-gallery .card-info {
    gap: 12px;
    padding: 22px 20px 24px;
}

.gallery1:first-of-type .card-info h3,
#trainers-gallery .card-info h3 {
    font-size: 24px;
    line-height: 1.2;
    color: #1f2b38;
}

.gallery1:first-of-type .card-info p:first-of-type,
#trainers-gallery .card-info p:first-of-type {
    width: fit-content;
    max-width: 100%;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(250, 75, 55, 0.08);
    color: #d14b3f;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.gallery1:first-of-type .card-info p:last-of-type,
#trainers-gallery .card-info p:last-of-type {
    width: fit-content;
    max-width: 100%;
    padding: 9px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, #24303d, #42566d);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    box-shadow: 0 12px 24px rgba(36, 48, 61, 0.14);
}

#students .card1 {
    position: relative;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff, #fff9f6);
    box-shadow: 0 20px 44px rgba(143, 86, 52, 0.13);
    border: 1px solid rgba(250, 75, 55, 0.1);
}

#students .abc1 {
    height: 240px;
}

#students .card-info {
    padding: 22px 20px 24px;
}

#students .card-info p {
    color: #4f5b66;
    font-size: 15px;
    line-height: 1.8;
}

#students .card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 54px rgba(143, 86, 52, 0.18);
}

#training .card1 {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #111827;
    border: none;
    box-shadow: 0 24px 52px rgba(18, 26, 40, 0.2);
}

#training .card1::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px 18px;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.5), rgba(255,255,255,0));
    z-index: 2;
}

#training .card1 img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.02);
}

#training .card-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 54px 22px 26px;
    background: linear-gradient(180deg, rgba(17,24,39,0), rgba(17,24,39,0.92) 58%, rgba(17,24,39,0.98) 100%);
}

#training .slogan {
    color: #fff;
    font-style: normal;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    text-shadow: 0 6px 22px rgba(0,0,0,0.34);
}

#training .card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 60px rgba(18, 26, 40, 0.24);
}

.slogan {
    font-style: italic;
    color: #FF4500;
}

/*Footer*/
  
footer {
	color: #E5E8EF;
	background:
		radial-gradient(circle at top left, rgba(250, 75, 55, 0.18), transparent 28%),
		radial-gradient(circle at top right, rgba(108, 52, 131, 0.24), transparent 30%),
		linear-gradient(135deg, #111827 0%, #182235 45%, #0f172a 100%);
	padding: 64px 0 54px;
	position: relative;
	overflow: hidden;
}

footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
	pointer-events: none;
}
  
footer .footer-container {
	position: relative;
	max-width: 1120px;
	margin: auto;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 28px;
}

footer .left-col,
footer .right-col {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	backdrop-filter: blur(14px);
	border-radius: 28px;
	box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

footer .left-col {
	flex: 0 1 360px;
	padding: 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
}
footer .left-col > br {
	display: none;
}

footer .right-col {
	flex: 1 1 620px;
	padding: 24px 24px;
	display: grid;
	grid-template-columns: repeat(2, minmax(240px, 1fr));
	gap: 16px;
}
  
footer .social-media img{
	width: 22px;
	height: 22px;
	object-fit: contain;
}
  
footer .logo {
	width: 180px;
	color: #fff;
}

footer .social-media {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}
  
footer .social-media a{
	margin-right: 10px;
	font-size: 22px;
	text-decoration: none;
	float: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.1);
	transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

footer .social-media a:hover{
	transform: translateY(-3px);
	background: rgba(255,255,255,0.16);
	box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
  
footer .right-col h1{
	font-size: 26px;
}
footer .right-col h2{
	font-size: 24px;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.3;
	color: #fff !important;
	margin-top: 0 !important;
}
footer .border{
	width: 100px;
	height: 4px;
	background: linear-gradient(to right, #FA4B37, #6C3483);
	margin: 10px 0 16px;
	border-radius: 999px;
}

footer .newsletter-form {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
footer input::placeholder {
  color: white !important;
}
footer .txtb {
	flex: 1;
	padding: 18px 40px;
	font-size: 16px;
	background: #343A40;
	border: none;
	font-weight: 700;
	outline: none;
	border-radius: 5px;
	min-width: 260px;
	margin-top: 20px;
	color: white;
}

footer .btn {
	margin-top: 20px;
	padding: 18px 40px;
	font-size: 16px;
	color: #f1f1f1;
	background: linear-gradient(to right, #FA4B37, #9a51a0);
	border: none;
	font-weight: 700;
	outline: none;
	border-radius: 5px;
	margin-left: 20px;
	cursor: pointer;
	transition: opacity .3s linear;	
}

footer .btn:hover {
	opacity: .7;
}

footer .logofoot {
	width: 92px;
	height: 92px;
	border-radius: 22px;
	object-fit: contain;
	background: rgba(255,255,255,0.08);
	padding: 10px;
	box-shadow: 0 16px 32px rgba(0,0,0,0.22);
}

footer .rights-text {
	color: rgba(229, 232, 239, 0.82);
	line-height: 1.7;
	margin-top: 14px;
	order: 99;
	padding: 12px 14px;
	border-radius: 18px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
}

footer p {
	color: rgba(229, 232, 239, 0.86) !important;
	line-height: 1.7;
	margin: 0;
}
footer p a {
	float: none;
	display: inline;
	color: inherit;
	text-decoration: none;
	word-break: break-word;
}
footer p a:hover {
	text-decoration: underline;
}

footer p img {
	width: 16px;
	height: 16px;
	object-fit: contain;
	vertical-align: middle;
	margin-right: 8px;
	filter: brightness(1.15);
}

footer .left-col > p:last-child,
footer .left-col > p:nth-last-child(3) {
	padding: 12px 14px;
	border-radius: 18px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
}
footer .footer-location {
	padding: 12px 14px;
	border-radius: 18px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
}
footer .footer-contact {
	padding: 12px 14px;
	border-radius: 18px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
}
footer .footer-location iframe {
	width: 100%;
	height: 180px;
	margin-top: 14px;
	border-radius: 16px;
}

footer .right-col > div {
	padding: 18px 16px;
	border-radius: 22px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
}
footer .footer-section {
	display: flex;
	flex-direction: column;
}
footer .footer-timings {
	align-items: center;
	text-align: center;
}
footer .footer-timings p {
	width: 100%;
}
footer .footer-timings .border {
	margin-left: auto;
	margin-right: auto;
}
footer .footer-payments h2 {
	text-align: center;
}
footer .footer-payments .border {
	margin-left: auto;
	margin-right: auto;
}
footer .footer-qr-block {
	width: 100%;
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 14px;
}
footer .footer-qr-title {
	margin: 0;
}
footer .footer-qr-image {
	width: 160px;
	height: 160px;
	object-fit: contain;
	padding: 12px;
	border-radius: 24px;
	background: rgba(255,255,255,0.08);
	box-shadow: 0 16px 32px rgba(0,0,0,0.22);
}
footer .payment-intro {
	margin-bottom: 18px;
}

footer .right-col strong {
	color: #fff;
}


/*For Responsive Website*/
@media screen and (max-width: 960px) {
	.footer-container {
		max-width: 720px;
	}
	.right-col {
		width: 100%;
		margin-bottom: 60px;
		grid-template-columns: 1fr;
	}
	.left-col {
		width: 100%;
		text-align: left;
	}
	.social-media {
		display: flex;
		justify-content: flex-start;
	}
}

@media screen and (max-width: 1000px) {
	footer {
		padding: 52px 0 42px;
	}

	footer .footer-container {
		max-width: 100%;
		padding: 0 16px;
		gap: 14px;
		flex-direction: column;
	}

	footer .left-col,
	footer .right-col {
		width: 100%;
		padding: 18px 16px;
		border-radius: 18px;
	}

	footer .right-col h2 {
		font-size: 20px;
	}

	footer .right-col {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	footer .right-col > div {
		padding: 14px 14px;
		border-radius: 16px;
	}

	footer .footer-qr-block {
		margin-top: 20px;
	}

	footer .logofoot {
		width: 72px;
		height: 72px;
		border-radius: 18px;
		padding: 8px;
	}

	footer .social-media {
		gap: 8px;
		margin-top: 10px;
		justify-content: flex-start;
	}

	footer .social-media a {
		width: 38px;
		height: 38px;
		margin-right: 0;
	}

	footer p,
	footer .rights-text {
		line-height: 1.6;
		font-size: 14px;
	}

	footer .rights-text {
		padding: 10px 12px;
		border-radius: 14px;
	}

	footer .left-col > p:last-child,
	footer .left-col > p:nth-last-child(3) {
		padding: 10px 12px;
		border-radius: 14px;
	}

	footer .footer-location {
		padding: 10px 12px;
		border-radius: 14px;
	}

	footer .footer-contact {
		padding: 10px 12px;
		border-radius: 14px;
	}

	footer .footer-location iframe {
		height: 160px;
		border-radius: 14px;
	}

	footer .footer-qr-image {
		width: 132px;
		height: 132px;
		border-radius: 20px;
		padding: 10px;
	}
}

@media screen and (max-width: 700px) {
	footer .btn{
		margin: 0;
		width: 100%;
		margin-top: 20px;
	}
}
@media screen and (max-width: 1366px) {
	.search {
		display: none;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 768px) {
  .nav {
    width: 100%;
    padding: 10px 4%;
    height: auto;
    align-items: center;
    top: 0;
  }

  #learned-logo {
    order: 1;
  }

  .logohead {
      height: 46px;
      width: 46px;
    }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
    order: 2;
    margin-left: auto;
  }

  .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #2E3D49;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease;
    transform-origin: center;
  }

    #list-switch {
      overflow: hidden;
      max-height: 0;
      width: 100%;
      flex-direction: column;
      transition: max-height 0.35s ease, margin-top 0.35s ease, padding 0.35s ease;
      display: flex;
      padding: 0;
      order: 4;
      margin-right: 0;
      background: #fff;
      border-radius: 12px;
      gap: 2px;
    }
  
    #list-switch.open {
      max-height: 520px;
      margin-top: 12px;
      padding: 10px 14px;
      box-shadow: inset 0 0 0 1px rgba(46, 61, 73, 0.08);
    }
  
    .nav ul li {
      display: block;
      padding: 0;
      margin: 0;
      text-align: left;
      width: 100%;
    }

    .nav ul li a {
      font-size: 14px;
      padding: 12px 14px;
      border-radius: 10px;
    }

    .nav-dropdown > a::after {
      float: right;
      margin-left: 10px;
    }

    .dropdown-menu {
      position: static;
      min-width: 100%;
      box-shadow: none;
      border-radius: 10px;
      padding: 0;
      margin-top: 4px;
      background: #f7f8fc;
      display: block;
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.3s ease;
    }

    .dropdown-menu li a {
      padding: 10px 14px 10px 26px;
      white-space: normal;
      font-size: 13px;
    }

    .nav-dropdown.open .dropdown-menu {
      max-height: 260px;
      opacity: 1;
      margin-top: 8px;
    }

  .nav ul li a {
    font-size: 13px;
  }

  .title {
    margin-top: 104px;
    padding: 24px 18px 20px;
    border-radius: 22px;
    gap: 10px;
  }

  .title .shortdesc {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .section-title {
    margin-top: 18px;
    padding: 0 16px;
    text-align: center;
  }

  .gallery,
  .gallery1 {
    width: calc(100% - 24px);
    gap: 16px;
    padding-left: 0;
    padding-right: 0;
  }

  .gallery {
    padding-bottom: 10px;
  }

  .card,
  .card1 {
    border-radius: 18px;
  }

  .card {
    width: 220px;
    margin-right: 16px;
  }

  .abc,
  .abc1 {
    height: 250px;
  }

  .gallery1:first-of-type .abc1,
  #trainers-gallery .abc {
    height: 280px;
  }

  .card-info {
    padding: 16px 16px 18px;
  }

  .gallery1:first-of-type .card-info,
  #trainers-gallery .card-info {
    padding: 18px 16px 20px;
  }

  #students .card-info {
    padding: 18px 16px 20px;
  }

  #training .card1 img {
    height: 280px;
  }

  #training .card-info {
    padding: 42px 18px 20px;
  }
}

@media screen and (max-width: 480px) {
  .title {
    margin-top: 92px;
    width: calc(100% - 20px);
    padding: 20px 16px 18px;
  }

  .title span {
    font-size: 32px;
  }

  .title .shortdesc {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .gallery,
  .gallery1 {
    width: calc(100% - 20px);
    gap: 14px;
  }

  .gallery {
    white-space: nowrap;
  }

  .gallery1 {
    grid-template-columns: 1fr;
  }

  .abc,
  .abc1 {
    height: 220px;
  }

  .gallery1:first-of-type .abc1,
  #trainers-gallery .abc {
    height: 250px;
  }

  #students .abc1 {
    height: 220px;
  }

  #training .card1 img {
    height: 250px;
  }

  #training .card-info {
    padding: 34px 16px 18px;
  }

  #training .slogan {
    font-size: 15px;
    line-height: 1.6;
  }

  .card {
    width: 200px;
    margin-right: 14px;
  }
}
