@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*==================================== VARIABLES ====================================*/

:root {
  --white: #fff;
  --black: #000;
  --primary-color: #02367b;
  --secondry-color: #006ca5;
  --third-color: #0496c7;
  --fourth-color: #04badb;
  --five-color: #55e2e9;
  --footer-bg: #02367b;
  --primary: "Poppins", sans-serif;
  --secondary: "Roboto", sans-serif;
  --h1: normal 400 68px/73px var(--primary);
  --h2: normal 500 50px/54px var(--primary);
  --h3: normal 500 38px/45px var(--primary);
  --h4: normal 400 24px/30px var(--primary);
}

body {
  color: var(--black);
  font-family: var(--primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: normal;
  margin: 0;
  padding: 0;
}

*,
:after,
:before {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  text-decoration: inherit;
  vertical-align: inherit;
}

:focus,
:active {
  outline: none !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  list-style: none;
  vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  outline: none;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

svg,
img {
  max-width: 100%;
  display: block;
  border-style: none;
}

input,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  outline: none;
  resize: none;
}

a,
a:focus,
button,
button:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  color: inherit;
}

a:focus {
  color: #fff;
}

::selection {
  background: rgba(127, 131, 51, 0.2);
}

::-moz-selection {
  background: rgba(127, 131, 51, 0.2);
}

a {
  text-decoration: none;
  display: inline-block;
}

ul {
  list-style: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000000s ease-in-out 0s;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}


/* ==================================== TYPOGRAPHY ==================================== */

.h1,
h1 {
  font: var(--h1);
}

.h2,
h2 {
  font: var(--h2);
}

.h3,
h3 {
  font: var(--h3);
}

.h4,
h4 {
  font: var(--h4);
}


/*====================================  HELPING CLASSES ====================================*/

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.direction-column {
  flex-direction: column;
  -ms-flex-direction: column;
}

.row-reverse {
  flex-direction: row-reverse;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.row:after,
.row:before {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

.overflow-hidden,
.no-scroll {
  overflow: hidden;
}

.bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/*==================================== SLICK SLIDER START ====================================*/

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
  outline: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.slick-dots li:not(:last-child) {
  margin-right: 5px;
}

.slick-dots li {
  display: flex;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  border: 0;
  padding: 0;
  margin: 0;
}

.slick-dots li.slick-active button {
  background-color: #d1b66c;
}

.slick-arrow {
  width: 72px;
  height: 72px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  border: 0;
  outline: none;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat !important;
  background-size: 22px;
  background-position: 50% 50%;
  padding: 0;
  background-color: var(--theme-color2) !important;
}

.slick-disabled {
  opacity: 0;
}

.slick-arrow.slick-next {
  right: 0;
  left: auto;
}

.slick-arrow.slick-prev {
  right: auto;
  transform: translateY(-50%) scale(-1);
  left: 0;
}

.slick-arrow:focus,
.slick-arrow:hover {
  background-color: transparent;
}


/************************************* COMMON BUTTON CSS **************************************/

.container {
  width: 100%;
  padding: 0 30px;
  position: relative;
}

button,
.btn {
  text-align: center;
  font-size: 14px;
  line-height: 1;
  padding: 15px 20px;
  font-family: var(--primary);
  letter-spacing: 0.32px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--primary-color);
  box-shadow: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: all 0.3s;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  background: #1976d2;
  color: white;
  transform: translateY(-2px);
}

.title-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  margin-bottom: 10px;
}


/*********************************************  HEADER CSS STARS FROM HERE  **********************************************/

/* Top Banner */
.wtrn_top-banner {
  background: var(--primary-color);
  color: white;
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-main .sub-menu:not(.sub-menu li .sub-menu) {
  position: absolute;
  min-width: 340px;
  background: #fff;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  top: 50px;
  transition: 0.2s ease;
  padding-bottom: 20px;
}

.wpforms-container .wpforms-one-half {
  width: 100% !important;
  margin-left: 0px !important;
}

.header-main .sub-menu li {
  padding: 20px 20px 0 20px;
}


.sub-menu li .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  right: -300px;
  background: #fff;
  border-radius: 0 20px 20px 0;
  max-width: 300px;
  width: 100%;
  padding-bottom: 20px;
}

.wtrn_sub_menu {
  opacity: 0;
  visibility: hidden;
}

.wtrn_sub_menu .menu-item-has-children {
  position: relative;
}

.wtrn_sub_menu .menu-item-has-children::before {
  content: "";
  height: 20px;
  width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='11' viewBox='0 0 6 11' fill='none'%3E%3Cpath d='M1 9.5L5 5.5L1 1.5' stroke='%23B9D719' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 6px;
  display: block;
  position: absolute;
  top: 50%;
  right: 26px;
  filter: brightness(0.5);
}

.header-main .menu-item-has-children:hover .wtrn_sub_menu {
  opacity: 1;
  visibility: visible;
}

