body {
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #F3FAFF;
	color: #333;
}

/*  Header Section Start Start */
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	background: url('/images/header-background.png'); 
	background-size: cover; 
    background-position: center; 
	display: flex;
	align-items: flex-start;
	padding: 0 20px; 
    color: #fff;
}

.logo-container {
	width: 230px; 
	height: 100px; 
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	margin-left: 20px;
}

.logo-container img {
	max-width: 100%;
	max-height: 100%;
}

.navigation {
	margin-left: 30px;
	margin-top: 20px;
	align-items: center;
}

.navigation ul {
	list-style: none;
	padding: 0;
	display: flex;
	margin-left: 70px;
}

.navigation li {
	margin: 0 15px;
}

.navigation a {
	text-decoration: none;
	color: #fff;
	font-size: 17px;
	font-weight: normal;
	position: relative;
	transition: color 0.3s;
}

.navigation a:hover {
  color: #fff; 
}

.navigation a:hover::before {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 20%;
	width: 70%;
	height: 2px;
	background: #98ABB2;
}

.active-link::before {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 20%;
      width: 70%;
      height: 2px;
      background: #98ABB2;
}

#home-section {
	color:#050A30; 
	font-weight: bold;
}

.mobile-menu {
	display: none;
	cursor: pointer;
	font-size: 30px;
	color: #06082f;
	position: fixed;
	top: 30px;
	right: 20px;
	z-index: 2;
}

.close-menu {
	display: none;
	cursor: pointer;
	font-size: 30px;
	color: #98ABB2;
	position: fixed;
	top: 35px;
	right: 20px;
	z-index: 2;
}

.sidebar {
	position: fixed;
	top: 0;
	right: -250px;
	width: 250px;
	height: 100%;
	background: #06082f;
	color: #f5f5f5;
	transition: right 0.3s;
	font-size: 18px;
}

.sidebar ul {
	position: absolute;
	margin-top: 100px;
}

.sidebar.active {
	right: 0;
}

.sidebar ul {
	list-style: none;
	padding: 0;
}

.sidebar ul li {
	padding: 10px;
}

.sidebar a {
	text-decoration: none;
	color: #fff;
	position: relative;
	transition: color 0.3s;
}

.sidebar a:hover {
  color: #00A7E6; 
}

.sidebar a:hover::before {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 20%;
	width: 70%;
	height: 2px;
	background: #98ABB2;
}

/*  Header Section End */

/* Style for the contact ribbon Start */
.ribbon {
	position: fixed;
	bottom: 100px;
	right: 0;
	transform: translateY(100%);
	background-color: #06082f;
	color: #fff;
	padding: 10px 20px;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	cursor: pointer;
	z-index: 1000;
	transition: right 0.5s ease;
}

.ribbon-content {
	display: flex;
	align-items: center;
}

.ribbon-icon {
	margin-right: 10px;
}

.ribbon-icon i {
	font-size: 24px;
}

/* Style for the contact ribbon End */

/* Footer Section Start */
footer {
	left: 20px;
	padding: 30px;
	display: flex;
	align-items: center;
	background: linear-gradient(102.57deg, #00A7E6, #06082f 100%, #98ABB2 0);
	color: #fff;
	justify-content: space-between;
}

.social-icons {
	margin-right: 15px;
}

.social-icon {
	margin-left: 10px;
	font-size: 20px;
	color: #fff;
	transition: color 0.3s;
}

.social-icon:hover {
	color: #00A7E6;
}

.social-icons a {
  text-decoration: none; 
  color: #fff; 
}

.social-icons a .social-icon {
  border: 1px solid #fff; 
  padding: 5px; 
  border-radius: 5px; 
  color: #fff; 
}

.footer-links a {
	text-decoration: none;
	color: #fff;
	position: relative;
	transition: color 0.3s;
}

.footer-links img {
    margin-right: 20px; 
}

/* .footer-links a:hover {
  color: #00A7E6; 
}

.footer-links a:hover::before {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 20%;
	width: 70%;
	height: 2px;
	background: #98ABB2;
}
 */
/* Footer Section End */

/* Home section Start */
.home-section {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	padding: 10px;
	margin-top: 80px;
}

.content {
	flex: 1;
	max-width: 800px;
	padding: 20px;
	background-color: #F3FAFF;
	border-radius: 8px;
	text-align: center;
}

.content h2 {
	color: #1561ad;
	font-size: 30px;
	text-align: left;
}

.content p {
	color: #333;
	font-size: 18px;
	text-align: left;
}

.image {
	flex: 1;
	display: none;
	justify-content: flex-end;
	margin-top: 10px;
	margin-right: 10px;
	position: relative;
}

.image img {
	width: 100%;
	height: 450px;
	margin: 10px;
	object-fit: cover;
	border-radius: 3px;
}
/* 
#image2 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
} */

.hicon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.hicon.left {
  left: 15px;
}

.hicon.right {
  right: -5px;
}

.hicon:hover {
	color: #1561ad;
}

/* who we are section */
.who-we-are {
	display: flex;
	align-items: center;
	height: 100vh;
	background: linear-gradient(102.57deg, #00A7E6, #06082f 100%, #98ABB2 0);
}

.images-container {
	position: relative;
	width: 100%
	height: 100%;
	overflow: hidden;
}

.images-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: none;
}

.icon {
	position: absolute;
	top: 50%;
	font-size: 24px;
	cursor: pointer;
	color: #fff;
	transition: color 0.3s;
}

.icon:hover {
	color: #1561ad;
}

.left-icon {
	left: 10px;
}

.right-icon {
	right: 10px;
}

.text-container {
	width: 60%;
	padding: 20px;
	box-sizing: border-box;
}

.text-container h2 {
	text-align: center;
	font-size: 30px;
	color: #fff;
}

.text-container h3 {
	color: #1561ad;
	font-size: 25px;
}

.text-container p {
	font-size: 16px;
	color: #fff;
}

.author {
	color: #06082f;
	text-align: center;
	font-size: 25px;
	display: none;
}

.title {
	font-size: 22px;
	text-align: center;
	color: #f5f5f5;
	font-weight: bold;
	font-style: italic;
}

.about-container {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.quote-box {
	text-align: center;
	padding: 20px;
	background: linear-gradient(102.57deg, #00A7E6, #06082f 100%, #98ABB2 0);
}

.quote-box h1 {
	color: #fff;
	font-style: italic;
}

.quote-box p {
	color: #06082f;
	font-size: 25px;
	font-weight: bold;
}

.column {
	flex: 1;
	padding: 20px;
	background: linear-gradient(102.57deg, #00A7E6, #06082f 100%, #98ABB2 0);
	border: 3px solid #fff;
	margin-top: -10px;
}

.column h2 {
	text-align: center;
	font-size: 35px;
	color: #fff;
}

.column p {
	text-align: center;
	font-size: 20px;
	color: #fff;
}

/* Contact & Event modal Start */
.modal {
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2000;
}

.modal-content {
	background-color: #f5f5f5;
	padding: 20px;
	border-radius: 10px;
	max-width: 80%;
}

#event-content {
	display: flex;
	flex-wrap: wrap;
	max-width: 800px;
	background-color: #f5f5f5;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.video-container {
	flex: 1;
	border-radius: 8px;
	margin-bottom: 30px;
    text-align: center;
}

#event-content .text-container {
	flex: 1;
	padding: 0 20px;
}

#event-content h1 {
	color: #06082f;
	font-size: 32px;
	margin-bottom: 10px;
}

#event-content p {
	color: #1561ad;
}

.modal-content h1 {
	font-size: 30px;
	margin-top: 0;
	text-align: center;
}

.modal-content p {
	color: #333;
	font-size: 22px;
}

.close-icon {
	position: absolute;
	top: 50px;
	right: 50px;
	font-size: 30px;
	cursor: pointer;
	color: #f5f5f5;
}

.close-event-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 2.0rem;
  color: #f5f5f5;
}

.close-event-icon:hover {
	color: #00A7E6;
}

.close-icon:hover {
	color: #06082f;
}

.quick-links {
	margin-top: 20px;
	text-align: center;
}

.quick-links p {
	color: #f5f5f5;
	font-size: 22px;
	font-weight: bold;
}

.quickbadge {
	display: inline-block;
	width: 220px;
	padding: 10px;
	margin: 30px;
	border: 1px solid #98ABB2;
	border-radius: 5px;
	text-align: center;
	cursor: pointer;
	background-color: #06082f;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	transition: color 0.3s;
}