.header-main .sub-menu a {
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  margin-bottom: 0;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.req-call-btn a {
  background: var(--primary-color);
  align-items: center;
  display: flex;
  width: max-content;
  justify-content: center;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  font-size: 14px;
  padding: 8px;
  margin: 0 auto;
}

.req-call-btn a:hover {
  background: var(--secondry-color);
}

.menu-item-39423 {
  padding: 4px 16px;
  background: #000;
  border-radius: 10px;
  color: #fff;
}

.menu-item-39423>a {
  color: #fff !important;
}

.header-main .menu-item-has-children:not(.sub-menu li.menu-item-has-children) {

  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-main .menu-item-has-children::after {
  content: "";
  height: auto;
  width: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='twotone-3d_rotation-24px' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath id='Path_3721' data-name='Path 3721' d='M0,0H16V16H0Z' fill='none'/%3E%3Cpath id='Path_3722' data-name='Path 3722' d='M9.526,4a5.526,5.526,0,1,0,5.526,5.526A5.533,5.533,0,0,0,9.526,4Zm1.388,6.914L5.727,13.325,8.137,8.137l5.187-2.411Z' transform='translate(-1.526 -1.526)' fill='%23fff' opacity='0.3'/%3E%3Cpath id='Path_3723' data-name='Path 3723' d='M8.763,2a6.763,6.763,0,1,0,6.763,6.763A6.765,6.765,0,0,0,8.763,2Zm0,12.173a5.41,5.41,0,1,1,5.41-5.41A5.417,5.417,0,0,1,8.763,14.173Zm-3.72-1.691,5.079-2.36,2.36-5.079L7.4,7.4Zm3.72-4.463a.744.744,0,1,1-.744.744A.742.742,0,0,1,8.763,8.019Z' transform='translate(-0.763 -0.763)' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 16px;
  margin-left: 7px;
  height: 15px;
  width: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-main .sub-menu li.menu-item-has-children::after {
  display: none;
}

.wtrn_top-banner .wtrn_music-icon {
  margin-right: 15px;
}
.wtrn_top-banner .wtrn_music-icon img{
  max-width: 25px;
  width: 100%;
}

/* Contact Bar */
.wtrn_contact-bar {
  background-color: #000;
  padding: 10px 0;
  border-bottom: 1px solid #444;
  position: sticky;
  top: 0;
  z-index: 10;
}

.wtrn_contact-container {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.wtrn_contact-left {
  display: flex;
  gap: 30px;
  align-items: center;
}

.wtrn_contact-item {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.wtrn_contact-item svg {
  fill: var(--five-color);
  width: unset;
  height: 20px;
  margin-right: 10px;
}
.wtrn_contact-item img{
  max-width: 20px !important;
  width: 100%;
  margin-right: 10px;
}

.wtrn_contact-right {
  display: flex;
  gap: 20px;
  align-items: center;
  color: #fff;
}

.wtrn_location-item {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.wtrn_location-item svg {
  height: 18px;
  width: unset;
  margin-right: 10px;
}

.wtrn_location-item svg path {
  fill: #7c3aed;
}

/* Main Header */
.header-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.wtrn_main-header {
  background-color: transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.wtrn_header-container {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

.wtrn_logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.wtrn_logo img {
  width: unset;
  height: 55px !important;
}

.wtrn_head_part {
  padding: 30px;
}

.wtrn_logo-box {
  background: linear-gradient(135deg, #8B5CF6, #A855F7);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  margin-right: 8px;
  font-weight: bold;
  font-size: 18px;
}

.wtrn_logo-text {
  color: #333;
  font-size: 12px;
  font-weight: 500;
}

.wtrn_nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.wtrn_nav-item {
  position: relative;
}

.wtrn_nav-item a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding: 10px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.wtrn_nav-item a:hover,
.wtrn_nav-item a.wtrn_active {
  color: var(--primary-color);
}

.wtrn_nav-item a.wtrn_active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
}

/* Dropdown Arrow */
.wtrn_has-dropdown::after {
  content: '▼';
  font-size: 10px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.wtrn_nav-item:hover .wtrn_has-dropdown::after {
  transform: rotate(180deg);
}

/* Mega Menu Styles */
.wtrn_mega-menu {
  position: absolute;
  top: 100%;
  left: -200px;
  background: white;
  min-width: 600px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  z-index: 2000;
  border-top: 4px solid #A855F7;
  overflow: hidden;
}

.wtrn_nav-item:hover .wtrn_mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wtrn_mega-menu-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.wtrn_mega-menu-column {
  padding: 30px 25px;
}

.wtrn_mega-menu-column:first-child {
  border-right: 1px solid #f0f0f0;
}

.wtrn_mega-menu-item {
  display: block;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}

.wtrn_mega-menu-item:last-child {
  border-bottom: none;
}

.wtrn_mega-menu-item:hover {
  color: #A855F7;
  padding-left: 15px;
}

.wtrn_mega-menu-item::before {
  content: '▶';
  font-size: 10px;
  margin-right: 10px;
  color: #A855F7;
  opacity: 0;
  transition: all 0.3s ease;
}

.wtrn_mega-menu-item:hover::before {
  opacity: 1;
}

.wtrn_demo-btn {
  background: var(--secondry-color);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.wtrn_demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Mobile Menu Toggle */
.wtrn_menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* Mobile Dropdown Styles */
.wtrn_mobile-dropdown {
  display: none;
  background: white;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid #eee;
}

.wtrn_mobile-dropdown-item {
  display: block;
  padding: 15px 20px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.3s ease;
}

.wtrn_mobile-dropdown-item:hover {
  background-color: #f8f9fa;
  color: #A855F7;
  padding-left: 30px;
}

.wtrn_mobile-dropdown-item:last-child {
  border-bottom: none;
}

/*********************************************  HEADER CSS STARS FROM HERE  **********************************************/


/*********************************************  hero section CSS STARS FROM HERE  **********************************************/


.col_left {
  width: 50%;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

.col_right {
  width: 50%;
  padding: 0 15px;
}

.col_right .hero_img {
  position: relative;
  padding-bottom: 100%;
}

.col_right .hero_img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.hero_section {
  background-color: #000;
  position: relative;
}

.hero_section .row {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero_section .container {
  padding: 200px 30px 0 30px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.8;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.title-color {
  color: var(--five-color);
}

.title-main h2 {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: var(--secondary);
  font-weight: 500;
  font-size: 50px;
}

.hero_content p {
  color: var(--white);
  line-height: 1.4;
}
.review-item {
  width: 33%;
  padding: 0 10px;
}

.review-item:first-child {
  padding-left: 0;
}

.review-item:last-child {
  padding-right: 0;
}

.social-review-wp {
  width: 100%;
  max-width: 500px;
  margin: 20px 0;
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-img {
  margin-bottom: 10px;
}

.review-icon-wp {
  display: block;
  margin-bottom: 7px;
}

.review-icon-wp .review-icon svg {
  height: 16px;
  width: auto;
  fill: #f0ad4e;
}


/*  */

/* Our Courses Section Styles */
.courses-section {
  background: var(--primary-color);
  padding: 60px 20px 40px 20px;
  text-align: center;
  position: relative;
}

.courses-title {
  color: var(--white);
  font-size: 42px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 40px;
}

.courses-swiper {
  max-width: 1200px;
  margin: 0 auto 30px auto;
  padding-bottom: 40px;
}

.courses-swiper .swiper-wrapper {
  margin-bottom: 40px;
}

.courses-swiper .swiper-slide {
  height: auto;
}

.courses-swiper .swiper-button-prev {
  left: 15% !important;
}

.courses-swiper .swiper-button-next {
  right: 15% !important;
}


.swiper-slide {
  display: flex;
  justify-content: center;
}

.course-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 10px;
  height: 100%;
  padding: 10px;
}

.course-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
}

.course-content {
  padding: 24px 0 16px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.course-name {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.2;
  text-align: left;
}

.course-desc {
  color: #333;
  text-align: left;
  margin-bottom: 15px;
  flex: 1;
}

.read-more {
  background: var(--secondry-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin: 0 auto;
}

.read-more:hover {
  background: var(--third-color);
}

.swiper-pagination {
  bottom: -6px !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.7 !important;
  width: 12px !important;
  height: 12px !important;
}

.swiper-pagination-bullet-active {
  background: #7c3aed !important;
  opacity: 1 !important;
}

.enroll-btn-wrap {
  margin-top: 30px;
}

.enroll-btn {
  background: var(--secondry-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 48px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Poppins', sans-serif;
}

.enroll-btn:hover {
  background: var(--third-color);
}




.our-placements {
  padding: 40px 0;
}

.placements-item {
  width: 20%;
}

.placements-card {
  padding: 20px;
}

/* Testimonials Section */
.wtrn_placements-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.wtrn_placements-section .wtrn_heading {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.wtrn_placements-section .wtrn_subheading {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.wtrn_placements-section .swiper {
  width: 100%;
  height: auto;
  /* Added spacing to account for removed pagination */
  padding: 0 20px 20px;
}

.wtrn_placements-section .swiper-slide {
  width: 250px;
  height: auto;
}

.wtrn_testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #CBCBCB;
  flex-shrink: 0;
  width: 100%;
}

.wtrn_testimonial-card-image {
  width: 130px;
  height: 130px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
  margin-bottom: 20px;
}

.wtrn_testimonial-card-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.wtrn_testimonial-card-role {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
  font-style: italic;
}

.wtrn_testimonial-card-company {
  font-size: 16px;
  color: #02367B;
  font-style: italic;
}




/* Our Training Section Styles */
.training-section {
  background: #fff;
  padding: 50px 20px 40px 20px;
  text-align: center;
}

.training-title {
  color: #222;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 36px;
  font-family: 'Poppins', sans-serif;
}

.training-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.training-card {
  background: #fafaff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 18px 24px 18px;
  transition: box-shadow 0.2s;
}

.training-card:hover {
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.10);
}

.training-img {
  width: 100%;
  max-width: 480px;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 18px;
  background: #eaeaff;
}

.training-content {
  text-align: left;
}

.training-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.training-name.online {
  color: var(--primary-color);
}

.training-name.offline {
  color: var(--primary-color);
}

.training-desc {
  color: #222;
  font-size: 16px;
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 1200px) {
  .training-card {
    width: 90vw;
    max-width: 540px;
  }

  .marquee {
    bottom: 0;
  }
}





/* Contact Section Styles */
.contact-section {
  background: #fff;
  padding: 40px 20px 60px 20px;
}

.contact_container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  margin-top: 70px;
  flex-wrap: wrap;
}

.contact-form-wrap {
  flex: 1 1 420px;
  min-width: 320px;
  max-width: 520px;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  text-align: center;
  line-height: normal;
}

.contact-subtitle {
  font-size: 20px;
  color: #444;
  margin-bottom: 32px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 14px;
  font-weight: 500;
  color: gray;
  margin-bottom: 4px;
  margin: 0 0 5px 0;
}

.required {
  color: #e11d48;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #d1d5db;
  font-size: 18px;
  background: #fafaff;
  transition: border 0.2s;
  margin-bottom: 30px;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
  border: 2px solid #7c3aed;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-btn {
  background: var(--secondry-color);
  color: #fff;
  border: none;
  padding: 12px 14px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  margin-top: 10px;
  width: max-content;
  transition: background 0.2s;
}

.contact-btn:hover {
  background: var(--third-color);
}

.contact-img-wrap {
  flex: 1 1 340px;
  min-width: 260px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  background: #f3f4f6;
}



.gallery-section {
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-title {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-bottom: 50px;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.tab-button {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.tab-button:hover {
  color: #333;
  background-color: rgba(0, 0, 0, 0.05);
}

.tab-button.active {
  color: var(--primary-color);
  background-color: rgba(139, 92, 246, 0.1);
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.gallery-grid.fade-out {
  opacity: 0;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px !important;
  object-fit: cover;
  display: block;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}





/* Testimonials Section Styles */
.testimonials-section {
  background: var(--primary-color);
  padding: 60px 0 60px 0;
  text-align: center;
  position: relative;
}

.swiper-button-next {
  right: 40px !important;
}

.swiper-button-prev {
  left: 40px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: #fff !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 50% !important;
  height: 40px !important;
  width: 40px !important;
  background-size: 25% !important;
  font-size: 28px;
  color: #000 !important;
}

.wtrn_container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.wtrn_title {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: normal;
}

.testimonials-swiper {
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.testimonials-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  justify-content: flex-start;
}

.testimonials-swiper .swiper-wrapper {
  margin-bottom: 40px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid lightgray;
}

.testimonial-avatar {
  width: 90px;
  height: 90px !important;
  border-radius: 100%;
  object-fit: cover;
  background: #eaeaff;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-name {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.platform-logo svg {
  width: 100%;
  height: 100%;
}

.platform-logo {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.testimonial-stars img {
  width: 150px;
}

.testimonial-stars {
  margin-top: 5px;
}

.designation {
  margin-top: 5px;
  font-size: 14px;
  color: gray;
}

.testimonial-stars span {
  color: #ffe066;
  font-size: 22px;
  margin-top: 2px;
  letter-spacing: 2px;
}

.testimonial-box {
  background: #fff;
  color: #000;
  border-radius: 10px;
  margin-top: 0px;
  padding: 32px 32px 24px 32px;
  max-width: 420px;
  min-height: 220px;
  height: 100%;
  position: relative;
  text-align: left;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}



.testimonial-text {
  color: #000;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  padding-top: 20px;
}

.swiper-pagination-bullet {
  background: transparent;
  opacity: 0.7;
  border-color: #fff;
}

.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

.faq-container {
  margin: 100px 0;
}

.faq-container .wtrn_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.faq-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* FAQ Content Styles */
.faq-container .wtrn_title {
  color: #000;
  text-align: center;
}

.faq-list {
  list-style: none;
}

.faq-item {
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;

  background: white;
  transition: transform 0.3s ease;
  border-top: 1px dashed #c2c2c2;
  border-bottom: 1px dashed #c2c2c2;
}


.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  background: white;
  width: 100%;
  text-align: left;
  padding: 0;
}

.faq-question:hover {}


.question-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1976d2;
  margin-right: 20px;
  min-width: 40px;
  border-right: 1px dashed #c2c2c2;
  width: 60px;
  padding: 30px 0 20px 10px;
}

.question-text {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
}

.toggle-icon {
  font-size: 1.5rem;
  color: #1976d2;
  transition: transform 0.3s ease;
  font-weight: bold;
}


.faq-answer {
  display: none;
  margin: 0 0px 0px 59px;
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
  animation: slideDown 0.3s ease;
  border-left: 1px dashed #c2c2c2;
  padding: 20px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.show-more {
  text-align: center;
  margin-top: 40px;
}

.show-more-btn {
  background: transparent;
  border: 2px solid #1976d2;
  color: #1976d2;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.show-more-btn:hover {
  background: #1976d2;
  color: white;
  transform: translateY(-2px);
}

.wtrn_cta {
  margin: 100px 0;
  padding: 0 20px;
}

.wtrn_cta .wtrn_container {
  padding: 100px 0;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: #fff;
  gap: 20px;
}

.wtrn_cta .wtrn_container h2 {
  max-width: 800px;
  margin: 0 auto;
  line-height: normal;
  font-size: 40px;
  line-height: 45px;
  text-align: center;
}

.wtrn_btn {
  background-color: var(--secondry-color);
  padding: 14px 30px;
  border-radius: 10px;
}

.wtrn_btn:hover {
  background-color: var(--third-color);
}

/*********************************************  FOOTER CSS STARS FROM HERE  **********************************************/
/* Footer styles */
.wtrn_footer_main {
  background-color: var(--footer-bg);
  color: #ccc;
  padding: 50px 20px 0;
}

.wtrn_footer_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 30px;
}

.wtrn_footer_column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wtrn_footer_logo-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wtrn_footer_logo-section img {
  width: unset;
  height: 60px;
}

.wtrn_footer_logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.wtrn_footer_logo-box {
  background: linear-gradient(135deg, #8B5CF6, #A855F7);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  margin-right: 8px;
  font-weight: 700;
  font-size: 18px;
}

.wtrn_footer_logo-text {
  color: #ccc;
  font-size: 12px;
  font-weight: 500;
}

.wtrn_footer_intro-text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 250px;
  color: #aaa;
}

.wtrn_footer_social-icons {
  display: flex;
  gap: 15px;
}

.wtrn_footer_social-icon-link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--five-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.wtrn_footer_social-icon-link:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.wtrn_footer_social-icon-link svg,
.wtrn_footer_social-icon-link img{
  width: 18px;
  height: 18px;
}

.wtrn_footer_social-icon-link svg,
.wtrn_footer_social-icon-link svg path {
  fill: var(--five-color);
  color: var(--five-color);
}

.wtrn_footer_heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: normal;
  color: var(--white);
}

.wtrn_footer_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wtrn_footer_list a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  position: relative;
}

.wtrn_footer_list a:hover {
  color: #fff;
  padding-left: 10px;
}

.wtrn_footer_list a:hover::before {
  content: '→';
  position: absolute;
  left: -15px;
  color: #A855F7;
}

.wtrn_footer_location-item {
  display: flex;
  align-items: center;
  color: #aaa;
  font-size: 14px;
  gap: 8px;
}

.wtrn_footer_location-item svg {
  width: 14px;
  height: 14px;
  fill: var(--five-color);
}

.wtrn_footer_divider {
  height: 1px;
  background-color: var(--five-color);
  margin: 20px auto;
  max-width: 1200px;
}

.wtrn_footer_copyright {
  text-align: center;
  font-size: 12px;
  color: #fff;
  padding: 20px 0;
}

.wtrn_blog_container {
  margin: 100px 0;
}

.wtrn_blog_container .wtrn_title {
  color: #000;
}

.wtrn_blog_header {
  text-align: center;
  margin-bottom: 50px;
}






.wtrn_blog_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.wtrn_blog_card {
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.wtrn_blog_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.wtrn_blog_image_container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.wtrn_blog_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.wtrn_blog_category_icon {
  width: 12px;
  height: 12px;
  background: #007bff;
  border-radius: 50%;
}

.wtrn_blog_content {
  padding: 25px;
}

.wtrn_blog_card_title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.3;
}

.wtrn_blog_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wtrn_blog_date {
  color: #888;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wtrn_blog_date_icon {
  width: 14px;
  height: 14px;
  background: #888;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.wtrn_blog_read_more {
  color: #007bff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.wtrn_blog_read_more:hover {
  color: #0056b3;
}

.wtrn_blog_arrow {
  transition: transform 0.3s ease;
}

.wtrn_blog_read_more:hover .wtrn_blog_arrow {
  transform: translateX(3px);
}

/* Card-specific styling */
.wtrn_blog_card:nth-child(1) .wtrn_blog_image {
  background: linear-gradient(45deg, #ff0000, #ffaa00);
}

.wtrn_blog_card:nth-child(2) .wtrn_blog_image {
  background: linear-gradient(45deg, #000000, #333333);
}

.wtrn_blog_card:nth-child(3) .wtrn_blog_image {
  background: linear-gradient(45deg, #ff0000, #cc0000);
}


.wtrn_blog_name_badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.banner {
  padding: 60px 20px;
  color: var(--primary-color);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: var(--primary-color); */
}

.banner .wpforms-container .wpforms-field {
  padding: 10px 0;
}

.banner div.wpforms-container-full .wpforms-form .wpforms-submit-container {
  margin-top: 0px !important;
}

.banner .wpforms-recaptcha-container {
  display: contents;
}

.banner .wpforms-submit {
  border-radius: 6px;
}

html body .banner :is(input, select, textarea) {
  border-radius: 7px !important;
}

.banner #wpforms-26206.wpforms-render-modern {
  margin-bottom: 0px !important;
}

/* Banner content container */
.banner-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

/* Text section */
.banner-text {
  flex: 1 1 60%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner-text ul li {
  list-style: disc;
  list-style-position: inside;
  color: #111111;
}

.banner-text h2 {
  font-size: 36px;
  line-height: normal;
}

.banner-text p {
  font-size: 16px;
  line-height: 1.5;
  color: #111111;
}

/* Form box */
.banner-form {
  background: #fff;
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  flex: 1 1 33%;
  margin-top: -140px;
  z-index: 1;
  border-style: solid;
  border-width: 0px 0px 7px 0px;
  border-color: #066aab;
}

.banner-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.banner-form h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #02367b;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.banner-form input,
.banner-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 0px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.banner-form button {
  width: 100% !important;
  padding: 12px;
  background: var(--secondry-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.banner-form button:hover {
  background: var(--third-color);
}

.wtrn_feature-section {
  margin: 100px 0;
}

/* Flex container for left title and right slider */
.wtrn_feature-section .wtrn_container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

/* Left column */
.wtrn_feature-section .feature-left {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.wtrn_feature-section .feature-left h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
}

/* Navigation buttons under title */
.wtrn_feature-section .nav-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  position: relative;
}

.wtrn_feature-section .swiper-button-prev,
.wtrn_feature-section .swiper-button-next {
  background: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: static;
  margin: 0;
}

.wtrn_feature-section .swiper-button-prev::after,
.wtrn_feature-section .swiper-button-next::after {
  font-size: 16px;
  color: #fff;
}

/* Right slider */
.wtrn_feature-section .feature-right {
  flex: 1;
  min-width: 0;
  background-image: url(../images/arrows-group.svg);
  background-position: 30%;
  background-repeat: no-repeat;
  background-size: contain;
  /* prevents flexbox overflow */
}

.wtrn_feature-section .feature-right .button_group {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 30px;
}

.wtrn_feature-section .feature-right .button_group button,
.wtrn_feature-section .feature-right .button_group a {
  background-color: transparent;
  border-radius: 30px;
  border: 1px solid var(--secondry-color);
  color: var(--primary-color);
  box-shadow: 4px 4px 0 0 var(--secondry-color);
  font-size: 16px;
  transition: 0.2s linear;
  padding: 15px 20px;
  line-height: 1;
  font-family: var(--primary);
  letter-spacing: 0.32px;
  font-weight: 500;
}

.wtrn_feature-section .feature-right .button_group button:nth-child(1),
.wtrn_feature-section .feature-right .button_group a:nth-child(1) {
  margin-right: 160px;
  transform: translateY(-16px);
}

.wtrn_feature-section .feature-right .button_group button:nth-child(2),
.wtrn_feature-section .feature-right .button_group a:nth-child(2) {
  margin-right: 65px;
  transform: translateY(-20px);
}

.wtrn_feature-section .feature-right .button_group button:nth-child(3),
.wtrn_feature-section .feature-right .button_group a:nth-child(3) {
  margin-right: 80px;
  transform: translateY(-8px);
}

.wtrn_feature-section .feature-right .button_group button:nth-child(4),
.wtrn_feature-section .feature-right .button_group a:nth-child(4) {
  margin-right: 185px;
  margin-bottom: 10px;
}

.wtrn_feature-section .feature-right .button_group button:nth-child(5),
.wtrn_feature-section .feature-right .button_group a:nth-child(5) {
  margin-right: 60px;
  transform: translateY(-8px);
}

.wtrn_feature-section .feature-right .button_group button:nth-child(7),
.wtrn_feature-section .feature-right .button_group a:nth-child(7) {
  margin-right: 190px;
  margin-bottom: -10px;
}

.wtrn_feature-section .feature-right .button_group button:hover,
.wtrn_feature-section .feature-right .button_group a:hover {
  box-shadow: 0px 0px 0 0 var(--secondry-color);
}

.wtrn_feature-section .feature-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wtrn_feature-section .feature-content .button_plus {
  position: relative;
  background: var(--primary-color);
  border-radius: 50%;
  height: 150px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.wtrn_feature-section .feature-content .button_plus::after {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  z-index: -1;
  animation: pulse 1.1s ease infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    opacity: 20%;
  }

  100% {
    transform: scale(1.5);
    opacity: 10%;
  }
}


/* Slide style */

/* Icon */
.wtrn_feature-section .feature-icon {
  width: 60px;
  height: 60px;
  background: #02367b3d;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.wtrn_feature-section .swiper-slide {
  transform: scale(0);
  transition: 0.2s linear;
  margin: 0 20px !important;
}

.wtrn_feature-section .swiper-slide.swiper-slide-active {
  transform: scale(1);
}

.wtrn_feature-section .logo_slider .swiper-wrapper {
  align-items: center;
}

.wtrn_feature-section .feature-icon img {
  width: 32px;
  height: 32px;
}

/* Title */
.wtrn_feature-section .swiper-slide h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: normal;
}

/* Description */
.wtrn_feature-section .swiper-slide p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.wtrn_feature-section .swiper-slide img {
  max-width: 60px;
  width: 100%;
  margin: 0 auto;
}

.wtrn_founder {
  position: relative;
}

.wtrn_founder .wtrn_container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
}

.wtrn_founder .wtrn_container .founder-left,
.wtrn_founder .wtrn_container .founder-right {
  max-width: 50%;
  width: 100%;

}

.wtrn_founder .wtrn_container .founder-left img {
  height: 550px;
  object-fit: cover;
}

.wtrn_founder .wtrn_container img {
  border-radius: 20px;
}

.wtrn_founder .wtrn_container .founder-right h2 {
  font-size: 25px;
  line-height: normal;
  margin-bottom: 10px;
}

.wtrn_founder .wtrn_container .founder-right hr {
  margin: 20px 0;
}

.wtrn_founder .wtrn_container .founder-right h3 {
  font-size: 20px;
  line-height: normal;
}

.wtrn_founder .wtrn_container .founder-right p {
  font-size: 16px;
  line-height: normal;
  color: gray;
  font-weight: 400;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 50px;
  white-space: nowrap;
  box-sizing: border-box;
  z-index: -1;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}

.marquee-content img {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  border-radius: 5px;
}

/* Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

img {
  width: 100%;
  height: auto;
  aspect-ratio: 0 / 1;
  /* Change ratio as per your design */
}

/***********************************  MOBILE RESPONSIVE CSS STARTS FROM HERE  **************************************/

@media (hover: hover) {}

@media screen and (min-width:1600px) {
  .swiper-button-prev {
    left: 14% !important;
  }

  .swiper-button-next {
    right: 14% !important;
  }

  .testimonials-section .swiper-button-prev {
    left: 12% !important;
  }

  .testimonials-section .swiper-button-next {
    left: 12% !important;
  }
}

@media screen and (min-width: 1025px){
  .sub-menu li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
}

@media screen and (max-width:1300px) {
  .wtrn_feature-section .feature-right {
    background-position: 26%;
  }
}

@media screen and (max-width: 1200px) {
  .testimonials-swiper {
    max-width: 98vw;
  }

  .testimonial-box {
    max-width: 340px;
    font-size: 16px;
    padding: 24px 16px 18px 16px;
  }

  .marquee {
    bottom: 0;
  }

  .wtrn_feature-section .feature-right {
    background-position: -12%;
  }
}

@media screen and (max-width: 1100px) {
  .contact-title {
    font-size: 36px;
  }

  .contact-container {
    gap: 24px;
  }

  .wtrn_feature-section :is(.feature-right, .feature-left) {
    flex: 0 0 auto;
  }

  .wtrn_feature-section .wtrn_container {
    flex-direction: column;
  }

  .wtrn_feature-section .feature-right {
    background-image: none;
  }

  .wtrn_feature-section .feature-right .button_group {
    flex-direction: row;
    align-items: end;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .wtrn_feature-section .feature-right .button_group button,
  .wtrn_feature-section .feature-right .button_group a {
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    transform: none !important;
  }

  .wtrn_feature-section .feature-content {
    flex-direction: column;
    gap: 30px;
  }

  .wtrn_feature-section .feature-left {
    align-items: center;
  }

  .wtrn_feature-section .feature-left :is(h2, p) {
    text-align: center;
  }
}



@media screen and (max-width: 1024px) {
  .course-card {
    width: 100%;
  }

  .wtrn_founder .wtrn_container .founder-left img {
    height: 450px;
  }

  .wtrn_cta .wtrn_container {
    padding: 80px 20px;
  }

  .placements-item {
    width: 33.33%;
  }

  /* Hide top bar on mobile */
  
  .wtrn_contact-bar {
    display: none;
  }

  .wtrn_header-container {
    padding: 15px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .wtrn_logo {
    grid-column: 2;
    justify-self: center;
  }

  .wtrn_menu-toggle {
    display: block;
    grid-column: 1;
    justify-self: start;
    padding-left: 10px;
  }

  .wtrn_mobile-demo-btn {
    display: block;
    grid-column: 3;
    justify-self: end;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 12px;
  }

  .wtrn_mobile-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  }

  .wtrn_nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    /* Change width for mobile menu */
    width: 70%;
    /* Add a max-width to keep it from getting too large on tablets */
    max-width: 400px;
    background: white;
    flex-direction: column;
    padding: 0;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    gap: 0;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
  }

  .wtrn_nav-menu.active {
    display: flex;
    transform: translateX(0);
    overflow-x: hidden;
  }

  .wtrn_nav-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    flex-direction: column;
  }

  .wtrn_nav-item:last-child {
    border-bottom: none;
  }

  .wtrn_nav-item a {
    font-size: 16px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: #333;
    font-weight: 600;
    width: 100%;
    letter-spacing: 0;;
  }

  .wtrn_nav-item a.wtrn_active {
    color: var(--primary-color);
  }

  .wtrn_has-dropdown::after {
    content: '→';
    font-size: 16px;
    transform: none;
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  .wtrn_nav-item.wtrn_dropdown-open .wtrn_has-dropdown::after {
    transform: rotate(90deg);
  }

  .wtrn_mega-menu {
    display: none;
  }

  /* Hide desktop demo button on mobile */
  .wtrn_nav-menu .wtrn_demo-btn {
    display: none;
  }

  .wtrn_top-banner {
    font-size: 12px;
    padding: 10px 15px;
  }

  .wtrn_footer_container {
    grid-template-columns: repeat(3, 1fr);
  }

  .wtrn_footer_logo-section {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }

  .wtrn_footer_intro-text {
    max-width: none;
  }

  .wtrn_footer_list {
    gap: 5px;
  }

  .hero_section .row:not(.social-review-wp .row) {
    flex-direction: column;
    width: 100%;
  }

  .hero_section :is(.col_right, .col_left) {
    width: 100%;
  }

  .header-main .menu-item-has-children::after {
    position: absolute;
    top: 28px;
    right: 20px;
  }

  .wtrn_sub_menu {
    opacity: 1;
    visibility: visible;
  }

  .header-main .sub-menu:not(.sub-menu li .sub-menu) {
    position: static;
    min-width: 100%;
    border-radius: 0;
    padding: 0 20px;
  }

  .wtrn_sub_menu .menu-item-has-children::before {
    top: 30px;
  }

 .sub-menu li .sub-menu {
    opacity: 1;
    visibility: visible;
    max-width: 100%;
    width: 100%;
    right: 0;
    position: relative;
    padding: 0 5px;
}

  .header-main .sub-menu li {
    padding: 20px 0 0 0;
  }

  .menu-item-39423 {
    padding: 6px 0;
    border-radius: 0px;
  }

}


@media screen and (max-width: 900px) {
  .wtrn_title {
    font-size: 32px;
  }

  .training-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .training-card {
    width: 100%;
    max-width: 100%;
  }

  .testimonial-avatar {
    width: 70px;
    height: 70px !important;
  }

  .testimonial-box {
    min-height: 180px;
  }

  .contact-container {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .contact-form-wrap,
  .contact-img-wrap {
    max-width: 100%;
    min-width: 100%;
  }

  .contact-img {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .hero_content .review-text p{
    font-size: 14px;
  }

  .courses-title {
    font-size: 32px;
  }

  .wtrn_feature-section .wtrn_container {
    flex-direction: column;
  }

  .wtrn_feature-section .feature-left,
  .wtrn_feature-section .feature-right {
    flex: 1 1 100%;
    width: 100%;
  }

  .banner-content {
    flex-direction: column;
    align-items: center;
  }

  .banner-text,
  .banner-form {
    flex: 1 1 100%;
  }

  .faq-container .wtrn_container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-content h1 {
    font-size: 2rem;
    text-align: center;
  }

  .faq-illustration {
    order: -1;
    min-height: 300px;
  }

  .character {
    transform: scale(0.8);
  }

  .faq-board {
    right: -60px;
    width: 100px;
    height: 60px;
    font-size: 20px;
  }


  .question-number {
    margin-right: 15px;
    min-width: 35px;
    font-size: 1.3rem;
  }

  .question-text {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 18px;
    font-size: 0.95rem;
  }

  .placements-card {
    padding: 0;
  }

  .title-main h2 {
    font-size: 32px;
  }

  .review-icon-wp .review-icon svg {
    height: 11px;
  }

  .hero_section .container {
    padding: 200px 20px 0 20px;
  }

  .wtrn_placements-section .swiper {
    padding: 0 0 20px 0;
  }

  .wtrn_placements-section .swiper-slide {
    width: 200px;
  }

  .wtrn_placements-section .wtrn_heading {
    font-size: 28px;
  }

  .course-card {
    width: 100%;
  }

  .courses-swiper {
    padding-bottom: 30px;
  }

  .gallery-title {
    font-size: 36px;
  }

  .gallery-tabs {
    gap: 15px;
  }

  .tab-button {
    font-size: 16px;
    padding: 8px 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
  }

  .gallery-item img {
    height: 200px !important;
  }

  .wtrn_footer_container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wtrn_footer_column {
    align-items: flex-start;
    text-align: left;
  }

  .wtrn_footer_social-icons {
    justify-content: flex-start;
  }

  .banner-form {
    margin-top: 0;
  }

}


@media screen and (max-width:575px) {
  .contact-section {
    padding: 40px 20px 0 20px;
  }

  .wtrn_demo-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .wtrn_logo img {
    height: 40px !important;
  }

  .swiper-button-prev {
    left: 0 !important;
  }

  .swiper-button-next {
    right: 0 !important;
  }

  .marquee-content {
    animation: marquee 5s linear infinite;
  }

  .wtrn_cta .wtrn_container h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .wtrn_demo-btn {
    font-size: 10px;
  }

  .wtrn_blog_grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .wtrn_head_part {
    padding: 0;
  }

  .wtrn_logo img {
    height: 40px;
  }

  .hero_section .container {
    padding: 120px 20px 0 20px;
  }

  .hero_section :is(.col_right, .col_left) {
    padding: 0;
  }
  .wtrn_nav-item a {
    font-size: 14px;
  }

}


@media screen and (max-width: 991px) {
  .wtrn_founder .wtrn_container {
    flex-direction: column;
    gap: 20px;
  }

  .wtrn_founder .wtrn_container .founder-left img {
    height: auto;
    width: auto;
  }

  .marquee {
    position: static;
  }

  .wtrn_founder .wtrn_container .founder-left,
  .wtrn_founder .wtrn_container .founder-right {
    max-width: 100%;
  }
}


@media screen and (max-width: 480px) {
  .gallery-tabs {
    align-items: center;
    gap: 10px;
  }

  .faq-content h1 {
    font-size: 1.8rem;
  }

  .character {
    transform: scale(0.7);
  }


  .question-number {
    margin-right: 10px;
    min-width: 30px;
    font-size: 1.2rem;
  }

  .question-text {
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 12px;
    font-size: 0.9rem;
  }

  .toggle-icon {
    font-size: 1.3rem;
  }

  .placements-item {
    width: 100%;
    padding: 0 0 20px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.new-home-popup-frm .wpforms-container{
    margin-top: 20px !important;
}
.new-home-popup-frm .wpforms-container .wpforms-field{
    padding: 10px 0;
}
.new-home-popup-frm .wpforms-container input,
.new-home-popup-frm .wpforms-container textarea{
    font-size:14px !important;
    color: #000 !important;
}
.new-home-popup-frm .wpforms-container textarea{
    height: 70px !important;
}
.new-home-popup-frm .wpforms-container .wpforms-submit{
  width: 100%;
}
.new-home-popup-frm h2.elementor-heading-title{
    margin-bottom: 0px;
}
.home-contact-popup .dialog-close-button{
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.mystickyelements-fixed{
    right: 0;
}
.mystickyelements-social-icon-li{
    margin-top: 10px;
    margin-bottom: 20px;
}
.ft-sticky-bar-wrap span{
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
}
.ft-sticky-bar-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #006ca5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    z-index: 9999;
    gap: 10px;
}
.ft-sticky-bar-wrap a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
}
.ft-sticky-bar-wrap .icon-img{
    margin-right: 5px;
}
.mobile-only-courses{
  display: none;
}
@media screen and (max-width: 1024px) {
  .mobile-only-courses{
    display: block;
  }
  .mobile-only-courses .swiper-slide{
      margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .mystickyelements-fixed{
    top: 60% !important;
  }
  body.page-template-new-home {
    padding-bottom: 42px;
  }
}