.quickbadge:hover {
  background-color: #98ABB2; 
}

.quickbadge img {
	max-width: 50px;
	max-height: 50px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-info {
	margin-top: 20px;
}

.contact-info span {
	margin-left: 10px;
	font-size: 18px;
	font-weight: bold;
}

.contact-info .info-item {
	display: inline-block;
	margin-right: 20px;
}

.info-item i {
	font-size: 24px;
	margin-right: 5px;
	color: #06082f;
}

.info-item span {
	font-size: 20px;
	color: #333;
	font-weight: normal;
	margin: auto;
}

.info-item a {
	font-size: 20px;
	color: #333;
	text-decoration: none;
	transition: color 0.3s;
}

.info-item a:hover {
	color: #06082f;
}

/* Contact & Event modal End */

/* Services Section Start */
.services h2 {
	font-size: 45px;
	color: #1561ad;
	text-align: center;
}

.services img {
	width: 50px; 
	margin-right:10px;
	height: 50px;
}

.services h3 {
	font-size: 25px;
	color: #fff;
}

.services p {
	color: #333;
	font-size: 18px;
}

.services-row {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	justify-content: space-between;
	margin: 20px;
}

.service-box {
	width: 48%;
	margin-bottom: 20px;
	background: linear-gradient(
	    #fff 0%,
	    #B6E4FC 50%, 
	    #00658F 100% 
	  );
	border: 1px solid #fff;
	padding: 20px;
	border-radius: 3px;
	box-sizing: border-box;
	transition: transform 0.3s ease-in-out;
}

.service-box:hover {
	transform: scale(1.05);
}

#evaluation-and-feedback {
    margin: 0 auto; /* Center the service box */
}

.service-box h3 {
	color: #1561ad;
	font-weight:bolder;
}

/* Services Section Start */

/* Workshop Section Start */
.workshop-container {
	text-align: center;
}

.workshop-container img {
	width: 60px; 
	height: 60px;
	margin-right:10px;
	margin-bottom:-10px;
}

.workshop-container h2 {
	font-size: 45px;
	color: #1561ad;
}

.workshop-content {
	margin-top: -50px;
	padding: 20px;
	font-size: 20px;
	color: #333;
	margin-bottom: 20px;
}

.workshops-container {
    display: flex;
    justify-content: space-between;
    width: 70%;
    text-align: center;
    margin: 20px auto;
    align-items: stretch;
}

.workshop-box {
    flex: 1;
	padding: 20px;
	background: linear-gradient(
	    #fff 0%,
	    #B6E4FC 50%, 
	    #00658F 100% 
	  );
	margin-right: 20px;
	transition: transform 0.3s ease-in-out;
	border-radius: 3px;
	display: flex;
    flex-direction: column;
    justify-content: space-between;

	min-height: 500px;
    box-sizing: border-box;
}

.workshop-box:last-child {
    margin-right: 0;
}

.workshop-box:hover {
	transform: scale(1.05);
}

/* Styles for Slider */
.slider {
	position: relative;
	overflow: hidden;
}

.workshop-box .slider-images {
	display: flex;
	transition: transform 0.3s ease;
}

.workshop-box .slider-image {
	width: 100%; 
    height: auto; 
	object-fit: cover;
	border-radius: 2px;
}

.workshop-box .slider-image:not(:first-child) {
	display: none; 
}

.workshop-box h2 {
	font-size: 22px;
	color: #1561ad;
}

.workshop-box p {
	margin-top: 10px;
	font-size: 16px;
	color: #fff;
	flex-grow: 1;
}

.read-more-link {
    align-self: flex-end;
    margin-top: 15px;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}

.read-more-link:hover {
    color: #dff6ff;
}

/* Mobile styles */
@media (max-width: 768px) {
    .workshops-container {
        flex-direction: column;
        width: 90%;
    }

    .workshop-box {
        width: 100%;
        margin: 0 auto;
    }

    .workshop-box h2 {
        font-size: 20px;
    }

    .workshop-box p {
        font-size: 15px;
    }

    .read-more-link {
        font-size: 14px;
    }
}

.registration-container {
	text-align: center;
	margin-top: 50px;
}

.registration-container h2 {
	font-size: 30px;
	color: #1561ad;
}

.registration-content {
	margin-top: -50px;
	padding: 20px;
	font-size: 20px;
	color: #333;
}

.registration-content p {
	font-size: 20px;
}

.registration-container .button-container {
	margin-top: -50px;
	height: 20vh;
}

button {
	margin-top: 20px;
	border-radius: 6.25rem;
	font-size: 1.125rem;
	letter-spacing: .03125rem;
	height: 3.5rem;
	padding: 9pt 77px;
	border: none;
	color: #fff;
	cursor: pointer;
	background: linear-gradient(102.57deg, #00A7E6, #06082f 100%, #98ABB2 0);
	transition: background-color 0.3s;
	border-radius: 6.25rem;
	transition: all .5s;
}

.register-button {
	display: none;
	margin-top: 20px;
	padding: 10px; 
	width: 300px;
	background-color: #00A7E6;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 5px;
	cursor: pointer;
	margin-left: 50px;
}

button:hover {
	background: #06082f;
}

/* Events Section Start */
#events h2 {
	font-size: 45px;
	color: #1561ad;
	text-align: center;
}

.day::after {
    content: "th";
    position: relative;
    top: -0.5em; /* Adjust as needed */
    left: 2px; /* Adjust as needed */
    font-size: 0.7em; /* Adjust as needed */
}

.event-container {
	display: flex;
	flex-wrap: wrap;
	max-width: 900px;
	height: auto;
	margin: 20px auto; 
	background-color: #F3FAFF;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.video-container {
	flex: 1;
	border-radius: 8px;
}

.event-container .text-container {
	flex: 1;
	padding: 0 20px;
	text-align: center;
}

.event-container h1 {
	color: #06082f;
	font-size: 30px;
	margin-bottom: 10px;
	text-align: center;
}

.event-container p {
	font-size: 18px;
	color: #333;
	text-align: center;
}

/* Leadership Summit Section Start */
#trainings h2 {
	font-size: 45px;
	color: #1561ad;
	text-align: center;
}

.training-section {
  max-width: 900px;
  margin: 50px auto;
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.training-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.training-image {
  display: block;
  margin: 0 auto 20px auto;
  width: 350px;
  height: auto;
  /*border-radius: 8px;*/
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

.training-subheading {
  font-size: 22px;
  color: #1561ad;
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 600;
}

.training-highlight {
  font-size: 20px;
  color: #1561ad;
  font-weight: 600;
}

.training-points p {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.training-points p::before {
  color: #1561ad;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.training-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

.training-section p {
  margin: 10px 0;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.training-image-bottom {
  text-align: center;
  margin-top: 25px;
}

.training-image-bottom img {
  width: 600px;
  height: auto;
  max-width: 100%;
  /*border-radius: 10px;*/
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
}

.training-section ul {
  margin-top: 10px;
  padding-left: 20px;
}

.training-section ul li {
  margin-bottom: 8px;
  list-style-type: square;
}

.button-group {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.payment-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(102.57deg, #00A7E6, #06082f 100%, #98ABB2 0);
  transition: background-color 0.3s;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.payment-button:hover {
  background-color: #1d4ed8;
  opacity: 0.9;
}

.return-policy-link {
  color: #1561ad;
  text-decoration: underline;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  #trainings h2 {
    font-size: 32px;
  }

  .training-section {
    padding: 25px 20px;
    margin: 30px 15px;
  }

  .training-section h2 {
    text-align: center;
  }

  .training-section p {
    font-size: 16px;
  }

  .training-image {
      max-width: 90%;
    }
  .training-subheading,
    .training-highlight {
      font-size: 18px;
      text-align: left;
    }

    .training-text,
    .training-points p,
    .training-section p {
      font-size: 16px;
      line-height: 1.5;
    }

    .training-points p {
      padding-left: 18px;
    }

    .training-points p::before {
      left: 0;
    }
    .training-image-bottom img {
        width: 90%;
      }
  .button-group {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .payment-button {
    width: 90%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #trainings h2 {
    font-size: 26px;
  }

  .training-section {
    padding: 20px 15px;
  }

  .training-section h2 {
    font-size: 22px;
  }

  .training-section p {
    font-size: 15px;
  }

  .payment-button {
    padding: 10px 20px;
    font-size: 16px;
  }
}

/* Testimonials Section Start */
.testimonial-slider {
    width: 80%;
    margin: 0 auto;
}

.testimonial-slider h2 {
    font-size: 45px;
    margin: 20px 0;
    color: #1561ad;
    text-align: center;
    margin-bottom: 50px;
}

.testimonial:hover {
    transform: scale(1.05); 
}

.testimonial-text {
    font-size: 17px;
    margin-bottom: 10px;
}

.testimonial-details {
    font-size: 15px;
}

.tcontainer {
	margin-top: -50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

.image-box {
	flex: 1;
	padding: 20px;
}

.image-box img {
	width: 100%; 
    height: auto; 
	display: block;
	border-radius: 5px;
}

.testimonial {
	flex: 2;
	background: linear-gradient(
	    #fff 0%,
	    #B6E4FC 50%, 
	    #00658F 100% 
	  );
	padding: 20px;
	margin: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	text-align: center;
	transition: transform 0.2s ease-in-out;
}

.testimonial p {
	font-size: 18px;
	margin-bottom: 10px;
}

.testimonial .name {
	font-weight: bold;
	color: #fff;
}

.testimonial-author{
	color: #fff;
}

.left {
	order: 1;
}

.right {
	order: 2;
}

/* Style for the overlay background */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	justify-content: center;
	align-items: center;
	z-index: 1;
}

/* Style for the image */
.modal-img {
	max-width: 850px;
    width: 100%;
	height: auto;
	border-radius: 3px;
	position: relative; 
}

iframe {
	border-radius: 8px; 
}

.centered-button {
	position: absolute;
	top: 70%;
	left: 50%;
	padding: 10px 50px;
	height: 45px;
    font-size: 17px;
	transform: translate(-50%, -50%);
	border: none;
    border-radius: 5px;
}

.centered-button:hover {
	background-color: #1561ad; 
}

.centered-link {
	display: none;
	position: absolute;
	top: 58.5%; 
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-decoration: none;
	font-size: 12px;
}

.centered-link:hover {
	color: #1561ad;
}

.category-heading {
  color: #007bff;
  cursor: pointer;
  transition: color 0.2s;
}

.category-heading:hover {
  color: #0056b3;
  text-decoration: underline;
}

.doc-modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.doc-modal-content {
  position: relative;
  margin: 60px auto;
  padding: 0;
  width: 80%;
  height: 80%;
  max-width: 1000px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  animation: slideIn 0.4s ease-in-out;
}

.doc-close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.2s, color 0.2s;
}

.doc-close:hover {
  color: #000;
  transform: scale(1.2);
}

.doc-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.doc-close-outside {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  background-color: rgba(0,0,0,0.6);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 38px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.doc-close-outside:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  transform: scale(1.1);
}

/* Styles for mobile devices and iPads */
@media only screen and (max-width: 1024px) {
	.header {
		background-position: left center;
	}
	.logo-container {
	    width: 230px;
        height: 62px;
        margin-left: -20px;
        text-align: left;
	}
	.navigation {
		display: none;
	}
	.mobile-menu {
		display: inline-block;
		margin-top: -10px;
	}
	footer {
		flex-direction: column;
		padding: 20px;
	}
	.social-icons {
		margin-right: 0;
	}
	.copyright-text {
		margin-top: 10px;
		font-size: 12px;
		margin-left: 10px;
	}
	.footer-links {
		margin-top: 10px;
		font-size: 12px;
		margin-left: 5px;
	}
	.ribbon {
		bottom: 80px;
	}
	.close-icon {
		top: 10px;
		right: 10px;
	}
	.home-section {
		flex-direction: column;
		align-items: center;
		padding: 10px;
		margin-top: 50px;
	}
	.content {
		max-width: 100%;
		text-align: center;
	}
	.image {
		order: -1;
		margin-left: -10px;
	}
	.image img {
      max-height: 50vh; 
    }
	.content h2 {
		font-size: 25px;
		text-align: center;
		margin-top: -10px;
	}
	.content p {
		font-size: 17px;
		text-align: center;
	}
	.service-box {
		width: 100%;
	}
	.workshop-container h2 {
		font-size: 30px;
	}
	.workshop-content,.registration-content {
		font-size: 18px;
	}
	.registration-content p{
		font-size: 18px;
	}
	.registration-container h2 {
		font-size: 22px;
	}
	.registration-content {
		font-size: 17px;
	}
	.register-button {
		margin-top: 10px;
    	width: 100%; 
    	margin-left: -10px; 
	}
	button {
		margin-top: 20px;
		padding: 5pt 55px;
		text-align:center;
	}
	.event-container h1 {
		font-size: 25px;
	}
	.close-event-icon, .close-icon {
		color: #00A7E6;
	}
	.video-container {
	    flex-direction: column; 
	    text-align: center;
	    margin-bottom: 20px;
	}
	iframe {
		width: 330px;
		height: auto;
	}
	.event-container p {
		font-size: 17px;
	}
	.contact-info span {
		font-size: 12px;
	}
	.tcontainer {
		flex-direction: column;
		text-align: center;
	}
	.testimonial {
		padding: 25px;
	}
	.testimonial-slider{
		width: 100%;
		margin: 10px 0;
	}
	.left, .right {
		order: 0;
	}
	.event-container h1 {
		font-size : 25px;
	}
	.about-container {
		flex-direction: column;
	}
	.column p {
		font-size: 18px;
	}
	
	/* Modal css */
	.modal-content {
		max-width: 100%;
	}
	.modal-content h1 {
		font-size: 20px;
	}
	.modal-content p {
		font-size: 16px;
	}
	.quickbadge {
		width: 160px;
		padding: 5px;
		margin: 10px;
		margin: 10px 0;
	}
	.contact-info .info-item {
		margin-right: 5px;
	}
	.info-item span {
		font-size: 12px;
	}
	#state-zip {
		margin-left: 15px;
	}
	.info-item i {
		font-size: 12px;
		margin-right: 5px;
	}
	.info-item a {
		font-size: 12px;
	}
	
	/* who we are styles mobile */
	.who-we-are {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .images-container {
        width: 100%;
        height: auto;
    }

    .icon {
        font-size: 20px;
    }

    .left-icon,
    .right-icon {
        top: 40%;
    }

    .text-container {
        width: 100%;
    }
    
    .text-container h2 {
		font-size: 25px;
	}
	
	.text-container h3 {
		font-size: 18px;
	}
	
	.text-container p {
		font-size: 17px;
		text-align: center;
	}
	
	.quote-box h1 {
		font-size: 18px;
	}
	
	.quote-box p {
		font-size: 17px;
	}
	
	.modal-img {
        max-width: 90%; 
     }
	.centered-button {
		display: none; 
	}
	.centered-link {
		display: block; 
		font-size: 10px; 
	}
	/* Samsung device-specific styling */
    @media only screen and (min-device-width: 360px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) {
                .centered-link {
                    top: 57%; /* Adjusted to 55% from the top for Samsung devices */
                }
            }
}

/* Media query for tablets (portrait) and iPads */
@media (min-width: 601px) and (max-width: 1024px) {
    .mobile-menu {
        color: #fff; /* Change color for tablets and iPads */
    }
    .who-we-are {
        flex-direction: column;
        align-items: center;
        height: 100vh;
    }

    .images-container {
        width: 100%;
        height: auto;
    }
}

/* Modal Overlay */
.modal-payment {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  z-index: 9999;
}

/* Modal Box */
.modal-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Cancel Button */
.cancel-button {
  margin-top: 25px;
  padding: 10px 20px;
  background-color: #ccc;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Responsive: Tablet */
@media (max-width: 768px) {
  .modal-box {
    padding: 25px 20px;
    max-width: 90%;
  }

  .modal-payment {
    padding: 30px 15px;
  }
}

/* Responsive: Mobile */
@media (max-width: 480px) {
  .modal-box {
    padding: 20px 15px;
  }

  .modal-box h3 {
    font-size: 20px;
  }

  .modal-box p {
    font-size: 16px;
  }

  .cancel-button {
    width: 100%;
    font-size: 16px;
  }

  .modal-payment {
      padding: 20px 10px;
    }
}

.payment-spinner {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(3px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.spinner-content {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #1e40af;
}

.spinner-loader {
  border: 4px solid #cbd5e1;
  border-top: 4px solid #2563eb;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
